@charset "UTF-8";
/*
Project: 	 CBS
Version: 	 1.0
Author:
Description:
-------------------------------------------------------------------*/
/*
[Notes]

-------------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border-width: 0;
  background: transparent;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  outline: 0; }

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
main {
  display: block; }

html {
  scroll-behavior: smooth; }

body {
  overflow-y: scroll;
  overflow: -moz-scrollbars-vertical;
  box-sizing: border-box;
  touch-action: manipulation; }

body {
  line-height: 1; }

blockquote,
q {
  quotes: none; }

ul,
ol {
  list-style: none; }

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
  /* stylelint-disable-line */ }

table {
  border-collapse: collapse;
  border-spacing: 0; }

*,
*::before,
*::after {
  box-sizing: inherit;
  touch-action: inherit;
  border-width: 0;
  border-style: inherit;
  border-color: inherit; }

.svg-sprite {
  position: absolute;
  z-index: -1;
  top: -1px;
  left: -1px;
  width: 1px;
  height: 1px;
  overflow: hidden; }

/* stylelint-disable-next-line */
@-ms-viewport {
  width: device-width; }

strong {
  font-weight: 500; }

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative; }

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

:focus[data-focus-method="mouse"],
:focus[data-focus-method="touch"] {
  outline: none !important; }

textarea,
select,
input {
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit; }

cite {
  font-style: italic; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none; }

@media print {
  [data-screen-only] {
    display: none; } }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color--text);
  -webkit-box-shadow: 0 0 0 30px var(--color--background--autofill) inset !important;
  padding-left: 8px; }
  input:-webkit-autofill:-internal-autofill-previewed::first-line,
  input:-webkit-autofill:hover:-internal-autofill-previewed::first-line,
  input:-webkit-autofill:focus:-internal-autofill-previewed::first-line,
  textarea:-webkit-autofill:-internal-autofill-previewed::first-line,
  textarea:-webkit-autofill:hover:-internal-autofill-previewed::first-line,
  textarea:-webkit-autofill:focus:-internal-autofill-previewed::first-line,
  select:-webkit-autofill:-internal-autofill-previewed::first-line,
  select:-webkit-autofill:hover:-internal-autofill-previewed::first-line,
  select:-webkit-autofill:focus:-internal-autofill-previewed::first-line {
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-size: var(--font-size); }

/*
  @function get-breakpoint-directions

  Sorts through breakpoints SASS map,
  generates a full SASS map containing all the breakpoint
  variations we'll require

  Parameters:
  none
*/
/*
  @mixin breakpoint

  Inserts a media query

  Parameters:
  $name - name of breakpoint, choose from:

  xsmall, small, medium, large, xlarge, xxlarge  - *just* that breakpoint
  small-, medium-, large-, xlarge-, xxlarge-  - that breakpoint *and* below
  xsmall+, small+, medium+, large+, xlarge+  - that breakpoint *and* up

  NB: the we're mobile up, so the minus values should be avoided..

  $option - ie11, hover - to make an IE11 CSS with a breakpoint or to target browsers with mouse cursors

  ```scss
  @include breakpoint('medium+') {
    // styles to be given to browsers at `medium` and above
  }
  @include breakpoint(null,'hover') {
    // styles to be given to devices with mouse pointers
  }
  @include breakpoint(null,'ie11') {
    // styles to be given to be given to IE11
  }
  @include breakpoint('medium+','hover') {
    // styles to be given to browsers at `medium` and above that have mouse pointers
  }
  @include breakpoint('medium+','ie11') {
    // styles to be given to ie11 at `medium` and above
  }
  ```
*/
/*
  @function get-media

  Returns start and stop points of a given media query

  Parameters:
  $bp - the breakpoint you want the stop and stop points of
*/
/*
  @mixin placeholder

  Style form placeholder text
*/
/*
  @mixin reset-btn

  Remove default browser style for button tag
*/
/*
  @mixin reset-input

  Remove default browser style for input tag
*/
/*
  @function colspan

  Returns a calc() that represents a column span

  Parameters:
  $number-of-columns - the number of columns you want to span
  $breakpoint - at which breakpoint
  $bump - if you want the colspan + an arbitrary number
  $inverse - if you want to return a negative number (to move things backwards)

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin width

  Returns a width and a calc() to correctly span columns
  with breakpoint selection and optional bump value

  Parameters:
  $number-of-columns - the number of columns you want to span
  $breakpoint - at which breakpoint
  $bump - if you want the colspan + an arbitrary number

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin width-multi

  A mix of @mixin width and @mixin column. Pass a map of the number
  of columns to span at each breakpoint. Use when you don't need to
  float on the grid.

  Parameters:
  $colspans - scss map detailing how many design columns this column
  needs to span on each breakpoint. Omitting a breakpoint from the
  map will not set a width at that breakpoint.
  $bump - if you want the colspan + an arbitrary number

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include width-multi($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin push

  Returns a margin-left and a calc() to correctly push
  a block a number of columns with breakpoint selection
  and optional bump value

  Parameters:
  $number-of-columns - the number of columns you want to push
  $breakpoint - at which breakpoint
  $bump - if you want the colspan + an arbitrary number

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin push-multi

  A mix of @mixin push and @mixin column. Pass a map of the number
  of columns to push at each breakpoint.

  Parameters:
  $colspans - scss map detailing how many design columns this column
  needs to push on each breakpoint. Omitting a breakpoint from the
  map will not set a width at that breakpoint.
  $bump - if you want the colspan + an arbitrary number

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include push-multi($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin push-gutter

  Adds gutter margin to the sides passed to the set breakpoints.
  Defaults to left margin across all breakpoints.

  Parameters:
  $sides - the sides you'd like to apply margin to
  $bps - at which breakpoints

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin columns-container

  Sets up columns container

  Parameters:
  none

  ```scss
  .list-articles {
    @include columns-container;
  }
  ```
*/
/*
  @mixin column

  Sets up single column

  Parameters:
  $colspans - scss map detailing how many design columns this column needs to span on each breakpoint

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include column($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin hide_text

  Hides text in an element
*/
/*
  @mixin text-underline

  Parameters:
  $position - vertical position
  $underline - color of the underline
*/
/*
  @mixin font-smoothing

  Enable or disable font-smoothing : this controls the application
  of anti-aliasing when fonts are rendered.
*/
@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes barba-fade-out {
  from {
    opacity: 1;
    transform: none; }
  to {
    opacity: 0;
    transform: translateY(24px); } }

@keyframes barba-fade-in {
  from {
    opacity: 0;
    transform: translateY(24px); }
  to {
    opacity: 1;
    transform: none; } }

.icon--action--back-to-top, .icon--action--back-to-top svg {
  width: 20px;
  height: 26px; }

.icon--action--circle-load, .icon--action--circle-load svg {
  width: 40px;
  height: 40px; }

.icon--action--close, .icon--action--close svg {
  width: 24px;
  height: 25px; }

.icon--action--download, .icon--action--download svg {
  width: 24px;
  height: 24px; }

.icon--action--expand, .icon--action--expand svg {
  width: 24px;
  height: 24px; }

.icon--action--filter, .icon--action--filter svg {
  width: 24px;
  height: 24px; }

.icon--action--hamburger, .icon--action--hamburger svg {
  width: 24px;
  height: 24px; }

.icon--action--link-out, .icon--action--link-out svg {
  width: 24px;
  height: 24px; }

.icon--action--loader, .icon--action--loader svg {
  width: 40px;
  height: 40px; }

.icon--action--md-circle-plus, .icon--action--md-circle-plus svg {
  width: 40px;
  height: 40px; }

.icon--action--md-minus, .icon--action--md-minus svg {
  width: 16px;
  height: 16px; }

.icon--action--md-plus, .icon--action--md-plus svg {
  width: 16px;
  height: 16px; }

.icon--action--print, .icon--action--print svg {
  width: 24px;
  height: 24px; }

.icon--action--search, .icon--action--search svg {
  width: 24px;
  height: 24px; }

.icon--action--sm-minus, .icon--action--sm-minus svg {
  width: 12px;
  height: 12px; }

.icon--action--sm-play, .icon--action--sm-play svg {
  width: 40px;
  height: 40px; }

.icon--action--sm-plus, .icon--action--sm-plus svg {
  width: 12px;
  height: 12px; }

.icon--action--sm-uncheck, .icon--action--sm-uncheck svg {
  width: 24px;
  height: 24px; }

.icon--action--subscribe, .icon--action--subscribe svg {
  width: 24px;
  height: 24px; }

.icon--action--view-grid, .icon--action--view-grid svg {
  width: 24px;
  height: 24px; }

.icon--action--view-list, .icon--action--view-list svg {
  width: 24px;
  height: 24px; }

.icon--arrow--carrot-right, .icon--arrow--carrot-right svg {
  width: 12px;
  height: 12px; }

.icon--arrow--circle-right, .icon--arrow--circle-right svg {
  width: 40px;
  height: 40px; }

.icon--arrow--lg-carrot-down, .icon--arrow--lg-carrot-down svg {
  width: 16px;
  height: 16px; }

.icon--arrow--lg-carrot-up, .icon--arrow--lg-carrot-up svg {
  width: 16px;
  height: 16px; }

.icon--arrow--lg-circle-right, .icon--arrow--lg-circle-right svg {
  width: 48px;
  height: 48px; }

.icon--arrow--lg-right, .icon--arrow--lg-right svg {
  width: 32px;
  height: 32px; }

.icon--arrow--long-right, .icon--arrow--long-right svg {
  width: 32px;
  height: 32px; }

.icon--arrow--md-circle-down, .icon--arrow--md-circle-down svg {
  width: 48px;
  height: 48px; }

.icon--arrow--md-circle-left, .icon--arrow--md-circle-left svg {
  width: 40px;
  height: 40px; }

.icon--arrow--md-circle-right, .icon--arrow--md-circle-right svg {
  width: 40px;
  height: 40px; }

.icon--arrow--md-left, .icon--arrow--md-left svg {
  width: 24px;
  height: 24px; }

.icon--arrow--md-right, .icon--arrow--md-right svg {
  width: 20px;
  height: 20px; }

.icon--arrow--play, .icon--arrow--play svg {
  width: 96px;
  height: 96px; }

.icon--arrow--sm-carrot-2-left, .icon--arrow--sm-carrot-2-left svg {
  width: 16px;
  height: 16px; }

.icon--arrow--sm-carrot-2-right, .icon--arrow--sm-carrot-2-right svg {
  width: 16px;
  height: 16px; }

.icon--arrow--sm-carrot-down, .icon--arrow--sm-carrot-down svg {
  width: 12px;
  height: 12px; }

.icon--arrow--sm-carrot-right, .icon--arrow--sm-carrot-right svg {
  width: 12px;
  height: 12px; }

.icon--arrow--sm-left, .icon--arrow--sm-left svg {
  width: 16px;
  height: 16px; }

.icon--arrow--sm-north-east, .icon--arrow--sm-north-east svg {
  width: 12px;
  height: 12px; }

.icon--arrow--sm-right, .icon--arrow--sm-right svg {
  width: 16px;
  height: 16px; }

.icon--content--event, .icon--content--event svg {
  width: 24px;
  height: 24px; }

.icon--content--map, .icon--content--map svg {
  width: 24px;
  height: 24px; }

.icon--logo--lg-default, .icon--logo--lg-default svg {
  width: 134px;
  height: 57px; }

.icon--logo--lg-inverse, .icon--logo--lg-inverse svg {
  width: 133px;
  height: 57px; }

.icon--logo--sm-default, .icon--logo--sm-default svg {
  width: 258px;
  height: 24px; }

.icon--logo--sm-inverse, .icon--logo--sm-inverse svg {
  width: 258px;
  height: 24px; }

.icon--logo--xl-default, .icon--logo--xl-default svg {
  width: 146px;
  height: 61px; }

.icon--logo--xxl-default, .icon--logo--xxl-default svg {
  width: 170px;
  height: 70px; }

.icon--social--facebook, .icon--social--facebook svg {
  width: 24px;
  height: 24px; }

.icon--social--linkedin, .icon--social--linkedin svg {
  width: 24px;
  height: 24px; }

.icon--social--twitter, .icon--social--twitter svg {
  width: 24px;
  height: 24px; }

.container,
#root,
.o-panel__container {
  margin-left: auto;
  margin-right: auto; }
  @media screen and (max-width: 544px) {
    .container,
    #root,
    .o-panel__container {
      width: calc(100vw - 32px); } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .container,
    #root,
    .o-panel__container {
      width: calc(100vw - 32px); } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .container,
    #root,
    .o-panel__container {
      width: calc(100vw - 48px); } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .container,
    #root,
    .o-panel__container {
      width: calc(100vw - 48px); } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .container,
    #root,
    .o-panel__container {
      width: calc(100vw - 72px); } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .container,
    #root,
    .o-panel__container {
      width: calc(100vw - 72px); } }
  @media screen and (min-width: 1700px) {
    .container,
    #root,
    .o-panel__container {
      width: 1600px;
      padding-left: 0;
      padding-right: 0; } }

.design-grid-toggles {
  position: fixed;
  z-index: 9999;
  left: 0;
  bottom: 0;
  font-size: 0; }
  .design-grid-toggles::before, .design-grid-toggles::after {
    display: block;
    position: absolute;
    left: 5px;
    bottom: 100%;
    color: #00a449;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap; }
  .design-grid-toggles::before {
    margin-bottom: 3px; }
    @media screen and (max-width: 544px) {
      .design-grid-toggles::before {
        content: "xsmall"; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .design-grid-toggles::before {
        content: "small"; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .design-grid-toggles::before {
        content: "medium"; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .design-grid-toggles::before {
        content: "large"; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .design-grid-toggles::before {
        content: "xlarge"; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .design-grid-toggles::before {
        content: "xxlarge"; } }
    @media screen and (min-width: 1700px) {
      .design-grid-toggles::before {
        content: "xxxlarge"; } }
  .design-grid-toggles::after {
    content: attr(data-env);
    margin-bottom: 17px; }
  @media print {
    .design-grid-toggles {
      display: none; } }

.design-grid-toggle {
  display: inline-block;
  margin-right: 5px;
  padding: 10px 15px;
  background: #000;
  color: #fff;
  font-size: 11px;
  cursor: pointer;
  transition: all 200ms linear; }

.design-grid-toggle.js-active {
  background-color: #f00; }

.design-grid-toggle svg {
  display: block;
  width: 10px;
  height: 10px; }

.design-grid--columns {
  display: block;
  position: fixed;
  z-index: 9998;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: transparent;
  opacity: 0.25;
  pointer-events: none; }
  .design-grid--columns.js-hide {
    display: none; }
  @media screen and (max-width: 544px) {
    .design-grid--columns {
      width: calc(100vw - 32px);
      background: repeating-linear-gradient(90deg, #7fffff, #7fffff calc( ( 100vw - 112px ) / 6), rgba(0, 0, 0, 0) calc( ( 100vw - 112px ) / 6), rgba(0, 0, 0, 0) calc( ( ( 100vw - 112px ) / 6 ) + 16px)); } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .design-grid--columns {
      width: calc(100vw - 32px);
      background: repeating-linear-gradient(90deg, #7fffff, #7fffff calc( ( 100vw - 112px ) / 6), rgba(0, 0, 0, 0) calc( ( 100vw - 112px ) / 6), rgba(0, 0, 0, 0) calc( ( ( 100vw - 112px ) / 6 ) + 16px)); } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .design-grid--columns {
      width: calc(100vw - 48px);
      background: repeating-linear-gradient(90deg, #7fffff, #7fffff calc( ( 100vw - 160px ) / 8), rgba(0, 0, 0, 0) calc( ( 100vw - 160px ) / 8), rgba(0, 0, 0, 0) calc( ( ( 100vw - 160px ) / 8 ) + 16px)); } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .design-grid--columns {
      width: calc(100vw - 48px);
      background: repeating-linear-gradient(90deg, #7fffff, #7fffff calc( ( 100vw - 268px ) / 12), rgba(0, 0, 0, 0) calc( ( 100vw - 268px ) / 12), rgba(0, 0, 0, 0) calc( ( ( 100vw - 268px ) / 12 ) + 20px)); } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .design-grid--columns {
      width: calc(100vw - 72px);
      background: repeating-linear-gradient(90deg, #7fffff, #7fffff calc( ( 100vw - 336px ) / 12), rgba(0, 0, 0, 0) calc( ( 100vw - 336px ) / 12), rgba(0, 0, 0, 0) calc( ( ( 100vw - 336px ) / 12 ) + 24px)); } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .design-grid--columns {
      width: calc(100vw - 72px);
      background: repeating-linear-gradient(90deg, #7fffff, #7fffff calc( ( 100vw - 336px ) / 12), rgba(0, 0, 0, 0) calc( ( 100vw - 336px ) / 12), rgba(0, 0, 0, 0) calc( ( ( 100vw - 336px ) / 12 ) + 24px)); } }
  @media screen and (min-width: 1700px) {
    .design-grid--columns {
      width: 1648px;
      background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 24px, #7fffff 24px, #7fffff calc( ( ( 1600px - 264px ) / 12 ) + 24px)); } }

/***

f-heading-1

```
<p class="f-heading-1">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-heading-1 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-heading-1 b,
  .f-heading-1 strong {
    font-weight: 500; }
  
  .f-heading-1 i,
  .f-heading-1 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-heading-1 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-heading-2

```
<p class="f-heading-2">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-heading-2 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-heading-2 b,
  .f-heading-2 strong {
    font-weight: 500; }
  
  .f-heading-2 i,
  .f-heading-2 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-heading-2 {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  @media screen and (min-width: 1280px) {
    
    .f-heading-2 {
      font-size: 1.125rem;
      line-height: 1.67;
      --line-height: 30.06px;
      font-weight: 500;
      letter-spacing: 0em; } }

/***

f-heading-3

```
<p class="f-heading-3">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-heading-3 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-heading-3 b,
  .f-heading-3 strong {
    font-weight: 500; }
  
  .f-heading-3 i,
  .f-heading-3 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-heading-3 {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-heading-3 {
      font-size: 1.25rem;
      line-height: 1.25;
      --line-height: 25px;
      font-weight: 500;
      letter-spacing: 0em; } }

/***

f-heading-4

```
<p class="f-heading-4">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-heading-4 {
  font-size: 1.5rem;
  line-height: 1.2;
  --line-height: 28.8px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-heading-4 b,
  .f-heading-4 strong {
    font-weight: 500; }
  
  .f-heading-4 i,
  .f-heading-4 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-heading-4 {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  .s-neue-haas-grotesk-display-loaded
  .f-heading-4 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-heading-4 {
      font-size: 1.25rem;
      line-height: 1.2;
      --line-height: 24px;
      font-weight: 600; }
      .s-neue-haas-grotesk-display-loaded
      .f-heading-4 {
        font-family: "neue-haas-grotesk-display", sans-serif; } }
  @media screen and (min-width: 1280px) {
    
    .f-heading-4 {
      font-size: 1.5rem;
      line-height: 1.2;
      --line-height: 28.8px;
      font-weight: 600;
      letter-spacing: 0em; }
      .s-neue-haas-grotesk-display-loaded
      .f-heading-4 {
        font-family: "neue-haas-grotesk-display", sans-serif; } }

/***

f-heading-5

```
<p class="f-heading-5">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-heading-5 {
  font-size: 1.5rem;
  line-height: 1.2;
  --line-height: 28.8px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-heading-5 b,
  .f-heading-5 strong {
    font-weight: 500; }
  
  .f-heading-5 i,
  .f-heading-5 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-heading-5 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 1280px) {
    
    .f-heading-5 {
      font-size: 1.75rem;
      line-height: 1.125;
      --line-height: 31.5px;
      font-weight: 600;
      letter-spacing: 0em; } }

/***

f-heading-6

```
<p class="f-heading-6">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-heading-6 {
  font-size: 1.5rem;
  line-height: 1.2;
  --line-height: 28.8px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-heading-6 b,
  .f-heading-6 strong {
    font-weight: 500; }
  
  .f-heading-6 i,
  .f-heading-6 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-heading-6 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 1280px) {
    
    .f-heading-6 {
      font-size: 2rem;
      line-height: 1.125;
      --line-height: 36px;
      font-weight: 600;
      letter-spacing: 0; } }

/***

f-heading-7

```
<p class="f-heading-7">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-heading-7 {
  font-size: 1.5rem;
  line-height: 1.2;
  --line-height: 28.8px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-heading-7 b,
  .f-heading-7 strong {
    font-weight: 500; }
  
  .f-heading-7 i,
  .f-heading-7 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-heading-7 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 1280px) {
    
    .f-heading-7 {
      font-size: 2.25rem;
      line-height: 1.125;
      --line-height: 40.5px;
      font-weight: 600;
      letter-spacing: 0em; } }

/***

f-heading-8

```
<p class="f-heading-8">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-heading-8 {
  font-size: 1.5rem;
  line-height: 1.125;
  --line-height: 27px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-heading-8 b,
  .f-heading-8 strong {
    font-weight: 500; }
  
  .f-heading-8 i,
  .f-heading-8 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-heading-8 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-heading-8 {
      font-size: 2rem;
      line-height: 1.125;
      --line-height: 36px;
      font-weight: 600;
      letter-spacing: 0; } }
  @media screen and (min-width: 1280px) {
    
    .f-heading-8 {
      font-size: 2.625rem;
      line-height: 1;
      --line-height: 42px;
      font-weight: 600;
      letter-spacing: 0em; } }

/***

f-heading-9

```
<p class="f-heading-9">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-heading-9 {
  font-size: 1.75rem;
  line-height: 1.125;
  --line-height: 31.5px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-heading-9 b,
  .f-heading-9 strong {
    font-weight: 500; }
  
  .f-heading-9 i,
  .f-heading-9 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-heading-9 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-heading-9 {
      font-size: 2.25rem;
      line-height: 1.125;
      --line-height: 40.5px;
      font-weight: 600;
      letter-spacing: 0em; } }
  @media screen and (min-width: 1280px) {
    
    .f-heading-9 {
      font-size: 3rem;
      line-height: 1;
      --line-height: 48px;
      font-weight: 600;
      letter-spacing: 0em; } }

/***

f-caption-1

```
<p class="f-caption-1">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-caption-1 {
  font-size: 0.75rem;
  line-height: 1.3;
  --line-height: 15.6px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-caption-1 b,
  .f-caption-1 strong {
    font-weight: 500; }
  
  .f-caption-1 i,
  .f-caption-1 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-caption-1 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-subhead-1

```
<p class="f-subhead-1">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-subhead-1 {
  font-size: 1rem;
  line-height: 1.25;
  --line-height: 20px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-subhead-1 b,
  .f-subhead-1 strong {
    font-weight: 500; }
  
  .f-subhead-1 i,
  .f-subhead-1 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-subhead-1 {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  @media screen and (min-width: 1024px) {
    
    .f-subhead-1 {
      font-size: 1.25rem;
      line-height: 1.2;
      --line-height: 24px;
      font-weight: 500;
      letter-spacing: 0em; } }

/***

f-subhead-2

```
<p class="f-subhead-2">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-subhead-2 {
  font-size: 1.25rem;
  line-height: 1.2;
  --line-height: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-subhead-2 b,
  .f-subhead-2 strong {
    font-weight: 500; }
  
  .f-subhead-2 i,
  .f-subhead-2 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-subhead-2 {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  .s-neue-haas-grotesk-display-loaded
  .f-subhead-2 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-subhead-2 {
      font-size: 1.5rem;
      line-height: 1.2;
      --line-height: 28.8px;
      font-weight: 500;
      letter-spacing: 0em; }
      .s-neue-haas-grotesk-display-loaded
      .f-subhead-2 {
        font-family: "neue-haas-grotesk-display", sans-serif; } }
  @media screen and (min-width: 1280px) {
    
    .f-subhead-2 {
      font-size: 1.75rem;
      line-height: 1.125;
      --line-height: 31.5px;
      font-weight: 500;
      letter-spacing: 0em; }
      .s-neue-haas-grotesk-display-loaded
      .f-subhead-2 {
        font-family: "neue-haas-grotesk-display", sans-serif; } }

/***

f-subhead-3

```
<p class="f-subhead-3">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-subhead-3 {
  font-size: 1rem;
  line-height: 1.25;
  --line-height: 20px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-subhead-3 b,
  .f-subhead-3 strong {
    font-weight: 500; }
  
  .f-subhead-3 i,
  .f-subhead-3 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-subhead-3 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-subhead-4

```
<p class="f-subhead-4">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-subhead-4 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-subhead-4 b,
  .f-subhead-4 strong {
    font-weight: 500; }
  
  .f-subhead-4 i,
  .f-subhead-4 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-subhead-4 {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-subhead-4 {
      font-size: 1.25rem;
      line-height: 1.2;
      --line-height: 24px;
      font-weight: 400;
      letter-spacing: 0em; }
      .s-neue-haas-grotesk-display-loaded
      .f-subhead-4 {
        font-family: "neue-haas-grotesk-display", sans-serif; } }
  @media screen and (min-width: 1024px) {
    
    .f-subhead-4 {
      font-size: 1.5rem;
      line-height: 1.2;
      --line-height: 28.8px;
      font-weight: 400;
      letter-spacing: 0em; }
      .s-neue-haas-grotesk-display-loaded
      .f-subhead-4 {
        font-family: "neue-haas-grotesk-display", sans-serif; } }

/***

f-display-1

```
<p class="f-display-1">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-display-1 {
  font-size: 2.25rem;
  line-height: 1.125;
  --line-height: 40.5px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-feature-settings: "salt";
  font-kerning: normal; }
  
  .f-display-1 b,
  .f-display-1 strong {
    font-weight: 500; }
  
  .f-display-1 i,
  .f-display-1 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-display-1 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-display-1 {
      font-size: 3rem;
      line-height: 1;
      --line-height: 48px;
      font-weight: 600;
      letter-spacing: 0em; } }
  @media screen and (min-width: 1280px) {
    
    .f-display-1 {
      font-size: 4rem;
      line-height: 1;
      --line-height: 64px;
      font-weight: 600;
      letter-spacing: 0em; } }

/***

f-display-2

```
<p class="f-display-2">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-display-2 {
  font-size: 2.25rem;
  line-height: 1.125;
  --line-height: 40.5px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-feature-settings: "salt";
  font-kerning: normal; }
  
  .f-display-2 b,
  .f-display-2 strong {
    font-weight: 500; }
  
  .f-display-2 i,
  .f-display-2 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-display-2 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-display-2 {
      font-size: 4rem;
      line-height: 1;
      --line-height: 64px;
      font-weight: 600;
      letter-spacing: 0em; } }
  @media screen and (min-width: 1280px) {
    
    .f-display-2 {
      font-size: 4.5rem;
      line-height: 0.9;
      --line-height: 64.8px;
      font-weight: 600;
      letter-spacing: 0em; } }

/***

f-display-3

```
<p class="f-display-3">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-display-3 {
  font-size: 4rem;
  line-height: 1;
  --line-height: 64px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-feature-settings: "salt";
  font-kerning: normal; }
  
  .f-display-3 b,
  .f-display-3 strong {
    font-weight: 500; }
  
  .f-display-3 i,
  .f-display-3 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-display-3 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-display-3 {
      font-size: 5.25rem;
      line-height: 0.85;
      --line-height: 71.4px;
      font-weight: 600;
      letter-spacing: 0em; } }
  @media screen and (min-width: 1280px) {
    
    .f-display-3 {
      font-size: 6rem;
      line-height: 0.85;
      --line-height: 81.6px;
      font-weight: 600;
      letter-spacing: 0em; } }

/***

f-display-4

```
<p class="f-display-4">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-display-4 {
  font-size: 6.75rem;
  line-height: 0.85;
  --line-height: 91.8px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-feature-settings: "salt";
  font-kerning: normal; }
  
  .f-display-4 b,
  .f-display-4 strong {
    font-weight: 500; }
  
  .f-display-4 i,
  .f-display-4 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-display-4 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-display-4 {
      font-size: 5.25rem;
      line-height: 0.85;
      --line-height: 71.4px;
      font-weight: 600;
      letter-spacing: 0em; } }
  @media screen and (min-width: 1280px) {
    
    .f-display-4 {
      font-size: 9rem;
      line-height: 0.85;
      --line-height: 122.4px;
      font-weight: 600;
      letter-spacing: 0em; } }

/***

f-display-5

```
<p class="f-display-4">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-display-5 {
  font-size: 4.5rem;
  line-height: 0.9;
  --line-height: 64.8px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-feature-settings: "salt";
  font-kerning: normal; }
  
  .f-display-5 b,
  .f-display-5 strong {
    font-weight: 500; }
  
  .f-display-5 i,
  .f-display-5 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-display-5 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-display-5 {
      font-size: 6.75rem;
      line-height: 0.85;
      --line-height: 91.8px;
      font-weight: 600;
      letter-spacing: 0em; } }
  @media screen and (min-width: 1280px) {
    
    .f-display-5 {
      font-size: 10.5rem;
      line-height: 0.85;
      --line-height: 142.8px;
      font-weight: 600;
      letter-spacing: -0.02em; } }

/***

f-display-6

```
<p class="f-display-6">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-display-6 {
  font-size: 4.5rem;
  line-height: 0.9;
  --line-height: 64.8px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-feature-settings: "salt";
  font-kerning: normal; }
  
  .f-display-6 b,
  .f-display-6 strong {
    font-weight: 500; }
  
  .f-display-6 i,
  .f-display-6 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-display-6 {
    font-family: "neue-haas-grotesk-display", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-display-6 {
      font-size: 10.5rem;
      line-height: 0.85;
      --line-height: 142.8px;
      font-weight: 600;
      letter-spacing: -0.02em; } }
  @media screen and (min-width: 1280px) {
    
    .f-display-6 {
      font-size: 16rem;
      line-height: 0.85;
      --line-height: 217.6px;
      font-weight: 600;
      letter-spacing: -0.02em; } }


.f-display-7 {
  font-size: 4.5rem;
  line-height: 0.9;
  --line-height: 64.8px;
  font-weight: 600;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-feature-settings: "salt";
  font-kerning: normal; }
  
  .f-display-7 b,
  .f-display-7 strong {
    font-weight: 500; }
  
  .f-display-7 i,
  .f-display-7 em {
    font-style: italic; }
  .s-neue-haas-grotesk-display-loaded
  .f-display-7 {
    font-family: "neue-haas-grotesk-display", sans-serif; }

/***

f-body-1

```
<p class="f-body-1">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-body-1 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-body-1 b,
  .f-body-1 strong {
    font-weight: 500; }
  
  .f-body-1 i,
  .f-body-1 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-body-1 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-body-2

```
<p class="f-body-2">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-body-2 {
  font-size: 1rem;
  line-height: 1.6;
  --line-height: 25.6px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-body-2 b,
  .f-body-2 strong {
    font-weight: 500; }
  
  .f-body-2 i,
  .f-body-2 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-body-2 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-body-3

```
<p class="f-body-3">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-body-3 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-body-3 b,
  .f-body-3 strong {
    font-weight: 500; }
  
  .f-body-3 i,
  .f-body-3 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-body-3 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-body-4

```
<p class="f-body-4">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-body-4 {
  font-size: 0.875rem;
  line-height: 1.6;
  --line-height: 22.4px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-body-4 b,
  .f-body-4 strong {
    font-weight: 500; }
  
  .f-body-4 i,
  .f-body-4 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-body-4 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-ui-1

```
<p class="f-ui-1">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-ui-1 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt";
  --font-family: neue-haas-grotesk-text, sans-serif;
  --font-size: 16px;
  --font-weight: 500; }
  
  .f-ui-1 b,
  .f-ui-1 strong {
    font-weight: 500; }
  
  .f-ui-1 i,
  .f-ui-1 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-ui-1 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-ui-2

```
<p class="f-ui-2">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-ui-2 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-ui-2 b,
  .f-ui-2 strong {
    font-weight: 500; }
  
  .f-ui-2 i,
  .f-ui-2 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-ui-2 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-ui-3

```
<p class="f-ui-3">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-ui-3 {
  font-size: 0.75rem;
  line-height: 1.3;
  --line-height: 15.6px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt";
  text-transform: uppercase; }
  
  .f-ui-3 b,
  .f-ui-3 strong {
    font-weight: 500; }
  
  .f-ui-3 i,
  .f-ui-3 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-ui-3 {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  @media screen and (min-width: 1280px) {
    
    .f-ui-3 {
      font-size: 0.8125rem;
      line-height: 1.3;
      --line-height: 16.9px;
      font-weight: 500;
      letter-spacing: 0em; } }

/***

f-ui-4

```
<p class="f-ui-4">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-ui-4 {
  font-size: 0.875rem;
  line-height: 1.3;
  --line-height: 18.2px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-ui-4 b,
  .f-ui-4 strong {
    font-weight: 500; }
  
  .f-ui-4 i,
  .f-ui-4 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-ui-4 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

/***

f-ui-5

```
<p class="f-ui-5">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-ui-5 {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-ui-5 b,
  .f-ui-5 strong {
    font-weight: 500; }
  
  .f-ui-5 i,
  .f-ui-5 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-ui-5 {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  @media screen and (min-width: 768px) {
    
    .f-ui-5 {
      font-size: 1.5rem;
      line-height: 1.2;
      --line-height: 28.8px;
      font-weight: 600;
      letter-spacing: 0em; }
      .s-neue-haas-grotesk-display-loaded
      .f-ui-5 {
        font-family: "neue-haas-grotesk-display", sans-serif; } }
  @media screen and (min-width: 1280px) {
    
    .f-ui-5 {
      font-size: 1.75rem;
      line-height: 1.125;
      --line-height: 31.5px;
      font-weight: 600;
      letter-spacing: 0em; }
      .s-neue-haas-grotesk-display-loaded
      .f-ui-5 {
        font-family: "neue-haas-grotesk-display", sans-serif; } }

/***

f-ui-6

```
<p class="f-ui-6">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/

.f-ui-6 {
  font-size: 0.75rem;
  line-height: 1.3;
  --line-height: 15.6px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  
  .f-ui-6 b,
  .f-ui-6 strong {
    font-weight: 500; }
  
  .f-ui-6 i,
  .f-ui-6 em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded
  .f-ui-6 {
    font-family: "neue-haas-grotesk-text", sans-serif; }

:root {
  --sticky--avoid: 0px;
  --viewport-height: 100vh;
  --popper--align: left;
  --color--background: #fff;
  --color--background--sticky: #fff;
  --color--background--hover: #f8fafb;
  --color--background--contrast: #f1f4f7;
  --color--background--transparent: rgba(255, 255, 255, 0);
  --color--background--autofill: #f1f4f7;
  --color--text: #181a1c;
  --color--text--placeholder: #687078;
  --color--text--aux: #687078;
  --color--text--disabled: #bec7d0;
  --color--rules--primary: #9e9e9e;
  --color--rules--secondary: #e6e6e6;
  --color--rules--disabled: #e3e8ee;
  --color--rules--input: #cccccc;
  --color--rules--input--hover: #1a1a1a;
  --color--rules--input--disabled: #e6e6e6;
  --color--action: #009bdb;
  --color--action__contrast: #fff;
  --color--error: rgba(255, 12, 62, 0.8);
  --color--outline: #181a1c;
  --color--image: #f1f4f7;
  --color--icon--aux: #89939c;
  --color--icon--action: #009bdb;
  --color--icon--disabled: #d2d9e1;
  --color--dropdown--background: #181a1c;
  --color--dropdown--text: #f8fafb;
  --color--dropdown--text--aux: #89939c;
  --color--dropdown--rules: #424242;
  --color--dropdown--selected: #42474c;
  --color--link: #009bdb;
  --color--link--outline: #d2d9e1;
  --color--link--hover: #687078;
  --color--link--disabled: #999999;
  --color--link__underline: #2fb3ea;
  --color--link__underline--hover: #009bdb;
  --color--link__underline--disabled: #e6e6e6;
  --color--link__icon--disabled: #e6e6e6;
  --color--nav-link: #181a1c;
  --color--nav-link--hover: #687078;
  --color--primary-button__background: #181a1c;
  --color--primary-button__foreground: #fff;
  --color--primary-button__outline: #181a1c;
  --color--primary-button__border: #181a1c;
  --color--primary-button--hover__background: #42474c;
  --color--primary-button--hover__foreground: #fff;
  --color--primary-button--hover__border: #42474c;
  --color--primary-button--disabled__background: #f1f4f7;
  --color--primary-button--disabled__foreground: #a6afb9;
  --color--primary-button--disabled__border: #f1f4f7;
  --color--secondary-button__background: #fff;
  --color--secondary-button__foreground: #181a1c;
  --color--secondary-button__border: #cccccc;
  --color--secondary-button--hover__background: #181a1c;
  --color--secondary-button--hover__border: #181a1c;
  --color--secondary-button--hover__foreground: #fff;
  --color--secondary-button--focus__background: #181a1c;
  --color--secondary-button--focus__border: #181a1c;
  --color--secondary-button--focus__foreground: #fff;
  --color--secondary-button--disabled__foreground: #999999;
  --color--secondary-button--disabled__border: #e3e8ee; }

#a17 {
  --sticky--avoid: 64px; }
  @media screen and (min-width: 768px) {
    #a17 {
      --sticky--avoid: 80px; } }

body {
  /* juggling left/right and margin left/right as 100vw includes scroll bars so forcing 100vw width to make grid colspan calcs work */
  overflow-x: hidden;
  overflow-y: scroll;
  border-style: solid;
  color: var(--color--text);
  border-color: var(--color--rules--secondary);
  outline-color: var(--color--outline);
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-feature-settings: "kern";
  font-kerning: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%; }
  @media screen {
    body {
      position: relative;
      left: 50%;
      right: 50%;
      width: 100vw;
      min-height: 100vh;
      margin-right: -50vw;
      margin-left: -50vw; } }
  body::after {
    position: absolute;
    left: -1px;
    top: -1px;
    width: 1px;
    height: 1px;
    margin-top: -1px;
    margin-left: -1px;
    color: transparent;
    font: 0/0 a;
    text-shadow: none; }

@media screen and (max-width: 544px) {
  head {
    font-family: "xsmall"; }
  body::after {
    content: "xsmall"; } }

@media screen and (min-width: 544px) and (max-width: 768px) {
  head {
    font-family: "small"; }
  body::after {
    content: "small"; } }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  head {
    font-family: "medium"; }
  body::after {
    content: "medium"; } }

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  head {
    font-family: "large"; }
  body::after {
    content: "large"; } }

@media screen and (min-width: 1280px) and (max-width: 1460px) {
  head {
    font-family: "xlarge"; }
  body::after {
    content: "xlarge"; } }

@media screen and (min-width: 1460px) and (max-width: 1700px) {
  head {
    font-family: "xxlarge"; }
  body::after {
    content: "xxlarge"; } }

@media screen and (min-width: 1700px) {
  head {
    font-family: "xxxlarge"; }
  body::after {
    content: "xxxlarge"; } }

#root {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  #root b,
  #root strong {
    font-weight: 500; }
  #root i,
  #root em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded #root {
    font-family: "neue-haas-grotesk-text", sans-serif; }

@media screen and (max-width: 544px) {
  .o-global-header ~ #content {
    --global-header-height: 64px; } }

@media screen and (min-width: 544px) and (max-width: 768px) {
  .o-global-header ~ #content {
    --global-header-height: 64px; } }

@media screen and (min-width: 768px) {
  .o-global-header ~ #content {
    --global-header-height: 112px; } }

@media screen and (min-width: 1280px) {
  .o-global-header ~ #content {
    --global-header-height: 112px; } }

.a-btn {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border-width: 0;
  border-radius: 0;
  background-color: transparent;
  white-space: nowrap;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt";
  --font-family: neue-haas-grotesk-text, sans-serif;
  --font-size: 16px;
  --font-weight: 500;
  justify-content: space-between;
  padding-left: 23px;
  padding-right: 23px;
  padding-top: 16px;
  padding-bottom: 16px; }
  .a-btn::-moz-focus-inner {
    border: 0; }
  .a-btn b,
  .a-btn strong {
    font-weight: 500; }
  .a-btn i,
  .a-btn em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded .a-btn {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  .a-btn:focus[data-focus-method="key"] {
    outline: 1px solid var(--color--outline);
    outline-offset: 4px; }
  .a-btn__icon {
    display: flex;
    margin-left: 8px; }
  .a-btn:disabled .a-btn__icon {
    color: inherit; }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .a-btn {
      padding-top: 18px;
      padding-bottom: 18px; } }
  @media screen and (min-width: 1024px) {
    .a-btn {
      padding-top: 20px;
      padding-bottom: 20px;
      min-width: 146px; } }
  .a-btn .icon--arrow--md-right {
    transition: transform 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .a-btn:not(:disabled):not(.a-btn--disabled):hover .icon--arrow--md-right {
    transform: translateX(4px); }
  .a-btn--primary {
    background-color: var(--color--primary-button__background);
    color: var(--color--primary-button__foreground);
    position: relative;
    border: 2px solid var(--color--primary-button__border);
    transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), background-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), border-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .a-btn--primary svg {
      color: var(--color--action); }
      .a-btn--primary svg[class^="icon--social"] {
        color: var(--color--primary-button__foreground); }
    .a-btn--primary:active {
      background-color: var(--color--primary-button__background);
      color: var(--color--primary-button__foreground);
      border-color: var(--color--primary-button__border); }
    .a-btn--primary:not(:disabled):not(.a-btn--primary--disabled):hover {
      background-color: var(--color--primary-button--hover__background);
      color: var(--color--primary-button--hover__foreground);
      border-color: var(--color--primary-button--hover__border); }
      .a-btn--primary:not(:disabled):not(.a-btn--primary--disabled):hover svg[class^="icon--social"] {
        color: var(--color--primary-button--hover__foreground); }
    .a-btn--primary--disabled, .a-btn--primary:disabled {
      background-color: var(--color--primary-button--disabled__background);
      color: var(--color--primary-button--disabled__foreground);
      cursor: default;
      border-color: var(--color--primary-button--disabled__border); }
      .a-btn--primary--disabled svg, .a-btn--primary:disabled svg {
        color: var(--color--icon--disabled); }
  .a-btn--secondary {
    background-color: var(--color--secondary-button__background);
    color: var(--color--secondary-button__foreground);
    position: relative;
    border: 2px solid var(--color--secondary-button__border);
    transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), background-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), border-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .a-btn--secondary svg {
      color: var(--color--action); }
      .a-btn--secondary svg[class^="icon--social"] {
        color: var(--color--secondary-button__foreground); }
    .a-btn--secondary:active {
      background-color: var(--color--secondary-button__background);
      color: var(--color--secondary-button__foreground);
      border-color: var(--color--secondary-button__border); }
    .a-btn--secondary:focus[data-focus-method="key"] {
      background-color: var(--color--secondary-button--focus__background);
      color: var(--color--secondary-button--focus__foreground);
      border-color: var(--color--secondary-button--focus__border); }
    .a-btn--secondary:not(:disabled):not(.a-btn--secondary--disabled):hover {
      background-color: var(--color--secondary-button--hover__background);
      color: var(--color--secondary-button--hover__foreground);
      border-color: var(--color--secondary-button--hover__border); }
      .a-btn--secondary:not(:disabled):not(.a-btn--secondary--disabled):hover svg[class^="icon--social"] {
        color: var(--color--secondary-button--hover__foreground); }
    .a-btn--secondary--disabled, .a-btn--secondary:disabled {
      color: var(--color--secondary-button--disabled__foreground);
      cursor: default;
      border-color: var(--color--secondary-button--disabled__border); }
      .a-btn--secondary--disabled svg, .a-btn--secondary:disabled svg {
        color: var(--color--icon--disabled); }
  .a-btn--sm {
    padding-top: 16px;
    padding-bottom: 16px; }
  .a-btn--md {
    padding-top: 18px;
    padding-bottom: 18px; }
  .a-btn--lg {
    padding-top: 20px;
    padding-bottom: 20px;
    min-width: 146px; }

.a-visually-hidden {
  border: 0;
  clip-path: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

@keyframes beating {
  0% {
    transform: scale(0.5); }
  50% {
    transform: scale(1); }
  100% {
    transform: scale(0.5); } }

.a-loader {
  display: inline-block;
  color: var(--color--action); }
  .is-loading .a-loader, .a-loader.is-active {
    animation: beating 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1); }

.a-link-strong {
  display: inline-flex;
  align-items: center;
  transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), background-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), border-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt";
  --font-family: neue-haas-grotesk-text, sans-serif;
  --font-size: 16px;
  --font-weight: 500; }
  .a-link-strong b,
  .a-link-strong strong {
    font-weight: 500; }
  .a-link-strong i,
  .a-link-strong em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded .a-link-strong {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  .a-link-strong__icon {
    display: flex; }
  .a-link-strong .icon {
    transition: transform 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .a-link-strong--secondary:not(.a-link-strong--disabled) .icon--arrow--md-right {
    transform: translateX(-4px); }
  .a-link-strong--secondary:not(.a-link-strong--disabled):hover .icon--arrow--md-right {
    transform: none; }
  .a-link-strong--primary .a-link-strong__icon {
    margin-left: 12px; }
  .a-link-strong--secondary:focus[data-focus-method="key"] {
    outline: 1px solid var(--color--outline);
    outline-offset: 4px; }
  .a-link-strong--secondary .a-link-strong__icon {
    color: var(--color--action);
    margin-left: 8px; }
  .a-link-strong--disabled {
    color: var(--color--link--disabled);
    cursor: default; }
  .a-link-strong--disabled .a-link-strong__icon {
    color: var(--color--link__icon--disabled); }

.a-icon {
  position: relative; }
  .a-icon--circled {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative; }
    .a-icon--circled:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border-width: 2px;
      transition: inherit; }
    .a-icon--circled svg {
      position: relative;
      z-index: 1; }
  .a-icon svg {
    display: block; }

.social--twitter svg {
  color: #00acee !important; }

.social--linkedin svg {
  color: #0e76a8 !important; }

.a-link-sm {
  min-height: var(--line-height);
  transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), background-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), border-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt";
  border-bottom-width: 1px;
  border-bottom-color: var(--color--link__underline); }
  .a-link-sm:focus[data-focus-method="key"] {
    outline: 1px solid var(--color--outline);
    outline-offset: 4px; }
  .a-link-sm b,
  .a-link-sm strong {
    font-weight: 500; }
  .a-link-sm i,
  .a-link-sm em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded .a-link-sm {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  .a-link-sm:hover {
    color: var(--color--link--hover);
    border-bottom-color: var(--color--link__underline--hover); }
  .a-link-sm:active {
    color: inherit; }
  .a-link-sm--disabled {
    pointer-events: none;
    cursor: default;
    color: var(--color--link--disabled);
    background-image: linear-gradient(to bottom, transparent calc(var(--line-height) - 1px), var(--color--link__underline--disabled) calc(var(--line-height) - 1px), var(--color--link__underline--disabled) var(--line-height));
    background-repeat: repeat;
    background-position: 0 calc(var(--line-height) - 1px);
    background-size: 1px var(--line-height);
    text-decoration: none; }

.a-image {
  position: relative;
  padding-bottom: 100%;
  background-color: var(--color--image); }
  .a-image--16\:9 {
    padding-bottom: 56.25%; }
  @media screen and (max-width: 544px) {
    .a-image--16\:9\@xsmall {
      padding-bottom: 56.25%; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .a-image--16\:9\@small {
      padding-bottom: 56.25%; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .a-image--16\:9\@medium {
      padding-bottom: 56.25%; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .a-image--16\:9\@large {
      padding-bottom: 56.25%; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .a-image--16\:9\@xlarge {
      padding-bottom: 56.25%; } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .a-image--16\:9\@xxlarge {
      padding-bottom: 56.25%; } }
  @media screen and (min-width: 1700px) {
    .a-image--16\:9\@xxxlarge {
      padding-bottom: 56.25%; } }
  .a-image--3\:2 {
    padding-bottom: 66.66667%; }
  @media screen and (max-width: 544px) {
    .a-image--3\:2\@xsmall {
      padding-bottom: 66.66667%; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .a-image--3\:2\@small {
      padding-bottom: 66.66667%; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .a-image--3\:2\@medium {
      padding-bottom: 66.66667%; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .a-image--3\:2\@large {
      padding-bottom: 66.66667%; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .a-image--3\:2\@xlarge {
      padding-bottom: 66.66667%; } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .a-image--3\:2\@xxlarge {
      padding-bottom: 66.66667%; } }
  @media screen and (min-width: 1700px) {
    .a-image--3\:2\@xxxlarge {
      padding-bottom: 66.66667%; } }
  .a-image--1\:1 {
    padding-bottom: 100%; }
  @media screen and (max-width: 544px) {
    .a-image--1\:1\@xsmall {
      padding-bottom: 100%; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .a-image--1\:1\@small {
      padding-bottom: 100%; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .a-image--1\:1\@medium {
      padding-bottom: 100%; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .a-image--1\:1\@large {
      padding-bottom: 100%; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .a-image--1\:1\@xlarge {
      padding-bottom: 100%; } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .a-image--1\:1\@xxlarge {
      padding-bottom: 100%; } }
  @media screen and (min-width: 1700px) {
    .a-image--1\:1\@xxxlarge {
      padding-bottom: 100%; } }
  .a-image--13\:6 {
    padding-bottom: 46.15385%; }
  @media screen and (max-width: 544px) {
    .a-image--13\:6\@xsmall {
      padding-bottom: 46.15385%; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .a-image--13\:6\@small {
      padding-bottom: 46.15385%; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .a-image--13\:6\@medium {
      padding-bottom: 46.15385%; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .a-image--13\:6\@large {
      padding-bottom: 46.15385%; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .a-image--13\:6\@xlarge {
      padding-bottom: 46.15385%; } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .a-image--13\:6\@xxlarge {
      padding-bottom: 46.15385%; } }
  @media screen and (min-width: 1700px) {
    .a-image--13\:6\@xxxlarge {
      padding-bottom: 46.15385%; } }
  .a-image__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .a-image__img.is-loaded {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }

.a-video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden; }
  .a-video > iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; }

.m-article-item {
  position: relative; }
  @media screen and (max-width: 544px) {
    .m-article-item {
      width: calc(100vw - 32px); } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .m-article-item {
      width: calc(100vw - 32px); } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .m-article-item {
      width: calc((((100vw - 160px) / 8) * 4) + 48px); } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .m-article-item {
      width: calc((((100vw - 268px) / 12) * 3) + 40px); } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .m-article-item {
      width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .m-article-item {
      width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
  @media screen and (min-width: 1700px) {
    .m-article-item {
      width: 382px; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .m-article-item--wide {
      width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .m-article-item--large {
      width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .m-article-item--large {
      width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .m-article-item--large {
      width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
  @media screen and (min-width: 1700px) {
    .m-article-item--large {
      width: 788px; } }
  .m-article-item__inner {
    margin-left: -16px;
    margin-top: -12px; }
    .m-article-item__inner > * {
      padding-left: 16px; }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .m-article-item__inner {
        margin-left: -16px; }
        .m-article-item__inner > * {
          padding-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-article-item__inner {
        margin-left: -16px; }
        .m-article-item__inner > * {
          padding-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .m-article-item__inner {
        margin-left: -20px; }
        .m-article-item__inner > * {
          padding-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-article-item__inner {
        margin-left: -24px; }
        .m-article-item__inner > * {
          padding-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-article-item__inner {
        margin-left: -24px; }
        .m-article-item__inner > * {
          padding-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .m-article-item__inner {
        margin-left: -24px; }
        .m-article-item__inner > * {
          padding-left: 24px; } }
    .m-article-item__inner > * {
      margin-top: 12px; }
    @media screen and (min-width: 768px) {
      .m-article-item__inner {
        margin-top: -16px; }
        .m-article-item__inner > * {
          margin-top: 16px; } }
    @media screen and (min-width: 1280px) {
      .m-article-item__inner {
        margin-top: -20px; }
        .m-article-item__inner > * {
          margin-top: 20px; } }
  .m-article-item__image-inner {
    position: relative; }
  .m-article-item__icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .m-article-item:focus-within .m-article-item__icon,
  .m-article-item:hover .m-article-item__icon {
    color: var(--color--action); }
  .m-article-item__eyebrow {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    --font-family: neue-haas-grotesk-text, sans-serif;
    --font-size: 16px;
    --font-weight: 500;
    text-transform: capitalize;
    color: var(--color--text--aux); }
    .m-article-item__eyebrow b,
    .m-article-item__eyebrow strong {
      font-weight: 500; }
    .m-article-item__eyebrow i,
    .m-article-item__eyebrow em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .m-article-item__eyebrow {
      font-family: "neue-haas-grotesk-text", sans-serif; }
  .m-article-item__eyebrow + .m-article-item__title {
    padding-top: 4px; }
  .m-article-item__title {
    font-size: 1.5rem;
    line-height: 1.2;
    --line-height: 28.8px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt"; }
    .m-article-item__title b,
    .m-article-item__title strong {
      font-weight: 500; }
    .m-article-item__title i,
    .m-article-item__title em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .m-article-item__title {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    .s-neue-haas-grotesk-display-loaded .m-article-item__title {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 768px) {
      .m-article-item__title {
        font-size: 1.25rem;
        line-height: 1.2;
        --line-height: 24px;
        font-weight: 600; }
        .s-neue-haas-grotesk-display-loaded .m-article-item__title {
          font-family: "neue-haas-grotesk-display", sans-serif; } }
    @media screen and (min-width: 1280px) {
      .m-article-item__title {
        font-size: 1.5rem;
        line-height: 1.2;
        --line-height: 28.8px;
        font-weight: 600;
        letter-spacing: 0em; }
        .s-neue-haas-grotesk-display-loaded .m-article-item__title {
          font-family: "neue-haas-grotesk-display", sans-serif; } }
  .m-article-item__deck {
    padding-top: 8px; }
    @media screen and (min-width: 1280px) {
      .m-article-item__deck {
        padding-top: 12px; } }
  .m-article-item__actions {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    flex: 1;
    margin-left: -24px;
    margin-top: -24px; }
    .m-article-item__actions > * {
      padding-top: 24px;
      padding-left: 24px; }
    @media print {
      .m-article-item__actions {
        display: none; } }
    .m-article-item__actions > :only-child a {
      position: static; }
      .m-article-item__actions > :only-child a:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px; }
  @media (hover: hover) {
    .m-article-item--hover .m-article-item__actions {
      transition: opacity 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
      opacity: 0; }
    .m-article-item--hover:focus-within .m-article-item__actions,
    .m-article-item--hover:hover .m-article-item__actions {
      opacity: 1; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .m-article-item--wide .m-article-item__inner {
      display: flex; }
    .m-article-item--wide .m-article-item__image,
    .m-article-item--wide .m-article-item__main {
      flex: 1; } }

.m-search-bar {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 18px;
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt"; }
  .m-search-bar b,
  .m-search-bar strong {
    font-weight: 500; }
  .m-search-bar i,
  .m-search-bar em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded .m-search-bar {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  @media screen and (min-width: 768px) {
    .m-search-bar {
      font-size: 1.25rem;
      line-height: 1.25;
      --line-height: 25px;
      font-weight: 500;
      letter-spacing: 0em; } }
  .m-search-bar__quotes {
    order: -1;
    pointer-events: none; }
    .m-search-bar__quotes:before {
      content: "“"; }
    .m-search-bar__quotes > * {
      position: absolute;
      color: transparent; }
      .m-search-bar__quotes > *:after {
        color: var(--color--text);
        content: "”"; }
  .m-search-bar::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border-bottom: 2px solid var(--color--rules--primary); }
  .m-search-bar__label {
    display: none; }
  .m-search-bar__input {
    flex: 1;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit; }
    .m-search-bar__input::-ms-clear {
      display: none; }
    .m-search-bar__input::-webkit-input-placeholder {
      color: var(--color--text--placeholder); }
    .m-search-bar__input::-moz-placeholder {
      color: var(--color--text--placeholder); }
    .m-search-bar__input:-moz-placeholder {
      color: var(--color--text--placeholder); }
    .m-search-bar__input:-ms-input-placeholder {
      color: var(--color--text--placeholder); }
  .m-search-bar__btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
    .m-search-bar__btn::-moz-focus-inner {
      border: 0; }
    .m-search-bar__btn:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
  .m-search-bar__clear {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.3;
    --line-height: 15.6px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    text-transform: uppercase;
    margin-right: 24px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: auto; }
    .m-search-bar__clear::-moz-focus-inner {
      border: 0; }
    .m-search-bar__clear b,
    .m-search-bar__clear strong {
      font-weight: 500; }
    .m-search-bar__clear i,
    .m-search-bar__clear em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .m-search-bar__clear {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    @media screen and (min-width: 1280px) {
      .m-search-bar__clear {
        font-size: 0.8125rem;
        line-height: 1.3;
        --line-height: 16.9px;
        font-weight: 500;
        letter-spacing: 0em; } }
    .m-search-bar__clear:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
  .m-search-bar:focus-within .m-search-bar__input:not(:placeholder-shown) ~ .m-search-bar__clear {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }

.m-listing-item {
  display: flex;
  flex-flow: row wrap; }
  @media screen and (max-width: 544px) {
    .m-listing-item {
      margin-left: -16px; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .m-listing-item {
      margin-left: -16px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .m-listing-item {
      margin-left: -16px; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .m-listing-item {
      margin-left: -20px; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .m-listing-item {
      margin-left: -24px; } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .m-listing-item {
      margin-left: -24px; } }
  @media screen and (min-width: 1700px) {
    .m-listing-item {
      margin-left: -24px; } }
  .m-listing-item a {
    position: relative;
    z-index: 1; }
  .m-listing-item__meta {
    padding-top: 12px; }
    @media screen and (min-width: 768px) {
      .m-listing-item__meta {
        padding-top: 16px; } }
  .m-listing-item__main {
    padding-top: 8px; }
    @media screen and (min-width: 768px) {
      .m-listing-item__main {
        padding-top: 16px; } }
    .m-listing-item__main:only-child {
      padding-top: 16px; }
  .m-listing-item__meta {
    width: 100%;
    flex: 0 0 auto; }
    @media screen and (max-width: 544px) {
      .m-listing-item__meta {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .m-listing-item__meta {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-listing-item__meta {
        width: calc((((100vw - 160px) / 8) * 4) + 48px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .m-listing-item__meta {
        width: calc((((100vw - 268px) / 12) * 6) + 100px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-listing-item__meta {
        width: calc((((100vw - 336px) / 12) * 6) + 120px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-listing-item__meta {
        width: calc((((100vw - 336px) / 12) * 6) + 120px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .m-listing-item__meta {
        width: 788px;
        margin-left: 24px; } }
  .m-listing-item__meta-grid {
    display: flex;
    flex-flow: row wrap;
    margin-top: -8px; }
    @media screen and (max-width: 544px) {
      .m-listing-item__meta-grid {
        margin-left: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .m-listing-item__meta-grid {
        margin-left: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-listing-item__meta-grid {
        margin-left: -16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .m-listing-item__meta-grid {
        margin-left: -20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-listing-item__meta-grid {
        margin-left: -24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-listing-item__meta-grid {
        margin-left: -24px; } }
    @media screen and (min-width: 1700px) {
      .m-listing-item__meta-grid {
        margin-left: -24px; } }
    .m-listing-item__meta-grid > * {
      padding-top: 8px; }
    @media screen and (min-width: 768px) {
      .m-listing-item__meta-grid {
        margin-top: -16px; }
        .m-listing-item__meta-grid > * {
          padding-top: 16px; } }
  .m-listing-item__meta-image {
    flex: 0 0 auto; }
    @media screen and (max-width: 544px) {
      .m-listing-item__meta-image {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .m-listing-item__meta-image {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-listing-item__meta-image {
        width: calc((((100vw - 160px) / 8) * 2) + 16px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .m-listing-item__meta-image {
        width: calc((((100vw - 268px) / 12) * 3) + 40px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-listing-item__meta-image {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-listing-item__meta-image {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .m-listing-item__meta-image {
        width: 382px;
        margin-left: 24px; } }
    @media screen and (max-width: 768px) {
      .m-listing-item__meta-image {
        padding-top: 16px; } }
    @media screen and (min-width: 768px) {
      .m-listing-item__meta-image {
        order: 1; } }
  .m-listing-item__meta-item {
    flex: 0 0 auto;
    flex-grow: 1; }
    @media screen and (max-width: 544px) {
      .m-listing-item__meta-item {
        width: calc((((100vw - 112px) / 6) * 3) + 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .m-listing-item__meta-item {
        width: calc((((100vw - 112px) / 6) * 3) + 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-listing-item__meta-item {
        width: calc((((100vw - 160px) / 8) * 2) + 16px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .m-listing-item__meta-item {
        width: calc((((100vw - 268px) / 12) * 3) + 40px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-listing-item__meta-item {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-listing-item__meta-item {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .m-listing-item__meta-item {
        width: 382px;
        margin-left: 24px; } }
    @media screen and (min-width: 768px) {
      .m-listing-item__meta-item {
        flex-grow: 0; } }
    .m-listing-item__meta-item--primary {
      font-size: 1rem;
      line-height: 1.5;
      --line-height: 24px;
      font-weight: 400;
      letter-spacing: 0em;
      font-variant-ligatures: common-ligatures;
      font-variant-numeric: oldstyle-nums;
      font-kerning: normal;
      font-feature-settings: "salt"; }
      .m-listing-item__meta-item--primary b,
      .m-listing-item__meta-item--primary strong {
        font-weight: 500; }
      .m-listing-item__meta-item--primary i,
      .m-listing-item__meta-item--primary em {
        font-style: italic; }
      .s-neue-haas-grotesk-text-loaded .m-listing-item__meta-item--primary {
        font-family: "neue-haas-grotesk-text", sans-serif; }
      @media screen and (min-width: 768px) {
        .m-listing-item__meta-item--primary {
          font-size: 1.5rem;
          line-height: 1.2;
          --line-height: 28.8px;
          font-weight: 600;
          letter-spacing: 0em; }
          .s-neue-haas-grotesk-display-loaded .m-listing-item__meta-item--primary {
            font-family: "neue-haas-grotesk-display", sans-serif; } }
      @media screen and (min-width: 1280px) {
        .m-listing-item__meta-item--primary {
          font-size: 1.75rem;
          line-height: 1.125;
          --line-height: 31.5px;
          font-weight: 600;
          letter-spacing: 0em; }
          .s-neue-haas-grotesk-display-loaded .m-listing-item__meta-item--primary {
            font-family: "neue-haas-grotesk-display", sans-serif; } }
      @media screen and (max-width: 544px) {
        .m-listing-item__meta-item--primary .m-term-list__inner {
          column-count: 2;
          column-gap: 16px; }
          .m-listing-item__meta-item--primary .m-term-list__inner > * {
            width: 100%;
            break-inside: avoid-column; }
            .m-listing-item__meta-item--primary .m-term-list__inner > * _::-webkit-full-page-media,
            .m-listing-item__meta-item--primary .m-term-list__inner > * _:future,
            :root .m-listing-item__meta-item--primary .m-term-list__inner > * {
              display: inline-block;
              -webkit-backface-visibility: hidden; }
            @supports not (break-inside: avoid-column) {
              .m-listing-item__meta-item--primary .m-term-list__inner > * {
                display: inline-block;
                page-break-inside: avoid; } }
            @supports (-ms-ime-align: auto) {
              .m-listing-item__meta-item--primary .m-term-list__inner > * {
                display: inline-block; } } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .m-listing-item__meta-item--primary .m-term-list__inner {
          column-count: 2;
          column-gap: 16px; }
          .m-listing-item__meta-item--primary .m-term-list__inner > * {
            width: 100%;
            break-inside: avoid-column; }
            .m-listing-item__meta-item--primary .m-term-list__inner > * _::-webkit-full-page-media,
            .m-listing-item__meta-item--primary .m-term-list__inner > * _:future,
            :root .m-listing-item__meta-item--primary .m-term-list__inner > * {
              display: inline-block;
              -webkit-backface-visibility: hidden; }
            @supports not (break-inside: avoid-column) {
              .m-listing-item__meta-item--primary .m-term-list__inner > * {
                display: inline-block;
                page-break-inside: avoid; } }
            @supports (-ms-ime-align: auto) {
              .m-listing-item__meta-item--primary .m-term-list__inner > * {
                display: inline-block; } } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .m-listing-item__meta-item--primary {
          padding-right: 50px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .m-listing-item__meta-item--primary {
          padding-right: 50px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .m-listing-item__meta-item--primary {
          padding-right: 100px; } }
      @media screen and (min-width: 1700px) {
        .m-listing-item__meta-item--primary {
          padding-right: 200px; } }
      .m-listing-item__meta-item--primary time {
        display: inline-block; }
    .m-listing-item__meta-item--secondary {
      display: none; }
      @media screen and (min-width: 768px) {
        .m-listing-item__meta-item--secondary {
          display: block; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-listing-item__meta-item:not(:first-child) > *:not(.a-image), .m-listing-item__meta-item:only-child > *:not(.a-image) {
        max-width: calc((((100vw - 336px) / 12) * 2) + 24px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-listing-item__meta-item:not(:first-child) > *:not(.a-image), .m-listing-item__meta-item:only-child > *:not(.a-image) {
        max-width: calc((((100vw - 336px) / 12) * 2) + 24px); } }
    @media screen and (min-width: 1700px) {
      .m-listing-item__meta-item:not(:first-child) > *:not(.a-image), .m-listing-item__meta-item:only-child > *:not(.a-image) {
        max-width: 246.66667px; } }
  .m-listing-item__main {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media screen and (max-width: 544px) {
      .m-listing-item__main {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .m-listing-item__main {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-listing-item__main {
        width: calc((((100vw - 160px) / 8) * 4) + 48px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .m-listing-item__main {
        width: calc((((100vw - 268px) / 12) * 6) + 100px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-listing-item__main {
        width: calc((((100vw - 336px) / 12) * 6) + 120px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-listing-item__main {
        width: calc((((100vw - 336px) / 12) * 6) + 120px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .m-listing-item__main {
        width: 788px;
        margin-left: 24px; } }
  .m-listing-item__header {
    position: relative; }
  .m-listing-item__expand-icon {
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative;
    color: var(--color--action);
    transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), background-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1), border-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
    box-sizing: content-box;
    position: absolute;
    top: 0;
    right: 0; }
    .m-listing-item__expand-icon::-moz-focus-inner {
      border: 0; }
    .m-listing-item__expand-icon:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border-width: 2px;
      transition: inherit; }
    .m-listing-item__expand-icon svg {
      position: relative;
      z-index: 1; }
    .m-listing-item__expand-icon use {
      opacity: 0;
      transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
    @media screen and (max-width: 1280px) {
      .m-listing-item__expand-icon {
        display: none; } }
    @media print {
      .m-listing-item__expand-icon {
        display: none; } }
  .m-listing-item:not(.m-listing-item--open) .m-listing-item__expand-icon,
  .m-listing-item:not(.m-listing-item--open) .m-listing-item__expand-icon svg {
    width: 16px;
    height: 16px; }
  .m-listing-item:not(.m-listing-item--open) .m-listing-item__expand-icon use.icon--action--md-plus {
    opacity: 1;
    transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .m-listing-item--open .m-listing-item__expand-icon,
  .m-listing-item--open .m-listing-item__expand-icon svg {
    width: 16px;
    height: 16px; }
  .m-listing-item--open .m-listing-item__expand-icon use.icon--action--md-minus {
    opacity: 1;
    transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .m-listing-item__expand-icon[data-focus-method="key"]:focus, .m-listing-item__expand-icon:hover {
    outline: none;
    color: var(--color--action__contrast); }
    .m-listing-item__expand-icon[data-focus-method="key"]:focus:before, .m-listing-item__expand-icon:hover:before {
      background-color: var(--color--action);
      border-color: var(--color--action); }
  .m-listing-item__title {
    font-size: 1.5rem;
    line-height: 1.2;
    --line-height: 28.8px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt"; }
    .m-listing-item__title b,
    .m-listing-item__title strong {
      font-weight: 500; }
    .m-listing-item__title i,
    .m-listing-item__title em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .m-listing-item__title {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 1280px) {
      .m-listing-item__title {
        font-size: 1.75rem;
        line-height: 1.125;
        --line-height: 31.5px;
        font-weight: 600;
        letter-spacing: 0em; } }
    .m-listing-item__title cite {
      font-style: italic; }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .m-listing-item:not(.m-listing-item--generic):not(.m-listing-item--primary) .m-listing-item__title {
      width: calc((((100vw - 336px) / 12) * 5) + 96px); } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .m-listing-item:not(.m-listing-item--generic):not(.m-listing-item--primary) .m-listing-item__title {
      width: calc((((100vw - 336px) / 12) * 5) + 96px); } }
  @media screen and (min-width: 1700px) {
    .m-listing-item:not(.m-listing-item--generic):not(.m-listing-item--primary) .m-listing-item__title {
      width: 652.66667px; } }
  @media screen and (min-width: 768px) {
    .m-listing-item__eyebrow + .m-listing-item__title {
      padding-top: 4px; } }
  @media screen and (min-width: 1280px) {
    .m-listing-item__eyebrow + .m-listing-item__title {
      padding-top: 8px; } }
  @media screen and (min-width: 1280px) {
    .m-listing-item__expand-icon + .m-listing-item__title {
      min-height: 56px; } }
  .m-listing-item__eyebrow {
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    color: var(--color--text--aux);
    text-transform: capitalize; }
    .m-listing-item__eyebrow b,
    .m-listing-item__eyebrow strong {
      font-weight: 500; }
    .m-listing-item__eyebrow i,
    .m-listing-item__eyebrow em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .m-listing-item__eyebrow {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    @media screen and (max-width: 768px) {
      .m-listing-item__eyebrow {
        display: none; } }
  .m-listing-item--small .m-listing-item__title {
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt"; }
    .m-listing-item--small .m-listing-item__title b,
    .m-listing-item--small .m-listing-item__title strong {
      font-weight: 500; }
    .m-listing-item--small .m-listing-item__title i,
    .m-listing-item--small .m-listing-item__title em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .m-listing-item--small .m-listing-item__title {
      font-family: "neue-haas-grotesk-text", sans-serif; }
  .m-listing-item__deck {
    padding-top: 12px; }
    @media screen and (min-width: 768px) {
      .m-listing-item__deck {
        padding-top: 24px; } }
  .m-listing-item__terms {
    padding-top: 16px; }
  .m-listing-item__excerpt {
    padding-top: 12px; }
    @media screen and (min-width: 1280px) {
      .m-listing-item__excerpt {
        padding-top: 16px; } }
  .m-listing-item__preview {
    display: none; }
    @media screen and (min-width: 1280px) {
      .m-listing-item__preview {
        display: block;
        height: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }
    @media print {
      .m-listing-item__preview {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1);
        display: block;
        height: auto !important; } }
  @media screen and (min-width: 1280px) {
    .m-listing-item__preview-text {
      padding-top: 24px; } }
  @media print {
    .m-listing-item__preview-text {
      padding-top: 24px; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .m-listing-item__preview-text--split {
      column-count: 2;
      column-gap: 24px; }
      .m-listing-item__preview-text--split > * {
        width: 100%;
        break-inside: avoid-column; }
        .m-listing-item__preview-text--split > * _::-webkit-full-page-media,
        .m-listing-item__preview-text--split > * _:future,
        :root .m-listing-item__preview-text--split > * {
          display: inline-block;
          -webkit-backface-visibility: hidden; }
        @supports not (break-inside: avoid-column) {
          .m-listing-item__preview-text--split > * {
            display: inline-block;
            page-break-inside: avoid; } }
        @supports (-ms-ime-align: auto) {
          .m-listing-item__preview-text--split > * {
            display: inline-block; } } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .m-listing-item__preview-text--split {
      column-count: 2;
      column-gap: 24px; }
      .m-listing-item__preview-text--split > * {
        width: 100%;
        break-inside: avoid-column; }
        .m-listing-item__preview-text--split > * _::-webkit-full-page-media,
        .m-listing-item__preview-text--split > * _:future,
        :root .m-listing-item__preview-text--split > * {
          display: inline-block;
          -webkit-backface-visibility: hidden; }
        @supports not (break-inside: avoid-column) {
          .m-listing-item__preview-text--split > * {
            display: inline-block;
            page-break-inside: avoid; } }
        @supports (-ms-ime-align: auto) {
          .m-listing-item__preview-text--split > * {
            display: inline-block; } } }
  @media screen and (min-width: 1700px) {
    .m-listing-item__preview-text--split {
      column-count: 2;
      column-gap: 24px; }
      .m-listing-item__preview-text--split > * {
        width: 100%;
        break-inside: avoid-column; }
        .m-listing-item__preview-text--split > * _::-webkit-full-page-media,
        .m-listing-item__preview-text--split > * _:future,
        :root .m-listing-item__preview-text--split > * {
          display: inline-block;
          -webkit-backface-visibility: hidden; }
        @supports not (break-inside: avoid-column) {
          .m-listing-item__preview-text--split > * {
            display: inline-block;
            page-break-inside: avoid; } }
        @supports (-ms-ime-align: auto) {
          .m-listing-item__preview-text--split > * {
            display: inline-block; } } }
  .m-listing-item--open .m-listing-item__preview {
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
  .m-listing-item__label {
    font-size: 0.75rem;
    line-height: 1.3;
    --line-height: 15.6px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    text-transform: uppercase;
    vertical-align: top;
    color: var(--color--text--aux); }
    .m-listing-item__label b,
    .m-listing-item__label strong {
      font-weight: 500; }
    .m-listing-item__label i,
    .m-listing-item__label em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .m-listing-item__label {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    @media screen and (min-width: 1280px) {
      .m-listing-item__label {
        font-size: 0.8125rem;
        line-height: 1.3;
        --line-height: 16.9px;
        font-weight: 500;
        letter-spacing: 0em; } }
  .m-listing-item__actions {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    flex: 1;
    margin-left: -24px;
    margin-top: -24px; }
    @media screen and (min-width: 768px) {
      .m-listing-item__actions {
        padding-top: 28px; } }
    @media screen and (min-width: 1280px) {
      .m-listing-item__actions {
        padding-top: 32px; } }
    .m-listing-item__actions > * {
      padding-top: 24px;
      padding-left: 24px; }
    @media print {
      .m-listing-item__actions {
        display: none; } }
  body:not(.research) .m-listing-item__actions-item:only-child a {
    position: static; }
    body:not(.research) .m-listing-item__actions-item:only-child a:before {
      content: "";
      position: absolute;
      top: 0px;
      left: 0px;
      bottom: 0px;
      right: 0px; }
  .m-listing-item--generic {
    flex-direction: row-reverse; }
  .m-listing-item--generic .m-listing-item__meta-grid {
    justify-content: flex-end; }
  .m-listing-item--generic .m-listing-item__excerpt {
    display: none; }
    @media screen and (min-width: 768px) {
      .m-listing-item--generic .m-listing-item__excerpt {
        display: block; } }
  .m-listing-item--generic .m-listing-item__meta-image {
    flex: 0 0 auto; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-listing-item--generic .m-listing-item__meta-image {
        width: calc((((100vw - 160px) / 8) * 3) + 32px);
        margin-left: 16px; } }
  .m-listing-item--generic .m-listing-item__actions {
    padding-top: 24px; }
    @media screen and (min-width: 768px) {
      .m-listing-item--generic .m-listing-item__actions {
        padding-top: 40px; } }
    @media screen and (min-width: 1280px) {
      .m-listing-item--generic .m-listing-item__actions {
        padding-top: 48px; } }
  .m-listing-item--generic .m-listing-item__main:only-child {
    flex: 0 0 auto; }
    @media screen and (max-width: 544px) {
      .m-listing-item--generic .m-listing-item__main:only-child {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .m-listing-item--generic .m-listing-item__main:only-child {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-listing-item--generic .m-listing-item__main:only-child {
        width: calc(100vw - 48px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .m-listing-item--generic .m-listing-item__main:only-child {
        width: calc(100vw - 48px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-listing-item--generic .m-listing-item__main:only-child {
        width: calc(100vw - 72px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-listing-item--generic .m-listing-item__main:only-child {
        width: calc(100vw - 72px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .m-listing-item--generic .m-listing-item__main:only-child {
        width: 1600px;
        margin-left: 24px; } }
  @media screen and (max-width: 544px) {
    .m-listing-item--generic .m-listing-item__main:only-child .m-listing-item__header {
      width: calc(100vw - 32px); } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .m-listing-item--generic .m-listing-item__main:only-child .m-listing-item__header {
      width: calc(100vw - 32px); } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .m-listing-item--generic .m-listing-item__main:only-child .m-listing-item__header {
      width: calc((((100vw - 160px) / 8) * 4) + 48px); } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .m-listing-item--generic .m-listing-item__main:only-child .m-listing-item__header {
      width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .m-listing-item--generic .m-listing-item__main:only-child .m-listing-item__header {
      width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .m-listing-item--generic .m-listing-item__main:only-child .m-listing-item__header {
      width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
  @media screen and (min-width: 1700px) {
    .m-listing-item--generic .m-listing-item__main:only-child .m-listing-item__header {
      width: 788px; } }
  .m-listing-item--generic .m-listing-item__main:only-child .m-listing-item__excerpt {
    padding-top: 0; }
  .m-listing-item--primary {
    align-items: flex-start; }
  @media screen and (min-width: 768px) {
    .m-listing-item--primary .m-listing-item__meta-item {
      display: none; } }
  .m-listing-item--primary .m-listing-item__meta-image {
    flex: 0 0 auto; }
    @media screen and (max-width: 544px) {
      .m-listing-item--primary .m-listing-item__meta-image {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .m-listing-item--primary .m-listing-item__meta-image {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-listing-item--primary .m-listing-item__meta-image {
        width: calc((((100vw - 160px) / 8) * 4) + 48px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .m-listing-item--primary .m-listing-item__meta-image {
        width: calc((((100vw - 268px) / 12) * 6) + 100px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-listing-item--primary .m-listing-item__meta-image {
        width: calc((((100vw - 336px) / 12) * 6) + 120px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-listing-item--primary .m-listing-item__meta-image {
        width: calc((((100vw - 336px) / 12) * 6) + 120px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .m-listing-item--primary .m-listing-item__meta-image {
        width: 788px;
        margin-left: 24px; } }
  .m-listing-item--primary .m-listing-item__title {
    font-size: 1.5rem;
    line-height: 1.125;
    --line-height: 27px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt"; }
    .m-listing-item--primary .m-listing-item__title b,
    .m-listing-item--primary .m-listing-item__title strong {
      font-weight: 500; }
    .m-listing-item--primary .m-listing-item__title i,
    .m-listing-item--primary .m-listing-item__title em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .m-listing-item--primary .m-listing-item__title {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 768px) {
      .m-listing-item--primary .m-listing-item__title {
        font-size: 2rem;
        line-height: 1.125;
        --line-height: 36px;
        font-weight: 600;
        letter-spacing: 0; } }
    @media screen and (min-width: 1280px) {
      .m-listing-item--primary .m-listing-item__title {
        font-size: 2.625rem;
        line-height: 1;
        --line-height: 42px;
        font-weight: 600;
        letter-spacing: 0em; } }
  @media screen and (min-width: 1280px) {
    .m-listing-item--primary .m-listing-item__eyebrow + .m-listing-item__title {
      padding-top: 12px; } }
  .m-listing-item--primary .m-listing-item__excerpt {
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 400;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt"; }
    .m-listing-item--primary .m-listing-item__excerpt b,
    .m-listing-item--primary .m-listing-item__excerpt strong {
      font-weight: 500; }
    .m-listing-item--primary .m-listing-item__excerpt i,
    .m-listing-item--primary .m-listing-item__excerpt em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .m-listing-item--primary .m-listing-item__excerpt {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    @media screen and (min-width: 768px) {
      .m-listing-item--primary .m-listing-item__excerpt {
        font-size: 1.25rem;
        line-height: 1.2;
        --line-height: 24px;
        font-weight: 400;
        letter-spacing: 0em; }
        .s-neue-haas-grotesk-display-loaded .m-listing-item--primary .m-listing-item__excerpt {
          font-family: "neue-haas-grotesk-display", sans-serif; } }
    @media screen and (min-width: 1024px) {
      .m-listing-item--primary .m-listing-item__excerpt {
        font-size: 1.5rem;
        line-height: 1.2;
        --line-height: 28.8px;
        font-weight: 400;
        letter-spacing: 0em; }
        .s-neue-haas-grotesk-display-loaded .m-listing-item--primary .m-listing-item__excerpt {
          font-family: "neue-haas-grotesk-display", sans-serif; } }
    @media screen and (min-width: 1280px) {
      .m-listing-item--primary .m-listing-item__excerpt {
        padding-top: 24px; } }
  .m-listing-item--primary .m-listing-item__main {
    justify-content: flex-start; }
  @media screen and (min-width: 1280px) {
    .m-listing-item--primary .m-listing-item__actions {
      padding-top: 20px; } }

.m-inline-form {
  margin-top: -32px; }
  .m-inline-form__field {
    padding-top: 32px; }
  @media screen and (min-width: 1280px) {
    .m-inline-form {
      display: flex;
      flex-flow: row wrap;
      align-items: flex-end; } }
  @media screen and (min-width: 1280px) and (max-width: 544px) {
    .m-inline-form {
      margin-left: -16px; } }
  @media screen and (min-width: 1280px) and (min-width: 544px) and (max-width: 768px) {
    .m-inline-form {
      margin-left: -16px; } }
  @media screen and (min-width: 1280px) and (min-width: 768px) and (max-width: 1024px) {
    .m-inline-form {
      margin-left: -16px; } }
  @media screen and (min-width: 1280px) and (min-width: 1024px) and (max-width: 1280px) {
    .m-inline-form {
      margin-left: -20px; } }
  @media screen and (min-width: 1280px) and (min-width: 1280px) and (max-width: 1460px) {
    .m-inline-form {
      margin-left: -24px; } }
  @media screen and (min-width: 1280px) and (min-width: 1460px) and (max-width: 1700px) {
    .m-inline-form {
      margin-left: -24px; } }
  @media screen and (min-width: 1280px) and (min-width: 1700px) {
    .m-inline-form {
      margin-left: -24px; } }
  @media screen and (min-width: 1280px) {
      .m-inline-form__field {
        flex: 0 0 auto; } }
    @media screen and (min-width: 1280px) and (min-width: 1280px) and (max-width: 1460px) {
      .m-inline-form__field {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1280px) and (min-width: 1460px) and (max-width: 1700px) {
      .m-inline-form__field {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1280px) and (min-width: 1700px) {
      .m-inline-form__field {
        width: 382px;
        margin-left: 24px; } }

.m-inline-form__field--submit {
  padding-top: 48px; }
  @media screen and (min-width: 1280px) {
    .m-inline-form__field--submit {
      padding-top: 32px; } }

.o-page-section--promotion {
  padding-bottom: 48px !important; }
  @media screen and (min-width: 1280px) {
    .o-page-section--promotion {
      padding-bottom: 64px !important; } }

.m-hero-feature {
  display: block;
  max-width: 320px; }
  .m-hero-feature:focus[data-focus-method="key"] {
    outline: 1px solid var(--color--outline);
    outline-offset: 4px; }
  .m-hero-feature__title {
    display: block;
    font-size: 1rem;
    line-height: 1.25;
    --line-height: 20px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt"; }
    .m-hero-feature__title b,
    .m-hero-feature__title strong {
      font-weight: 500; }
    .m-hero-feature__title i,
    .m-hero-feature__title em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .m-hero-feature__title {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    @media screen and (min-width: 1024px) {
      .m-hero-feature__title {
        font-size: 1.25rem;
        line-height: 1.2;
        --line-height: 24px;
        font-weight: 500;
        letter-spacing: 0em; } }
  .m-hero-feature__action {
    display: none;
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    color: var(--color--nav-link--hover);
    padding-top: 4px; }
    .m-hero-feature__action b,
    .m-hero-feature__action strong {
      font-weight: 500; }
    .m-hero-feature__action i,
    .m-hero-feature__action em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .m-hero-feature__action {
      font-family: "neue-haas-grotesk-text", sans-serif; }
  @media screen and (min-width: 1024px) {
    .m-hero-feature {
      margin-top: -24px; }
      .m-hero-feature:focus, .m-hero-feature:hover {
        transform: none; }
      .m-hero-feature__title {
        transition: transform 225ms cubic-bezier(0, 0, 0.2, 1);
        transform: translateY(24px); }
      .m-hero-feature:focus[data-focus-method="key"] .m-hero-feature__title,
      .m-hero-feature:hover .m-hero-feature__title {
        transform: none; }
      .m-hero-feature__action {
        display: block;
        opacity: 0;
        transition: opacity 225ms cubic-bezier(0, 0, 0.2, 1); }
      .m-hero-feature:focus[data-focus-method="key"] .m-hero-feature__action,
      .m-hero-feature:hover .m-hero-feature__action {
        opacity: 1; } }

.m-footer-nav {
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt";
  margin-top: -32px;
  display: flex;
  flex-flow: row wrap; }
  .m-footer-nav b,
  .m-footer-nav strong {
    font-weight: 500; }
  .m-footer-nav i,
  .m-footer-nav em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded .m-footer-nav {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  .m-footer-nav > * {
    padding-top: 32px; }
  @media screen and (min-width: 768px) {
    .m-footer-nav {
      margin-top: -40px; }
      .m-footer-nav > * {
        padding-top: 40px; } }
  @media screen and (min-width: 1024px) {
    .m-footer-nav {
      margin-top: -48px; }
      .m-footer-nav > * {
        padding-top: 48px; } }
  @media screen and (max-width: 544px) {
    .m-footer-nav {
      margin-left: -16px; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .m-footer-nav {
      margin-left: -16px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .m-footer-nav {
      margin-left: -16px; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .m-footer-nav {
      margin-left: -20px; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .m-footer-nav {
      margin-left: -24px; } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .m-footer-nav {
      margin-left: -24px; } }
  @media screen and (min-width: 1700px) {
    .m-footer-nav {
      margin-left: -24px; } }
  .m-footer-nav__col {
    flex: 0 0 auto; }
    @media screen and (max-width: 544px) {
      .m-footer-nav__col {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .m-footer-nav__col {
        width: calc((((100vw - 112px) / 6) * 3) + 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .m-footer-nav__col {
        width: calc((((100vw - 160px) / 8) * 2) + 16px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .m-footer-nav__col {
        width: calc((((100vw - 268px) / 12) * 3) + 40px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .m-footer-nav__col {
        width: calc((((100vw - 336px) / 12) * 2) + 24px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .m-footer-nav__col {
        width: calc((((100vw - 336px) / 12) * 2) + 24px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .m-footer-nav__col {
        width: 246.66667px;
        margin-left: 24px; } }
  .m-footer-nav__links {
    backface-visibility: hidden;
    margin-top: -4px; }
    .m-footer-nav__links > * {
      padding-top: 4px; }
    @media (pointer: coarse) {
      .m-footer-nav__links {
        margin-top: -8px; }
        .m-footer-nav__links > * {
          padding-top: 8px; } }

.m-section-nav {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 500;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt";
  --font-family: neue-haas-grotesk-text, sans-serif;
  --font-size: 16px;
  --font-weight: 500;
  z-index: 1;
  color: var(--color--nav-link); }
  .m-section-nav b,
  .m-section-nav strong {
    font-weight: 500; }
  .m-section-nav i,
  .m-section-nav em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded .m-section-nav {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  .m-section-nav a {
    transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .m-section-nav a:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
    .m-section-nav a:hover {
      color: var(--color--nav-link--hover); }
  .m-section-nav__icon {
    flex-shrink: 0; }
  .m-section-nav__section span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  @media screen and (max-width: 768px) {
    .m-section-nav__section {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 20px 0; }
      .m-section-nav__section:focus[data-focus-method="key"] {
        outline: none; }
        .m-section-nav__section:focus[data-focus-method="key"] span {
          background-image: linear-gradient(to bottom, transparent calc(var(--line-height) - 1px), currentColor calc(var(--line-height) - 1px), currentColor var(--line-height));
          background-repeat: repeat;
          background-position: 0 100%;
          background-size: 1px var(--line-height);
          text-decoration: none; }
      .m-section-nav__section span {
        padding-right: 32px; }
    .m-section-nav__icon {
      margin-top: 2px;
      color: var(--color--icon--action);
      margin-right: 4px; }
    .m-section-nav__icon use {
      opacity: 0;
      transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
    .m-section-nav--open .m-section-nav__icon,
    .m-section-nav--open .m-section-nav__icon svg {
      width: 16px;
      height: 16px; }
    .m-section-nav--open .m-section-nav__icon use.icon--action--md-minus {
      opacity: 1;
      transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .m-section-nav:not(.m-section-nav--open) .m-section-nav__icon,
    .m-section-nav:not(.m-section-nav--open) .m-section-nav__icon svg {
      width: 16px;
      height: 16px; }
    .m-section-nav:not(.m-section-nav--open) .m-section-nav__icon use.icon--action--md-plus {
      opacity: 1;
      transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .m-section-nav__links {
      left: 0;
      right: 0;
      --color--background: #181a1c;
      --color--background--hover: #42474c;
      --color--background--sticky: transparent;
      --color--background--contrast: rgba(66, 71, 76, 0.1);
      --color--background--autofill: #42474c;
      --color--text: #fff;
      --color--text--aux: #89939c;
      --color--text--placeholder: #42474c;
      --color--rules--primary: #fff;
      --color--rules--secondary: #42474c;
      --color--rules--input: #42474c;
      --color--rules--input--hover: #f5f5f5;
      --color--rules--input--disabled: #181a1c;
      --color--outline: #fff;
      --color--image: #42474c;
      --color--icon--action: #687078;
      --color--dropdown--background: #42474c;
      --color--dropdown--text: #f8fafb;
      --color--dropdown--text--aux: #a6afb9;
      --color--dropdown--rules: #687078;
      --color--nav-link: #fff;
      --color--nav-link--hover: rgba(255, 255, 255, 0.8);
      --color--primary-button__background: #fff;
      --color--primary-button__foreground: #181a1c;
      --color--primary-button__outline: #fff;
      --color--primary-button__border: #fff;
      --color--primary-button--hover__background: #42474c;
      --color--primary-button--hover__foreground: #fff;
      --color--primary-button--hover__border: #42474c;
      --color--secondary-button__background: #181a1c;
      --color--secondary-button__foreground: #fff;
      --color--secondary-button__border: #42474c;
      --color--secondary-button--hover__background: #42474c;
      --color--secondary-button--hover__border: #42474c;
      color: var(--color--text);
      border-color: var(--color--rules--secondary);
      outline-color: var(--color--outline);
      background-color: var(--color--background);
      position: relative;
      color: var(--color--text--aux);
      position: absolute;
      padding: 8px 0 16px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
      .m-section-nav__links::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: -16px;
        right: -16px;
        background-color: inherit;
        pointer-events: none; } }
    @media screen and (max-width: 768px) and (max-width: 544px) {
      .m-section-nav__links::before {
        left: -16px;
        right: -16px; } }
    @media screen and (max-width: 768px) and (min-width: 544px) and (max-width: 768px) {
      .m-section-nav__links::before {
        left: -16px;
        right: -16px; } }
    @media screen and (max-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
      .m-section-nav__links::before {
        left: -24px;
        right: -24px; } }
    @media screen and (max-width: 768px) and (min-width: 1024px) and (max-width: 1280px) {
      .m-section-nav__links::before {
        left: -24px;
        right: -24px; } }
    @media screen and (max-width: 768px) and (min-width: 1280px) and (max-width: 1460px) {
      .m-section-nav__links::before {
        left: -36px;
        right: -36px; } }
    @media screen and (max-width: 768px) and (min-width: 1460px) and (max-width: 1700px) {
      .m-section-nav__links::before {
        left: -36px;
        right: -36px; } }
    @media screen and (max-width: 768px) and (min-width: 1700px) {
      .m-section-nav__links::before {
        left: calc((100vw - 1600px) / -2);
        right: calc((100vw - 1600px) / -2); } }
  @media screen and (max-width: 768px) {
      .m-section-nav__links > * {
        padding-top: 8px; }
        .m-section-nav__links > *.is-current {
          color: var(--color--text); }
      .m-section-nav__links a {
        transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
        .m-section-nav__links a:focus[data-focus-method="key"] {
          outline: 1px solid var(--color--outline);
          outline-offset: 4px; }
        .m-section-nav__links a:focus[data-focus-method="key"] {
          outline: 1px solid var(--color--outline);
          outline-offset: 4px; }
        .m-section-nav__links a:hover {
          color: var(--color--text); }
    .m-section-nav--open .m-section-nav__links {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
    .m-section-nav__foster {
      display: none; } }
  @media screen and (min-width: 768px) {
    .m-section-nav {
      display: flex;
      align-items: flex-start;
      justify-content: space-between; }
      .o-sticky.is-visible .m-section-nav--landing {
        animation: fade-in 300ms cubic-bezier(0.25, 0.1, 0.25, 1) 0s forwards; }
      .m-section-nav--landing .m-section-nav__section {
        display: none; }
      .m-section-nav__section,
      .m-section-nav__links > * > a {
        padding: 27px 0 29px; }
      .m-section-nav__section {
        display: flex;
        align-items: center;
        cursor: auto; }
        .m-section-nav__section:hover {
          color: inherit; }
        .m-section-nav__section:focus[data-focus-method="key"] {
          outline: none; }
          .m-section-nav__section:focus[data-focus-method="key"] span {
            outline: 1px solid;
            outline-offset: 4px; }
      .m-section-nav__icon {
        margin-left: 8px; }
        .m-section-nav__icon use {
          opacity: 0;
          transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
      .m-section-nav__icon,
      .m-section-nav__icon svg {
        width: 12px;
        height: 12px; }
      .m-section-nav__icon use.icon--arrow--carrot-right {
        opacity: 1;
        transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
      .m-section-nav__links {
        white-space: nowrap;
        width: 100%;
        display: flex;
        position: relative;
        align-items: flex-start; }
        .m-section-nav__links a:focus[data-focus-method="key"] {
          outline: 1px solid var(--color--outline);
          outline-offset: 4px; }
        .m-section-nav__links > * {
          position: relative; }
          .m-section-nav__links > *:not(:first-child) {
            margin-left: 24px; }
          .m-section-nav__links > * a {
            display: block; }
          .m-section-nav__links > *:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 32px;
            border-top: 2px solid var(--color--action);
            opacity: 0;
            transform: scaleX(0.6);
            transform-origin: 0 0;
            transition: opacity 195ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
          .m-section-nav__links > *:hover:before, .m-section-nav__links > *.is-current:before {
            opacity: 1;
            transform: none; }
      .m-section-nav__dropdown-link {
        display: flex;
        align-items: center;
        justify-content: space-between; }
      .m-section-nav__dropdown-icon {
        margin-left: 8px;
        color: var(--color--action); }
        .m-section-nav__dropdown-icon use {
          opacity: 0;
          transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
      .m-section-nav__foster:not(.m-section-nav__foster--open) .m-section-nav__dropdown-icon,
      .m-section-nav__foster:not(.m-section-nav__foster--open) .m-section-nav__dropdown-icon svg {
        width: 16px;
        height: 16px; }
      .m-section-nav__foster:not(.m-section-nav__foster--open) .m-section-nav__dropdown-icon use.icon--action--md-plus {
        opacity: 1;
        transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
      .m-section-nav__foster--open .m-section-nav__dropdown-icon,
      .m-section-nav__foster--open .m-section-nav__dropdown-icon svg {
        width: 16px;
        height: 16px; }
      .m-section-nav__foster--open .m-section-nav__dropdown-icon use.icon--action--md-minus {
        opacity: 1;
        transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
      .m-section-nav__dropdown {
        top: 100%;
        min-width: 242px;
        right: -24px;
        position: absolute;
        --color--background: #181a1c;
        --color--background--hover: #42474c;
        --color--background--sticky: transparent;
        --color--background--contrast: rgba(66, 71, 76, 0.1);
        --color--background--autofill: #42474c;
        --color--text: #fff;
        --color--text--aux: #89939c;
        --color--text--placeholder: #42474c;
        --color--rules--primary: #fff;
        --color--rules--secondary: #42474c;
        --color--rules--input: #42474c;
        --color--rules--input--hover: #f5f5f5;
        --color--rules--input--disabled: #181a1c;
        --color--outline: #fff;
        --color--image: #42474c;
        --color--icon--action: #687078;
        --color--dropdown--background: #42474c;
        --color--dropdown--text: #f8fafb;
        --color--dropdown--text--aux: #a6afb9;
        --color--dropdown--rules: #687078;
        --color--nav-link: #fff;
        --color--nav-link--hover: rgba(255, 255, 255, 0.8);
        --color--primary-button__background: #fff;
        --color--primary-button__foreground: #181a1c;
        --color--primary-button__outline: #fff;
        --color--primary-button__border: #fff;
        --color--primary-button--hover__background: #42474c;
        --color--primary-button--hover__foreground: #fff;
        --color--primary-button--hover__border: #42474c;
        --color--secondary-button__background: #181a1c;
        --color--secondary-button__foreground: #fff;
        --color--secondary-button__border: #42474c;
        --color--secondary-button--hover__background: #42474c;
        --color--secondary-button--hover__border: #42474c;
        color: var(--color--text);
        border-color: var(--color--rules--secondary);
        outline-color: var(--color--outline);
        background-color: var(--color--background);
        color: var(--color--text--aux);
        padding: 8px 24px 16px 24px;
        text-align: right;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
        .m-section-nav__dropdown > * {
          margin-top: 8px; }
          .m-section-nav__dropdown > *.is-current {
            color: var(--color--text); }
        .m-section-nav__dropdown a {
          transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
          .m-section-nav__dropdown a:focus[data-focus-method="key"] {
            outline: 1px solid var(--color--outline);
            outline-offset: 4px; }
          .m-section-nav__dropdown a:hover {
            color: var(--color--text); }
      .m-section-nav__foster--open .m-section-nav__dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__section,
      .m-section-nav--detail .m-section-nav__section {
        display: flex; } }
    @media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__section,
      .m-section-nav--detail .m-section-nav__section {
        width: calc((((100vw - 160px) / 8) * 3) + 32px); } }
    @media screen and (min-width: 768px) and (min-width: 1024px) and (max-width: 1280px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__section,
      .m-section-nav--detail .m-section-nav__section {
        width: calc((((100vw - 268px) / 12) * 4) + 60px); } }
    @media screen and (min-width: 768px) and (min-width: 1280px) and (max-width: 1460px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__section,
      .m-section-nav--detail .m-section-nav__section {
        width: calc((((100vw - 336px) / 12) * 4) + 72px); } }
    @media screen and (min-width: 768px) and (min-width: 1460px) and (max-width: 1700px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__section,
      .m-section-nav--detail .m-section-nav__section {
        width: calc((((100vw - 336px) / 12) * 4) + 72px); } }
    @media screen and (min-width: 768px) and (min-width: 1700px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__section,
      .m-section-nav--detail .m-section-nav__section {
        width: 517.33333px; } }
  @media screen and (min-width: 768px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__links,
      .m-section-nav--detail .m-section-nav__links {
        justify-content: flex-end; } }
    @media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__links,
      .m-section-nav--detail .m-section-nav__links {
        width: calc((((100vw - 160px) / 8) * 5) + 64px); } }
    @media screen and (min-width: 768px) and (min-width: 1024px) and (max-width: 1280px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__links,
      .m-section-nav--detail .m-section-nav__links {
        width: calc((((100vw - 268px) / 12) * 8) + 140px); } }
    @media screen and (min-width: 768px) and (min-width: 1280px) and (max-width: 1460px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__links,
      .m-section-nav--detail .m-section-nav__links {
        width: calc((((100vw - 336px) / 12) * 8) + 168px); } }
    @media screen and (min-width: 768px) and (min-width: 1460px) and (max-width: 1700px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__links,
      .m-section-nav--detail .m-section-nav__links {
        width: calc((((100vw - 336px) / 12) * 8) + 168px); } }
    @media screen and (min-width: 768px) and (min-width: 1700px) {
      .o-sticky.is-sticky.is-visible .m-section-nav--landing .m-section-nav__links,
      .m-section-nav--detail .m-section-nav__links {
        width: 1058.66667px; } }
  @media print {
    .m-section-nav__foster, .m-section-nav__icon {
      display: none; }
    .m-section-nav__section {
      border-bottom-width: 1px;
      padding-bottom: 16px;
      width: 100%;
      display: block; }
    .m-section-nav__links {
      display: flex;
      margin-top: -16px;
      margin-left: -16px; }
      .m-section-nav__links > * {
        padding-top: 16px; }
      .m-section-nav__links > * {
        padding-left: 16px; }
      .m-section-nav__links a {
        display: block;
        padding: 20px 0; }
      .m-section-nav__links .is-current a:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 32px;
        border-top: 2px solid var(--color--action); } }

.o-panel-content {
  padding-bottom: 24px; }
  .o-panel-content__title {
    font-size: 1.5rem;
    line-height: 1.2;
    --line-height: 28.8px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt"; }
    .o-panel-content__title b,
    .o-panel-content__title strong {
      font-weight: 500; }
    .o-panel-content__title i,
    .o-panel-content__title em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-panel-content__title {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 1280px) {
      .o-panel-content__title {
        font-size: 1.75rem;
        line-height: 1.125;
        --line-height: 31.5px;
        font-weight: 600;
        letter-spacing: 0em; } }
    .o-panel-content__title:first-child {
      padding-top: 120px; }
    .o-panel-content__title:not(:first-child) {
      padding-top: 16px; }
  .o-panel-content__buttons {
    padding-top: 32px; }
    @media screen and (max-width: 544px) {
      .o-panel-content__buttons > * {
        min-width: calc(100vw - 32px); } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-panel-content__buttons > * {
        min-width: calc(100vw - 32px); } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-panel-content__buttons > * {
        min-width: calc((((100vw - 160px) / 8) * 6) + 80px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-panel-content__buttons > * {
        min-width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-panel-content__buttons > * {
        min-width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-panel-content__buttons > * {
        min-width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
    @media screen and (min-width: 1700px) {
      .o-panel-content__buttons > * {
        min-width: 382px; } }
  @media screen and (max-width: 544px) {
    .o-panel-content__hero-image {
      margin-left: -16px;
      margin-right: -16px; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .o-panel-content__hero-image {
      margin-left: -16px;
      margin-right: -16px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .o-panel-content__hero-image {
      margin-left: -24px;
      margin-right: -24px; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .o-panel-content__hero-image {
      margin-left: -24px;
      margin-right: -24px; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .o-panel-content__hero-image {
      margin-left: -36px;
      margin-right: -36px; } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .o-panel-content__hero-image {
      margin-left: -36px;
      margin-right: -36px; } }
  @media screen and (min-width: 1700px) {
    .o-panel-content__hero-image {
      margin-left: -36px;
      margin-right: calc(-50vw + 800px); } }
  .o-panel-content__hero-caption {
    padding-top: 16px;
    position: relative;
    padding-bottom: 52px; }
    .o-panel-content__hero-caption::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      border-top-width: 1px; }
      @media screen and (max-width: 544px) {
        .o-panel-content__hero-caption::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-panel-content__hero-caption::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-panel-content__hero-caption::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-panel-content__hero-caption::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-panel-content__hero-caption::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-panel-content__hero-caption::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-panel-content__hero-caption::after {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-panel-content__hero-caption::after {
          left: 0;
          right: 0; } }
    @media screen and (max-width: 544px) {
      .o-panel-content__hero-caption::after {
        left: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-panel-content__hero-caption::after {
        left: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-panel-content__hero-caption::after {
        left: -24px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-panel-content__hero-caption::after {
        left: -24px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-panel-content__hero-caption::after {
        left: -36px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-panel-content__hero-caption::after {
        left: -36px; } }
    @media screen and (min-width: 1700px) {
      .o-panel-content__hero-caption::after {
        left: -36px; } }
    .o-panel-content__hero-caption h1,
    .o-panel-content__hero-caption h2,
    .o-panel-content__hero-caption h3,
    .o-panel-content__hero-caption h4,
    .o-panel-content__hero-caption h5 {
      font-size: 1.5rem;
      line-height: 1.2;
      --line-height: 28.8px;
      font-weight: 600;
      letter-spacing: 0em;
      font-variant-ligatures: common-ligatures;
      font-variant-numeric: oldstyle-nums;
      font-kerning: normal;
      font-feature-settings: "salt"; }
      .o-panel-content__hero-caption h1 b,
      .o-panel-content__hero-caption h1 strong,
      .o-panel-content__hero-caption h2 b,
      .o-panel-content__hero-caption h2 strong,
      .o-panel-content__hero-caption h3 b,
      .o-panel-content__hero-caption h3 strong,
      .o-panel-content__hero-caption h4 b,
      .o-panel-content__hero-caption h4 strong,
      .o-panel-content__hero-caption h5 b,
      .o-panel-content__hero-caption h5 strong {
        font-weight: 500; }
      .o-panel-content__hero-caption h1 i,
      .o-panel-content__hero-caption h1 em,
      .o-panel-content__hero-caption h2 i,
      .o-panel-content__hero-caption h2 em,
      .o-panel-content__hero-caption h3 i,
      .o-panel-content__hero-caption h3 em,
      .o-panel-content__hero-caption h4 i,
      .o-panel-content__hero-caption h4 em,
      .o-panel-content__hero-caption h5 i,
      .o-panel-content__hero-caption h5 em {
        font-style: italic; }
      .s-neue-haas-grotesk-display-loaded .o-panel-content__hero-caption h1, .s-neue-haas-grotesk-display-loaded
      .o-panel-content__hero-caption h2, .s-neue-haas-grotesk-display-loaded
      .o-panel-content__hero-caption h3, .s-neue-haas-grotesk-display-loaded
      .o-panel-content__hero-caption h4, .s-neue-haas-grotesk-display-loaded
      .o-panel-content__hero-caption h5 {
        font-family: "neue-haas-grotesk-display", sans-serif; }
      @media screen and (min-width: 1280px) {
        .o-panel-content__hero-caption h1,
        .o-panel-content__hero-caption h2,
        .o-panel-content__hero-caption h3,
        .o-panel-content__hero-caption h4,
        .o-panel-content__hero-caption h5 {
          font-size: 1.75rem;
          line-height: 1.125;
          --line-height: 31.5px;
          font-weight: 600;
          letter-spacing: 0em; } }
      .o-panel-content__hero-caption h1 ~ *,
      .o-panel-content__hero-caption h2 ~ *,
      .o-panel-content__hero-caption h3 ~ *,
      .o-panel-content__hero-caption h4 ~ *,
      .o-panel-content__hero-caption h5 ~ * {
        padding-top: 20px; }
        @media screen and (min-width: 1280px) and (max-width: 1460px) {
          .o-panel-content__hero-caption h1 ~ *,
          .o-panel-content__hero-caption h2 ~ *,
          .o-panel-content__hero-caption h3 ~ *,
          .o-panel-content__hero-caption h4 ~ *,
          .o-panel-content__hero-caption h5 ~ * {
            width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
        @media screen and (min-width: 1460px) and (max-width: 1700px) {
          .o-panel-content__hero-caption h1 ~ *,
          .o-panel-content__hero-caption h2 ~ *,
          .o-panel-content__hero-caption h3 ~ *,
          .o-panel-content__hero-caption h4 ~ *,
          .o-panel-content__hero-caption h5 ~ * {
            width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
        @media screen and (min-width: 1700px) {
          .o-panel-content__hero-caption h1 ~ *,
          .o-panel-content__hero-caption h2 ~ *,
          .o-panel-content__hero-caption h3 ~ *,
          .o-panel-content__hero-caption h4 ~ *,
          .o-panel-content__hero-caption h5 ~ * {
            width: 382px; } }
  .o-panel-content__text {
    padding-top: 48px; }
  .o-panel-content__hero + .o-panel-content__text {
    padding-top: 24px; }
  .o-panel-content__form {
    padding-top: 48px; }
  .o-panel-content__profile {
    padding-top: 32px;
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    margin-top: -24px; }
    @media screen and (max-width: 544px) {
      .o-panel-content__profile {
        margin-left: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-panel-content__profile {
        margin-left: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-panel-content__profile {
        margin-left: -16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-panel-content__profile {
        margin-left: -20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-panel-content__profile {
        margin-left: -24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-panel-content__profile {
        margin-left: -24px; } }
    @media screen and (min-width: 1700px) {
      .o-panel-content__profile {
        margin-left: -24px; } }
    .o-panel-content__profile > * {
      padding-top: 24px; }
  .o-panel-content__title + .o-panel-content__profile {
    padding-top: 56px; }
  .o-panel-content__profile-image, .o-panel-content__profile-terms {
    flex: 0 0 auto; }
    @media screen and (max-width: 544px) {
      .o-panel-content__profile-image, .o-panel-content__profile-terms {
        width: calc(100vw - 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-panel-content__profile-image, .o-panel-content__profile-terms {
        width: calc((((100vw - 112px) / 6) * 3) + 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-panel-content__profile-image, .o-panel-content__profile-terms {
        width: calc((((100vw - 160px) / 8) * 3) + 32px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-panel-content__profile-image, .o-panel-content__profile-terms {
        width: calc((((100vw - 268px) / 12) * 3) + 40px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-panel-content__profile-image, .o-panel-content__profile-terms {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-panel-content__profile-image, .o-panel-content__profile-terms {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .o-panel-content__profile-image, .o-panel-content__profile-terms {
        width: 382px;
        margin-left: 24px; } }
  .o-panel-content__buttons {
    display: flex;
    justify-content: flex-start;
    padding-top: 32px; }
  .o-panel .o-panel-content > * {
    transition: opacity 0.34s cubic-bezier(0.55, 0, 0.34, 1), transform 0.34s cubic-bezier(0.55, 0, 0.34, 1);
    transform: translateY(12px);
    opacity: 0;
    -webkit-backface-visibility: hidden; }
    .o-panel .o-panel-content > *:nth-child(1) {
      transition-delay: 0.08s; }
    .o-panel .o-panel-content > *:nth-child(2) {
      transition-delay: 0.16s; }
    .o-panel .o-panel-content > *:nth-child(3) {
      transition-delay: 0.24s; }
    .o-panel .o-panel-content > *:nth-child(4) {
      transition-delay: 0.32s; }
    .o-panel .o-panel-content > *:nth-child(5) {
      transition-delay: 0.4s; }
    .o-panel .o-panel-content > *:nth-child(n + 6) {
      transition-delay: 0.48s; }
  .o-panel:only-child .o-panel-content > *,
  .o-panel.is-opened:not(.is-loading) .o-panel-content > * {
    opacity: 1;
    transform: none; }

.o-article-carousel {
  margin-top: 64px; }
  @media screen and (min-width: 768px) {
    .o-article-carousel {
      margin-top: 72px; } }
  @media screen and (min-width: 1280px) {
    .o-article-carousel {
      margin-top: 96px; } }
  @media screen and (max-width: 768px) {
    .o-article-carousel:not(.o-article-carousel--link) {
      padding-bottom: 56px; } }
  .o-article-carousel__inner {
    --color--background: #f1f4f7;
    --color--background--sticky: #f1f4f7;
    --color--background--hover: #e3e8ee;
    --color--background--contrast: #d2d9e1;
    --color--background--autofill: #e3e8ee;
    --color--text: #181a1c;
    --color--rules--primary: #bec7d0;
    --color--rules--secondary: #e3e8ee;
    color: var(--color--text);
    border-color: var(--color--rules--secondary);
    outline-color: var(--color--outline);
    background-color: var(--color--background);
    padding-top: 8px;
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__inner {
        padding-top: 4px; } }
    .o-article-carousel__inner::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: -16px;
      right: -16px;
      background-color: inherit;
      pointer-events: none; }
      @media screen and (max-width: 544px) {
        .o-article-carousel__inner::before {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-article-carousel__inner::before {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-article-carousel__inner::before {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-article-carousel__inner::before {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-article-carousel__inner::before {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-article-carousel__inner::before {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-article-carousel__inner::before {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-article-carousel__inner::before {
          display: none; } }
    @media screen and (min-width: 768px) {
      .o-article-carousel__inner {
        padding-bottom: 32px; } }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__inner {
        padding-bottom: 48px; } }
  .o-article-carousel__link {
    display: flex;
    justify-content: flex-end;
    position: relative; }
    @media print {
      .o-article-carousel__link {
        display: none; } }
    .o-article-carousel__link a:focus[data-focus-method="key"],
    .o-article-carousel__link a:hover {
      background-color: var(--color--background--hover); }
    .o-article-carousel__link a {
      outline: none;
      padding-top: 16px;
      position: relative;
      position: static; }
      @media screen and (min-width: 768px) {
        .o-article-carousel__link a {
          padding-top: 20px; } }
      .o-article-carousel__link a::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: -16px;
        right: -16px;
        background-color: inherit;
        pointer-events: none; }
        @media screen and (max-width: 544px) {
          .o-article-carousel__link a::before {
            left: -16px;
            right: -16px; } }
        @media screen and (min-width: 544px) and (max-width: 768px) {
          .o-article-carousel__link a::before {
            left: -16px;
            right: -16px; } }
        @media screen and (min-width: 768px) and (max-width: 1024px) {
          .o-article-carousel__link a::before {
            left: -24px;
            right: -24px; } }
        @media screen and (min-width: 1024px) and (max-width: 1280px) {
          .o-article-carousel__link a::before {
            left: -24px;
            right: -24px; } }
        @media screen and (min-width: 1280px) and (max-width: 1460px) {
          .o-article-carousel__link a::before {
            left: -36px;
            right: -36px; } }
        @media screen and (min-width: 1460px) and (max-width: 1700px) {
          .o-article-carousel__link a::before {
            left: -36px;
            right: -36px; } }
        @media screen and (min-width: 1700px) {
          .o-article-carousel__link a::before {
            left: calc((100vw - 1600px) / -2);
            right: calc((100vw - 1600px) / -2); } }
        @media print {
          .o-article-carousel__link a::before {
            display: none; } }
      .o-article-carousel__link a:before {
        content: "";
        position: absolute;
        top: 0;
        z-index: -1;
        bottom: -64px; }
        @media screen and (min-width: 768px) {
          .o-article-carousel__link a:before {
            bottom: -72px; } }
        @media screen and (min-width: 1280px) {
          .o-article-carousel__link a:before {
            bottom: -96px; } }
      .o-article-carousel__link a small {
        display: none; }
        @media screen and (min-width: 768px) {
          .o-article-carousel__link a small {
            display: inline; } }
  .o-article-carousel__header {
    font-size: 1.5rem;
    line-height: 1.2;
    --line-height: 28.8px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    padding-top: 8px; }
    .o-article-carousel__header b,
    .o-article-carousel__header strong {
      font-weight: 500; }
    .o-article-carousel__header i,
    .o-article-carousel__header em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-article-carousel__header {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__header {
        font-size: 1.75rem;
        line-height: 1.125;
        --line-height: 31.5px;
        font-weight: 600;
        letter-spacing: 0em; } }
    @media screen and (min-width: 768px) {
      .o-article-carousel__header {
        padding-top: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-article-carousel__header {
        width: calc((((100vw - 160px) / 8) * 3) + 32px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-article-carousel__header {
        width: calc((((100vw - 268px) / 12) * 3) + 40px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-article-carousel__header {
        width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-article-carousel__header {
        width: calc((((100vw - 336px) / 12) * 2) + 24px); } }
    @media screen and (min-width: 1700px) {
      .o-article-carousel__header {
        width: 246.66667px; } }
    @media screen and (min-width: 768px) {
      .o-article-carousel__header {
        position: absolute;
        top: 0;
        left: 0; } }
  .o-article-carousel__items {
    display: flex;
    flex-flow: row nowrap;
    will-change: transform; }
  .o-article-carousel__item {
    position: relative;
    width: 0;
    overflow: visible;
    display: flex;
    flex-direction: column; }
    .o-article-carousel__item > * {
      position: relative; }
      @media screen and (max-width: 544px) {
        .o-article-carousel__item > * {
          width: calc(100vw - 32px); } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-article-carousel__item > * {
          width: calc(100vw - 32px); } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-article-carousel__item > * {
          width: calc(100vw - 48px); } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-article-carousel__item > * {
          width: calc(100vw - 48px); } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-article-carousel__item > * {
          width: calc(100vw - 72px); } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-article-carousel__item > * {
          width: calc(100vw - 72px); } }
      @media screen and (min-width: 1700px) {
        .o-article-carousel__item > * {
          width: 1600px; } }
    .o-article-carousel__item:not(:only-child) {
      pointer-events: none; }
    .o-article-carousel__item.is-active {
      pointer-events: auto; }
  @media screen and (max-width: 768px) {
    .o-article-carousel__item-bottom {
      display: none; } }
  .o-article-carousel__item-header, .o-article-carousel__item-main {
    margin-left: auto;
    position: relative; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-article-carousel__item-header, .o-article-carousel__item-main {
        width: calc((((100vw - 160px) / 8) * 4) + 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-article-carousel__item-header, .o-article-carousel__item-main {
        width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-article-carousel__item-header, .o-article-carousel__item-main {
        width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-article-carousel__item-header, .o-article-carousel__item-main {
        width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1700px) {
      .o-article-carousel__item-header, .o-article-carousel__item-main {
        width: 788px; } }
    @media screen and (min-width: 768px) {
      .o-article-carousel__item-header, .o-article-carousel__item-main {
        position: static; } }
  .o-article-carousel__item-header {
    padding-bottom: 48px; }
    @media screen and (min-width: 768px) {
      .o-article-carousel__item-header {
        padding-bottom: 68px; } }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__item-header {
        padding-bottom: 40px; } }
    @media screen and (min-width: 768px) {
      .o-article-carousel__item-header {
        position: relative; }
        .o-article-carousel__item-header::after {
          content: "";
          position: absolute;
          right: 0;
          bottom: 0;
          border-top-width: 1px; } }
    @media screen and (min-width: 768px) and (max-width: 544px) {
      .o-article-carousel__item-header::after {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 768px) and (min-width: 544px) and (max-width: 768px) {
      .o-article-carousel__item-header::after {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
      .o-article-carousel__item-header::after {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 768px) and (min-width: 1024px) and (max-width: 1280px) {
      .o-article-carousel__item-header::after {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 768px) and (min-width: 1280px) and (max-width: 1460px) {
      .o-article-carousel__item-header::after {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 768px) and (min-width: 1460px) and (max-width: 1700px) {
      .o-article-carousel__item-header::after {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 768px) and (min-width: 1700px) {
      .o-article-carousel__item-header::after {
        left: calc((100vw - 1600px) / -2);
        right: calc((100vw - 1600px) / -2); } }
    @media screen and (min-width: 768px) {
        .o-article-carousel__item-header::after {
          left: -100vw; } }
  .o-article-carousel__item:not(:only-child) .o-article-carousel__item-top,
  .o-article-carousel__item:not(:only-child) .o-article-carousel__item-bottom {
    transform: translateX(-20px); }
  .o-article-carousel__item.is-active + .o-article-carousel__item .o-article-carousel__item-top,
  .o-article-carousel__item.is-active + .o-article-carousel__item .o-article-carousel__item-bottom {
    transform: translateX(20px); }
  .o-article-carousel__item:not(:only-child) .o-article-carousel__item-top,
  .o-article-carousel__item:not(:only-child) .o-article-carousel__item-bottom {
    opacity: 0;
    transition: opacity 195ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 0s 225ms; }
  .o-article-carousel__item.is-active .o-article-carousel__item-top,
  .o-article-carousel__item.is-active .o-article-carousel__item-bottom {
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    transition: opacity 225ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 225ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 1; }
  .o-article-carousel__item-title {
    font-size: 1.5rem;
    line-height: 1.2;
    --line-height: 28.8px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    padding-top: 56px; }
    .o-article-carousel__item-title b,
    .o-article-carousel__item-title strong {
      font-weight: 500; }
    .o-article-carousel__item-title i,
    .o-article-carousel__item-title em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-article-carousel__item-title {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__item-title {
        font-size: 2rem;
        line-height: 1.125;
        --line-height: 36px;
        font-weight: 600;
        letter-spacing: 0; } }
    @media screen and (min-width: 768px) {
      .o-article-carousel__item-title {
        padding-top: 16px; } }
  .o-article-carousel__item-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 16px;
    position: absolute; }
    @media screen and (max-width: 544px) {
      .o-article-carousel__item-pagination {
        margin-left: -16px; }
        .o-article-carousel__item-pagination > * {
          padding-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-article-carousel__item-pagination {
        margin-left: -16px; }
        .o-article-carousel__item-pagination > * {
          padding-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-article-carousel__item-pagination {
        margin-left: -16px; }
        .o-article-carousel__item-pagination > * {
          padding-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-article-carousel__item-pagination {
        margin-left: -20px; }
        .o-article-carousel__item-pagination > * {
          padding-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-article-carousel__item-pagination {
        margin-left: -24px; }
        .o-article-carousel__item-pagination > * {
          padding-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-article-carousel__item-pagination {
        margin-left: -24px; }
        .o-article-carousel__item-pagination > * {
          padding-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .o-article-carousel__item-pagination {
        margin-left: -24px; }
        .o-article-carousel__item-pagination > * {
          padding-left: 24px; } }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__item-pagination {
        padding-top: 20px; } }
    @media screen and (min-width: 768px) {
      .o-article-carousel__item-pagination {
        padding-bottom: 24px;
        bottom: auto;
        right: auto;
        left: 0;
        z-index: 3; } }
  .o-article-carousel__item-pagination-label {
    color: var(--color--text--aux);
    opacity: 0;
    transition: opacity 225ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .o-article-carousel__item.is-active .o-article-carousel__item-pagination-label {
    opacity: 1;
    transition: opacity 225ms 225ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .o-article-carousel__item-pagination-nav {
    opacity: 0; }
  .o-article-carousel__item.is-active .o-article-carousel__item-pagination-nav {
    opacity: 1; }
  .o-article-carousel__item-meta {
    padding-top: 12px; }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__item-meta dl {
        column-count: 2; }
        .o-article-carousel__item-meta dl > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-article-carousel__item-meta dl > * _::-webkit-full-page-media,
          .o-article-carousel__item-meta dl > * _:future,
          :root .o-article-carousel__item-meta dl > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-article-carousel__item-meta dl > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-article-carousel__item-meta dl > * {
              display: inline-block; } } }
    @media screen and (min-width: 768px) {
      .o-article-carousel__item-meta {
        padding-top: 16px; } }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__item-meta {
        padding-top: 20px; } }
  .o-article-carousel__item-intro {
    padding-top: 16px; }
    @media screen and (min-width: 768px) {
      .o-article-carousel__item-intro {
        padding-top: 20px; } }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__item-intro {
        padding-top: 24px; } }
  .o-article-carousel__item-actions {
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -24px;
    margin-top: -24px; }
    @media screen and (min-width: 768px) {
      .o-article-carousel__item-actions {
        padding-top: 20px; } }
    @media screen and (min-width: 1280px) {
      .o-article-carousel__item-actions {
        padding-top: 24px; } }
    .o-article-carousel__item-actions > * {
      padding-top: 24px;
      padding-left: 24px; }

.o-listing-grid {
  margin-top: -20px;
  position: relative;
  display: flex;
  flex-flow: row wrap; }
  .o-listing-grid > * {
    padding-top: 20px; }
  @media screen and (min-width: 768px) {
    .o-listing-grid {
      margin-top: -24px; }
      .o-listing-grid > * {
        padding-top: 24px; } }
  @media screen and (max-width: 544px) {
    .o-listing-grid {
      margin-left: -16px; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .o-listing-grid {
      margin-left: -16px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .o-listing-grid {
      margin-left: -16px; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .o-listing-grid {
      margin-left: -20px; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .o-listing-grid {
      margin-left: -24px; } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .o-listing-grid {
      margin-left: -24px; } }
  @media screen and (min-width: 1700px) {
    .o-listing-grid {
      margin-left: -24px; } }
  .o-listing-grid__item {
    display: flex;
    flex: 0 0 auto; }
    @media screen and (max-width: 544px) {
      .o-listing-grid__item {
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-listing-grid__item {
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-listing-grid__item {
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-listing-grid__item {
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-listing-grid__item {
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-listing-grid__item {
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .o-listing-grid__item {
        margin-left: 24px; } }
  @media print {
    .o-listing-grid {
      position: relative;
      margin-left: -16px; }
      .o-listing-grid__item {
        position: relative;
        page-break-inside: avoid;
        width: 50%;
        padding-left: 16px; } }
  .o-listing-grid--area {
    margin-top: -40px; }
    .o-listing-grid--area > * {
      margin-top: 40px; }
    @media screen and (min-width: 768px) {
      .o-listing-grid--area {
        margin-top: -48px; }
        .o-listing-grid--area > * {
          margin-top: 48px; } }
    @media screen and (min-width: 1280px) {
      .o-listing-grid--area {
        margin-top: -64px; }
        .o-listing-grid--area > * {
          margin-top: 64px; } }
  @media screen and (max-width: 544px) {
    .o-listing-grid--area .o-listing-grid__item:nth-child(n + 5),
    .o-listing-grid--area .o-listing-grid__item:nth-child(3):last-child {
      display: none; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .o-listing-grid--area .o-listing-grid__item:nth-child(n + 5),
    .o-listing-grid--area .o-listing-grid__item:nth-child(3):last-child {
      display: none; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .o-listing-grid--area .o-listing-grid__item:nth-child(n + 5),
    .o-listing-grid--area .o-listing-grid__item:nth-child(3):last-child {
      display: none; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .o-listing-grid--area .o-listing-grid__item:nth-child(n + 7),
    .o-listing-grid--area .o-listing-grid__item:nth-child(4):last-child {
      display: none; } }
  @media screen and (min-width: 1280px) {
    .o-listing-grid--area .o-listing-grid__item:nth-child(n + 9),
    .o-listing-grid--area .o-listing-grid__item:nth-child(5):last-child {
      display: none; } }
  .o-listing-grid--area .o-listing-grid__item {
    padding-top: 8px;
    position: relative; }
    @media screen and (min-width: 768px) {
      .o-listing-grid--area .o-listing-grid__item {
        padding-top: 12px; } }
    .o-listing-grid--area .o-listing-grid__item::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      border-top-width: 1px; }
      @media screen and (max-width: 544px) {
        .o-listing-grid--area .o-listing-grid__item::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-listing-grid--area .o-listing-grid__item::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-listing-grid--area .o-listing-grid__item::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-listing-grid--area .o-listing-grid__item::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-listing-grid--area .o-listing-grid__item::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-listing-grid--area .o-listing-grid__item::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-listing-grid--area .o-listing-grid__item::after {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-listing-grid--area .o-listing-grid__item::after {
          left: 0;
          right: 0; } }
  .o-listing-grid--article-item {
    margin-top: -16px; }
    .o-listing-grid--article-item > * {
      padding-top: 16px; }
    @media screen and (min-width: 768px) {
      .o-listing-grid--article-item {
        margin-top: -24px; }
        .o-listing-grid--article-item > * {
          padding-top: 24px; } }
  @media screen and (max-width: 768px) {
    .o-listing-grid--article-item .o-listing-grid__item:not(:first-child) {
      margin-top: 16px;
      position: relative; }
      .o-listing-grid--article-item .o-listing-grid__item:not(:first-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        border-top-width: 1px; } }
    @media screen and (max-width: 768px) and (max-width: 544px) {
      .o-listing-grid--article-item .o-listing-grid__item:not(:first-child)::after {
        left: -16px;
        right: -16px; } }
    @media screen and (max-width: 768px) and (min-width: 544px) and (max-width: 768px) {
      .o-listing-grid--article-item .o-listing-grid__item:not(:first-child)::after {
        left: -16px;
        right: -16px; } }
    @media screen and (max-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
      .o-listing-grid--article-item .o-listing-grid__item:not(:first-child)::after {
        left: -24px;
        right: -24px; } }
    @media screen and (max-width: 768px) and (min-width: 1024px) and (max-width: 1280px) {
      .o-listing-grid--article-item .o-listing-grid__item:not(:first-child)::after {
        left: -24px;
        right: -24px; } }
    @media screen and (max-width: 768px) and (min-width: 1280px) and (max-width: 1460px) {
      .o-listing-grid--article-item .o-listing-grid__item:not(:first-child)::after {
        left: -36px;
        right: -36px; } }
    @media screen and (max-width: 768px) and (min-width: 1460px) and (max-width: 1700px) {
      .o-listing-grid--article-item .o-listing-grid__item:not(:first-child)::after {
        left: -36px;
        right: -36px; } }
    @media screen and (max-width: 768px) and (min-width: 1700px) {
      .o-listing-grid--article-item .o-listing-grid__item:not(:first-child)::after {
        left: calc((100vw - 1600px) / -2);
        right: calc((100vw - 1600px) / -2); } }

@media print {
  .o-listing-rows {
    position: relative; }
    .o-listing-rows__item {
      position: relative;
      page-break-inside: avoid; } }

.o-listing-rows__anchor {
  pointer-events: none;
  display: block;
  padding-top: var(--sticky--avoid);
  margin-top: calc(var(--sticky--avoid) * -1);
  height: 0;
  overflow: hidden; }
  .o-listing-rows__anchor:focus {
    outline: none; }

.o-listing-rows__item {
  width: 100%;
  position: relative; }
  .o-listing-rows__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-top-width: 1px; }
    @media screen and (max-width: 544px) {
      .o-listing-rows__item::after {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-listing-rows__item::after {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-listing-rows__item::after {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-listing-rows__item::after {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-listing-rows__item::after {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-listing-rows__item::after {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1700px) {
      .o-listing-rows__item::after {
        left: calc((100vw - 1600px) / -2);
        right: calc((100vw - 1600px) / -2); } }
    @media print {
      .o-listing-rows__item::after {
        left: 0;
        right: 0; } }
  .o-listing-rows__item:not(:first-of-type) {
    margin-top: 16px; }
    @media screen and (min-width: 768px) {
      .o-listing-rows__item:not(:first-of-type) {
        margin-top: 20px; } }
    @media screen and (min-width: 1280px) {
      .o-listing-rows__item:not(:first-of-type) {
        margin-top: 24px; } }
  .o-listing-rows__item--accordion:not(:first-of-type) {
    margin-top: 24px; }
    @media screen and (min-width: 768px) {
      .o-listing-rows__item--accordion:not(:first-of-type) {
        margin-top: 28px; } }
    @media screen and (min-width: 1280px) {
      .o-listing-rows__item--accordion:not(:first-of-type) {
        margin-top: 32px; } }

@media screen and (min-width: 768px) {
  .o-listing__nav ~ .o-listing__main .o-listing-rows__item .m-listing-item__meta-grid {
    justify-content: flex-end; } }

@media screen and (min-width: 768px) {
  .o-listing__nav ~ .o-listing__main .o-listing-rows__item:not(:first-of-type) .m-listing-item__meta-item--primary:not(:only-child),
  .o-listing-rows__item--first-of-kind ~ .o-listing-rows__item:not(.o-listing-rows__item--first-of-kind) .m-listing-item__meta-item--primary:not(:only-child) {
    visibility: hidden; } }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .o-listing__nav ~ .o-listing__main .o-listing-rows__item:not(:first-of-type)::after,
  .o-listing-rows__item--first-of-kind ~ .o-listing-rows__item:not(.o-listing-rows__item--first-of-kind)::after {
    left: calc(((((100vw - 160px) / 8) * 2) + 16px) + 16px); } }

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .o-listing__nav ~ .o-listing__main .o-listing-rows__item:not(:first-of-type)::after,
  .o-listing-rows__item--first-of-kind ~ .o-listing-rows__item:not(.o-listing-rows__item--first-of-kind)::after {
    left: calc(((((100vw - 268px) / 12) * 3) + 40px) + 20px); } }

@media screen and (min-width: 1280px) and (max-width: 1460px) {
  .o-listing__nav ~ .o-listing__main .o-listing-rows__item:not(:first-of-type)::after,
  .o-listing-rows__item--first-of-kind ~ .o-listing-rows__item:not(.o-listing-rows__item--first-of-kind)::after {
    left: calc(((((100vw - 336px) / 12) * 3) + 48px) + 24px); } }

@media screen and (min-width: 1460px) and (max-width: 1700px) {
  .o-listing__nav ~ .o-listing__main .o-listing-rows__item:not(:first-of-type)::after,
  .o-listing-rows__item--first-of-kind ~ .o-listing-rows__item:not(.o-listing-rows__item--first-of-kind)::after {
    left: calc(((((100vw - 336px) / 12) * 3) + 48px) + 24px); } }

@media screen and (min-width: 1700px) {
  .o-listing__nav ~ .o-listing__main .o-listing-rows__item:not(:first-of-type)::after,
  .o-listing-rows__item--first-of-kind ~ .o-listing-rows__item:not(.o-listing-rows__item--first-of-kind)::after {
    left: 406px;
    margin-left: 0;
    width: calc( 100vw - 406px - (100vw - 1600px) / 2); } }

.o-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 300ms;
  z-index: 201;
  --color--background: #181a1c;
  --color--background--hover: #42474c;
  --color--background--sticky: transparent;
  --color--background--contrast: rgba(66, 71, 76, 0.1);
  --color--background--autofill: #42474c;
  --color--text: #fff;
  --color--text--aux: #89939c;
  --color--text--placeholder: #42474c;
  --color--rules--primary: #fff;
  --color--rules--secondary: #42474c;
  --color--rules--input: #42474c;
  --color--rules--input--hover: #f5f5f5;
  --color--rules--input--disabled: #181a1c;
  --color--outline: #fff;
  --color--image: #42474c;
  --color--icon--action: #687078;
  --color--dropdown--background: #42474c;
  --color--dropdown--text: #f8fafb;
  --color--dropdown--text--aux: #a6afb9;
  --color--dropdown--rules: #687078;
  --color--nav-link: #fff;
  --color--nav-link--hover: rgba(255, 255, 255, 0.8);
  --color--primary-button__background: #fff;
  --color--primary-button__foreground: #181a1c;
  --color--primary-button__outline: #fff;
  --color--primary-button__border: #fff;
  --color--primary-button--hover__background: #42474c;
  --color--primary-button--hover__foreground: #fff;
  --color--primary-button--hover__border: #42474c;
  --color--secondary-button__background: #181a1c;
  --color--secondary-button__foreground: #fff;
  --color--secondary-button__border: #42474c;
  --color--secondary-button--hover__background: #42474c;
  --color--secondary-button--hover__border: #42474c;
  color: var(--color--text);
  border-color: var(--color--rules--secondary);
  outline-color: var(--color--outline); }
  .o-panel:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
  .o-panel.is-open, .o-panel:only-child {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    pointer-events: auto;
    transition: none; }
  .o-panel__container {
    min-height: 100vh;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
    position: relative; }
  .o-panel__loader {
    position: absolute;
    top: 24px;
    right: 0;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (min-width: 768px) {
      .o-panel__loader {
        top: 32px; } }
  .o-panel__loader, .o-panel__content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .o-panel__content {
    width: 100%;
    min-height: 100vh; }
    @media screen and (max-width: 544px) {
      .o-panel__content {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-panel__content {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-panel__content {
        width: calc((((100vw - 160px) / 8) * 6) + 80px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-panel__content {
        width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-panel__content {
        width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-panel__content {
        width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1700px) {
      .o-panel__content {
        width: 788px; } }
  .o-panel:not(.is-loading) .o-panel__content,
  .o-panel.is-loading .o-panel__loader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
  .o-panel__error {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; }
  .o-panel__main {
    background-color: var(--color--background);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.55, 0, 0.34, 1); }
    .o-panel__main::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: -16px;
      right: -16px;
      background-color: inherit;
      pointer-events: none; }
      @media screen and (max-width: 544px) {
        .o-panel__main::before {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-panel__main::before {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-panel__main::before {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-panel__main::before {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-panel__main::before {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-panel__main::before {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-panel__main::before {
          right: calc((100vw - 1600px) / -2);
          left: -36px; } }
    .o-panel__main::before {
      pointer-events: auto; }
    @media screen and (max-width: 544px) {
      .o-panel__main {
        transform: translateX(calc(100% + 32px)); } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-panel__main {
        transform: translateX(calc(100% + 32px)); } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-panel__main {
        transform: translateX(calc(100% + 48px)); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-panel__main {
        transform: translateX(calc(100% + 48px)); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-panel__main {
        transform: translateX(calc(100% + 72px)); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-panel__main {
        transform: translateX(calc(100% + 72px)); } }
    @media screen and (min-width: 1700px) {
      .o-panel__main {
        transform: translateX(calc(100% + (100vw - 1600px) / 2)); } }
  .o-panel.is-open .o-panel__main,
  .o-panel:only-child .o-panel__main {
    transform: none;
    transition: transform 0.3s cubic-bezier(0.55, 0, 0.34, 1); }
  .o-panel__close-btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    z-index: 2;
    position: absolute;
    right: 0;
    top: 24px;
    transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), visibility 0s 0.34s cubic-bezier(0.55, 0, 0.34, 1); }
    .o-panel__close-btn::-moz-focus-inner {
      border: 0; }
    @media screen and (min-width: 768px) {
      .o-panel__close-btn {
        top: 32px; } }
    .o-panel__close-btn:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
    .o-panel__close-btn:hover {
      color: var(--color--nav-link--hover); }
    .o-panel__close-btn svg {
      transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .o-panel__close-btn:before {
      content: "";
      position: absolute;
      top: -8px;
      left: -8px;
      bottom: -8px;
      right: -8px;
      border-radius: 50%;
      border-width: 1px;
      opacity: 0;
      transition: opacity 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .o-panel__close-btn:focus[data-focus-method="key"] {
      outline: none; }
      .o-panel__close-btn:focus[data-focus-method="key"]:before {
        opacity: 1; }
  .o-panel:only-child .o-panel__close-btn,
  .o-panel.is-opened:not(.is-loading) .o-panel__close-btn {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.55s 0s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.55s 0s cubic-bezier(0.55, 0, 0.34, 1); }
  .o-panel.is-self-closing .o-panel__close-btn {
    display: none; }

@media screen {
  .o-sticky {
    display: block;
    position: relative;
    height: 64px; } }
  @media screen and (max-width: 544px) {
    .o-sticky {
      margin-left: -16px;
      margin-right: -16px; } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .o-sticky {
      margin-left: -16px;
      margin-right: -16px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .o-sticky {
      margin-left: -24px;
      margin-right: -24px; } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .o-sticky {
      margin-left: -24px;
      margin-right: -24px; } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .o-sticky {
      margin-left: -36px;
      margin-right: -36px; } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .o-sticky {
      margin-left: -36px;
      margin-right: -36px; } }
  @media screen and (min-width: 1700px) {
    .o-sticky {
      margin-left: calc((100vw - 1600px) / -2);
      margin-right: calc((100vw - 1600px) / -2); } }

@media screen {
    .o-sticky--section-nav {
      z-index: 199; } }
    @media screen and (min-width: 768px) {
      .o-sticky--section-nav {
        height: 80px; } }
  @media screen and (min-width: 768px) {
    .o-sticky--global-header {
      height: 112px; } }
  @media screen and (min-width: 768px) {
    .o-sticky--detail {
      height: 80px; } }

@media screen {
    .o-sticky--section-nav .o-sticky__inner {
      z-index: 199; }
    .o-sticky--global-header .o-sticky__inner {
      z-index: 200; }
    .o-sticky--detail .o-sticky__inner {
      z-index: 200;
      transform: translateY(-100%); }
    .o-sticky__inner {
      position: relative;
      margin-left: auto;
      margin-right: auto; } }
    @media screen and (max-width: 544px) {
      .o-sticky__inner {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-sticky__inner {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-sticky__inner {
        width: calc(100vw - 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-sticky__inner {
        width: calc(100vw - 48px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-sticky__inner {
        width: calc(100vw - 72px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-sticky__inner {
        width: calc(100vw - 72px); } }
    @media screen and (min-width: 1700px) {
      .o-sticky__inner {
        width: 1600px;
        padding-left: 0;
        padding-right: 0; } }

@media screen {
      .o-sticky__inner::before, .o-sticky__inner::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: -16px;
        right: -16px; } }
      @media screen and (max-width: 544px) {
        .o-sticky__inner::before, .o-sticky__inner::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-sticky__inner::before, .o-sticky__inner::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-sticky__inner::before, .o-sticky__inner::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-sticky__inner::before, .o-sticky__inner::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-sticky__inner::before, .o-sticky__inner::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-sticky__inner::before, .o-sticky__inner::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-sticky__inner::before, .o-sticky__inner::after {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }

@media screen {
      .o-sticky__inner::before {
        background-color: var(--color--background--sticky);
        transition: opacity 195ms cubic-bezier(0.4, 0, 0.6, 1), background-color 195ms cubic-bezier(0.4, 0, 0.6, 1);
        opacity: 0;
        height: 64px; } }
      @media screen and (min-width: 768px) {
        .o-sticky__inner::before {
          height: 80px; } }

@media screen {
      .o-sticky__inner::after {
        z-index: 1;
        pointer-events: none; }
    .o-sticky--section-nav:not(.is-sticky) .o-sticky__inner::before {
      transition: none; }
    .o-sticky--detail .o-sticky__inner,
    .o-sticky.is-animatable .o-sticky__inner {
      transition: transform 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .o-sticky.is-sticky .o-sticky__inner {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      transform: translateY(-100%);
      --color--background: #fff;
      --color--background--sticky: #fff;
      --color--background--hover: #f8fafb;
      --color--background--contrast: #f1f4f7;
      --color--background--transparent: rgba(255, 255, 255, 0);
      --color--background--autofill: #f1f4f7;
      --color--text: #181a1c;
      --color--text--placeholder: #687078;
      --color--text--aux: #687078;
      --color--text--disabled: #bec7d0;
      --color--rules--primary: #9e9e9e;
      --color--rules--secondary: #e6e6e6;
      --color--rules--disabled: #e3e8ee;
      --color--rules--input: #cccccc;
      --color--rules--input--hover: #1a1a1a;
      --color--rules--input--disabled: #e6e6e6;
      --color--action: #009bdb;
      --color--action__contrast: #fff;
      --color--error: rgba(255, 12, 62, 0.8);
      --color--outline: #181a1c;
      --color--image: #f1f4f7;
      --color--icon--aux: #89939c;
      --color--icon--action: #009bdb;
      --color--icon--disabled: #d2d9e1;
      --color--dropdown--background: #181a1c;
      --color--dropdown--text: #f8fafb;
      --color--dropdown--text--aux: #89939c;
      --color--dropdown--rules: #424242;
      --color--dropdown--selected: #42474c;
      --color--link: #009bdb;
      --color--link--outline: #d2d9e1;
      --color--link--hover: #687078;
      --color--link--disabled: #999999;
      --color--link__underline: #2fb3ea;
      --color--link__underline--hover: #009bdb;
      --color--link__underline--disabled: #e6e6e6;
      --color--link__icon--disabled: #e6e6e6;
      --color--nav-link: #181a1c;
      --color--nav-link--hover: #687078;
      --color--primary-button__background: #181a1c;
      --color--primary-button__foreground: #fff;
      --color--primary-button__outline: #181a1c;
      --color--primary-button__border: #181a1c;
      --color--primary-button--hover__background: #42474c;
      --color--primary-button--hover__foreground: #fff;
      --color--primary-button--hover__border: #42474c;
      --color--primary-button--disabled__background: #f1f4f7;
      --color--primary-button--disabled__foreground: #a6afb9;
      --color--primary-button--disabled__border: #f1f4f7;
      --color--secondary-button__background: #fff;
      --color--secondary-button__foreground: #181a1c;
      --color--secondary-button__border: #cccccc;
      --color--secondary-button--hover__background: #181a1c;
      --color--secondary-button--hover__border: #181a1c;
      --color--secondary-button--hover__foreground: #fff;
      --color--secondary-button--focus__background: #181a1c;
      --color--secondary-button--focus__border: #181a1c;
      --color--secondary-button--focus__foreground: #fff;
      --color--secondary-button--disabled__foreground: #999999;
      --color--secondary-button--disabled__border: #e3e8ee;
      color: var(--color--text);
      border-color: var(--color--rules--secondary);
      outline-color: var(--color--outline); }
      .o-sticky.is-sticky .o-sticky__inner::before {
        opacity: 1; }
      .o-sticky.is-sticky .o-sticky__inner::after {
        border-color: var(--color--rules--primary);
        transition: border-bottom-width 0s 195ms;
        border-bottom-width: 1px; }
    .o-sticky.is-visible .o-sticky__inner {
      transform: none; }
    .o-sticky--detail.is-sticky .o-sticky__inner:before {
      background-color: var(--color--background--contrast); }
    .o-sticky--detail.is-sticky .o-sticky__inner:after {
      border-bottom-width: 0; } }

.o-global-menu {
  overflow: hidden;
  min-height: 100vh;
  --color--background: #181a1c;
  --color--background--hover: #42474c;
  --color--background--sticky: transparent;
  --color--background--contrast: rgba(66, 71, 76, 0.1);
  --color--background--autofill: #42474c;
  --color--text: #fff;
  --color--text--aux: #89939c;
  --color--text--placeholder: #42474c;
  --color--rules--primary: #fff;
  --color--rules--secondary: #42474c;
  --color--rules--input: #42474c;
  --color--rules--input--hover: #f5f5f5;
  --color--rules--input--disabled: #181a1c;
  --color--outline: #fff;
  --color--image: #42474c;
  --color--icon--action: #687078;
  --color--dropdown--background: #42474c;
  --color--dropdown--text: #f8fafb;
  --color--dropdown--text--aux: #a6afb9;
  --color--dropdown--rules: #687078;
  --color--nav-link: #fff;
  --color--nav-link--hover: rgba(255, 255, 255, 0.8);
  --color--primary-button__background: #fff;
  --color--primary-button__foreground: #181a1c;
  --color--primary-button__outline: #fff;
  --color--primary-button__border: #fff;
  --color--primary-button--hover__background: #42474c;
  --color--primary-button--hover__foreground: #fff;
  --color--primary-button--hover__border: #42474c;
  --color--secondary-button__background: #181a1c;
  --color--secondary-button__foreground: #fff;
  --color--secondary-button__border: #42474c;
  --color--secondary-button--hover__background: #42474c;
  --color--secondary-button--hover__border: #42474c;
  color: var(--color--text);
  border-color: var(--color--rules--secondary);
  outline-color: var(--color--outline);
  background-color: var(--color--background);
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 24px; }
  .o-global-menu::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -16px;
    right: -16px;
    background-color: inherit;
    pointer-events: none; }
    @media screen and (max-width: 544px) {
      .o-global-menu::before {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-global-menu::before {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-global-menu::before {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-global-menu::before {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-global-menu::before {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-global-menu::before {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1700px) {
      .o-global-menu::before {
        right: calc((100vw - 1600px) / -2);
        left: -36px; } }
  @media screen and (min-width: 768px) {
    .o-global-menu {
      padding-top: 32px; } }
  @media screen and (min-width: 1280px) {
    .o-global-menu {
      padding-bottom: 44px; } }
  .o-global-menu a.is-current {
    position: relative; }
    .o-global-menu a.is-current::after {
      content: "";
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      border-bottom-width: 1px;
      border-color: var(--color--action); }
  .o-global-menu__header {
    display: flex;
    position: relative;
    z-index: 1;
    width: 100%; }
    @media screen and (max-width: 1280px) {
      .o-global-menu__header {
        flex-direction: column-reverse;
        align-items: flex-end;
        position: absolute;
        opacity: 0;
        transform: translateY(12px);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), visibility 0s 0.34s cubic-bezier(0.55, 0, 0.34, 1); } }
    @media screen and (min-width: 1280px) {
      .o-global-menu__header {
        padding-right: 52px;
        padding-bottom: 24px;
        align-items: center;
        border-bottom-width: 1px;
        margin-top: -2px; } }
  @media screen and (max-width: 1280px) {
    .o-global-menu--searching .o-global-menu__header {
      opacity: 1;
      transform: none;
      visibility: visible;
      pointer-events: auto;
      transition: transform 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1); } }
  .o-global-menu__inner {
    display: flex;
    flex-direction: column;
    flex: 1; }
  .o-global-menu__main {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative; }
  .o-global-menu__search-trigger {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    z-index: 1;
    position: absolute;
    top: 25px;
    right: 44px;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.34s 0.18s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.34s 0.18s cubic-bezier(0.55, 0, 0.34, 1); }
    .o-global-menu__search-trigger::-moz-focus-inner {
      border: 0; }
    @media screen and (min-width: 768px) {
      .o-global-menu__search-trigger {
        top: 32px; } }
    @media screen and (min-width: 1280px) {
      .o-global-menu__search-trigger {
        display: none; } }
  .o-global-menu--searching .o-global-menu__search-trigger {
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), visibility 0s 0.34s cubic-bezier(0.55, 0, 0.34, 1); }
  .o-global-menu__search-bar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative; }
    @media screen and (max-width: 1280px) {
      .o-global-menu__search-bar {
        min-width: 100%;
        border-bottom-width: 1px;
        padding-bottom: 16px;
        margin-top: 100px; } }
    @media screen and (min-width: 1280px) {
      .o-global-menu__search-bar {
        flex-direction: row-reverse;
        align-items: center;
        height: 32px;
        border-right-width: 1px; } }
  .o-global-menu__search-input {
    flex: 1;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    color: inherit;
    color: inherit;
    font-size: 1.25rem;
    line-height: 1.2;
    --line-height: 24px;
    font-weight: 400;
    letter-spacing: 0em; }
    .o-global-menu__search-input::-ms-clear {
      display: none; }
    .o-global-menu__search-input b,
    .o-global-menu__search-input strong {
      font-weight: 500; }
    .o-global-menu__search-input i,
    .o-global-menu__search-input em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-global-menu__search-input {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    .o-global-menu__search-input::-webkit-input-placeholder {
      color: var(--color--text--placeholder); }
    .o-global-menu__search-input::-moz-placeholder {
      color: var(--color--text--placeholder); }
    .o-global-menu__search-input:-moz-placeholder {
      color: var(--color--text--placeholder); }
    .o-global-menu__search-input:-ms-input-placeholder {
      color: var(--color--text--placeholder); }
    @media screen and (max-width: 1280px) {
      .o-global-menu__search-input {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), visibility 0s 0.34s cubic-bezier(0.55, 0, 0.34, 1); } }
  .o-global-menu--searching .o-global-menu__search-input {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1); }
  .o-global-menu__close-btn {
    margin-left: 20px; }
    @media screen and (min-width: 1280px) {
      .o-global-menu__close-btn {
        margin-left: 28px; } }
  .o-global-menu__search-btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
    .o-global-menu__search-btn::-moz-focus-inner {
      border: 0; }
    .o-global-menu__search-btn:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
    @media screen and (min-width: 1280px) {
      .o-global-menu__search-btn {
        margin-right: 12px; } }
  .o-global-menu__search-clear {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    width: 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.3;
    --line-height: 15.6px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    text-transform: uppercase;
    margin-right: 24px;
    margin-left: 12px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), visibility 0s 0.34s cubic-bezier(0.55, 0, 0.34, 1);
    pointer-events: auto; }
    .o-global-menu__search-clear::-moz-focus-inner {
      border: 0; }
    .o-global-menu__search-clear:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
    .o-global-menu__search-clear b,
    .o-global-menu__search-clear strong {
      font-weight: 500; }
    .o-global-menu__search-clear i,
    .o-global-menu__search-clear em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .o-global-menu__search-clear {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    @media screen and (min-width: 1280px) {
      .o-global-menu__search-clear {
        font-size: 0.8125rem;
        line-height: 1.3;
        --line-height: 16.9px;
        font-weight: 500;
        letter-spacing: 0em; } }
    @media screen and (min-width: 1280px) {
      .o-global-menu__search-clear {
        order: -1; } }
  .o-global-menu__search-input:not(:placeholder-shown) ~ .o-global-menu__search-clear {
    width: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1); }
  .o-global-menu__search-results {
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    --font-family: neue-haas-grotesk-text, sans-serif;
    --font-size: 16px;
    --font-weight: 500;
    color: var(--color--text--aux); }
    .o-global-menu__search-results b,
    .o-global-menu__search-results strong {
      font-weight: 500; }
    .o-global-menu__search-results i,
    .o-global-menu__search-results em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .o-global-menu__search-results {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    .o-global-menu__search-results > :first-child {
      padding-top: 80px; }
      @media screen and (min-width: 1280px) {
        .o-global-menu__search-results > :first-child {
          padding-top: 64px; } }
    @media screen and (max-width: 1280px) {
      .o-global-menu__search-results {
        margin-top: 140px; } }
  .o-global-menu__nav {
    flex: 1;
    display: flex;
    flex-direction: column; }
    .o-global-menu__nav > :first-child {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-top: 56px;
      margin-top: -32px; }
      @media screen and (min-width: 1280px) {
        .o-global-menu__nav > :first-child {
          padding-top: 48px; } }
      .o-global-menu__nav > :first-child > * {
        padding-top: 32px; }
  .o-global-menu__search-results, .o-global-menu__nav {
    transition: opacity 0.34s cubic-bezier(0.55, 0, 0.34, 1), transform 0.34s cubic-bezier(0.55, 0, 0.34, 1), max-height 0s 0.34s cubic-bezier(0.55, 0, 0.34, 1), visibility 0s 0.34s cubic-bezier(0.55, 0, 0.34, 1);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    transform: translateY(12px); }
  .o-global-menu--has-results.o-global-menu--searching .o-global-menu__search-results,
  .o-global-menu:not(.o-global-menu--searching) .o-global-menu__nav {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 100%;
    transition: opacity 0.34s 0.18s cubic-bezier(0.55, 0, 0.34, 1), transform 0.34s 0.18s cubic-bezier(0.55, 0, 0.34, 1), max-height 0.34s 0.18s cubic-bezier(0.55, 0, 0.34, 1), visibility 0.34s 0.18s cubic-bezier(0.55, 0, 0.34, 1);
    transform: none; }
  .o-global-menu__primary-nav {
    display: flex;
    margin-top: -32px; }
    @media screen and (max-width: 768px) {
      .o-global-menu__primary-nav {
        flex-direction: column-reverse; } }
    @media screen and (min-width: 768px) {
      .o-global-menu__primary-nav {
        margin-left: -16px; }
        .o-global-menu__primary-nav > * {
          flex: 1; }
        .o-global-menu__primary-nav > * {
          padding-left: 16px; } }
  @media screen and (min-width: 768px) and (min-width: 544px) and (max-width: 768px) {
    .o-global-menu__primary-nav {
      margin-left: -16px; }
      .o-global-menu__primary-nav > * {
        padding-left: 16px; } }
  @media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
    .o-global-menu__primary-nav {
      margin-left: -16px; }
      .o-global-menu__primary-nav > * {
        padding-left: 16px; } }
  @media screen and (min-width: 768px) and (min-width: 1024px) and (max-width: 1280px) {
    .o-global-menu__primary-nav {
      margin-left: -20px; }
      .o-global-menu__primary-nav > * {
        padding-left: 20px; } }
  @media screen and (min-width: 768px) and (min-width: 1280px) and (max-width: 1460px) {
    .o-global-menu__primary-nav {
      margin-left: -24px; }
      .o-global-menu__primary-nav > * {
        padding-left: 24px; } }
  @media screen and (min-width: 768px) and (min-width: 1460px) and (max-width: 1700px) {
    .o-global-menu__primary-nav {
      margin-left: -24px; }
      .o-global-menu__primary-nav > * {
        padding-left: 24px; } }
  @media screen and (min-width: 768px) and (min-width: 1700px) {
    .o-global-menu__primary-nav {
      margin-left: -24px; }
      .o-global-menu__primary-nav > * {
        padding-left: 24px; } }
    .o-global-menu__primary-nav > * {
      padding-top: 32px; }
  .o-global-menu__result-links {
    padding-top: 12px;
    margin-top: -16px;
    color: var(--color--text);
    transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .o-global-menu__result-links > * {
      padding-top: 16px; }
    .o-global-menu__result-links a:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
    .o-global-menu__result-links a:hover {
      color: var(--color--text--aux); }
  .o-global-menu__primary-links {
    font-size: 1.5rem;
    line-height: 1.2;
    --line-height: 28.8px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    margin-top: -8px; }
    .o-global-menu__primary-links b,
    .o-global-menu__primary-links strong {
      font-weight: 500; }
    .o-global-menu__primary-links i,
    .o-global-menu__primary-links em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-global-menu__primary-links {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 1280px) {
      .o-global-menu__primary-links {
        font-size: 1.75rem;
        line-height: 1.125;
        --line-height: 31.5px;
        font-weight: 600;
        letter-spacing: 0em; } }
    .o-global-menu__primary-links > * {
      padding-top: 8px; }
    .o-global-menu__primary-links a {
      transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
      .o-global-menu__primary-links a:focus[data-focus-method="key"] {
        outline: 1px solid var(--color--outline);
        outline-offset: 4px; }
      .o-global-menu__primary-links a:hover {
        color: var(--color--text--aux); }
  .o-global-menu__secondary-links {
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 400;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    color: var(--color--text--aux);
    margin-top: -4px;
    padding-top: 12px;
    padding-bottom: 32px; }
    .o-global-menu__secondary-links b,
    .o-global-menu__secondary-links strong {
      font-weight: 500; }
    .o-global-menu__secondary-links i,
    .o-global-menu__secondary-links em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .o-global-menu__secondary-links {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    .o-global-menu__secondary-links > * {
      padding-top: 4px; }
    @media screen and (min-width: 768px) {
      .o-global-menu__secondary-links {
        padding-top: 16px; } }
    @media screen and (min-width: 768px) {
      .o-global-menu__secondary-links {
        padding-bottom: 24px; } }
    .o-global-menu__secondary-links a {
      transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
      .o-global-menu__secondary-links a:focus[data-focus-method="key"] {
        outline: 1px solid var(--color--outline);
        outline-offset: 4px; }
      .o-global-menu__secondary-links a:hover {
        color: var(--color--text); }
    .o-global-menu__secondary-links a.is-current {
      color: var(--color--text); }
  .o-global-menu__tertiary-links {
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 400;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    color: var(--color--text--aux);
    padding-top: 64px;
    margin-top: -4px; }
    .o-global-menu__tertiary-links b,
    .o-global-menu__tertiary-links strong {
      font-weight: 500; }
    .o-global-menu__tertiary-links i,
    .o-global-menu__tertiary-links em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .o-global-menu__tertiary-links {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    .o-global-menu__tertiary-links > * {
      padding-top: 4px; }
    .o-global-menu__tertiary-links > * {
      margin-top: -4px; }
      .o-global-menu__tertiary-links > * > * {
        padding-top: 4px; }
    .o-global-menu__tertiary-links a {
      transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
      .o-global-menu__tertiary-links a:focus[data-focus-method="key"] {
        outline: 1px solid var(--color--outline);
        outline-offset: 4px; }
      .o-global-menu__tertiary-links a:hover {
        color: var(--color--text); }
    @media screen and (min-width: 768px) {
      .o-global-menu__tertiary-links {
        display: flex;
        margin-left: -16px; }
        .o-global-menu__tertiary-links > * {
          flex: 1; }
        .o-global-menu__tertiary-links > * {
          padding-left: 16px; } }
  @media screen and (min-width: 768px) and (min-width: 544px) and (max-width: 768px) {
    .o-global-menu__tertiary-links {
      margin-left: -16px; }
      .o-global-menu__tertiary-links > * {
        padding-left: 16px; } }
  @media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
    .o-global-menu__tertiary-links {
      margin-left: -16px; }
      .o-global-menu__tertiary-links > * {
        padding-left: 16px; } }
  @media screen and (min-width: 768px) and (min-width: 1024px) and (max-width: 1280px) {
    .o-global-menu__tertiary-links {
      margin-left: -20px; }
      .o-global-menu__tertiary-links > * {
        padding-left: 20px; } }
  @media screen and (min-width: 768px) and (min-width: 1280px) and (max-width: 1460px) {
    .o-global-menu__tertiary-links {
      margin-left: -24px; }
      .o-global-menu__tertiary-links > * {
        padding-left: 24px; } }
  @media screen and (min-width: 768px) and (min-width: 1460px) and (max-width: 1700px) {
    .o-global-menu__tertiary-links {
      margin-left: -24px; }
      .o-global-menu__tertiary-links > * {
        padding-left: 24px; } }
  @media screen and (min-width: 768px) and (min-width: 1700px) {
    .o-global-menu__tertiary-links {
      margin-left: -24px; }
      .o-global-menu__tertiary-links > * {
        padding-left: 24px; } }
  .o-panel .o-global-menu__search-trigger,
  .o-panel .o-global-menu__primary-links,
  .o-panel .o-global-menu__tertiary-links > * {
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), visibility 0s 0.34s cubic-bezier(0.55, 0, 0.34, 1); }
  @media screen and (min-width: 1280px) {
    .o-panel .o-global-menu__header {
      opacity: 0;
      transform: translateY(12px);
      visibility: hidden;
      pointer-events: none;
      transition: transform 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.34s 0s cubic-bezier(0.55, 0, 0.34, 1), visibility 0s 0.34s cubic-bezier(0.55, 0, 0.34, 1); }
    .o-panel.is-opened .o-global-menu__header {
      opacity: 1;
      transform: none;
      visibility: visible;
      pointer-events: auto;
      transition: transform 0.55s 0s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.55s 0s cubic-bezier(0.55, 0, 0.34, 1); } }
  .o-panel.is-opened .o-global-menu__search-trigger {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.55s 0s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.55s 0s cubic-bezier(0.55, 0, 0.34, 1); }
  .o-panel.is-opened .o-global-menu__primary-links:first-child {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.55s 0.05s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.55s 0.05s cubic-bezier(0.55, 0, 0.34, 1); }
  .o-panel.is-opened .o-global-menu__primary-links:last-child {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.55s 0.1s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.55s 0.1s cubic-bezier(0.55, 0, 0.34, 1); }
  .o-panel.is-opened .o-global-menu__tertiary-links > :first-child {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.55s 0.15s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.55s 0.15s cubic-bezier(0.55, 0, 0.34, 1); }
  .o-panel.is-opened .o-global-menu__tertiary-links > :last-child {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.55s 0.2s cubic-bezier(0.55, 0, 0.34, 1), opacity 0.55s 0.2s cubic-bezier(0.55, 0, 0.34, 1); }

.o-global-header {
  z-index: 200;
  position: relative; }
  .o-global-header--contrast {
    --color--background: #f1f4f7;
    --color--background--sticky: #f1f4f7;
    --color--background--hover: #e3e8ee;
    --color--background--contrast: #d2d9e1;
    --color--background--autofill: #e3e8ee;
    --color--text: #181a1c;
    --color--rules--primary: #bec7d0;
    --color--rules--secondary: #e3e8ee;
    color: var(--color--text);
    border-color: var(--color--rules--secondary);
    outline-color: var(--color--outline); }
  .o-global-header a {
    transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .o-global-header a:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
    .o-global-header a:hover {
      color: var(--color--text--aux); }
  .o-global-header__inner {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-flow: row wrap;
    flex-wrap: nowrap; }
    @media screen and (max-width: 544px) {
      .o-global-header__inner {
        margin-left: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-global-header__inner {
        margin-left: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-global-header__inner {
        margin-left: -16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-global-header__inner {
        margin-left: -20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-global-header__inner {
        margin-left: -24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-global-header__inner {
        margin-left: -24px; } }
    @media screen and (min-width: 1700px) {
      .o-global-header__inner {
        margin-left: -24px; } }
  .o-global-header__logo-wrapper {
    display: flex;
    flex: 0 0 auto;
    transition: height 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
    height: 24px; }
    @media screen and (max-width: 544px) {
      .o-global-header__logo-wrapper {
        width: calc((((100vw - 112px) / 6) * 5) + 64px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-global-header__logo-wrapper {
        width: calc((((100vw - 112px) / 6) * 5) + 64px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-global-header__logo-wrapper {
        width: calc((((100vw - 160px) / 8) * 6) + 80px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-global-header__logo-wrapper {
        width: calc((((100vw - 268px) / 12) * 9) + 160px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-global-header__logo-wrapper {
        width: calc((((100vw - 336px) / 12) * 9) + 192px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-global-header__logo-wrapper {
        width: calc((((100vw - 336px) / 12) * 9) + 192px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .o-global-header__logo-wrapper {
        width: 1194px;
        margin-left: 24px; } }
    @media screen and (min-width: 768px) {
      .o-global-header__logo-wrapper {
        height: 56px; } }
    .o-global-header__logo-wrapper a {
      display: flex; }
      .o-global-header__logo-wrapper a:focus[data-focus-method="key"] {
        outline: 1px solid var(--color--outline);
        outline-offset: 4px; }
  .o-global-header__logo {
    transition: width 0s 225ms cubic-bezier(0.25, 0.1, 0.25, 1), height 0s 225ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .o-global-header__logo use {
      opacity: 0;
      transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
  @media print {
    .o-global-header .o-global-header__logo,
    .o-global-header .o-global-header__logo svg {
      width: 258px;
      height: 24px; }
    .o-global-header .o-global-header__logo use.icon--logo--sm-default {
      opacity: 1;
      transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }

@media screen and (max-width: 768px) {
  .o-global-header--inverse .o-global-header__logo,
  .o-global-header--inverse .o-global-header__logo svg {
    width: 258px;
    height: 24px; }
  .o-global-header--inverse .o-global-header__logo use.icon--logo--sm-inverse {
    opacity: 1;
    transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }

@media screen and (min-width: 768px) {
  .o-global-header--inverse .o-global-header__logo,
  .o-global-header--inverse .o-global-header__logo svg {
    width: 133px;
    height: 57px; }
  .o-global-header--inverse .o-global-header__logo use.icon--logo--lg-inverse {
    opacity: 1;
    transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }

@media screen and (max-width: 768px) {
  .o-global-header:not(.o-global-header--inverse) .o-global-header__logo,
  .o-global-header:not(.o-global-header--inverse) .o-global-header__logo svg {
    width: 258px;
    height: 24px; }
  .o-global-header:not(.o-global-header--inverse) .o-global-header__logo use.icon--logo--sm-default {
    opacity: 1;
    transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }

@media screen and (min-width: 768px) {
  .o-global-header:not(.o-global-header--inverse) .o-global-header__logo,
  .o-global-header:not(.o-global-header--inverse) .o-global-header__logo svg {
    width: 134px;
    height: 57px; }
  .o-global-header:not(.o-global-header--inverse) .o-global-header__logo use.icon--logo--lg-default {
    opacity: 1;
    transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }
  .o-global-header__actions {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 0 0 auto; }
    @media screen and (max-width: 544px) {
      .o-global-header__actions {
        width: calc((((100vw - 112px) / 6) * 1) + 0px);
        margin-left: 16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-global-header__actions {
        width: calc((((100vw - 112px) / 6) * 1) + 0px);
        margin-left: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-global-header__actions {
        width: calc((((100vw - 160px) / 8) * 2) + 16px);
        margin-left: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-global-header__actions {
        width: calc((((100vw - 268px) / 12) * 3) + 40px);
        margin-left: 20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-global-header__actions {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-global-header__actions {
        width: calc((((100vw - 336px) / 12) * 3) + 48px);
        margin-left: 24px; } }
    @media screen and (min-width: 1700px) {
      .o-global-header__actions {
        width: 382px;
        margin-left: 24px; } }
    @media print {
      .o-global-header__actions {
        display: none; } }
    .o-global-header__actions button {
      -moz-appearance: none;
      -webkit-appearance: none;
      appearance: none;
      margin: 0;
      padding: 0;
      border-width: 0;
      border-radius: 0;
      background-color: transparent;
      white-space: nowrap;
      cursor: pointer;
      color: inherit;
      font-family: inherit;
      font-size: inherit;
      line-height: inherit; }
      .o-global-header__actions button::-moz-focus-inner {
        border: 0; }
  @media screen {
    .o-global-header--inverse {
      --color--background: #181a1c;
      --color--background--hover: #42474c;
      --color--background--sticky: transparent;
      --color--background--contrast: rgba(66, 71, 76, 0.1);
      --color--background--autofill: #42474c;
      --color--text: #fff;
      --color--text--aux: #89939c;
      --color--text--placeholder: #42474c;
      --color--rules--primary: #fff;
      --color--rules--secondary: #42474c;
      --color--rules--input: #42474c;
      --color--rules--input--hover: #f5f5f5;
      --color--rules--input--disabled: #181a1c;
      --color--outline: #fff;
      --color--image: #42474c;
      --color--icon--action: #687078;
      --color--dropdown--background: #42474c;
      --color--dropdown--text: #f8fafb;
      --color--dropdown--text--aux: #a6afb9;
      --color--dropdown--rules: #687078;
      --color--nav-link: #fff;
      --color--nav-link--hover: rgba(255, 255, 255, 0.8);
      --color--primary-button__background: #fff;
      --color--primary-button__foreground: #181a1c;
      --color--primary-button__outline: #fff;
      --color--primary-button__border: #fff;
      --color--primary-button--hover__background: #42474c;
      --color--primary-button--hover__foreground: #fff;
      --color--primary-button--hover__border: #42474c;
      --color--secondary-button__background: #181a1c;
      --color--secondary-button__foreground: #fff;
      --color--secondary-button__border: #42474c;
      --color--secondary-button--hover__background: #42474c;
      --color--secondary-button--hover__border: #42474c;
      color: var(--color--text);
      border-color: var(--color--rules--secondary);
      outline-color: var(--color--outline); } }
  .o-global-header__links {
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    --font-family: neue-haas-grotesk-text, sans-serif;
    --font-size: 16px;
    --font-weight: 500; }
    .o-global-header__links b,
    .o-global-header__links strong {
      font-weight: 500; }
    .o-global-header__links i,
    .o-global-header__links em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .o-global-header__links {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    .o-global-header__links a:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
  .o-global-header__search:focus[data-focus-method="key"], .o-global-header__burger:focus[data-focus-method="key"] {
    outline: 1px solid var(--color--outline);
    outline-offset: 4px; }
  .o-global-header__burger {
    margin-right: -3px; }
  .o-global-header__section-nav-wrapper {
    margin-top: 16px; }
    @media screen and (min-width: 768px) {
      .o-global-header__section-nav-wrapper {
        margin-top: 0px; } }
  .o-global-header__section-nav {
    position: relative;
    background: var(--color--background--sticky);
    position: relative; }
    .o-global-header__section-nav::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      border-top-width: 1px;
      border-color: var(--color--rules--primary); }
      @media screen and (max-width: 544px) {
        .o-global-header__section-nav::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-global-header__section-nav::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-global-header__section-nav::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-global-header__section-nav::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-global-header__section-nav::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-global-header__section-nav::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-global-header__section-nav::after {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-global-header__section-nav::after {
          left: 0;
          right: 0; } }
    .o-global-header__section-nav::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: -16px;
      right: -16px;
      background-color: inherit;
      pointer-events: none; }
      @media screen and (max-width: 544px) {
        .o-global-header__section-nav::before {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-global-header__section-nav::before {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-global-header__section-nav::before {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-global-header__section-nav::before {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-global-header__section-nav::before {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-global-header__section-nav::before {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-global-header__section-nav::before {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-global-header__section-nav::before {
          display: none; } }
  @media screen and (max-width: 768px) {
    .o-global-header__actions > *:not(.o-global-header__burger) {
      display: none; } }
  @media screen and (min-width: 768px) {
    .o-global-header__inner {
      padding: 27px 0 29px; }
    .o-global-header__actions > :not(:first-child) {
      margin-left: 24px; }
    .o-global-header__actions > :first-child {
      flex: 1; } }
  .o-sticky .o-global-header__links {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
    height: 0; }
  .o-sticky.is-sticky .o-global-header__logo-wrapper {
    height: 24px; }
  .o-sticky:not(.is-sticky) .o-global-header__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1);
    height: auto; }
  .o-sticky.is-sticky.is-sticky .o-global-header__logo use {
    opacity: 0;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
  .o-sticky.is-sticky.is-sticky .o-global-header__logo,
  .o-sticky.is-sticky.is-sticky .o-global-header__logo svg {
    width: 258px;
    height: 24px; }
  .o-sticky.is-sticky.is-sticky .o-global-header__logo use.icon--logo--sm-default {
    opacity: 1;
    transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }

.o-page-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 64px;
  flex-wrap: wrap; }
  .o-page-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-top-width: 1px;
    border-color: var(--color--rules--primary); }
    @media screen and (max-width: 544px) {
      .o-page-section::after {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-page-section::after {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section::after {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section::after {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-page-section::after {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-page-section::after {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1700px) {
      .o-page-section::after {
        left: calc((100vw - 1600px) / -2);
        right: calc((100vw - 1600px) / -2); } }
    @media print {
      .o-page-section::after {
        left: 0;
        right: 0; } }
  @media screen and (min-width: 768px) {
    .o-page-section {
      margin-top: 72px; } }
  @media screen and (min-width: 1280px) {
    .o-page-section {
      margin-top: 96px; } }
  .m-landing-header + .o-page-section,
  .m-section-header + .o-page-section--no-title {
    margin-top: 0; }
    .m-landing-header + .o-page-section::after,
    .m-section-header + .o-page-section--no-title::after {
      display: none; }
  .o-page-section__anchor {
    position: absolute;
    top: 1px;
    left: 0; }
  .o-page-section--inverse {
    --color--background: #181a1c;
    --color--background--hover: #42474c;
    --color--background--sticky: transparent;
    --color--background--contrast: rgba(66, 71, 76, 0.1);
    --color--background--autofill: #42474c;
    --color--text: #fff;
    --color--text--aux: #89939c;
    --color--text--placeholder: #42474c;
    --color--rules--primary: #fff;
    --color--rules--secondary: #42474c;
    --color--rules--input: #42474c;
    --color--rules--input--hover: #f5f5f5;
    --color--rules--input--disabled: #181a1c;
    --color--outline: #fff;
    --color--image: #42474c;
    --color--icon--action: #687078;
    --color--dropdown--background: #42474c;
    --color--dropdown--text: #f8fafb;
    --color--dropdown--text--aux: #a6afb9;
    --color--dropdown--rules: #687078;
    --color--nav-link: #fff;
    --color--nav-link--hover: rgba(255, 255, 255, 0.8);
    --color--primary-button__background: #fff;
    --color--primary-button__foreground: #181a1c;
    --color--primary-button__outline: #fff;
    --color--primary-button__border: #fff;
    --color--primary-button--hover__background: #42474c;
    --color--primary-button--hover__foreground: #fff;
    --color--primary-button--hover__border: #42474c;
    --color--secondary-button__background: #181a1c;
    --color--secondary-button__foreground: #fff;
    --color--secondary-button__border: #42474c;
    --color--secondary-button--hover__background: #42474c;
    --color--secondary-button--hover__border: #42474c;
    color: var(--color--text);
    border-color: var(--color--rules--secondary);
    outline-color: var(--color--outline); }
  .o-page-section--contrast {
    --color--background: #f1f4f7;
    --color--background--sticky: #f1f4f7;
    --color--background--hover: #e3e8ee;
    --color--background--contrast: #d2d9e1;
    --color--background--autofill: #e3e8ee;
    --color--text: #181a1c;
    --color--rules--primary: #bec7d0;
    --color--rules--secondary: #e3e8ee;
    color: var(--color--text);
    border-color: var(--color--rules--secondary);
    outline-color: var(--color--outline); }
  .o-page-section--inverse, .o-page-section--contrast {
    background-color: var(--color--background);
    position: relative;
    padding-top: 8px;
    padding-bottom: 40px; }
    .o-page-section--inverse::after, .o-page-section--contrast::after {
      display: none; }
    .o-page-section--inverse::before, .o-page-section--contrast::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: -16px;
      right: -16px;
      background-color: inherit;
      pointer-events: none; }
      @media screen and (max-width: 544px) {
        .o-page-section--inverse::before, .o-page-section--contrast::before {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-page-section--inverse::before, .o-page-section--contrast::before {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-page-section--inverse::before, .o-page-section--contrast::before {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-page-section--inverse::before, .o-page-section--contrast::before {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-page-section--inverse::before, .o-page-section--contrast::before {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-page-section--inverse::before, .o-page-section--contrast::before {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-page-section--inverse::before, .o-page-section--contrast::before {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-page-section--inverse::before, .o-page-section--contrast::before {
          display: none; } }
    @media screen and (min-width: 1280px) {
      .o-page-section--inverse, .o-page-section--contrast {
        padding-top: 4px; } }
    @media screen and (min-width: 768px) {
      .o-page-section--inverse, .o-page-section--contrast {
        padding-bottom: 48px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section--inverse, .o-page-section--contrast {
        padding-bottom: 64px; } }
  .o-page-section__header {
    font-size: 1.5rem;
    line-height: 1.2;
    --line-height: 28.8px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    padding-top: 8px; }
    .o-page-section__header b,
    .o-page-section__header strong {
      font-weight: 500; }
    .o-page-section__header i,
    .o-page-section__header em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-page-section__header {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 1280px) {
      .o-page-section__header {
        font-size: 1.75rem;
        line-height: 1.125;
        --line-height: 31.5px;
        font-weight: 600;
        letter-spacing: 0em; } }
    @media screen and (min-width: 768px) {
      .o-page-section__header {
        padding-top: 12px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__header {
        padding-top: 16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__header {
        max-width: calc((((100vw - 160px) / 8) * 4) + 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__header {
        max-width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-page-section__header {
        max-width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-page-section__header {
        max-width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1700px) {
      .o-page-section__header {
        max-width: 788px; } }
    .o-page-section__header small {
      color: var(--color--text--aux);
      white-space: nowrap; }

@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .o-page-section--wide-load .o-page-section__header {
    max-width: calc((((100vw - 160px) / 8) * 3) + 32px); } }

@media screen and (min-width: 768px) and (min-width: 1024px) and (max-width: 1280px) {
  .o-page-section--wide-load .o-page-section__header {
    max-width: calc((((100vw - 268px) / 12) * 3) + 40px); } }

@media screen and (min-width: 768px) and (min-width: 1280px) and (max-width: 1460px) {
  .o-page-section--wide-load .o-page-section__header {
    max-width: calc((((100vw - 336px) / 12) * 3) + 48px); } }

@media screen and (min-width: 768px) and (min-width: 1460px) and (max-width: 1700px) {
  .o-page-section--wide-load .o-page-section__header {
    max-width: calc((((100vw - 336px) / 12) * 2) + 24px); } }

@media screen and (min-width: 768px) and (min-width: 1700px) {
  .o-page-section--wide-load .o-page-section__header {
    max-width: 246.66667px; } }
  @media screen and (min-width: 768px) {
    .o-page-section--sticky .o-page-section__header {
      position: sticky;
      top: var(--sticky--avoid);
      transition: top 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }
  @media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
    .o-page-section--sticky .o-page-section__header {
      max-width: calc((((100vw - 160px) / 8) * 3) + 32px); } }
  @media screen and (min-width: 768px) and (min-width: 1024px) and (max-width: 1280px) {
    .o-page-section--sticky .o-page-section__header {
      max-width: calc((((100vw - 268px) / 12) * 3) + 40px); } }
  @media screen and (min-width: 768px) and (min-width: 1280px) and (max-width: 1460px) {
    .o-page-section--sticky .o-page-section__header {
      max-width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
  @media screen and (min-width: 768px) and (min-width: 1460px) and (max-width: 1700px) {
    .o-page-section--sticky .o-page-section__header {
      max-width: calc((((100vw - 336px) / 12) * 2) + 24px); } }
  @media screen and (min-width: 768px) and (min-width: 1700px) {
    .o-page-section--sticky .o-page-section__header {
      max-width: 246.66667px; } }
  .o-page-section__sticky-index {
    color: var(--color--action);
    display: none; }
    @media screen and (min-width: 768px) {
      .o-page-section__sticky-index {
        display: block; } }
  .o-page-section__main {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .o-page-section__main {
        width: auto;
        margin-left: auto; } }
  .o-page-section__content {
    width: 100%;
    margin-left: auto; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__content {
        width: calc((((100vw - 160px) / 8) * 4) + 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__content {
        width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-page-section__content {
        width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-page-section__content {
        width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1700px) {
      .o-page-section__content {
        width: 788px; } }
  .o-page-section__content--links:first-child {
    padding-top: 56px; }
    @media screen and (min-width: 768px) {
      .o-page-section__content--links:first-child {
        padding-top: 16px; } }
  .o-page-section__content--links-small:first-child {
    padding-top: 16px; }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--links-small:first-child {
        padding-top: 20px; } }
  .o-page-section__content--listing {
    padding-top: 56px; }
    @media screen and (max-width: 544px) {
      .o-page-section__content--listing {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-page-section__content--listing {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__content--listing {
        width: calc(100vw - 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__content--listing {
        width: calc(100vw - 48px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-page-section__content--listing {
        width: calc(100vw - 72px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-page-section__content--listing {
        width: calc(100vw - 72px); } }
    @media screen and (min-width: 1700px) {
      .o-page-section__content--listing {
        width: 1600px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--listing {
        padding-top: 80px; } }
  .o-page-section__content--quotes {
    padding-top: 20px; }
    @media screen and (max-width: 544px) {
      .o-page-section__content--quotes {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-page-section__content--quotes {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__content--quotes {
        width: calc(100vw - 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__content--quotes {
        width: calc(100vw - 48px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-page-section__content--quotes {
        width: calc(100vw - 72px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-page-section__content--quotes {
        width: calc(100vw - 72px); } }
    @media screen and (min-width: 1700px) {
      .o-page-section__content--quotes {
        width: 1600px; } }
    @media screen and (min-width: 768px) {
      .o-page-section__content--quotes {
        padding-top: 12px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--quotes {
        padding-top: 16px; } }
  .o-page-section__content--grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -32px;
    padding-top: 48px; }
    @media screen and (max-width: 544px) {
      .o-page-section__content--grid {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-page-section__content--grid {
        width: calc(100vw - 32px); } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__content--grid {
        width: calc(100vw - 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__content--grid {
        width: calc(100vw - 48px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-page-section__content--grid {
        width: calc(100vw - 72px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-page-section__content--grid {
        width: calc(100vw - 72px); } }
    @media screen and (min-width: 1700px) {
      .o-page-section__content--grid {
        width: 1600px; } }
    .o-page-section__content--grid > * {
      padding-top: 32px; }
    @media screen and (min-width: 768px) {
      .o-page-section__content--grid {
        padding-top: 64px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--grid {
        padding-top: 72px; } }
  .o-page-section__content--numbers {
    margin-top: -24px; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__content--numbers {
        width: calc((((100vw - 160px) / 8) * 4) + 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__content--numbers {
        width: calc((((100vw - 268px) / 12) * 9) + 160px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-page-section__content--numbers {
        width: calc((((100vw - 336px) / 12) * 9) + 192px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-page-section__content--numbers {
        width: calc((((100vw - 336px) / 12) * 9) + 192px); } }
    @media screen and (min-width: 1700px) {
      .o-page-section__content--numbers {
        width: 1194px; } }
    .o-page-section__content--numbers:first-child {
      padding-top: 36px; }
      @media screen and (min-width: 768px) {
        .o-page-section__content--numbers:first-child {
          padding-top: 0px; } }
      @media screen and (min-width: 1280px) {
        .o-page-section__content--numbers:first-child {
          padding-top: 16px; } }
    .o-page-section__content--numbers > * {
      margin-top: 24px; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__content--numbers {
        margin-top: -40px; }
        .o-page-section__content--numbers > * {
          margin-top: 40px; } }
    @media screen and (min-width: 1024px) {
      .o-page-section__content--numbers {
        margin-top: 0px; }
        .o-page-section__content--numbers > * {
          margin-top: 0px; } }
    .o-page-section__content--numbers > * {
      position: relative; }
      .o-page-section__content--numbers > *::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        border-top-width: 1px; }
        @media screen and (max-width: 544px) {
          .o-page-section__content--numbers > *::after {
            left: -16px;
            right: -16px; } }
        @media screen and (min-width: 544px) and (max-width: 768px) {
          .o-page-section__content--numbers > *::after {
            left: -16px;
            right: -16px; } }
        @media screen and (min-width: 768px) and (max-width: 1024px) {
          .o-page-section__content--numbers > *::after {
            left: -24px;
            right: -24px; } }
        @media screen and (min-width: 1024px) and (max-width: 1280px) {
          .o-page-section__content--numbers > *::after {
            left: -24px;
            right: -24px; } }
        @media screen and (min-width: 1280px) and (max-width: 1460px) {
          .o-page-section__content--numbers > *::after {
            left: -36px;
            right: -36px; } }
        @media screen and (min-width: 1460px) and (max-width: 1700px) {
          .o-page-section__content--numbers > *::after {
            left: -36px;
            right: -36px; } }
        @media screen and (min-width: 1700px) {
          .o-page-section__content--numbers > *::after {
            left: calc((100vw - 1600px) / -2);
            right: calc((100vw - 1600px) / -2); } }
        @media print {
          .o-page-section__content--numbers > *::after {
            left: 0;
            right: 0; } }
      @media screen and (min-width: 768px) {
        .o-page-section__content--numbers > *:first-child::after {
          display: none; }
        .o-page-section__content--numbers > *::after {
          left: 0; } }
      @media screen and (min-width: 1280px) {
        .o-page-section__content--numbers > *::after {
          display: none; } }
    .o-page-section__content--numbers _::-webkit-full-page-media,
    .o-page-section__content--numbers _:future,
    :root .o-page-section__content--numbers > .m-statistic {
      display: flex; }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__content--numbers {
        column-count: 3;
        column-gap: 20px; }
        .o-page-section__content--numbers > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-page-section__content--numbers > * _::-webkit-full-page-media,
          .o-page-section__content--numbers > * _:future,
          :root .o-page-section__content--numbers > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-page-section__content--numbers > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-page-section__content--numbers > * {
              display: inline-block; } } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-page-section__content--numbers {
        column-count: 3;
        column-gap: 24px; }
        .o-page-section__content--numbers > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-page-section__content--numbers > * _::-webkit-full-page-media,
          .o-page-section__content--numbers > * _:future,
          :root .o-page-section__content--numbers > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-page-section__content--numbers > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-page-section__content--numbers > * {
              display: inline-block; } } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-page-section__content--numbers {
        column-count: 3;
        column-gap: 24px; }
        .o-page-section__content--numbers > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-page-section__content--numbers > * _::-webkit-full-page-media,
          .o-page-section__content--numbers > * _:future,
          :root .o-page-section__content--numbers > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-page-section__content--numbers > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-page-section__content--numbers > * {
              display: inline-block; } } }
    @media screen and (min-width: 1700px) {
      .o-page-section__content--numbers {
        column-count: 3;
        column-gap: 24px; }
        .o-page-section__content--numbers > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-page-section__content--numbers > * _::-webkit-full-page-media,
          .o-page-section__content--numbers > * _:future,
          :root .o-page-section__content--numbers > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-page-section__content--numbers > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-page-section__content--numbers > * {
              display: inline-block; } } }
  .o-page-section__content--subtitle {
    font-size: 1.5rem;
    line-height: 1.2;
    --line-height: 28.8px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt"; }
    .o-page-section__content--subtitle b,
    .o-page-section__content--subtitle strong {
      font-weight: 500; }
    .o-page-section__content--subtitle i,
    .o-page-section__content--subtitle em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-page-section__content--subtitle {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--subtitle {
        font-size: 2.25rem;
        line-height: 1.125;
        --line-height: 40.5px;
        font-weight: 600;
        letter-spacing: 0em; } }
    .o-page-section__content--subtitle:not(:first-child) {
      padding-top: 16px; }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-page-section__content--subtitle:not(:first-child) {
          padding-top: 20px; } }
      @media screen and (min-width: 1280px) {
        .o-page-section__content--subtitle:not(:first-child) {
          padding-top: 24px; } }
    @media screen and (max-width: 768px) {
      .o-page-section__content--subtitle[data-index]:before {
        content: attr(data-index);
        display: block;
        color: var(--color--text--aux); } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .o-page-section__content--text, .o-page-section__content--boxes {
      column-count: 2;
      column-gap: 24px; }
      .o-page-section__content--text > *, .o-page-section__content--boxes > * {
        width: 100%;
        break-inside: avoid-column; }
        .o-page-section__content--text > * _::-webkit-full-page-media,
        .o-page-section__content--text > * _:future,
        :root .o-page-section__content--text > *, .o-page-section__content--boxes > * _::-webkit-full-page-media,
        .o-page-section__content--boxes > * _:future,
        :root .o-page-section__content--boxes > * {
          display: inline-block;
          -webkit-backface-visibility: hidden; }
        @supports not (break-inside: avoid-column) {
          .o-page-section__content--text > *, .o-page-section__content--boxes > * {
            display: inline-block;
            page-break-inside: avoid; } }
        @supports (-ms-ime-align: auto) {
          .o-page-section__content--text > *, .o-page-section__content--boxes > * {
            display: inline-block; } } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .o-page-section__content--text, .o-page-section__content--boxes {
      column-count: 2;
      column-gap: 24px; }
      .o-page-section__content--text > *, .o-page-section__content--boxes > * {
        width: 100%;
        break-inside: avoid-column; }
        .o-page-section__content--text > * _::-webkit-full-page-media,
        .o-page-section__content--text > * _:future,
        :root .o-page-section__content--text > *, .o-page-section__content--boxes > * _::-webkit-full-page-media,
        .o-page-section__content--boxes > * _:future,
        :root .o-page-section__content--boxes > * {
          display: inline-block;
          -webkit-backface-visibility: hidden; }
        @supports not (break-inside: avoid-column) {
          .o-page-section__content--text > *, .o-page-section__content--boxes > * {
            display: inline-block;
            page-break-inside: avoid; } }
        @supports (-ms-ime-align: auto) {
          .o-page-section__content--text > *, .o-page-section__content--boxes > * {
            display: inline-block; } } }
  @media screen and (min-width: 1700px) {
    .o-page-section__content--text, .o-page-section__content--boxes {
      column-count: 2;
      column-gap: 24px; }
      .o-page-section__content--text > *, .o-page-section__content--boxes > * {
        width: 100%;
        break-inside: avoid-column; }
        .o-page-section__content--text > * _::-webkit-full-page-media,
        .o-page-section__content--text > * _:future,
        :root .o-page-section__content--text > *, .o-page-section__content--boxes > * _::-webkit-full-page-media,
        .o-page-section__content--boxes > * _:future,
        :root .o-page-section__content--boxes > * {
          display: inline-block;
          -webkit-backface-visibility: hidden; }
        @supports not (break-inside: avoid-column) {
          .o-page-section__content--text > *, .o-page-section__content--boxes > * {
            display: inline-block;
            page-break-inside: avoid; } }
        @supports (-ms-ime-align: auto) {
          .o-page-section__content--text > *, .o-page-section__content--boxes > * {
            display: inline-block; } } }
  .o-page-section__content--form:not(:first-child) {
    padding-top: 24px; }
    @media screen and (min-width: 768px) {
      .o-page-section__content--form:not(:first-child) {
        padding-top: 36px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--form:not(:first-child) {
        padding-top: 48px; } }
  .o-page-section__content--text:first-child {
    padding-top: 56px; }
    @media screen and (min-width: 768px) {
      .o-page-section__content--text:first-child {
        padding-top: 20px; } }
  .o-page-section__content--text:not(:first-child) {
    padding-top: 16px; }
    @media screen and (min-width: 768px) {
      .o-page-section__content--text:not(:first-child) {
        padding-top: 20px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--text:not(:first-child) {
        padding-top: 24px; } }
  .o-page-section__content--map:first-child, .o-page-section__content--image:first-child {
    padding-top: 56px; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__content--map:first-child, .o-page-section__content--image:first-child {
        padding-top: 16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__content--map:first-child, .o-page-section__content--image:first-child {
        padding-top: 20px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--map:first-child, .o-page-section__content--image:first-child {
        padding-top: 24px; } }
  .o-page-section__content--map:not(:first-child), .o-page-section__content--image:not(:first-child) {
    padding-top: 64px; }
  @media print {
    .o-page-section__content--map, .o-page-section__content--image {
      page-break-inside: avoid; } }
  @media screen and (min-width: 768px) {
    .o-page-section__content--boxes {
      margin-top: -40px; }
      .o-page-section__content--boxes > * {
        padding-top: 40px; } }
  @media screen and (min-width: 1280px) {
    .o-page-section__content--boxes {
      margin-top: -48px; }
      .o-page-section__content--boxes > * {
        padding-top: 48px; } }
  .o-page-section__content--boxes:not(:first-child) {
    padding-top: 32px; }
    @media screen and (min-width: 768px) {
      .o-page-section__content--boxes:not(:first-child) {
        padding-top: 40px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--boxes:not(:first-child) {
        padding-top: 48px; } }
  .o-page-section__content--btns:not(:first-child) {
    padding-top: 24px; }
    @media screen and (min-width: 768px) {
      .o-page-section__content--btns:not(:first-child) {
        padding-top: 36px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--btns:not(:first-child) {
        padding-top: 48px; } }
  .o-page-section__content--articles {
    padding-top: 72px; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__content--articles {
        width: calc((((100vw - 160px) / 8) * 4) + 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__content--articles {
        width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-page-section__content--articles {
        width: calc((((100vw - 336px) / 12) * 9) + 192px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-page-section__content--articles {
        width: calc((((100vw - 336px) / 12) * 9) + 192px); } }
    @media screen and (min-width: 1700px) {
      .o-page-section__content--articles {
        width: 1194px; } }
    @media screen and (min-width: 768px) {
      .o-page-section__content--articles {
        padding-top: 16px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__content--articles {
        padding-top: 24px; } }
  .o-page-section__footer {
    width: 100%;
    margin-left: auto;
    padding-top: 24px; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-page-section__footer {
        width: calc((((100vw - 160px) / 8) * 4) + 48px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-page-section__footer {
        width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
    @media screen and (min-width: 768px) {
      .o-page-section__footer {
        padding-top: 72px; } }
    @media screen and (min-width: 1280px) {
      .o-page-section__footer {
        padding-top: 96px; } }
  @media print {
    .o-page-section__main {
      width: 100%; } }

@media screen and (min-width: 768px) {
  .o-page-section__content--map {
    padding-top: 0 !important;
    margin-top: -12px; } }

@media screen and (min-width: 1280px) {
  .o-page-section__content--map {
    padding-top: 0 !important;
    margin-top: -24px; } }

.o-global-footer {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  --line-height: 24px;
  font-weight: 400;
  letter-spacing: 0em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  font-feature-settings: "salt";
  margin-top: 64px;
  padding-bottom: 24px; }
  .o-global-footer::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-top-width: 1px; }
    @media screen and (max-width: 544px) {
      .o-global-footer::after {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-global-footer::after {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-global-footer::after {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-global-footer::after {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-global-footer::after {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-global-footer::after {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1700px) {
      .o-global-footer::after {
        left: calc((100vw - 1600px) / -2);
        right: calc((100vw - 1600px) / -2); } }
    @media print {
      .o-global-footer::after {
        left: 0;
        right: 0; } }
  .o-global-footer b,
  .o-global-footer strong {
    font-weight: 500; }
  .o-global-footer i,
  .o-global-footer em {
    font-style: italic; }
  .s-neue-haas-grotesk-text-loaded .o-global-footer {
    font-family: "neue-haas-grotesk-text", sans-serif; }
  @media screen and (min-width: 768px) {
    .o-global-footer {
      margin-top: 72px; } }
  @media screen and (min-width: 1280px) {
    .o-global-footer {
      margin-top: 96px; } }
  @media screen and (min-width: 768px) {
    .o-global-footer {
      padding-bottom: 48px; } }
  .o-global-footer a {
    display: inline-block; }
    .o-global-footer a:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
    .o-global-footer a:not([class]) {
      transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
      .o-global-footer a:not([class]):focus[data-focus-method="key"] {
        outline: 1px solid var(--color--outline);
        outline-offset: 4px; }
      .o-global-footer a:not([class]):hover {
        color: var(--color--text--aux); }
  .o-global-footer__inner {
    position: relative;
    display: flex;
    flex-flow: row wrap; }
    @media screen and (max-width: 544px) {
      .o-global-footer__inner {
        margin-left: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-global-footer__inner {
        margin-left: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-global-footer__inner {
        margin-left: -16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-global-footer__inner {
        margin-left: -20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-global-footer__inner {
        margin-left: -24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-global-footer__inner {
        margin-left: -24px; } }
    @media screen and (min-width: 1700px) {
      .o-global-footer__inner {
        margin-left: -24px; } }
    .o-global-footer__inner > * {
      flex: 0 0 auto; }
      @media screen and (max-width: 544px) {
        .o-global-footer__inner > * {
          width: calc(100vw - 32px);
          margin-left: 16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-global-footer__inner > * {
          width: calc(100vw - 32px);
          margin-left: 16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-global-footer__inner > * {
          width: calc((((100vw - 160px) / 8) * 4) + 48px);
          margin-left: 16px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-global-footer__inner > * {
          width: calc((((100vw - 268px) / 12) * 6) + 100px);
          margin-left: 20px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-global-footer__inner > * {
          width: calc((((100vw - 336px) / 12) * 6) + 120px);
          margin-left: 24px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-global-footer__inner > * {
          width: calc((((100vw - 336px) / 12) * 6) + 120px);
          margin-left: 24px; } }
      @media screen and (min-width: 1700px) {
        .o-global-footer__inner > * {
          width: 788px;
          margin-left: 24px; } }
    @media print {
      .o-global-footer__inner {
        display: none; } }
  .o-global-footer__logo-wrapper {
    margin-top: 20px; }
  .o-global-footer__logo use {
    opacity: 0;
    transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
  @media screen and (max-width: 768px) {
    .o-global-footer__logo,
    .o-global-footer__logo svg {
      width: 134px;
      height: 57px; }
    .o-global-footer__logo use.icon--logo--lg-default {
      opacity: 1;
      transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .o-global-footer__logo,
    .o-global-footer__logo svg {
      width: 146px;
      height: 61px; }
    .o-global-footer__logo use.icon--logo--xl-default {
      opacity: 1;
      transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .o-global-footer__logo,
    .o-global-footer__logo svg {
      width: 146px;
      height: 61px; }
    .o-global-footer__logo use.icon--logo--xl-default {
      opacity: 1;
      transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }
  @media screen and (min-width: 1280px) {
    .o-global-footer__logo,
    .o-global-footer__logo svg {
      width: 170px;
      height: 70px; }
    .o-global-footer__logo use.icon--logo--xxl-default {
      opacity: 1;
      transition: opacity 195ms 195ms cubic-bezier(0.25, 0.1, 0.25, 1); } }
  .o-global-footer__links {
    padding-top: 48px; }
    @media screen and (min-width: 768px) {
      .o-global-footer__links {
        padding-top: 16px; } }
  .o-global-footer__contact, .o-global-footer__legal {
    width: 100%;
    position: relative;
    padding-top: 16px; }
    .o-global-footer__contact::after, .o-global-footer__legal::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      border-top-width: 1px; }
      @media screen and (max-width: 544px) {
        .o-global-footer__contact::after, .o-global-footer__legal::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-global-footer__contact::after, .o-global-footer__legal::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-global-footer__contact::after, .o-global-footer__legal::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-global-footer__contact::after, .o-global-footer__legal::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-global-footer__contact::after, .o-global-footer__legal::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-global-footer__contact::after, .o-global-footer__legal::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-global-footer__contact::after, .o-global-footer__legal::after {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-global-footer__contact::after, .o-global-footer__legal::after {
          left: 0;
          right: 0; } }
  .o-global-footer__contact {
    position: relative;
    margin-top: 48px; }
    @media screen and (min-width: 768px) {
      .o-global-footer__contact {
        margin-top: 96px; } }
    .o-global-footer__contact > *:not(:first-child) {
      margin-top: 8px; }
    @media print {
      .o-global-footer__contact {
        display: none; } }
  .o-global-footer__back-to-top {
    display: none; }
    @media screen and (min-width: 768px) {
      .o-global-footer__back-to-top {
        position: absolute;
        display: block;
        top: 24px;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px; } }
  .o-global-footer__legal {
    margin-top: 36px; }

@media screen and (max-width: 768px) and (pointer: coarse) {
  .o-global-footer__legal > *:not(:first-child) {
    padding-top: 8px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-global-footer__legal {
        margin-top: 32px; } }
    @media screen and (min-width: 768px) {
      .o-global-footer__legal {
        display: flex;
        margin-top: 48px; }
        .o-global-footer__legal > *:not(:first-child) {
          padding-left: 24px; }
        .o-global-footer__legal > :last-child {
          flex: 1;
          text-align: right; } }

@keyframes o-hero__fade-slide-up {
  from {
    transform: translateY(40px);
    opacity: 0; }
  to {
    transform: translateY(0px);
    opacity: 1; } }

.o-hero {
  position: relative;
  z-index: 5; }
  @media screen {
    .o-hero {
      --color--background: #181a1c;
      --color--background--hover: #42474c;
      --color--background--sticky: transparent;
      --color--background--contrast: rgba(66, 71, 76, 0.1);
      --color--background--autofill: #42474c;
      --color--text: #fff;
      --color--text--aux: #89939c;
      --color--text--placeholder: #42474c;
      --color--rules--primary: #fff;
      --color--rules--secondary: #42474c;
      --color--rules--input: #42474c;
      --color--rules--input--hover: #f5f5f5;
      --color--rules--input--disabled: #181a1c;
      --color--outline: #fff;
      --color--image: #42474c;
      --color--icon--action: #687078;
      --color--dropdown--background: #42474c;
      --color--dropdown--text: #f8fafb;
      --color--dropdown--text--aux: #a6afb9;
      --color--dropdown--rules: #687078;
      --color--nav-link: #fff;
      --color--nav-link--hover: rgba(255, 255, 255, 0.8);
      --color--primary-button__background: #fff;
      --color--primary-button__foreground: #181a1c;
      --color--primary-button__outline: #fff;
      --color--primary-button__border: #fff;
      --color--primary-button--hover__background: #42474c;
      --color--primary-button--hover__foreground: #fff;
      --color--primary-button--hover__border: #42474c;
      --color--secondary-button__background: #181a1c;
      --color--secondary-button__foreground: #fff;
      --color--secondary-button__border: #42474c;
      --color--secondary-button--hover__background: #42474c;
      --color--secondary-button--hover__border: #42474c;
      color: var(--color--text);
      border-color: var(--color--rules--secondary);
      outline-color: var(--color--outline); }
      .o-hero:first-child {
        margin-top: calc(var(--global-header-height) * -1); } }
  .o-hero--navigation:not(.o-hero--short) {
    margin-bottom: 56px; }
    @media screen and (min-width: 768px) {
      .o-hero--navigation:not(.o-hero--short) {
        margin-bottom: 0; } }
  .o-hero:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3); }
    @media screen and (max-width: 544px) {
      .o-hero:before {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-hero:before {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-hero:before {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-hero:before {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-hero:before {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-hero:before {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1700px) {
      .o-hero:before {
        left: calc((100vw - 1600px) / -2);
        right: calc((100vw - 1600px) / -2); } }
    @media print {
      .o-hero:before {
        display: none; } }
  .o-hero__background {
    top: 0;
    z-index: 1;
    height: 100%;
    position: absolute;
    pointer-events: none;
    overflow: hidden; }
    @media screen and (max-width: 544px) {
      .o-hero__background {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-hero__background {
        left: -16px;
        right: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-hero__background {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-hero__background {
        left: -24px;
        right: -24px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-hero__background {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-hero__background {
        left: -36px;
        right: -36px; } }
    @media screen and (min-width: 1700px) {
      .o-hero__background {
        left: calc((100vw - 1600px) / -2);
        right: calc((100vw - 1600px) / -2); } }
    .o-hero__background img {
      position: absolute;
      top: 0px;
      left: 0px;
      bottom: 0px;
      right: 0px;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 195ms 0s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
      will-change: opacity, transform; }

@keyframes o-hero__background {
  from {
    transform: translateY(60px); }
  to {
    transform: none; } }
    .o-hero__background > *:last-child:not(:only-child) img.is-loaded {
      animation: o-hero__background 600ms; }
    .s-container-is-entering .o-hero__background > * img.is-loaded {
      animation: none; }
    .o-hero__background img.is-loaded {
      z-index: 2;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.7s 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
    @media print {
      .o-hero__background {
        display: none; } }
  .o-hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 136px;
    padding-bottom: 136px; }
    @media screen {
      .o-hero__inner {
        height: 500px;
        min-height: var(--viewport-height, 100vh); } }
  @media screen and (min-width: 768px) {
    .o-hero__inner {
      height: 700px; } }
    @media screen and (min-width: 768px) {
      .o-hero__inner {
        padding-top: 148px; } }
    @media screen and (min-width: 1280px) {
      .o-hero__inner {
        padding-top: 180px; } }
    @media screen and (min-width: 768px) {
      .o-hero__inner {
        padding-bottom: 148px; } }
    @media screen and (min-width: 1280px) {
      .o-hero__inner {
        padding-bottom: 180px; } }
    @media print {
      .o-hero__inner {
        padding-top: 80px; } }
  @media screen {
    .o-hero--short .o-hero__inner {
      justify-content: center;
      height: auto;
      min-height: auto; } }
  .o-hero--short:not(.o-hero--navigation) .o-hero__inner {
    padding-top: 136px;
    padding-bottom: 192px; }
    @media screen and (min-width: 768px) {
      .o-hero--short:not(.o-hero--navigation) .o-hero__inner {
        padding-top: 126px; } }
    @media screen and (min-width: 1280px) {
      .o-hero--short:not(.o-hero--navigation) .o-hero__inner {
        padding-top: 164px; } }
    @media screen and (min-width: 768px) {
      .o-hero--short:not(.o-hero--navigation) .o-hero__inner {
        padding-bottom: 191px; } }
    @media screen and (min-width: 1280px) {
      .o-hero--short:not(.o-hero--navigation) .o-hero__inner {
        padding-bottom: 249px; } }
  .o-hero--short .o-hero__title {
    order: 1; }
  .o-hero--large .o-hero__title {
    font-size: 4.5rem;
    line-height: 0.9;
    --line-height: 64.8px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-feature-settings: "salt";
    font-kerning: normal;
    padding-bottom: 12px; }
    .o-hero--large .o-hero__title b,
    .o-hero--large .o-hero__title strong {
      font-weight: 500; }
    .o-hero--large .o-hero__title i,
    .o-hero--large .o-hero__title em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-hero--large .o-hero__title {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 768px) {
      .o-hero--large .o-hero__title {
        font-size: 10.5rem;
        line-height: 0.85;
        --line-height: 142.8px;
        font-weight: 600;
        letter-spacing: -0.02em; } }
    @media screen and (min-width: 1280px) {
      .o-hero--large .o-hero__title {
        font-size: 16rem;
        line-height: 0.85;
        --line-height: 217.6px;
        font-weight: 600;
        letter-spacing: -0.02em; } }
    @media screen and (min-width: 768px) {
      .o-hero--large .o-hero__title {
        padding-bottom: 8px; } }
    @media screen and (min-width: 1280px) {
      .o-hero--large .o-hero__title {
        padding-bottom: 16px; } }
  .o-hero--medium .o-hero__title {
    font-size: 2.25rem;
    line-height: 1.125;
    --line-height: 40.5px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-feature-settings: "salt";
    font-kerning: normal;
    padding-bottom: 12px; }
    .o-hero--medium .o-hero__title b,
    .o-hero--medium .o-hero__title strong {
      font-weight: 500; }
    .o-hero--medium .o-hero__title i,
    .o-hero--medium .o-hero__title em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-hero--medium .o-hero__title {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 768px) {
      .o-hero--medium .o-hero__title {
        font-size: 4rem;
        line-height: 1;
        --line-height: 64px;
        font-weight: 600;
        letter-spacing: 0em; } }
    @media screen and (min-width: 1280px) {
      .o-hero--medium .o-hero__title {
        font-size: 4.5rem;
        line-height: 0.9;
        --line-height: 64.8px;
        font-weight: 600;
        letter-spacing: 0em; } }
    @media screen and (min-width: 768px) {
      .o-hero--medium .o-hero__title {
        padding-bottom: 16px; } }
    @media screen and (min-width: 1280px) {
      .o-hero--medium .o-hero__title {
        padding-bottom: 20px; } }
  .o-hero--small .o-hero__title {
    font-size: 2.25rem;
    line-height: 1.125;
    --line-height: 40.5px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-feature-settings: "salt";
    font-kerning: normal;
    padding-bottom: 12px; }
    .o-hero--small .o-hero__title b,
    .o-hero--small .o-hero__title strong {
      font-weight: 500; }
    .o-hero--small .o-hero__title i,
    .o-hero--small .o-hero__title em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-hero--small .o-hero__title {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 768px) {
      .o-hero--small .o-hero__title {
        font-size: 3rem;
        line-height: 1;
        --line-height: 48px;
        font-weight: 600;
        letter-spacing: 0em; } }
    @media screen and (min-width: 1280px) {
      .o-hero--small .o-hero__title {
        font-size: 4rem;
        line-height: 1;
        --line-height: 64px;
        font-weight: 600;
        letter-spacing: 0em; } }
    @media screen and (min-width: 768px) {
      .o-hero--small .o-hero__title {
        padding-bottom: 20px; } }
    @media screen and (min-width: 1280px) {
      .o-hero--small .o-hero__title {
        padding-bottom: 24px; } }
  .o-hero__title {
    position: relative; }
    .o-hero__title::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      border-top-width: 1px;
      border-color: var(--color--rules--primary); }
      @media screen and (max-width: 544px) {
        .o-hero__title::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-hero__title::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-hero__title::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-hero__title::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-hero__title::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-hero__title::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-hero__title::after {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-hero__title::after {
          left: 0;
          right: 0; } }
    .s-container-is-entering .o-hero__title {
      animation: o-hero__fade-slide-up 300ms cubic-bezier(0.25, 0.1, 0.25, 1) forwards; }
  .o-hero--short .o-hero__title:not(:only-child) {
    position: relative;
    padding-top: 16px; }
    .o-hero--short .o-hero__title:not(:only-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      border-top-width: 1px; }
      @media screen and (max-width: 544px) {
        .o-hero--short .o-hero__title:not(:only-child)::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-hero--short .o-hero__title:not(:only-child)::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-hero--short .o-hero__title:not(:only-child)::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-hero--short .o-hero__title:not(:only-child)::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-hero--short .o-hero__title:not(:only-child)::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-hero--short .o-hero__title:not(:only-child)::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-hero--short .o-hero__title:not(:only-child)::after {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-hero--short .o-hero__title:not(:only-child)::after {
          left: 0;
          right: 0; } }
    @media screen and (min-width: 768px) {
      .o-hero--short .o-hero__title:not(:only-child) {
        padding-top: 16px; } }
    @media screen and (min-width: 1024px) {
      .o-hero--short .o-hero__title:not(:only-child) {
        padding-top: 20px; } }
  .o-hero__background:not(:empty) ~ .o-hero__inner .o-hero__title:after {
    opacity: 0.5; }
  .o-hero__global-navigation {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    padding-top: var(--global-header-height);
    margin-top: 48px;
    font-size: 2.25rem;
    line-height: 1.125;
    --line-height: 40.5px;
    font-weight: 600;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-feature-settings: "salt";
    font-kerning: normal;
    font-size: 1.5rem;
    padding-bottom: 168px;
    width: 100%; }
    .o-hero__global-navigation b,
    .o-hero__global-navigation strong {
      font-weight: 500; }
    .o-hero__global-navigation i,
    .o-hero__global-navigation em {
      font-style: italic; }
    .s-neue-haas-grotesk-display-loaded .o-hero__global-navigation {
      font-family: "neue-haas-grotesk-display", sans-serif; }
    @media screen and (min-width: 768px) {
      .o-hero__global-navigation {
        font-size: 3rem;
        line-height: 1;
        --line-height: 48px;
        font-weight: 600;
        letter-spacing: 0em; } }
    @media screen and (min-width: 1280px) {
      .o-hero__global-navigation {
        font-size: 4rem;
        line-height: 1;
        --line-height: 64px;
        font-weight: 600;
        letter-spacing: 0em; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-hero__global-navigation {
        width: calc((((100vw - 268px) / 12) * 6) + 100px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-hero__global-navigation {
        width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-hero__global-navigation {
        width: calc((((100vw - 336px) / 12) * 6) + 120px); } }
    @media screen and (min-width: 1700px) {
      .o-hero__global-navigation {
        width: 788px; } }
    .o-hero__global-navigation > ul > *:not(:first-child) {
      padding-top: 4px; }
    .o-hero__global-navigation > ul > li > a {
      display: block; }
      .o-hero__global-navigation > ul > li > a:focus {
        outline: none; }
      .o-hero__global-navigation > ul > li > a:focus[data-focus-method="key"] > * {
        outline: 1px solid;
        outline-offset: 4px; }
      .s-container-is-leaving .o-hero__global-navigation > ul > li > a {
        pointer-events: none;
        transform: translateY(-40px);
        opacity: 0;
        transition: transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .o-hero__global-navigation-search {
    will-change: transform, opacity;
    transition: transform 225ms 0s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 225ms 0s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding-top: 80px; }
    @media screen and (min-width: 1280px) {
      .o-hero__global-navigation-search {
        padding-top: 123px; } }
    .o-hero__global-navigation-search input::-webkit-input-placeholder {
      color: var(--color--text);
      opacity: 0.5; }
    .o-hero__global-navigation-search input::-moz-placeholder {
      color: var(--color--text);
      opacity: 0.5; }
    .o-hero__global-navigation-search input:-moz-placeholder {
      color: var(--color--text);
      opacity: 0.5; }
    .o-hero__global-navigation-search input:-ms-input-placeholder {
      color: var(--color--text);
      opacity: 0.5; }
    @media print {
      .o-hero__global-navigation-search {
        display: none; } }
  .o-hero.is-focused .o-hero__global-navigation-search {
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0s 225ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 225ms 0s cubic-bezier(0.25, 0.1, 0.25, 1); }
  .o-hero__global-navigation-selection {
    border-color: var(--color--rules--primary);
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: block;
    pointer-events: none;
    opacity: 0;
    transition: opacity 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .o-hero__global-navigation-selection::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      border-top-width: 1px; }
      @media screen and (max-width: 544px) {
        .o-hero__global-navigation-selection::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-hero__global-navigation-selection::after {
          left: -16px;
          right: -16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-hero__global-navigation-selection::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-hero__global-navigation-selection::after {
          left: -24px;
          right: -24px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-hero__global-navigation-selection::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-hero__global-navigation-selection::after {
          left: -36px;
          right: -36px; } }
      @media screen and (min-width: 1700px) {
        .o-hero__global-navigation-selection::after {
          left: calc((100vw - 1600px) / -2);
          right: calc((100vw - 1600px) / -2); } }
      @media print {
        .o-hero__global-navigation-selection::after {
          left: 0;
          right: 0; } }
  .o-hero.is-focused .o-hero__global-navigation-selection {
    opacity: 0.5;
    transition: opacity 195ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .s-container-is-leaving .o-hero.is-focused .o-hero__global-navigation-selection {
      pointer-events: none;
      top: -40px;
      transition: opacity 195ms cubic-bezier(0.25, 0.1, 0.25, 1), top 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
      opacity: 0; }
  .o-hero__global-navigation .o-hero__intro,
  .o-hero__global-navigation .o-hero__features {
    animation: o-hero__background 225ms forwards; }
  .o-hero__jump {
    position: absolute;
    margin-bottom: 16px;
    bottom: 0px;
    right: 0px;
    color: var(--color--action); }
    .o-hero__jump:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--outline);
      outline-offset: 4px; }
    @media screen and (min-width: 768px) {
      .o-hero__jump {
        margin-bottom: 24px; } }
    @media screen and (min-width: 1280px) {
      .o-hero__jump {
        margin-bottom: 36px; } }
    .o-hero__jump:before {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      bottom: 2px;
      right: 2px;
      border-radius: 50%;
      background: #fff;
      z-index: -1; }
    @media print {
      .o-hero__jump {
        display: none; } }
  .o-hero__intro {
    break-inside: avoid !important;
    font-size: 1rem;
    line-height: 1.25;
    --line-height: 20px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    margin-top: -16px; }
    .o-hero__intro b,
    .o-hero__intro strong {
      font-weight: 500; }
    .o-hero__intro i,
    .o-hero__intro em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .o-hero__intro {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    @media screen and (min-width: 1024px) {
      .o-hero__intro {
        font-size: 1.25rem;
        line-height: 1.2;
        --line-height: 24px;
        font-weight: 500;
        letter-spacing: 0em; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-hero__intro {
        column-count: 1;
        column-gap: 16px; }
        .o-hero__intro > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-hero__intro > * _::-webkit-full-page-media,
          .o-hero__intro > * _:future,
          :root .o-hero__intro > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-hero__intro > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-hero__intro > * {
              display: inline-block; } } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-hero__intro {
        column-count: 1;
        column-gap: 20px; }
        .o-hero__intro > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-hero__intro > * _::-webkit-full-page-media,
          .o-hero__intro > * _:future,
          :root .o-hero__intro > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-hero__intro > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-hero__intro > * {
              display: inline-block; } } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-hero__intro {
        column-count: 1;
        column-gap: 24px; }
        .o-hero__intro > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-hero__intro > * _::-webkit-full-page-media,
          .o-hero__intro > * _:future,
          :root .o-hero__intro > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-hero__intro > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-hero__intro > * {
              display: inline-block; } } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-hero__intro {
        column-count: 1;
        column-gap: 24px; }
        .o-hero__intro > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-hero__intro > * _::-webkit-full-page-media,
          .o-hero__intro > * _:future,
          :root .o-hero__intro > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-hero__intro > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-hero__intro > * {
              display: inline-block; } } }
    @media screen and (min-width: 1700px) {
      .o-hero__intro {
        column-count: 1;
        column-gap: 24px; }
        .o-hero__intro > * {
          width: 100%;
          break-inside: avoid-column; }
          .o-hero__intro > * _::-webkit-full-page-media,
          .o-hero__intro > * _:future,
          :root .o-hero__intro > * {
            display: inline-block;
            -webkit-backface-visibility: hidden; }
          @supports not (break-inside: avoid-column) {
            .o-hero__intro > * {
              display: inline-block;
              page-break-inside: avoid; } }
          @supports (-ms-ime-align: auto) {
            .o-hero__intro > * {
              display: inline-block; } } }
    .o-hero__intro > * {
      padding-top: 16px; }
    @media screen and (min-width: 768px) {
      .o-hero__intro {
        margin-top: -24px; }
        .o-hero__intro > * {
          padding-top: 24px; } }
    @media screen and (max-width: 544px) {
      .o-hero__intro {
        width: calc((((100vw - 112px) / 6) * 5) + 64px); } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-hero__intro {
        width: calc((((100vw - 160px) / 8) * 3) + 32px); } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-hero__intro {
        width: calc((((100vw - 268px) / 12) * 4) + 60px); } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-hero__intro {
        width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-hero__intro {
        width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
    @media screen and (min-width: 1700px) {
      .o-hero__intro {
        width: 382px; } }
  .o-hero__intro, .o-hero__features {
    order: 2;
    padding-top: 20px;
    padding-bottom: 20px; }
    @media screen and (min-width: 768px) {
      .o-hero__intro, .o-hero__features {
        padding-bottom: 24px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-hero__intro, .o-hero__features {
        padding-bottom: 36px; } }
    @media screen and (min-width: 1460px) {
      .o-hero__intro, .o-hero__features {
        padding-bottom: 48px; } }
    @media screen and (min-width: 768px) {
      .o-hero__intro, .o-hero__features {
        position: absolute;
        bottom: 0;
        left: 0; } }
  @media screen {
    .o-hero__global-navigation .o-hero__intro, .o-hero__features {
      position: absolute;
      bottom: 0;
      left: 0; } }
  .o-hero__features-title {
    font-size: 0.75rem;
    line-height: 1.3;
    --line-height: 15.6px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    text-transform: uppercase;
    margin-left: -12px; }
    .o-hero__features-title b,
    .o-hero__features-title strong {
      font-weight: 500; }
    .o-hero__features-title i,
    .o-hero__features-title em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .o-hero__features-title {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    @media screen and (min-width: 1280px) {
      .o-hero__features-title {
        font-size: 0.8125rem;
        line-height: 1.3;
        --line-height: 16.9px;
        font-weight: 500;
        letter-spacing: 0em; } }
    .o-hero__features-title > * {
      padding-left: 12px; }
    .o-hero__features-title > :last-child {
      opacity: 0.5; }
  @media screen and (max-width: 544px) {
    .o-hero__features-carousel,
    .o-hero__features-carousel-item > * {
      width: calc((((100vw - 112px) / 6) * 5) + 64px); } }
  @media screen and (min-width: 544px) and (max-width: 768px) {
    .o-hero__features-carousel,
    .o-hero__features-carousel-item > * {
      width: calc((((100vw - 112px) / 6) * 4) + 48px); } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .o-hero__features-carousel,
    .o-hero__features-carousel-item > * {
      width: calc((((100vw - 160px) / 8) * 4) + 48px); } }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .o-hero__features-carousel,
    .o-hero__features-carousel-item > * {
      width: calc((((100vw - 268px) / 12) * 5) + 80px); } }
  @media screen and (min-width: 1280px) and (max-width: 1460px) {
    .o-hero__features-carousel,
    .o-hero__features-carousel-item > * {
      width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
  @media screen and (min-width: 1460px) and (max-width: 1700px) {
    .o-hero__features-carousel,
    .o-hero__features-carousel-item > * {
      width: calc((((100vw - 336px) / 12) * 3) + 48px); } }
  @media screen and (min-width: 1700px) {
    .o-hero__features-carousel,
    .o-hero__features-carousel-item > * {
      width: 382px; } }
  .o-hero__features-carousel-slides {
    display: flex;
    flex-flow: row nowrap;
    will-change: transform;
    padding-top: 12px; }
  .o-hero__features-carousel-item {
    font-size: 1rem;
    line-height: 1.5;
    --line-height: 24px;
    font-weight: 500;
    letter-spacing: 0em;
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
    font-kerning: normal;
    font-feature-settings: "salt";
    padding-top: 14px;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    position: relative;
    width: 0;
    overflow: visible;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.25s, transform 0s 0.25s; }
    .o-hero__features-carousel-item:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background-color: var(--color--action); }
    .o-hero__features-carousel-item b,
    .o-hero__features-carousel-item strong {
      font-weight: 500; }
    .o-hero__features-carousel-item i,
    .o-hero__features-carousel-item em {
      font-style: italic; }
    .s-neue-haas-grotesk-text-loaded .o-hero__features-carousel-item {
      font-family: "neue-haas-grotesk-text", sans-serif; }
    @media screen and (min-width: 768px) {
      .o-hero__features-carousel-item {
        font-size: 1.25rem;
        line-height: 1.25;
        --line-height: 25px;
        font-weight: 500;
        letter-spacing: 0em; } }
    @media screen and (min-width: 768px) {
      .o-hero__features-carousel-item {
        padding-top: 18px; } }
    .o-hero__features-carousel-item a {
      display: inline;
      transition: color 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
      .o-hero__features-carousel-item a:focus[data-focus-method="key"] {
        outline: 1px solid var(--color--outline);
        outline-offset: 4px; }
      .o-hero__features-carousel-item a:hover {
        color: var(--color--nav-link--hover); }
      .o-hero__features-carousel-item a:focus[data-focus-method="key"] {
        outline: 1px solid var(--color--outline);
        outline-offset: 4px; }
    .o-hero__features-carousel-item.is-active {
      pointer-events: auto;
      opacity: 1;
      transform: none;
      transition: opacity 0.25s 0.25s, transform 0.25s 0.25s; }
  .o-hero__features-carousel-nav {
    display: flex;
    align-items: center;
    padding-top: 28px;
    margin-left: -8px; }
    @media screen and (min-width: 768px) {
      .o-hero__features-carousel-nav {
        padding-top: 32px; } }
    @media screen and (min-width: 1280px) {
      .o-hero__features-carousel-nav {
        padding-top: 36px; } }
    .o-hero__features-carousel-nav > * {
      padding-left: 8px; }
  .o-hero__features-carousel-btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .o-hero__features-carousel-btn::-moz-focus-inner {
      border: 0; }
    .o-hero__features-carousel-btn:before {
      content: "";
      position: absolute;
      top: 0px;
      left: 0px;
      bottom: 0px;
      right: 0px;
      border-width: 2px;
      border-color: var(--color--rules--primary);
      opacity: 0.2;
      border-radius: 50%;
      transition: opacity 195ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .o-hero__features-carousel-btn:focus {
      outline: none; }
    .o-hero__features-carousel-btn:hover:before, .o-hero__features-carousel-btn:focus[data-focus-method="key"]:before {
      opacity: 0.6; }
    .o-hero__features-carousel-btn > svg {
      position: absolute;
      top: 0px;
      left: 0px;
      bottom: 0px;
      right: 0px; }
      .o-hero__features-carousel-btn > svg [data-carousel-next-event="animationend"] {
        transition: stroke-dashoffset 0.35s;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
        stroke-dasharray: 144.5133px 144.5133px;
        stroke-dashoffset: 144.5133px; }

@keyframes o-hero__features-carousel-btn-progress {
  from {
    stroke-dashoffset: 144.5133px; }
  to {
    stroke-dashoffset: 0px; } }
  .o-hero__inner > .o-hero__features.is-ticking [data-carousel-next-event="animationend"],
  [data-hero-section].is-active .o-hero__features.is-ticking [data-carousel-next-event="animationend"] {
    animation: o-hero__features-carousel-btn-progress 5s linear; }
  .s-container-is-leaving .o-hero [data-carousel-next-event="animationend"] {
    animation-play-state: paused !important; }
  .o-hero__features-carousel:focus-within .o-hero__features-carousel-btn:not([data-focus-method="mouse"]) [data-carousel-next-event="animationend"] {
    animation-play-state: paused !important; }
  .o-hero__features-carousel:hover .o-hero__features-carousel-btn [data-carousel-next-event="animationend"] {
    animation-play-state: paused !important; }
  .o-hero__features-grid {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    padding-top: 12px; }
    @media screen and (max-width: 544px) {
      .o-hero__features-grid {
        margin-left: -16px; } }
    @media screen and (min-width: 544px) and (max-width: 768px) {
      .o-hero__features-grid {
        margin-left: -16px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .o-hero__features-grid {
        margin-left: -16px; } }
    @media screen and (min-width: 1024px) and (max-width: 1280px) {
      .o-hero__features-grid {
        margin-left: -20px; } }
    @media screen and (min-width: 1280px) and (max-width: 1460px) {
      .o-hero__features-grid {
        margin-left: -24px; } }
    @media screen and (min-width: 1460px) and (max-width: 1700px) {
      .o-hero__features-grid {
        margin-left: -24px; } }
    @media screen and (min-width: 1700px) {
      .o-hero__features-grid {
        margin-left: -24px; } }
    @media screen and (max-width: 1024px) {
      .o-hero__features-grid {
        margin-top: -16px; }
        .o-hero__features-grid > * {
          margin-top: 16px; } }
    .o-hero__features-grid > * {
      width: 100%;
      box-sizing: content-box;
      flex: 0 0 auto; }
      @media screen and (max-width: 544px) {
        .o-hero__features-grid > * {
          width: calc(100vw - 32px);
          margin-left: 16px; } }
      @media screen and (min-width: 544px) and (max-width: 768px) {
        .o-hero__features-grid > * {
          width: calc(100vw - 32px);
          margin-left: 16px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .o-hero__features-grid > * {
          width: calc(100vw - 48px);
          margin-left: 16px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .o-hero__features-grid > * {
          width: calc((((100vw - 268px) / 12) * 3) + 40px);
          margin-left: 20px; } }
      @media screen and (min-width: 1280px) and (max-width: 1460px) {
        .o-hero__features-grid > * {
          width: calc((((100vw - 336px) / 12) * 3) + 48px);
          margin-left: 24px; } }
      @media screen and (min-width: 1460px) and (max-width: 1700px) {
        .o-hero__features-grid > * {
          width: calc((((100vw - 336px) / 12) * 3) + 48px);
          margin-left: 24px; } }
      @media screen and (min-width: 1700px) {
        .o-hero__features-grid > * {
          width: 382px;
          margin-left: 24px; } }
      @media screen and (min-width: 1024px) {
        .o-hero__features-grid > *:first-child {
          will-change: padding-top;
          transition: padding-top 225ms cubic-bezier(0, 0, 0.2, 1); }
          .o-hero__features-grid > *:first-child:focus-within, .o-hero__features-grid > *:first-child:hover {
            padding-top: 24px; } }
  @media print {
    .o-hero__navigation-wrapper {
      display: none; } }
  .s-container-is-entering .o-hero__navigation-wrapper {
    animation: o-hero__fade-slide-up 600ms cubic-bezier(0.25, 0.1, 0.25, 1) forwards; }
  .o-hero:not(.o-hero--short) .o-hero__navigation-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    --color--background: #fff;
    --color--background--sticky: #fff;
    --color--background--hover: #f8fafb;
    --color--background--contrast: #f1f4f7;
    --color--background--transparent: rgba(255, 255, 255, 0);
    --color--background--autofill: #f1f4f7;
    --color--text: #181a1c;
    --color--text--placeholder: #687078;
    --color--text--aux: #687078;
    --color--text--disabled: #bec7d0;
    --color--rules--primary: #9e9e9e;
    --color--rules--secondary: #e6e6e6;
    --color--rules--disabled: #e3e8ee;
    --color--rules--input: #cccccc;
    --color--rules--input--hover: #1a1a1a;
    --color--rules--input--disabled: #e6e6e6;
    --color--action: #009bdb;
    --color--action__contrast: #fff;
    --color--error: rgba(255, 12, 62, 0.8);
    --color--outline: #181a1c;
    --color--image: #f1f4f7;
    --color--icon--aux: #89939c;
    --color--icon--action: #009bdb;
    --color--icon--disabled: #d2d9e1;
    --color--dropdown--background: #181a1c;
    --color--dropdown--text: #f8fafb;
    --color--dropdown--text--aux: #89939c;
    --color--dropdown--rules: #424242;
    --color--dropdown--selected: #42474c;
    --color--link: #009bdb;
    --color--link--outline: #d2d9e1;
    --color--link--hover: #687078;
    --color--link--disabled: #999999;
    --color--link__underline: #2fb3ea;
    --color--link__underline--hover: #009bdb;
    --color--link__underline--disabled: #e6e6e6;
    --color--link__icon--disabled: #e6e6e6;
    --color--nav-link: #181a1c;
    --color--nav-link--hover: #687078;
    --color--primary-button__background: #181a1c;
    --color--primary-button__foreground: #fff;
    --color--primary-button__outline: #181a1c;
    --color--primary-button__border: #181a1c;
    --color--primary-button--hover__background: #42474c;
    --color--primary-button--hover__foreground: #fff;
    --color--primary-button--hover__border: #42474c;
    --color--primary-button--disabled__background: #f1f4f7;
    --color--primary-button--disabled__foreground: #a6afb9;
    --color--primary-button--disabled__border: #f1f4f7;
    --color--secondary-button__background: #fff;
    --color--secondary-button__foreground: #181a1c;
    --color--secondary-button__border: #cccccc;
    --color--secondary-button--hover__background: #181a1c;
    --color--secondary-button--hover__border: #181a1c;
    --color--secondary-button--hover__foreground: #fff;
    --color--secondary-button--focus__background: #181a1c;
    --color--secondary-button--focus__border: #181a1c;
    --color--secondary-button--focus__foreground: #fff;
    --color--secondary-button--disabled__foreground: #999999;
    --color--secondary-button--disabled__border: #e3e8ee;
    color: var(--color--text);
    border-color: var(--color--rules--secondary);
    outline-color: var(--color--outline); }
    @media screen and (min-width: 768px) {
      .o-hero:not(.o-hero--short) .o-hero__navigation-wrapper {
        position: static;
        --color--background: #181a1c;
        --color--background--hover: #42474c;
        --color--background--sticky: transparent;
        --color--background--contrast: rgba(66, 71, 76, 0.1);
        --color--background--autofill: #42474c;
        --color--text: #fff;
        --color--text--aux: #89939c;
        --color--text--placeholder: #42474c;
        --color--rules--primary: #fff;
        --color--rules--secondary: #42474c;
        --color--rules--input: #42474c;
        --color--rules--input--hover: #f5f5f5;
        --color--rules--input--disabled: #181a1c;
        --color--outline: #fff;
        --color--image: #42474c;
        --color--icon--action: #687078;
        --color--dropdown--background: #42474c;
        --color--dropdown--text: #f8fafb;
        --color--dropdown--text--aux: #a6afb9;
        --color--dropdown--rules: #687078;
        --color--nav-link: #fff;
        --color--nav-link--hover: rgba(255, 255, 255, 0.8);
        --color--primary-button__background: #fff;
        --color--primary-button__foreground: #181a1c;
        --color--primary-button__outline: #fff;
        --color--primary-button__border: #fff;
        --color--primary-button--hover__background: #42474c;
        --color--primary-button--hover__foreground: #fff;
        --color--primary-button--hover__border: #42474c;
        --color--secondary-button__background: #181a1c;
        --color--secondary-button__foreground: #fff;
        --color--secondary-button__border: #42474c;
        --color--secondary-button--hover__background: #42474c;
        --color--secondary-button--hover__border: #42474c;
        color: var(--color--text);
        border-color: var(--color--rules--secondary);
        outline-color: var(--color--outline);
        color: var(--color--text);
        border-color: var(--color--rules--secondary);
        outline-color: var(--color--outline); } }
  .o-hero:not(.o-hero--short) .o-hero__navigation {
    background-color: var(--color--background); }
    @media screen and (min-width: 768px) {
      .o-hero:not(.o-hero--short) .o-hero__navigation {
        background-color: transparent; } }
  .s-container-is-leaving .o-hero ~ * {
    animation: barba-fade-out 300ms cubic-bezier(0.25, 0.1, 0.25, 1) forwards; }
  .s-container-is-entering .o-hero ~ * {
    animation: barba-fade-in 300ms cubic-bezier(0.25, 0.1, 0.25, 1) forwards; }

@media screen and (min-width: 360px) and (max-width: 767px) {
  .o-hero__global-navigation {
    font-size: 2.25rem; } }

html {
  scroll-behavior: smooth; }

.ca11y {
  text-align: left; }
  .ca11y button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    transition: background-color 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative; }
    .ca11y button::-moz-focus-inner {
      border: 0; }
    .ca11y button:focus[data-focus-method="key"] {
      outline: 1px solid var(--color--dropdown--text);
      z-index: 1; }
    .ca11y button:hover, .ca11y button.is-selected {
      color: var(--color--dropdown--text);
      background-color: var(--color--dropdown--selected); }
    .ca11y button.is-today {
      color: var(--color--dropdown--text); }
  .ca11y__day-name > *,
  .ca11y button {
    font-weight: 500;
    font-size: 16px;
    line-height: 12px;
    display: flex;
    width: 100%;
    position: relative;
    padding: 4px; }
    .ca11y__day-name > *:before,
    .ca11y button:before {
      content: "";
      width: 0;
      display: block;
      padding-bottom: 100%; }
  .ca11y .ca11y__nav {
    max-width: 14.28571%; }
    .ca11y .ca11y__nav--next {
      justify-content: flex-end; }
  .ca11y__picker {
    color: var(--color--dropdown--text);
    border-color: var(--color--dropdown--rules);
    background-color: var(--color--dropdown--background);
    padding: 16px;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    align-items: flex-start;
    transition: opacity 195ms cubic-bezier(0.25, 0.1, 0.25, 1), visibility 195ms cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 1; }
    .ca11y__picker[aria-hidden] {
      opacity: 0;
      visibility: hidden; }
  .ca11y__header {
    order: -1;
    flex: 1; }
  .ca11y__table {
    margin-top: 36px;
    width: 100%;
    table-layout: fixed; }
  .ca11y__cell {
    color: var(--color--text--aux); }
