/*!*********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./static/scss/style.scss ***!
  \*********************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Tools
 */
/**
 * Tools
 */
/**
 * Get breakpoint from breakpoints settings map
 */
/**
 * Media query mixin
 * @param {} $to - Value from $settings-breakpoints
 * available breakpoints can be found in _settings.breakpoints.scss
 * usage for max width:
 * @include mq(md){};
 * usage for min width:
 * @include mq(null, md)
 */
/**
 * Fluid font sizes
 * @param {String} $size - Size
 * usage:
 * @include fontSize("a5");
 */
/**
 * Fluid property values
 * @param {String} $property - Property
 * @param {String} $spacing - Spacing
 * @param {String} $value - Value
 * usage:
 * @include fluidValue("margin-top", "s-56");
 * @include fluidValue("max-width", null, 600px);
 * used In fluidValue mixin and fontSize mixin
 * use mixin instead
 */
/**
 * Fluid font sizes
 * @param {Number} $min-size - Min font size
 * @param {Number} $max-size - Max font size
 * @param {Number} $min-breakpoint - Min breakpoint
 * @param {Number} $max-breakpoint - Max breakpoint
 * @param {String} $unit - Return unit
 * @return {String}
 * used In fluidValue mixin and fontSize mixin
 * use mixin instead
 */
/**
 * Fluid font sizes
 * Used For Sizes > $breakpoint-xxl
 * @param {Number} $min-size - Min font size
 * @param {Number} $max-size - Max font size
 * @param {Number} $min-breakpoint - Min breakpoint
 * @param {Number} $max-breakpoint - Max breakpoint
 * @param {String} $unit - Return unit
 * @return {String}
 */
/**
 * Round number to decimals
 * @param {Number} $number - Number to round
 * @param {Number} $decimals - Number of decimals
 */
/**
 * Get spacing values from settings
 */
/**
 * Fetch nested keys
 * @param {Map} $map - Map
 * @param {Arglist} $keys - Keys to fetch
 * @return {*}
 */
/**
 * CSS Grid mixin
 * @param {number} $columns — optional and defaults to _settings.grid.scss -> $grid-column-count
 * usage:
 * @include cssGrid()
 */
/**
 * Grid value TODO
 */
/**
 * Hover support mixin
 * Detect if device supports hover interaction
 * 1. If device is not supporting hover, add properties as active state styles
 * 2. If device is supporting hover, add properties as hover state styles
 * usage:
 * @include hover{}
 */
/**
 * Focus accessibility support mixin
 * Enable box shadow for focusable (tabbable) elements
 * 1. Target only elements that are not disabled and need a visible indicator to show focus
 * usage:
 * @include focus{}
 */
/**
 * Button reset
 * Make button to look like text
 * Useful for any kind of UI based on <button> element
 * usage:
 * @include button-reset;
 */
/**
 * Percentage function
 * Abbreviation function for using percentage without math.div
 * https://sass-lang.com/documentation/breaking-changes/slash-div
 * usage:
 * padding-left: percentage(1, 24);
 */
/**
 * Mixin that hides scrollbar on scrollable elements (for example overflow lists)
 * usage:
 *  div {
 *      overflow: scroll;
 *      @include hide-scrollbar;
 *  }
 */
/**
 * Get transition easing from $settings-transitions-easing
 */
/**
 * Transition function
 * @param {string} $transitionName - Name of the transition from $settings-transitions
 * @param {string} $transitionEasing - get transition easing from $settings-transitions-easing
 * usage:
 * transition: getTransition;
 * transition: getTransition(slide, ease-in-quad);
 */
/**
 * Custom transition function
 * used when you need to specify custom transition for only one or multiple properties but not all
 * if you will not change the property use getTransition instead
 * default easing is from getTransitionEasing
 * @param {string} $transitions - any number of transitions
 * usage:
 * transition: getCustomTransition(opacity);
 * transition: getCustomTransition(transform 0.3s);
 * transition: getCustomTransition(transform 0.5s ease, background-color 0.2s);
 * transition: getCustomTransition(
 *                  top 0.3s cubic-bezier(0.23, 1, 0.32, 1),
 *                  transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s
 *               );
 */
/**
 * Unfold transition function
 * Helper for getCustomTransition();
 * Takes any number of arguments passed to getCustomTransition() and makes unfolds them to single properties
 * 1. Transition property defaults
 * 2. Grab transition properties if they exist
 */
/**
 * Font face mixin
 * @param {string} $font-name - Name of the font
 * @param {string} $font-filename - Name of the file without extension
 * @param {number} $version - Font version
 * @param {number} $font-weight - Font weight value
 * @param {string} $font-name - Font style property (if the font is italic)
 * usage:
 * @include font-face("Hanken-Grotesk", "HankenGrotesk-Regular");
 * usage for weight or style other than default
 * @include font-face(
 *  "Hanken-Grotesk",
 *  "HankenGrotesk-SemiBold",
 *  $font-weight: 600,
 *  $font-style: italic
 * );
 */
/**
 * Convert font-size from px to rem
 * 1. Default font size on html element is 100%, equivalent to 16px;
 * @param {number} $size - the value in pixel you want to convert
 * usage:
 * padding-top: rem(20px);
 */
/**
 * Convert font-size from px to em
 * 1. Default font size on html element is 100%, equivalent to 16px;
 * @param {number} $size - the value in pixel you want to convert
 * @param {number} $font-size - font size of element in pixels
 * usage:
 * padding-top: em(20px);
 */
/**
 * Context
 */
/**
 * Viewport width function
 * 1. 1 vw is equal to 1% of the viewport width
 * @param {number} $size - the value in pixel you want to convert
 * usage:
 * padding-top: get-vw(100px);
 */
/**
 * Viewport height function
 * 1. 1 vw is equal to 1% of the viewport width
 * @param {number} $size - the value in pixel you want to convert
 * usage:
 * padding-top: get-vh(100px);
 */
/**
 * Strip units function
 * @param {number} $number - the value you want to strip unuts from
 * usage:
 * strip-units(100px);
 * returns: 100
 */
/**
 * Get z-index from $settings-zindex
 * usage:
 * z-index: getZindex(navigation);
 * z-index: getZindex(navigation, 1);
 */
/**
 * Third party tools
 */
/**
 * Settings
 */
/**
 * Settings
 */
/**
 * Breakpoints
 */
/**
 * Breakpoints - map
 */
/**
 * Colors
 */
/**
 * Colors - focus accessibility
 */
/**
 * Colors - re-assigning
 */
/**
 * Colors - map
 * used for generating css variables
 */
/**
 * Ratio map
 */
/**
* Set useContainer to true if you are using container design, and dont need scaling for > xxl breakpoint
* @var {boolean} $useContainer - Use container
 */
/**
 * Set use-css-var to true if you want to use css var for spacing
 * @var {boolean} $use-css-var - Use css var
 */
/**
 * Set variable-prefix to change css var prefix
 * @var {string} $variable-prefix - Variable prefix
*/
/**
 * Big screen coefficient for fluid sizing, used for > xxl breakpoint
 * used for lowering sizes on big screens
 * @var {number} $big-viewport-coefficient - Big viewport coefficient
 */
/**
 * Spacing map
 */
/**
 * Transition easing map
 */
/**
 * Transitions variables
 */
/**
 * Transitions map
 */
/**
 * Roboto
 */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2?1") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2?1") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Georgia";
  src: url("../fonts/Georgia.woff2?1") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT America Medium";
  src: url("../fonts/GT-America-Medium.woff2?1") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT America Medium Italic";
  src: url("../fonts/GT-America-Standard-Medium-Italic-Trial.woff2?1") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT America Standard Regular";
  src: url("../fonts/GT-AMERICA-STANDARD-REGULAR.woff2?1") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT America Mono Regular";
  src: url("../fonts/GT-America-Mono-Regular-v1.woff2?1") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/**
 * Font variables
 */
/**
 * Font size map
 */
/**
 * Typography mixins
 * usage:
 * @include a5;
 */
/**
 * Z-index map
 */
/**
 * Third party settings
 */
/**
 * Generics
 */
/**
 * Generics
 */
/**
 * Third party generics
 */
/**
 * b-reset.scss - modern CSS reset used by Bornfight frontend team.
 * Consists of best CSS reset practices combined into one file.
 */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Tells the browser to account for any border and padding in the values you specify for an element's width and height
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  box-sizing: border-box; /* 3 */
  width: 100%;
}

/**
 * All elements inherit box model
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Reset elements in all browsers
 */
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,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/**
 * Set core body defaults
 * 1. sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
 * 2. The browser emphasizes rendering speed over legibility and geometric precision when drawing text.
 * 3. Disables the browser's inflation algorithm on some smart phones and tablets.
 * 4. Font smoothing
 */
body {
  scroll-behavior: smooth; /* 1 */
  text-rendering: optimizeSpeed; /* 2 */
  -webkit-text-size-adjust: none; /* 3 */
  -webkit-font-smoothing: antialiased; /* 4 */
  -moz-osx-font-smoothing: grayscale; /* 4 */
  width: 100%;
}

/**
 * Remove list style from lists
 */
ul {
  list-style: none;
}

/**
 * Make media easier to work with
 */
img,
iframe,
video,
object,
embed,
picture {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}

/**
 * Remove outline from tabindex -1
 */
[tabindex="-1"] {
  outline: none !important;
}

/**
 * Add the correct height in Firefox.
 */
hr {
  height: 0;
}

/**
 * Add the correct text decoration in Chrome, Edge, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Edge and Safari.
 */
b,
strong {
  font-weight: bold;
}

/**
 * 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
 * 2. Correct the odd 'em' font sizing in all browsers.
 */
code,
kbd,
samp,
pre {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none; /* 1 */
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Add the correct vertical alignment in Chrome and Firefox.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to 'inherit' in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Add the correct display in Chrome and Safari.
 */
summary {
  display: list-item;
}

/**
 * Remove all animations and transitions for people that prefer not to see them
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**
 * Browser specific form elements reset
 */
/**
 * Search input browser additions reset
 * 1. Clears the 'X' from Chrome
 * 2. Clears the 'X' from Internet Explorer
 */
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 {
  /* 1 */
  -webkit-appearance: none;
  display: none;
}

input[type=search]::-ms-clear,
input[type=search]::-ms-reveal {
  /* 2 */
  display: none;
  width: 0;
  height: 0;
}

/**
 * Remove arrows/spinners from number input
 * 1. Chrome, Safari, Edge, Opera
 * 2. Firefox
 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* 1 */
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  /* 2 */
  -moz-appearance: textfield;
}

/**
 * Remove Safari autocomplete additions
 * 1. Contacts fill button
 * 2. Password fill button
 * 3. Number input spinner
 */
input[autocomplete=off]::-webkit-contacts-auto-fill-button,
input[autocomplete=off]::-webkit-credentials-auto-fill-button {
  /* 1, 2, 3 */
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  height: 0;
  width: 0;
  margin: 0;
}

/**
 * Remove select triangle on IE
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove dotted outline from range input on Firefox
 */
input[type=range]::-moz-focus-outer {
  border: 0;
}

/**
 * Elements
 */
/**
 * Elements
 */
/**
 * Generate css variables for spacing if use-css-var is true
 */
:root {
  --s-5: 0.31rem;
  --s-6: 0.38rem;
  --s-7: 0.44rem;
  --s-9: 0.56rem;
  --s-10: 0.63rem;
  --s-12: 0.75rem;
  --s-14: 0.88rem;
  --s-15: 0.94rem;
  --s-16: 1rem;
  --s-20: clamp(0.94rem, 0.52vw + 0.78rem, 1.25rem);
  --s-24: 1.5rem;
  --s-25: clamp(0.94rem, 1.04vw + 0.63rem, 1.56rem);
  --s-25-2: 1.56rem;
  --s-30: clamp(1.25rem, 1.04vw + 0.94rem, 1.88rem);
  --s-31: clamp(1.25rem, 1.15vw + 0.91rem, 1.94rem);
  --s-32: 2rem;
  --s-35: clamp(1.56rem, 1.04vw + 1.25rem, 2.19rem);
  --s-40: clamp(1.88rem, 1.04vw + 1.56rem, 2.5rem);
  --s-45: clamp(2.19rem, 1.04vw + 1.88rem, 2.81rem);
  --s-50: clamp(2.5rem, 1.04vw + 2.19rem, 3.13rem);
  --s-60: clamp(3.13rem, 1.04vw + 2.81rem, 3.75rem);
  --s-64: 4rem;
  --s-70: clamp(3.13rem, 2.08vw + 2.5rem, 4.38rem);
  --s-70-fixed: 4.38rem;
  --s-80: clamp(3.75rem, 2.08vw + 3.13rem, 5rem);
  --s-90: clamp(3.75rem, 3.13vw + 2.81rem, 5.63rem);
  --s-100: clamp(4.38rem, 3.13vw + 3.44rem, 6.25rem);
  --s-125: clamp(4.38rem, 5.73vw + 2.66rem, 7.81rem);
  --s-150: clamp(5rem, 7.29vw + 2.81rem, 9.38rem);
  --s-250: clamp(12.5rem, 5.21vw + 10.94rem, 15.63rem);
  --heading-01: clamp(2rem, 3.33vw + 1rem, 4rem);
  --heading-02: clamp(1.5rem, 0.83vw + 1.25rem, 2rem);
  --body-01: clamp(1.13rem, 0.63vw + 0.94rem, 1.5rem);
  --body-02: clamp(1rem, 0.28vw + 0.92rem, 1.17rem);
  --av: clamp(1.13rem, 0.63vw + 0.94rem, 1.5rem);
  --nb: 1.17rem;
  --select: 1rem;
  --option: 0.81rem;
  --home-image: clamp(30.69rem, 17.08vw + 25.56rem, 40.94rem);
  --home-content: clamp(33.44rem, 18.54vw + 27.88rem, 44.56rem);
  --breakpoint-sm: 480px;
  --breakpoint-sm-md: 640px;
  --breakpoint-md: 800px;
  --breakpoint-md-lg: 960px;
  --breakpoint-lg: 1140px;
  --breakpoint-lg-xl: 1280px;
  --breakpoint-xl: 1440px;
  --breakpoint-xxl: 1920px;
  --breakpoint-xxxl: 3840px;
  --white: #ffffff;
  --black: #000000;
  --black-30: rgba(0, 0, 0, 0.3);
  --mango: #f7b334;
  --slate: #3c5163;
  --grey: #767676;
  --grey-border: rgb(123, 123, 123);
  --blue: #00A0DE;
  --red: #ff0000;
}

/**
 * Generate css variables for spacing in > xxl breakpoint if use-css-var is true and use-container is false
 */
@media (min-width: 1920px) {
  :root {
    --s-5: max(0.31rem, 0.16vw + 0.13rem);
    --s-6: max(0.38rem, 0.19vw + 0.15rem);
    --s-7: max(0.44rem, 0.22vw + 0.17rem);
    --s-9: max(0.56rem, 0.28vw + 0.22rem);
    --s-10: max(0.63rem, 0.31vw + 0.25rem);
    --s-12: max(0.75rem, 0.38vw + 0.3rem);
    --s-14: max(0.88rem, 0.44vw + 0.35rem);
    --s-15: max(0.94rem, 0.47vw + 0.38rem);
    --s-16: max(1rem, 0.5vw + 0.4rem);
    --s-20: max(1.25rem, 0.63vw + 0.5rem);
    --s-24: max(1.5rem, 0.75vw + 0.6rem);
    --s-25: max(1.56rem, 0.78vw + 0.63rem);
    --s-25-2: max(1.56rem, 0.78vw + 0.63rem);
    --s-30: max(1.88rem, 0.94vw + 0.75rem);
    --s-31: max(1.94rem, 0.97vw + 0.77rem);
    --s-32: max(2rem, 1vw + 0.8rem);
    --s-35: max(2.19rem, 1.09vw + 0.88rem);
    --s-40: max(2.5rem, 1.25vw + 1rem);
    --s-45: max(2.81rem, 1.41vw + 1.13rem);
    --s-50: max(3.13rem, 1.56vw + 1.25rem);
    --s-60: max(3.75rem, 1.88vw + 1.5rem);
    --s-64: max(4rem, 2vw + 1.6rem);
    --s-70: max(4.38rem, 2.19vw + 1.75rem);
    --s-70-fixed: max(4.38rem, 2.19vw + 1.75rem);
    --s-80: max(5rem, 2.5vw + 2rem);
    --s-90: max(5.63rem, 2.81vw + 2.25rem);
    --s-100: max(6.25rem, 3.13vw + 2.5rem);
    --s-125: max(7.81rem, 3.91vw + 3.12rem);
    --s-150: max(9.38rem, 4.69vw + 3.75rem);
    --s-250: max(15.63rem, 7.81vw + 6.25rem);
    --heading-01: max(4rem, 2vw + 1.6rem);
    --heading-02: max(2rem, 1vw + 0.8rem);
    --body-01: max(1.5rem, 0.75vw + 0.6rem);
    --body-02: max(1.17rem, 0.58vw + 0.47rem);
    --av: max(1.5rem, 0.75vw + 0.6rem);
    --nb: max(1.17rem, 0.58vw + 0.47rem);
    --select: max(1rem, 0.5vw + 0.4rem);
    --option: max(0.81rem, 0.41vw + 0.32rem);
    --home-image: max(40.94rem, 20.47vw + 16.38rem);
    --home-content: max(44.56rem, 22.28vw + 17.83rem);
  }
}

html,
body {
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  color: #000000;
  background-color: #ffffff;
}
body.single-community, body.single-team, body.page-template-home {
  color: #ffffff;
  background-color: #000000;
}
body.page-template-community-archive, body.search-no-results {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
}

@view-transition {
  navigation: auto;
}
.page-template-gutenberg {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
a:active, a.nice-select.open, a:focus {
  /* 1 */
}
a:active:not(:disabled):focus-visible, a.nice-select.open:not(:disabled):focus-visible, a:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}

/**
 * Objects
 */
/**
 * Objects
 */
.o-page--error {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.o-section {
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  /**
   * Horizontal modifiers
   */
  /*&--thin {
      padding-left: percentage(4, 24);
      padding-right: percentage(4, 24);

      @include mq(lg) {
          padding-left: percentage(1, 24);
          padding-right: percentage(1, 24);
      }
  }*/
  /*
  &--wide {
      padding-left: percentage(1, 24);
      padding-right: percentage(1, 24);
  }*/
  /**
   * Vertical modifiers
   */
  /**
   * Color modifiers
   */
  /**
   * Overflow modifiers
   */
}
.o-section--code {
  position: relative;
  z-index: 1;
}
.o-section--slider {
  overflow: hidden;
  position: relative;
}
.o-section--slider:after {
  position: absolute;
  width: 16.1870503597vw;
  height: 100%;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0.25), rgb(255, 255, 255));
  top: 0;
  right: 0;
  pointer-events: none;
}
@media (max-width: 640px) {
  .o-section--slider:after {
    width: var(--s-32);
  }
}
.o-section#header-scroll {
  padding-bottom: var(--s-80);
}
@media (max-width: 800px) {
  .o-section#header-scroll {
    padding-top: var(--s-10);
    padding-bottom: var(--s-32);
  }
}
.o-section--narrow .o-container {
  width: 73.0555555556vw;
  max-width: 100%;
}
@media (max-width: 1140px) {
  .o-section--narrow .o-container {
    width: 100%;
  }
}
.o-section--no-padding-left {
  padding-left: 0;
}
@media (max-width: 1140px) {
  .o-section--no-padding-left {
    padding-left: 0;
  }
}
.o-section--no-padding-right {
  padding-right: 0;
}
@media (max-width: 1140px) {
  .o-section--no-padding-right {
    padding-right: 0;
  }
}
.o-section--full-width {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1140px) {
  .o-section--full-width {
    padding-left: 0;
    padding-right: 0;
  }
}
.o-section--full-vh {
  height: 100vh;
}
.o-section--black {
  background-color: #000000;
}
.o-section--no-overflow {
  overflow: hidden;
}
.o-section--footer {
  margin-top: auto;
}

.o-mobile-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: block;
  padding-left: var(--s-32);
  padding-right: var(--s-32);
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 100;
  padding-top: var(--s-250);
  background-color: var(--white);
}
.o-mobile-navigation.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1140px) {
  .o-mobile-navigation.is-open {
    display: none !important;
  }
}
.o-mobile-navigation .o-container {
  height: 100%;
}

.o-navigation {
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 200;
}

.o-navigation-dropdown {
  position: fixed;
  top: var(--spacing-l);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--spacing-l));
  display: block;
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 0;
}
.o-navigation-dropdown.is-open {
  opacity: 1;
  visibility: visible;
}
.o-navigation-dropdown .o-container {
  height: 100%;
}

.o-header--dark {
  background-color: var(--black);
}
.o-header--overflow {
  overflow: hidden;
}
.o-header .o-container {
  position: relative;
  z-index: 1;
}
.o-header--a {
  padding-left: 0;
  padding-right: 0;
}
.o-header--a .o-container {
  position: static;
  z-index: 1;
}

/**
 * Components
 */
/**
 * Components
 */
.c-hamburger {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  width: auto;
  height: auto;
  background: transparent;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-tap-highlight-color: transparent;
  width: 30px;
  height: 20px;
  position: relative;
  overflow: visible;
  display: inline-flex;
}
.c-hamburger:hover, .c-hamburger:focus, .c-hamburger:active, .c-hamburger.nice-select.open {
  outline: none;
}
.c-hamburger:active, .c-hamburger.nice-select.open, .c-hamburger:focus {
  /* 1 */
}
.c-hamburger:active:not(:disabled):focus-visible, .c-hamburger.nice-select.open:not(:disabled):focus-visible, .c-hamburger:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
@media (min-width: 1920px) {
  .c-hamburger {
    width: max(1.88rem, 0.94vw + 0.75rem);
  }
}
@media (min-width: 1920px) {
  .c-hamburger {
    height: max(1.25rem, 0.63vw + 0.5rem);
  }
}
.c-hamburger.is-active span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.c-hamburger.is-active span:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}
.c-hamburger.is-active span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.c-hamburger span {
  height: 2px;
  width: 100%;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 50%;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1920px) {
  .c-hamburger span {
    height: max(0.13rem, 0.06vw + 0.05rem);
  }
}
.c-hamburger span:nth-child(1) {
  transform: translateY(-500%);
}
.c-hamburger span:nth-child(2) {
  transform: translateY(-50%);
}
.c-hamburger span:nth-child(3) {
  transform: translateY(400%);
}

.c-media-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: transform 1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 2;
  pointer-events: none;
}
.c-media-loader--black {
  background-color: #000000;
}

.c-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000000;
}

.c-media-trigger {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  width: auto;
  height: auto;
  background: transparent;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-tap-highlight-color: transparent;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: #ffffff;
  color: #000000;
  border-radius: 100%;
  z-index: 1;
}
.c-media-trigger:hover, .c-media-trigger:focus, .c-media-trigger:active, .c-media-trigger.nice-select.open {
  outline: none;
}
@media (min-width: 1920px) {
  .c-media-trigger {
    width: max(5rem, 2.5vw + 2rem);
  }
}
@media (min-width: 1920px) {
  .c-media-trigger {
    height: max(5rem, 2.5vw + 2rem);
  }
}
.is-playing .c-media-trigger {
  opacity: 0;
  visibility: hidden;
}

.c-media-block {
  margin-bottom: var(--s-24);
}

.c-responsive-media {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.c-responsive-media--background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-responsive-media__inner {
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
  display: block;
  /**
   * Aspect ratio modifiers
   */
  /**
   * Loaded state
   */
}
.c-responsive-media__inner--1-1 {
  padding-bottom: 100%;
}
.c-responsive-media__inner--2-1 {
  padding-bottom: 50%;
}
.c-responsive-media__inner--1-2 {
  padding-bottom: 200%;
}
.c-responsive-media__inner--3-1 {
  padding-bottom: 33.3333333333%;
}
.c-responsive-media__inner--1-3 {
  padding-bottom: 300%;
}
.c-responsive-media__inner--3-2 {
  padding-bottom: 66.6666666667%;
}
.c-responsive-media__inner--2-3 {
  padding-bottom: 150%;
}
.c-responsive-media__inner--4-3 {
  padding-bottom: 75%;
}
.c-responsive-media__inner--3-4 {
  padding-bottom: 133.3333333333%;
}
.c-responsive-media__inner--16-9 {
  padding-bottom: 56.25%;
}
@media (max-width: 800px) {
  .o-page--gutenberg .c-responsive-media__inner--16-9 {
    padding-bottom: 177.7777777778%;
  }
}
.c-responsive-media__inner--9-16 {
  padding-bottom: 177.7777777778%;
}
.c-responsive-media__inner--500-750 {
  padding-bottom: 66.6666666667%;
}
.c-responsive-media__inner--auto {
  padding-bottom: unset;
  height: auto;
}
.c-responsive-media__inner--auto .c-responsive-media__img,
.c-responsive-media__inner--auto .c-responsive-media__video,
.c-responsive-media__inner--auto iframe,
.c-responsive-media__inner--auto object,
.c-responsive-media__inner--auto embed {
  width: auto;
  height: auto;
  position: relative;
}
.c-responsive-media__inner--adopt {
  padding-bottom: unset;
  height: 100%;
}
.c-responsive-media__inner[loaded] > .c-embed-video__trigger {
  display: none;
}
.c-responsive-media__img, .c-responsive-media__video,
.c-responsive-media iframe,
.c-responsive-media object,
.c-responsive-media embed {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /**
   * Object fit modifiers
   */
  /**
   * Object position modifiers
   */
  /**
   * Loaded state
   */
}
.u-content-editor .c-responsive-media__img, .u-content-editor .c-responsive-media__video,
.u-content-editor .c-responsive-media iframe,
.u-content-editor .c-responsive-media object,
.u-content-editor .c-responsive-media embed {
  opacity: 0.58;
}
.page-id-239 .c-responsive-media__img, .page-id-239 .c-responsive-media__video,
.page-id-239 .c-responsive-media iframe,
.page-id-239 .c-responsive-media object,
.page-id-239 .c-responsive-media embed {
  opacity: 1;
}
.c-responsive-media__img--cover, .c-responsive-media__video--cover,
.c-responsive-media iframe--cover,
.c-responsive-media object--cover,
.c-responsive-media embed--cover {
  object-fit: cover;
}
.c-responsive-media__img--contain, .c-responsive-media__video--contain,
.c-responsive-media iframe--contain,
.c-responsive-media object--contain,
.c-responsive-media embed--contain {
  object-fit: contain;
}
.c-responsive-media__img--center, .c-responsive-media__video--center,
.c-responsive-media iframe--center,
.c-responsive-media object--center,
.c-responsive-media embed--center {
  object-position: center;
}
.c-responsive-media__img--top, .c-responsive-media__video--top,
.c-responsive-media iframe--top,
.c-responsive-media object--top,
.c-responsive-media embed--top {
  object-position: top;
}
.c-responsive-media__img--bottom, .c-responsive-media__video--bottom,
.c-responsive-media iframe--bottom,
.c-responsive-media object--bottom,
.c-responsive-media embed--bottom {
  object-position: bottom;
}
.c-responsive-media__img--left, .c-responsive-media__video--left,
.c-responsive-media iframe--left,
.c-responsive-media object--left,
.c-responsive-media embed--left {
  object-position: left;
}
.c-responsive-media__img--right, .c-responsive-media__video--right,
.c-responsive-media iframe--right,
.c-responsive-media object--right,
.c-responsive-media embed--right {
  object-position: right;
}
.c-responsive-media__img.is-loaded + .c-media-loader, .c-responsive-media__video.is-loaded + .c-media-loader,
.c-responsive-media iframe.is-loaded + .c-media-loader,
.c-responsive-media object.is-loaded + .c-media-loader,
.c-responsive-media embed.is-loaded + .c-media-loader {
  opacity: 0;
  visibility: hidden;
}

.c-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.c-breadcrumbs li {
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-breadcrumbs li:before {
  width: 6px;
  height: 8px;
  content: "";
  display: inline-flex;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjgiIGZpbGw9Im5vbmUiPjxwYXRoIGZpbGw9IiMwMDNFMzMiIGQ9Ik0wIDcuNXYtN0w2IDQgMCA3LjVaIi8+PC9zdmc+");
  flex-shrink: 0;
  flex-grow: 0;
  margin-left: var(--s-10);
  margin-right: var(--s-10);
}
@media (min-width: 1920px) {
  .c-breadcrumbs li:before {
    width: max(0.38rem, 0.19vw + 0.15rem);
  }
}
@media (min-width: 1920px) {
  .c-breadcrumbs li:before {
    height: max(0.5rem, 0.25vw + 0.2rem);
  }
}
.c-breadcrumbs li:first-child:before {
  display: none;
}
.c-breadcrumbs a {
  color: #000000;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.wp-block-button__link,
.wp-element-button,
.c-button {
  height: 52px;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
  padding-left: var(--s-70);
  padding-right: var(--s-70);
  overflow: hidden;
  outline: 0;
  border: 1px solid #000000;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-color: transparent;
  color: #000000;
  box-shadow: none;
  text-align: center;
  outline: none;
  box-sizing: border-box;
  position: relative;
  font-size: var(--nb);
  font-family: "GT America Medium", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  text-transform: uppercase;
  font-family: "GT America Medium Italic", sans-serif;
}
@media (min-width: 1920px) {
  .wp-block-button__link,
  .wp-element-button,
  .c-button {
    height: max(3.25rem, 1.63vw + 1.3rem);
  }
}
@media (min-width: 1920px) {
  .wp-block-button__link,
  .wp-element-button,
  .c-button {
    border-radius: max(0rem, 0vw + 0rem);
  }
}
.is-dark .wp-block-button__link,
.is-dark .wp-element-button,
.is-dark .c-button {
  border: 1px solid #ffffff;
  color: #ffffff;
}
@media (min-width: 1140px) and (hover: none) {
  .wp-block-button__link,
  .wp-element-button,
  .c-button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .wp-block-button__link:active, .wp-block-button__link.nice-select.open,
  .wp-element-button:active,
  .wp-element-button.nice-select.open,
  .c-button:active,
  .c-button.nice-select.open {
    /* 1 */
  }
  .wp-block-button__link:active:not(:disabled), .wp-block-button__link.nice-select.open:not(:disabled),
  .wp-element-button:active:not(:disabled),
  .wp-element-button.nice-select.open:not(:disabled),
  .c-button:active:not(:disabled),
  .c-button.nice-select.open:not(:disabled) {
    background-color: #00A0DE;
    color: #ffffff;
    border-color: #00A0DE;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .wp-block-button__link:hover,
  .wp-element-button:hover,
  .c-button:hover {
    /* 2 */
  }
  .wp-block-button__link:hover:not(:disabled),
  .wp-element-button:hover:not(:disabled),
  .c-button:hover:not(:disabled) {
    background-color: #00A0DE;
    color: #ffffff;
    border-color: #00A0DE;
  }
}
.wp-block-button__link:active, .wp-block-button__link.nice-select.open, .wp-block-button__link:focus,
.wp-element-button:active,
.wp-element-button.nice-select.open,
.wp-element-button:focus,
.c-button:active,
.c-button.nice-select.open,
.c-button:focus {
  /* 1 */
}
.wp-block-button__link:active:not(:disabled):focus-visible, .wp-block-button__link.nice-select.open:not(:disabled):focus-visible, .wp-block-button__link:focus:not(:disabled):focus-visible,
.wp-element-button:active:not(:disabled):focus-visible,
.wp-element-button.nice-select.open:not(:disabled):focus-visible,
.wp-element-button:focus:not(:disabled):focus-visible,
.c-button:active:not(:disabled):focus-visible,
.c-button.nice-select.open:not(:disabled):focus-visible,
.c-button:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
.wp-block-button__link:focus, .wp-block-button__link:active, .wp-block-button__link.nice-select.open, .wp-block-button__link:not(:disabled):active,
.wp-element-button:focus,
.wp-element-button:active,
.wp-element-button.nice-select.open,
.wp-element-button:not(:disabled):active,
.c-button:focus,
.c-button:active,
.c-button.nice-select.open,
.c-button:not(:disabled):active {
  background-color: #00A0DE;
  color: #ffffff;
  border-color: #00A0DE;
}
.is-dark .wp-block-button__link:focus, .is-dark .wp-block-button__link:active, .is-dark .wp-block-button__link.nice-select.open, .is-dark .wp-block-button__link:not(:disabled):active,
.is-dark .wp-element-button:focus,
.is-dark .wp-element-button:active,
.is-dark .wp-element-button.nice-select.open,
.is-dark .wp-element-button:not(:disabled):active,
.is-dark .c-button:focus,
.is-dark .c-button:active,
.is-dark .c-button.nice-select.open,
.is-dark .c-button:not(:disabled):active {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.wp-block-button__link:disabled,
.wp-element-button:disabled,
.c-button:disabled {
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  cursor: not-allowed;
  pointer-events: none;
}
.wp-block-button__link--secondary,
.wp-element-button--secondary,
.c-button--secondary {
  background-color: #ffffff;
  color: #000000;
}
@media (min-width: 1140px) and (hover: none) {
  .wp-block-button__link--secondary,
  .wp-element-button--secondary,
  .c-button--secondary {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .wp-block-button__link--secondary:active, .wp-block-button__link--secondary.nice-select.open,
  .wp-element-button--secondary:active,
  .wp-element-button--secondary.nice-select.open,
  .c-button--secondary:active,
  .c-button--secondary.nice-select.open {
    /* 1 */
  }
  .wp-block-button__link--secondary:active:not(:disabled), .wp-block-button__link--secondary.nice-select.open:not(:disabled),
  .wp-element-button--secondary:active:not(:disabled),
  .wp-element-button--secondary.nice-select.open:not(:disabled),
  .c-button--secondary:active:not(:disabled),
  .c-button--secondary.nice-select.open:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.5);
    color: #000000;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .wp-block-button__link--secondary:hover,
  .wp-element-button--secondary:hover,
  .c-button--secondary:hover {
    /* 2 */
  }
  .wp-block-button__link--secondary:hover:not(:disabled),
  .wp-element-button--secondary:hover:not(:disabled),
  .c-button--secondary:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.5);
    color: #000000;
  }
}
.wp-block-button__link--full,
.wp-element-button--full,
.c-button--full {
  width: 100%;
}
.wp-block-button__link--small,
.wp-element-button--small,
.c-button--small {
  height: 40px;
  padding-left: var(--s-40);
  padding-right: var(--s-40);
}
@media (min-width: 1920px) {
  .wp-block-button__link--small,
  .wp-element-button--small,
  .c-button--small {
    height: max(2.5rem, 1.25vw + 1rem);
  }
}
.wp-block-button__link__loader,
.wp-element-button__loader,
.c-button__loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.wp-block-button__link.is-loading,
.wp-element-button.is-loading,
.c-button.is-loading {
  transition: none;
  cursor: not-allowed;
  pointer-events: none;
  color: transparent;
}
.wp-block-button__link.is-loading .c-button__loader,
.wp-element-button.is-loading .c-button__loader,
.c-button.is-loading .c-button__loader {
  display: flex;
}
@media (min-width: 1140px) and (hover: none) {
  .c-button-parent {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-button-parent:active, .c-button-parent.nice-select.open {
    /* 1 */
  }
  .c-button-parent:active .c-button:not(:disabled), .c-button-parent.nice-select.open .c-button:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-button-parent:hover {
    /* 2 */
  }
  .c-button-parent:hover .c-button:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
  }
}

.c-underline-link {
  text-decoration: underline;
}

.c-inline-link {
  display: inline-block;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-inline-link__label {
  display: block;
}
.c-inline-link__label-inner {
  display: block;
  position: relative;
}
.c-inline-link__label-inner:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left top;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-inline-link:hover {
  color: var(--black);
}
.c-inline-link.is-active {
  color: var(--black);
}
.c-inline-link.is-active .c-inline-link__label-inner {
  display: block;
  position: relative;
}
.c-inline-link.is-active .c-inline-link__label-inner:after {
  transform: scaleX(1);
}

.c-spinner {
  width: var(--s-30);
  height: var(--s-30);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-spinner__inner {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 100%;
  animation: spinner 1s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.c-content-loader {
  padding-top: var(--s-60);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  justify-content: center;
  display: none;
}
.is-loading .c-content-loader {
  display: flex;
}
.c-accordion__single {
  border-bottom: 1px solid #000000;
}
.c-accordion__single:first-child {
  border-top: 1px solid #000000;
}
.c-accordion__header {
  padding-top: var(--s-20);
  padding-bottom: var(--s-20);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-60);
}
.c-accordion__indicator {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  width: auto;
  height: auto;
  background: transparent;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-tap-highlight-color: transparent;
  width: var(--s-20);
  height: var(--s-20);
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
}
.c-accordion__indicator:hover, .c-accordion__indicator:focus, .c-accordion__indicator:active, .c-accordion__indicator.nice-select.open {
  outline: none;
}
.c-accordion__indicator:active, .c-accordion__indicator.nice-select.open, .c-accordion__indicator:focus {
  /* 1 */
}
.c-accordion__indicator:active:not(:disabled):focus-visible, .c-accordion__indicator.nice-select.open:not(:disabled):focus-visible, .c-accordion__indicator:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
.c-accordion__indicator:before, .c-accordion__indicator:after {
  content: "";
  position: absolute;
  background-color: #000000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-accordion__indicator:before {
  width: 1px;
  height: 100%;
}
@media (min-width: 1920px) {
  .c-accordion__indicator:before {
    width: max(0.06rem, 0.03vw + 0.02rem);
  }
}
.c-accordion__indicator:after {
  height: 1px;
  width: 100%;
}
@media (min-width: 1920px) {
  .c-accordion__indicator:after {
    height: max(0.06rem, 0.03vw + 0.02rem);
  }
}
.is-opened .c-accordion__indicator:before {
  transform: translate(-50%, -50%) scaleY(0);
}
.c-accordion__panel-inner {
  padding-bottom: var(--s-20);
}
.c-accordion__panel-inner p {
  margin-bottom: 1em;
}
.c-accordion__panel-inner p:last-child {
  margin-bottom: 0;
}

.c-slider-fraction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.c-slider-navigation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-10);
  user-select: none;
}
.c-slider-navigation__button {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  width: auto;
  height: auto;
  background: transparent;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-tap-highlight-color: transparent;
  border-radius: 3px;
  width: 45px;
  height: 45px;
  font-size: 0.7em;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: var(--blue);
}
.c-slider-navigation__button:hover, .c-slider-navigation__button:focus, .c-slider-navigation__button:active, .c-slider-navigation__button.nice-select.open {
  outline: none;
}
.c-slider-navigation__button:active, .c-slider-navigation__button.nice-select.open, .c-slider-navigation__button:focus {
  /* 1 */
}
.c-slider-navigation__button:active:not(:disabled):focus-visible, .c-slider-navigation__button.nice-select.open:not(:disabled):focus-visible, .c-slider-navigation__button:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
@media (min-width: 1920px) {
  .c-slider-navigation__button {
    border-radius: max(0.19rem, 0.09vw + 0.07rem);
  }
}
@media (min-width: 1920px) {
  .c-slider-navigation__button {
    width: max(2.81rem, 1.41vw + 1.13rem);
  }
}
@media (min-width: 1920px) {
  .c-slider-navigation__button {
    height: max(2.81rem, 1.41vw + 1.13rem);
  }
}
@media (min-width: 1140px) and (hover: none) {
  .c-slider-navigation__button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-slider-navigation__button:active, .c-slider-navigation__button.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-slider-navigation__button:hover {
    /* 2 */
  }
}
.c-slider-navigation__button:disabled {
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

.c-slider-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-10);
  user-select: none;
}
.c-slider-pagination__bullet {
  width: var(--s-10);
  height: var(--s-10);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.c-slider-pagination__bullet.is-active {
  background-color: #000000;
}

.c-slider-scrollbar {
  border-radius: 100px;
  height: var(--s-10);
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  user-select: none;
}
@media (min-width: 1920px) {
  .c-slider-scrollbar {
    border-radius: max(6.25rem, 3.13vw + 2.5rem);
  }
}
@media (max-width: 1140px) {
  .c-slider-scrollbar {
    height: var(--s-5);
  }
}
.c-slider-scrollbar__inner {
  border-radius: 100px;
  height: 100%;
  background-color: #000000;
  cursor: pointer;
}
@media (min-width: 1920px) {
  .c-slider-scrollbar__inner {
    border-radius: max(6.25rem, 3.13vw + 2.5rem);
  }
}

.c-social-icons {
  display: flex;
  align-items: center;
  gap: var(--s-20);
  font-size: 1.5em;
}
.c-social-icons li,
.c-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-social-icons li svg path,
.c-social-icons a svg path {
  fill: var(--black);
}
.single-community .c-social-icons li svg path, .single-team .c-social-icons li svg path, .page-template-home .c-social-icons li svg path,
.single-community .c-social-icons a svg path,
.single-team .c-social-icons a svg path,
.page-template-home .c-social-icons a svg path {
  fill: var(--white);
}
.is-mobile-navigation-active .c-social-icons li svg path,
.is-mobile-navigation-active .c-social-icons a svg path {
  fill: var(--black);
}

.c-article-share {
  position: relative;
  color: var(--grey);
}
.c-article-share__label {
  position: relative;
  cursor: pointer;
  text-decoration: underline;
}
.c-article-share__list {
  top: 0;
  right: 100%;
  position: absolute;
  flex-direction: row;
  transform-origin: right top;
  pointer-events: none;
}
.c-article-share__list-inner {
  display: flex;
  align-items: center;
  gap: var(--s-16);
  padding-right: var(--s-16);
  white-space: nowrap;
}
.c-article-share__list-inner li {
  opacity: 0;
  visibility: hidden;
  margin-bottom: 0 !important;
}
.c-article-share__list-inner li span, .c-article-share__list-inner li a {
  cursor: pointer;
  display: block;
  white-space: nowrap;
  text-decoration: underline;
}
@media (min-width: 1140px) and (hover: none) {
  .c-article-share {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-article-share:active, .c-article-share.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-article-share:hover {
    /* 2 */
  }
}

.c-mobile-navigation-a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-mobile-navigation-a__menu-item-link {
  padding-top: var(--s-14);
  padding-bottom: var(--s-14);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-24);
  color: var(--black);
}
.c-mobile-navigation-a__menu-item-link.u-body-01 {
  font-family: "GT America Medium Italic", sans-serif;
}
.c-mobile-navigation-a__menu-item-indicator {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  width: auto;
  height: auto;
  background: transparent;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-tap-highlight-color: transparent;
  width: var(--spacing-m);
  height: 1rem;
  font-size: var(--s-24);
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
}
.c-mobile-navigation-a__menu-item-indicator:hover, .c-mobile-navigation-a__menu-item-indicator:focus, .c-mobile-navigation-a__menu-item-indicator:active, .c-mobile-navigation-a__menu-item-indicator.nice-select.open {
  outline: none;
}
.c-mobile-navigation-a__menu-item-indicator:active, .c-mobile-navigation-a__menu-item-indicator.nice-select.open, .c-mobile-navigation-a__menu-item-indicator:focus {
  /* 1 */
}
.c-mobile-navigation-a__menu-item-indicator:active:not(:disabled):focus-visible, .c-mobile-navigation-a__menu-item-indicator.nice-select.open:not(:disabled):focus-visible, .c-mobile-navigation-a__menu-item-indicator:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
.is-opened .c-mobile-navigation-a__menu-item-indicator .u-icon {
  transform: scaleY(-1);
}
.c-mobile-navigation-a__menu-item-indicator .u-icon {
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-mobile-navigation-a__submenu-inner {
  padding-bottom: var(--s-24);
}
.c-mobile-navigation-a__submenu-item-link {
  padding: var(--s-7) 0 var(--s-7) var(--s-24);
  display: flex;
  gap: var(--s-24);
  color: var(--grey);
}
.c-mobile-navigation-a__submenu-item-link .u-body-01 {
  font-family: "GT America Medium Italic", sans-serif;
}
.c-mobile-navigation-a__submenu-item-icon {
  flex-shrink: 0;
  flex-grow: 0;
  font-size: var(--s-24);
}
.c-mobile-navigation-a__submenu-item-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--s-24);
  flex: 1 0 0;
}
.c-mobile-navigation-a__footer, .c-mobile-navigation-a__cta {
  margin-top: auto;
  padding: var(--s-24) 0;
  color: var(--black);
}
.c-mobile-navigation-a__socials {
  padding-bottom: var(--s-20);
}

.c-navigation-a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-m);
  height: var(--spacing-l);
  color: var(--white);
}
.is-mobile-navigation-active .c-navigation-a, .error404 .c-navigation-a, .single-ideas .c-navigation-a, .search-results .c-navigation-a, .search-no-results .c-navigation-a, .header-light .c-navigation-a {
  color: var(--grey);
}
.c-navigation-a__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 1140px) {
  .c-navigation-a__wrapper {
    order: 1;
    position: static;
  }
}
@media (max-width: 800px) {
  .c-navigation-a__wrapper {
    position: static;
    order: 2;
  }
}
.c-navigation-a__mobile-navigation-trigger {
  display: none;
}
.c-navigation-a--logo-center .c-navigation-a__mobile-navigation-trigger {
  order: 1;
}
@media (max-width: 1140px) {
  .c-navigation-a--logo-center .c-navigation-a__mobile-navigation-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 2;
    margin-left: var(--s-24);
  }
}
@media (max-width: 800px) {
  .c-navigation-a--logo-center .c-navigation-a__mobile-navigation-trigger {
    order: 1;
    flex: 1 0 0;
    margin-left: 0;
  }
}
.c-navigation-a__logo {
  flex: 1 0 0;
}
@media (max-width: 1140px) {
  .c-navigation-a__logo {
    flex: none;
  }
}
.c-navigation-a--logo-center .c-navigation-a__logo {
  order: 3;
  flex: none;
}
.c-navigation-a__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-m);
  height: 100%;
  order: 1;
}
@media (max-width: 1140px) {
  .c-navigation-a__menu {
    display: none;
  }
}
.c-navigation-a--logo-center .c-navigation-a__menu {
  order: 2;
  flex: 1 0 0;
  justify-content: flex-end;
}
.c-navigation-a__menu-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  padding: 0 var(--s-10);
}
.c-navigation-a__menu-item:first-child {
  padding-left: 0;
}
.c-navigation-a__menu-item:first-child .c-navigation-a__submenu {
  padding-left: 0;
}
.c-navigation-a__menu-item:last-child {
  font-family: "GT America Medium Italic", sans-serif;
  padding-right: var(--s-20);
}
.c-navigation-a__menu-item.is-active .c-navigation-a__menu-item-link:after {
  transform: scaleX(1);
}
.c-navigation-a__menu-item.is-active .c-navigation-a__menu-item-link .u-icon {
  transform: scaleY(-1);
}
@media (min-width: 1140px) and (hover: none) {
  .c-navigation-a__menu-item {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-navigation-a__menu-item:active, .c-navigation-a__menu-item.nice-select.open {
    /* 1 */
  }
  .c-navigation-a__menu-item:active .c-navigation-a__menu-item-link:after, .c-navigation-a__menu-item.nice-select.open .c-navigation-a__menu-item-link:after {
    transform: scaleX(1);
  }
  .c-navigation-a__menu-item:active .c-navigation-a__menu-item-link .u-icon, .c-navigation-a__menu-item.nice-select.open .c-navigation-a__menu-item-link .u-icon {
    transform: scaleY(-1);
  }
  .c-navigation-a__menu-item:active .c-navigation-a__submenu, .c-navigation-a__menu-item.nice-select.open .c-navigation-a__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-navigation-a__menu-item:hover {
    /* 2 */
  }
  .c-navigation-a__menu-item:hover .c-navigation-a__menu-item-link:after {
    transform: scaleX(1);
  }
  .c-navigation-a__menu-item:hover .c-navigation-a__menu-item-link .u-icon {
    transform: scaleY(-1);
  }
  .c-navigation-a__menu-item:hover .c-navigation-a__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.c-navigation-a__menu-item-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.c-navigation-a__menu-item-link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: left top;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.is-mobile-navigation-active .c-navigation-a__menu-item-link:after, .error404 .c-navigation-a__menu-item-link:after, .single-ideas .c-navigation-a__menu-item-link:after, .search-results .c-navigation-a__menu-item-link:after, .search-no-results .c-navigation-a__menu-item-link:after, .header-light .c-navigation-a__menu-item-link:after {
  background-color: var(--grey);
}
.c-navigation-a__menu-item-link .u-icon {
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-navigation-a__submenu {
  min-width: 200px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  position: absolute;
  top: 100%;
  left: 0;
  padding: var(--s-10);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  pointer-events: none;
}
@media (min-width: 1920px) {
  .c-navigation-a__submenu {
    min-width: max(12.5rem, 6.25vw + 5rem);
  }
}
.is-active .c-navigation-a__submenu-item {
  color: var(--grey);
}
.c-navigation-a__submenu-item.is-active {
  opacity: 1;
  color: var(--white);
}
.is-mobile-navigation-active .c-navigation-a__submenu-item.is-active, .error404 .c-navigation-a__submenu-item.is-active, .single-ideas .c-navigation-a__submenu-item.is-active, .search-results .c-navigation-a__submenu-item.is-active, .search-no-results .c-navigation-a__submenu-item.is-active, .header-light .c-navigation-a__submenu-item.is-active {
  color: var(--grey);
}
.c-navigation-a__submenu-item.is-active .c-navigation-a__submenu-item-content:after {
  transform: scaleX(1);
}
@media (min-width: 1140px) and (hover: none) {
  .c-navigation-a__submenu-item {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-navigation-a__submenu-item:active, .c-navigation-a__submenu-item.nice-select.open {
    /* 1 */
  }
  .c-navigation-a__submenu-item:active .c-navigation-a__submenu-item-content:after, .c-navigation-a__submenu-item.nice-select.open .c-navigation-a__submenu-item-content:after {
    transform: scaleX(1);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-navigation-a__submenu-item:hover {
    /* 2 */
  }
  .c-navigation-a__submenu-item:hover .c-navigation-a__submenu-item-content:after {
    transform: scaleX(1);
  }
}
.c-navigation-a__submenu-item-link {
  position: relative;
  padding: var(--spacing-xs) 0;
  display: flex;
  gap: var(--spacing-xs);
  cursor: pointer;
  pointer-events: initial;
}
.c-navigation-a__submenu-item-icon {
  flex-shrink: 0;
  flex-grow: 0;
  font-size: var(--spacing-s2);
}
.c-navigation-a__submenu-item-content {
  position: relative;
}
.c-navigation-a__submenu-item-content:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: left top;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.is-mobile-navigation-active .c-navigation-a__submenu-item-content:after, .error404 .c-navigation-a__submenu-item-content:after, .single-ideas .c-navigation-a__submenu-item-content:after, .search-results .c-navigation-a__submenu-item-content:after, .search-no-results .c-navigation-a__submenu-item-content:after, .header-light .c-navigation-a__submenu-item-content:after {
  background-color: var(--grey);
}
.c-navigation-a__cta {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c-navigation-a--logo-center .c-navigation-a__cta {
  order: 4;
}
.c-navigation-a__search, .c-navigation-a__cart {
  display: flex;
  align-items: center;
}
.c-navigation-a__search .js-mm-list-item, .c-navigation-a__cart .js-mm-list-item {
  display: flex;
  align-items: center;
}
.c-navigation-a__search .u-icon path, .c-navigation-a__cart .u-icon path {
  fill: var(--white);
}
.is-mobile-navigation-active .c-navigation-a__search .u-icon path, .error404 .c-navigation-a__search .u-icon path, .single-ideas .c-navigation-a__search .u-icon path, .search-results .c-navigation-a__search .u-icon path, .search-no-results .c-navigation-a__search .u-icon path, .header-light .c-navigation-a__search .u-icon path, .is-mobile-navigation-active .c-navigation-a__cart .u-icon path, .error404 .c-navigation-a__cart .u-icon path, .single-ideas .c-navigation-a__cart .u-icon path, .search-results .c-navigation-a__cart .u-icon path, .search-no-results .c-navigation-a__cart .u-icon path, .header-light .c-navigation-a__cart .u-icon path {
  fill: var(--grey);
}
.c-navigation-a__search {
  margin-left: var(--s-40);
  order: 2;
}
@media (max-width: 1140px) {
  .c-navigation-a__search {
    margin-left: 0;
  }
}
@media (max-width: 800px) {
  .c-navigation-a__search {
    margin-left: var(--s-40);
  }
}
.c-navigation-a__search .u-icon {
  width: 1.4375rem;
  height: 1.625rem;
}
.c-navigation-a__language-switcher {
  order: 2;
}
@media (max-width: 1140px) {
  .c-navigation-a__language-switcher {
    display: none;
  }
}
.c-navigation-a__language-switcher .wgcurrent {
  display: none !important;
}
.c-navigation-a__language-switcher li {
  position: relative;
  margin: 0 !important;
}
.c-navigation-a__language-switcher li a {
  padding: 0;
  color: var(--white) !important;
  font-size: var(--option);
  line-height: 200%;
  font-weight: normal;
  letter-spacing: normal;
  font-family: "GT America Medium", sans-serif;
  text-decoration: none !important;
}
@media (max-width: 1140px) {
  .c-navigation-a__language-switcher li a {
    color: var(--black) !important;
    font-size: var(--body-01);
    line-height: 133%;
    font-weight: normal;
    letter-spacing: normal;
    font-family: "GT America Medium Italic", sans-serif;
  }
}
.is-mobile-navigation-active .c-navigation-a__language-switcher li a, .error404 .c-navigation-a__language-switcher li a, .single-ideas .c-navigation-a__language-switcher li a, .search-results .c-navigation-a__language-switcher li a, .search-no-results .c-navigation-a__language-switcher li a, .header-light .c-navigation-a__language-switcher li a {
  color: var(--grey) !important;
}
@media (max-width: 1140px) {
  .is-mobile-navigation-active .c-navigation-a__language-switcher li a, .error404 .c-navigation-a__language-switcher li a, .single-ideas .c-navigation-a__language-switcher li a, .search-results .c-navigation-a__language-switcher li a, .search-no-results .c-navigation-a__language-switcher li a, .header-light .c-navigation-a__language-switcher li a {
    color: var(--black) !important;
  }
}
@media (min-width: 1140px) and (hover: none) {
  .c-navigation-a__language-switcher li a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-navigation-a__language-switcher li a:active, .c-navigation-a__language-switcher li a.nice-select.open {
    /* 1 */
    text-decoration: none;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-navigation-a__language-switcher li a:hover {
    /* 2 */
    text-decoration: none;
  }
}
.c-navigation-a__language-switcher li:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: left top;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.is-mobile-navigation-active .c-navigation-a__language-switcher li:after, .error404 .c-navigation-a__language-switcher li:after, .single-ideas .c-navigation-a__language-switcher li:after, .search-results .c-navigation-a__language-switcher li:after, .search-no-results .c-navigation-a__language-switcher li:after, .header-light .c-navigation-a__language-switcher li:after {
  background-color: var(--grey);
}
@media (min-width: 1140px) and (hover: none) {
  .c-navigation-a__language-switcher li {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-navigation-a__language-switcher li:active, .c-navigation-a__language-switcher li.nice-select.open {
    /* 1 */
  }
  .c-navigation-a__language-switcher li:active:after, .c-navigation-a__language-switcher li.nice-select.open:after {
    transform: scaleX(1);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-navigation-a__language-switcher li:hover {
    /* 2 */
  }
  .c-navigation-a__language-switcher li:hover:after {
    transform: scaleX(1);
  }
}
@media (max-width: 1140px) {
  .c-navigation-a__language-switcher--mobile {
    padding-top: var(--s-14);
    padding-bottom: var(--s-14);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--s-24);
    color: var(--black);
  }
  .c-navigation-a__language-switcher--mobile li:after {
    display: none;
  }
}
.c-navigation-a__cart {
  margin-left: var(--s-10);
  order: 3;
}
@media (max-width: 1140px) {
  .c-navigation-a__cart {
    margin-left: var(--s-24);
  }
}
.c-navigation-a__cart .u-icon {
  width: 1.4375rem;
  height: 1.375rem;
}

.c-navigation-b {
  display: flex;
  align-items: center;
  gap: var(--spacing-m);
  height: var(--spacing-l);
}
.c-navigation-b__logo {
  flex: 1 0 0;
}
.c-navigation-b__cta {
  display: flex;
  align-items: center;
}

.c-navigation-dropdown-a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-navigation-dropdown-a__content {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-navigation-dropdown-a__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  padding: var(--spacing-l) 0;
  width: 100%;
}
@media (max-width: 1140px) {
  .c-navigation-dropdown-a__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-navigation-dropdown-a__column--flex {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
}
.c-navigation-dropdown-a__description {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-s2);
  margin-top: auto;
}
.c-navigation-dropdown-a__description-text p + p {
  margin-top: 1em;
}
.c-navigation-dropdown-a__primary-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: var(--spacing-s2);
  column-gap: var(--spacing-m);
}
@media (max-width: 640px) {
  .c-navigation-dropdown-a__primary-menu {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-navigation-dropdown-a__secondary-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: var(--spacing-l);
  column-gap: var(--spacing-m);
  padding: 0 var(--spacing-l);
}
@media (max-width: 1140px) {
  .c-navigation-dropdown-a__secondary-menu {
    padding: 0;
  }
}
@media (max-width: 640px) {
  .c-navigation-dropdown-a__secondary-menu {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-navigation-dropdown-a__secondary-menu-submenu {
  margin-top: var(--spacing-xs2);
}
.c-navigation-dropdown-a__secondary-menu-submenu-link {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) 0;
}
.c-navigation-dropdown-a__footer {
  flex-shrink: 0;
  flex-grow: 0;
  margin-top: auto;
  padding: var(--spacing-s2) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-m);
}

.c-shop-card,
.c-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .c-shop-card,
  .c-blog-card {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-shop-card:active, .c-shop-card.nice-select.open,
  .c-blog-card:active,
  .c-blog-card.nice-select.open {
    /* 1 */
  }
  .c-shop-card:active .c-responsive-media, .c-shop-card.nice-select.open .c-responsive-media,
  .c-blog-card:active .c-responsive-media,
  .c-blog-card.nice-select.open .c-responsive-media {
    transform: scale(1.05);
  }
  .c-shop-card:active .c-shop-card__read-more, .c-shop-card.nice-select.open .c-shop-card__read-more,
  .c-shop-card:active .c-blog-card__read-more,
  .c-shop-card.nice-select.open .c-blog-card__read-more,
  .c-blog-card:active .c-shop-card__read-more,
  .c-blog-card.nice-select.open .c-shop-card__read-more,
  .c-blog-card:active .c-blog-card__read-more,
  .c-blog-card.nice-select.open .c-blog-card__read-more {
    text-decoration: initial;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-shop-card:hover,
  .c-blog-card:hover {
    /* 2 */
  }
  .c-shop-card:hover .c-responsive-media,
  .c-blog-card:hover .c-responsive-media {
    transform: scale(1.05);
  }
  .c-shop-card:hover .c-shop-card__read-more,
  .c-shop-card:hover .c-blog-card__read-more,
  .c-blog-card:hover .c-shop-card__read-more,
  .c-blog-card:hover .c-blog-card__read-more {
    text-decoration: initial;
  }
}
.c-shop-card__media,
.c-blog-card__media {
  margin: -1px -1px 0 -1px;
  overflow: hidden;
}
.c-shop-card__content,
.c-blog-card__content {
  display: flex;
  flex-direction: column;
  padding-top: var(--s-16);
}
.c-shop-card__categories,
.c-blog-card__categories {
  margin-bottom: var(--s-16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8);
}
.c-shop-card__title,
.c-blog-card__title {
  color: var(--black);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-shop-card .c-shop-card__title,
.c-shop-card .c-blog-card__title {
  margin-bottom: var(--s-16);
}
.c-blog-card--related .c-shop-card__title,
.c-blog-card--related .c-blog-card__title {
  margin-bottom: var(--s-7);
}
.c-shop-card__excerpt,
.c-blog-card__excerpt {
  margin-bottom: var(--s-16);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  color: var(--grey);
}
.c-shop-card__meta,
.c-blog-card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--grey);
}
.c-shop-card__meta li,
.c-blog-card__meta li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-shop-card__meta li:not(:first-child):before,
.c-blog-card__meta li:not(:first-child):before {
  content: "•";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 var(--s-2);
}
.c-shop-card__read-more,
.c-blog-card__read-more {
  cursor: pointer;
  color: var(--blue);
  text-decoration: underline;
}
.c-shop-card__links,
.c-blog-card__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.c-shop-card__links span,
.c-shop-card__links a,
.c-blog-card__links span,
.c-blog-card__links a {
  display: inline-block;
  margin-right: var(--s-16);
}
.c-shop-card__links span:last-child,
.c-shop-card__links a:last-child,
.c-blog-card__links span:last-child,
.c-blog-card__links a:last-child {
  margin-right: 0;
}
.c-shop-card .c-responsive-media,
.c-blog-card .c-responsive-media {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-team-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.6;
}
.c-team-card--green-tint-photo:after {
  background-color: rgba(12, 69, 2, 0.6);
}
.c-team-card--orange-tint-photo:after {
  background-color: rgba(69, 59, 2, 0.5);
}
.c-team-card--blue-tint-photo:after {
  background-color: rgba(2, 69, 67, 0.6);
}
.c-team-card--dark-blue-tint-photo:after {
  background-color: rgba(2, 5, 69, 0.6);
}
.c-team-card--red-tint-photo:after {
  background-color: rgba(69, 2, 28, 0.6);
}
.c-team-card--yellow-tint-photo:after {
  background-color: rgba(69, 65, 2, 0.6);
}
@media (min-width: 1140px) and (hover: none) {
  .c-team-card {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-team-card:active, .c-team-card.nice-select.open {
    /* 1 */
  }
  .c-team-card:active .c-responsive-media, .c-team-card.nice-select.open .c-responsive-media {
    transform: scale(1.05);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-team-card:hover {
    /* 2 */
  }
  .c-team-card:hover .c-responsive-media {
    transform: scale(1.05);
  }
}
.c-team-card__media {
  margin: -1px -1px 0 -1px;
  overflow: hidden;
}
.c-team-card__content {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  padding: var(--s-32);
  z-index: 1;
}
.c-team-card__title {
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-team-card__name {
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-team-card .c-responsive-media {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-community-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-community-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.6;
  background-color: var(--black);
}
@media (min-width: 1140px) and (hover: none) {
  .c-community-card {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-community-card:active, .c-community-card.nice-select.open {
    /* 1 */
  }
  .c-community-card:active .c-responsive-media, .c-community-card.nice-select.open .c-responsive-media {
    transform: scale(1.05);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-community-card:hover {
    /* 2 */
  }
  .c-community-card:hover .c-responsive-media {
    transform: scale(1.05);
  }
}
.c-community-card__media {
  margin: -1px -1px 0 -1px;
  overflow: hidden;
}
.c-community-card__content {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  padding: var(--s-32);
  z-index: 1;
}
.c-community-card__terms {
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-community-card__name {
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-community-card .c-responsive-media {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/**
 * Cards
 */
/**
 * Forms
 */
/*
 * Form
 * Custom form styles and resets
 * usage: form.c-form
 */
.c-form {
  display: block;
  width: 100%;
  /**
   * Fieldset flex wrapper
   * wraps fieldset to achieve multiple column inputs
   * 1. On mobile convert to block element and push down the content because fieldset last child has margin bottom 0
   * usage: .c-form__fieldset-flex-wrapper > .c-form__fieldset + .c-form__fieldset
   */
  /**
   * Fieldset
   * 1. When wrapped with flex wrapper make the columns equal width
   * usage: .c-form__fieldset
   */
  /**
  * Label and legend
  * usage: .c-form__fieldset > .c-form__label
  * usage: .c-form__fieldset > .c-form__legend
  */
  /**
   * Input resets and styling
   * 1. Reset display and dimensions for all browsers.
   * 2. Reset and define spacing for all browsers
   * 3. Reset background and border for all browsers
   * 4. Make font properties consistent in IE and Safari with other browsers
   * 5. Add transitions on input
   * 6. Remove platform specific default styling for inputs like search or select
   * 7. Hover state
   * 8. Focus state - disable outline and enable border for better design
   * 9. Disabled state
   * 10. State when input is not empty
   * 11., 12. Reset autocomplete styles in webkit browsers
   * usage: .c-form__fieldset > .c-form__label + .c-form__input
   */
  /**
   * Error state for input
   * Add border to show which input has error
   * 1. Hover state
   * 2. Focus state - disable outline and enable border for better design
   * 3. State when input is not empty
   * usage: .c-form__input.c-form__input--error
   */
  /**
   * Password input
   * Modifier for password inputs
   * Compensate padding for password reveal icon
   * usage: .c-form__input.c-form__input--password
   */
  /**
   * Search input
   * Modifier for search inputs
   * Compensate padding for submit button
   * usage: .c-form__input.c-form__input--search
   */
  /**
   * Newsletter input
   * Modifier for newsletter inputs
   * 1. Hover state
   * 2. Focus state
   * 3. Disabled state
   * 4. State when input is not empty
   * usage: .c-form__input.c-form__input--newsletter
   */
  /**
   * Textarea input
   * Modifier for textarea inputs
   * Remove resizing option from textarea
   * Add height or min height to textarea
   * Needs to be combined with .c-form__input for reset
   * usage: .c-form__input.c-form__input--textarea
   */
  /**
   * Select input
   * Modifier for native select inputs without using third party lib's
   * Compensate padding for indicator icon
   * usage: .c-form__input.c-form__input--select
   */
  /**
   * Inline input
   * Modifier for inputs which appear inline
   * usage: .c-form__input.c-form__input--inline
   */
  /**
   * Checkbox and radio common style
   * 1. Hide default HTML input
   * 2. Single checkbox wrapper
   * 3. Single radio wrapper
   * 4. Reset line height on fake checkbox and radio
   * 5. Style links inside labels
   * 6. Wrapper around radio buttons to create flexbox grid
   */
  /* 1 */
  /* 2 */
  /* 3 */
  /* 4 */
  /* 6 */
  /**
   * Custom checkbox
   * 1. Custom checkbox holder
   * 2. Custom checkbox checked indicator
   * 3. Hover state
   * 4. Focus state
   * 5. Checked state - size of the indicator can be controlled with scale ratio
   * 6. Disabled state
   * usage: .c-form__fieldset > .c-form__checkbox-wrapper > .c-form__checkbox + .c-form__checkbox-label
   */
  /**
   * Custom radio
   * 1. Radio button label that holds the design of the radio buttons
   * 2. Hover state
   * 3. Focus state
   * 4. Checked state - size of the indicator can be controlled with scale ratio
   * 5. Disabled state
   * usage: .c-form__fieldset > .c-form__legend + .c-form__radio-grid > .c-form__radio-wrapper > .c-form__radio + .c-form__radio-label
   */
  /**
   * Form errors
   * 1. Wrapper styles
   * 2. Title styles
   * 3. List styles
   * usage: .c-form__errors > .c-form__errors-title + .c-form__errors-list
   */
  /* 1 */
  /* 2 */
  /* 3 */
  /**
   * Form success
   * 1. Wrapper styles
   * 2. Title styles
   * 3. Message styles
   * 4. CTA styles
   * 5. Newsletter success styles
   * usage: .c-form__success > .c-form__success-message
   * usage: .c-form__success > .c-form__success-title + .c-form__success-message + .c-form__success-cta
   */
  /* 1 */
  /* 2 */
  /* 3 */
  /* 4 */
  /* 5 */
  /**
   * Validation message
   * Styles a validation message displayed bellow the input with error
   * usage: .c-form__input.c-form__input--error + .c-form__validation-message
   */
  /**
   * Password wrapper
   * Used as wrapper for password input and show/hide toggle button
   * 1. Styles for show/hide toggle button
   * 2. Styles for show/hide toggle button when password is displayed as text
   * usage: .c-form__password-wrapper > .c-form__input.c-form__input--password + .c-form__password-toggle
   */
  /* 1 */
  /**
   * Search wrapper
   * Used as wrapper for search input, reset and submit button
   * 1. Styles for search actions wrapper that contains reset and submit button
   * 2. Styles for reset button
   * 3. Styles for submit button
   * usage: .c-form__search-wrapper > .c-form__input.c-form__input--search + .c-form__search-actions > .c-form__search-reset + .c-form__search-submit
   */
  /* 1 */
  /* 2, 3 */
  /* 2 */
  /* 3 */
  /**
   * Newsletter wrapper
   * Used as wrapper for newsletter input and submit button
   * 1. Styles for submit button
   * usage: .c-form__newsletter-wrapper > .c-form__input.c-form__input--newsletter + .c-form__newsletter-submit
   */
  /* 1 */
  /**
   * Select wrapper
   * Used as wrapper for select input and fake indicator
   * 1. Styles for indicator
   * usage: .c-form__select-wrapper > .c-form__input.c-form__input--select + .c-form__select-indicator
   */
  /* 1 */
}
.c-form__fieldset-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-24);
  /* 1 */
}
@media (max-width: 800px) {
  .c-form__fieldset-flex-wrapper {
    margin-bottom: var(--s-24);
    display: block;
  }
  .c-form__fieldset-flex-wrapper:last-child {
    margin-bottom: 0;
  }
}
.c-form__fieldset {
  padding: 0;
  margin: 0;
  margin-bottom: var(--s-45);
  border-width: 0;
  /* 1 */
}
.c-form__fieldset--checkbox {
  margin: 0;
  margin-bottom: var(--s-32);
}
.c-form__fieldset--small {
  margin: 0;
  margin-bottom: var(--s-24);
}
.c-form__fieldset-flex-wrapper .c-form__fieldset {
  flex: 1 0 0;
}
.c-form__fieldset--flex {
  display: flex;
  gap: var(--s-15);
}
.c-form__label, .c-form__legend {
  display: block;
  color: #000000;
  cursor: pointer;
  width: 100%;
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
}
.c-form__input {
  /* 1 */
  height: 58px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  /* 2 */
  padding: var(--s-15) var(--s-20);
  margin: 0;
  /* 3 */
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  background-color: #F9F9F9;
  box-shadow: none;
  outline: none;
  /* 4 */
  font-size: var(--body-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  color: #000000;
  /* 5 */
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  /* 6 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 7 */
  /* 8 */
  /* 9 */
  /* 11 */
  /* 12 */
  /**
   * Input placeholders
   * 1. Chrome, Firefox, Opera, Safari 10.1+
   * 2. Firefox needs opacity reset
   * 3. Internet Explorer 10-11
   * 4. Microsoft Edge
   */
  /* 1 */
  /* 3 */
  /* 4 */
}
@media (min-width: 1920px) {
  .c-form__input {
    height: max(3.63rem, 1.81vw + 1.45rem);
  }
}
@media (min-width: 1920px) {
  .c-form__input {
    border-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (min-width: 1140px) and (hover: none) {
  .c-form__input {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-form__input:active, .c-form__input.nice-select.open {
    /* 1 */
    outline: 0;
    box-shadow: none;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-form__input:hover {
    /* 2 */
    outline: 0;
    box-shadow: none;
  }
}
.c-form__input:focus {
  outline: 0;
  box-shadow: none;
}
.c-form__input:disabled {
  outline: 0;
  box-shadow: none;
  pointer-events: none;
}
.c-form__input:-webkit-autofill, .c-form__input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.c-form__input[data-autocompleted] {
  background-color: transparent !important;
}
.c-form__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  /* 2 */
  opacity: 1;
}
.c-form__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.c-form__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.c-form__input--error {
  border-color: #ff0000;
  /* 1 */
  /* 2 */
}
@media (min-width: 1140px) and (hover: none) {
  .c-form__input--error {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-form__input--error:active, .c-form__input--error.nice-select.open {
    /* 1 */
    border-color: #ff0000;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-form__input--error:hover {
    /* 2 */
    border-color: #ff0000;
  }
}
.c-form__input--error:focus {
  border-color: #ff0000;
}
.c-form__input--password {
  padding-right: var(--s-60);
}
.c-form__input--search {
  padding-right: var(--s-60);
}
.c-form__input--newsletter {
  height: 40px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom-color: #ffffff;
  padding-left: 0;
  background-color: transparent;
  color: #ffffff;
  border-radius: 0;
  /* 1 */
  /* 2 */
  /**
   * Input placeholders
   * 1. Chrome, Firefox, Opera, Safari 10.1+
   * 2. Firefox needs opacity reset
   * 3. Internet Explorer 10-11
   * 4. Microsoft Edge
   */
  /* 1 */
  /* 3 */
  /* 4 */
}
@media (min-width: 1920px) {
  .c-form__input--newsletter {
    height: max(2.5rem, 1.25vw + 1rem);
  }
}
@media (min-width: 1140px) and (hover: none) {
  .c-form__input--newsletter {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-form__input--newsletter:active, .c-form__input--newsletter.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-form__input--newsletter:hover {
    /* 2 */
  }
}
.c-form__input--newsletter::placeholder {
  color: rgba(255, 255, 255, 0.5);
  /* 2 */
  opacity: 1;
}
.c-form__input--newsletter:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.c-form__input--newsletter::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.c-form__input--textarea {
  min-height: 160px;
  height: 160px;
  padding-top: var(--s-15);
  padding-bottom: var(--s-15);
  resize: none;
}
@media (min-width: 1920px) {
  .c-form__input--textarea {
    min-height: max(10rem, 5vw + 4rem);
  }
}
@media (min-width: 1920px) {
  .c-form__input--textarea {
    height: max(10rem, 5vw + 4rem);
  }
}
.c-form__input--select {
  padding-right: var(--s-40);
  cursor: pointer;
}
.c-form__input--inline {
  height: 40px;
  width: 70px;
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  display: block;
  text-align: center;
  padding-left: var(--s-10);
  padding-right: var(--s-10);
}
@media (min-width: 1920px) {
  .c-form__input--inline {
    height: max(2.5rem, 1.25vw + 1rem);
  }
}
@media (min-width: 1920px) {
  .c-form__input--inline {
    width: max(4.38rem, 2.19vw + 1.75rem);
  }
}
.c-form__checkbox, .c-form__radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  box-sizing: border-box;
}
.c-form__checkbox-wrapper {
  margin-bottom: var(--s-15);
}
.c-form__checkbox-wrapper:last-child {
  margin-bottom: 0;
}
.c-form__checkbox-label, .c-form__radio-label {
  box-sizing: border-box;
  /* 5 */
}
.c-form__checkbox-label:before, .c-form__checkbox-label:after, .c-form__radio-label:before, .c-form__radio-label:after {
  box-sizing: border-box;
  line-height: 1;
  transform-origin: center;
}
.c-form__checkbox-label a, .c-form__radio-label a {
  text-decoration: underline;
}
.c-form__radio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-15);
}
@media (max-width: 1140px) {
  .c-form__radio-grid {
    gap: var(--s-10);
  }
}
.c-form__checkbox {
  /* 3 */
  /* 4 */
  /* 5 */
  /* 6 */
}
.c-form__checkbox + .c-form__checkbox-label {
  padding-left: var(--s-45);
  position: relative;
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  /* 1, 2 */
  /* 1 */
  /* 2 */
}
@media (max-width: 1140px) {
  .c-form__checkbox + .c-form__checkbox-label {
    padding-left: var(--s-40);
  }
}
.c-form__checkbox + .c-form__checkbox-label:before, .c-form__checkbox + .c-form__checkbox-label:after {
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 1px;
  display: block;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1920px) {
  .c-form__checkbox + .c-form__checkbox-label:before, .c-form__checkbox + .c-form__checkbox-label:after {
    width: max(1.38rem, 0.69vw + 0.55rem);
  }
}
@media (min-width: 1920px) {
  .c-form__checkbox + .c-form__checkbox-label:before, .c-form__checkbox + .c-form__checkbox-label:after {
    height: max(1.38rem, 0.69vw + 0.55rem);
  }
}
.c-form__fieldset--checkbox-small .c-form__checkbox + .c-form__checkbox-label:before, .c-form__fieldset--checkbox-small .c-form__checkbox + .c-form__checkbox-label:after {
  top: -2px;
}
.c-form__checkbox + .c-form__checkbox-label:before {
  border-radius: 5px;
  content: "";
  background-color: #ffffff;
  border: 1px solid var(--grey);
  opacity: 0.5;
}
@media (min-width: 1920px) {
  .c-form__checkbox + .c-form__checkbox-label:before {
    border-radius: max(0.31rem, 0.16vw + 0.13rem);
  }
}
.c-form__checkbox + .c-form__checkbox-label:after {
  content: "";
  transform: scale(0);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI4IiBmaWxsPSJub25lIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMy44MjIgNS4xNzggMS40NjUgMi44MjEuMjg2IDRsMy41MzYgMy41MzYgNS44OTItNS44OTNMOC41MzYuNDY0IDMuODIyIDUuMTc4WiIvPjwvc3ZnPg==");
}
@media (min-width: 1140px) and (hover: none) {
  .c-form__checkbox {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-form__checkbox:active, .c-form__checkbox.nice-select.open {
    /* 1 */
  }
  .c-form__checkbox:active:not(:checked) + .c-form__checkbox-label:before, .c-form__checkbox.nice-select.open:not(:checked) + .c-form__checkbox-label:before {
    outline: 0;
    border-color: var(--black);
    background-color: #ffffff;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-form__checkbox:hover {
    /* 2 */
  }
  .c-form__checkbox:hover:not(:checked) + .c-form__checkbox-label:before {
    outline: 0;
    border-color: var(--black);
    background-color: #ffffff;
  }
}
.c-form__checkbox:focus:not(:checked) + .c-form__checkbox-label:before {
  outline: 0;
  border-color: var(--black);
  background-color: #ffffff;
}
.c-form__checkbox:checked + .c-form__checkbox-label:before {
  outline: 0;
  border-color: var(--black);
  background-color: var(--black);
}
.c-form__checkbox:checked + .c-form__checkbox-label:after {
  transform: scale(0.5);
}
.c-form__checkbox:disabled {
  /* 8 */
}
.c-form__checkbox:disabled + .c-form__checkbox-label {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
.c-form__radio {
  /* 1 */
  /* 2 */
  /* 3 */
  /* 4 */
  /* 5 */
}
.c-form__radio + .c-form__radio-label {
  border-radius: 10px;
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  color: #000000;
  border: 1px solid #000000;
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: var(--s-15);
  cursor: pointer;
}
@media (min-width: 1920px) {
  .c-form__radio + .c-form__radio-label {
    border-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (max-width: 1140px) {
  .c-form__radio + .c-form__radio-label {
    padding: var(--s-10);
  }
}
.c-form__radio + .c-form__radio-label .u-icon {
  margin-right: var(--s-15);
  font-size: 1.4em;
}
@media (min-width: 1140px) and (hover: none) {
  .c-form__radio {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-form__radio:active, .c-form__radio.nice-select.open {
    /* 1 */
  }
  .c-form__radio:active:not(:checked) + .c-form__radio-label, .c-form__radio.nice-select.open:not(:checked) + .c-form__radio-label {
    outline: 0;
    box-shadow: none;
    color: #000000;
    border-color: #000000;
    background-color: #ffffff;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-form__radio:hover {
    /* 2 */
  }
  .c-form__radio:hover:not(:checked) + .c-form__radio-label {
    outline: 0;
    box-shadow: none;
    color: #000000;
    border-color: #000000;
    background-color: #ffffff;
  }
}
.c-form__radio:focus:not(:checked) + .c-form__radio-label {
  outline: 0;
  box-shadow: none;
  color: #000000;
  border-color: #000000;
  background-color: #ffffff;
}
.c-form__radio:checked + .c-form__radio-label {
  outline: 0;
  box-shadow: none;
  color: #ffffff;
  border-color: #000000;
  background-color: #000000;
}
.c-form__errors {
  margin-bottom: var(--s-30);
  color: #ff0000;
}
.c-form__errors-list {
  margin-top: var(--s-15);
}
.c-form__errors-list li {
  margin-bottom: var(--s-5);
}
.c-form__errors-list li:last-child {
  margin-bottom: 0;
}
.c-form__errors-list a {
  text-decoration: underline;
}
.c-form__success {
  margin-bottom: var(--s-30);
}
.c-form__success:last-child {
  margin-bottom: 0;
}
.c-form__success-message {
  margin-top: var(--s-15);
}
.c-form__success-message:first-child, .c-form__success-message:only-child {
  margin-top: 0;
}
.c-form__success-cta {
  margin-top: var(--s-15);
}
.c-form__success-cta:first-child, .c-form__success-cta:only-child {
  margin-top: 0;
}
.c-form__success--newsletter {
  margin-top: var(--s-5);
  margin-bottom: 0;
}
.c-form__validation-message {
  margin-top: var(--s-5);
  color: #ff0000;
}
.c-form__password-wrapper {
  position: relative;
}
.c-form__password-toggle {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  width: auto;
  height: auto;
  background: transparent;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-tap-highlight-color: transparent;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: var(--s-15);
  padding-right: var(--s-15);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  /* 2 */
}
.c-form__password-toggle:hover, .c-form__password-toggle:focus, .c-form__password-toggle:active, .c-form__password-toggle.nice-select.open {
  outline: none;
}
.c-form__password-toggle:active, .c-form__password-toggle.nice-select.open, .c-form__password-toggle:focus {
  /* 1 */
}
.c-form__password-toggle:active:not(:disabled):focus-visible, .c-form__password-toggle.nice-select.open:not(:disabled):focus-visible, .c-form__password-toggle:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
@media (min-width: 1920px) {
  .c-form__password-toggle {
    font-size: max(1.25rem, 0.63vw + 0.5rem);
  }
}
@media (min-width: 1140px) and (hover: none) {
  .c-form__password-toggle {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-form__password-toggle:active, .c-form__password-toggle.nice-select.open {
    /* 1 */
    color: #000000;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-form__password-toggle:hover {
    /* 2 */
    color: #000000;
  }
}
.c-form__password-toggle:active, .c-form__password-toggle.nice-select.open, .c-form__password-toggle:focus {
  /* 1 */
}
.c-form__password-toggle:active:not(:disabled):focus-visible, .c-form__password-toggle.nice-select.open:not(:disabled):focus-visible, .c-form__password-toggle:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
@media (max-width: 800px) {
  .c-form__password-toggle {
    font-size: 16px;
  }
}
@media (max-width: 800px) and (min-width: 1920px) {
  .c-form__password-toggle {
    font-size: max(1rem, 0.5vw + 0.4rem);
  }
}
.has-password-visible .c-form__password-toggle {
  color: #000000;
}
.c-form__search-wrapper {
  position: relative;
}
.c-form__search-actions {
  position: absolute;
  top: 50%;
  right: var(--s-15);
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--s-10);
}
.c-form__search-reset, .c-form__search-submit {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  width: auto;
  height: auto;
  background: transparent;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-form__search-reset:hover, .c-form__search-reset:focus, .c-form__search-reset:active, .c-form__search-reset.nice-select.open, .c-form__search-submit:hover, .c-form__search-submit:focus, .c-form__search-submit:active, .c-form__search-submit.nice-select.open {
  outline: none;
}
.c-form__search-reset:active, .c-form__search-reset.nice-select.open, .c-form__search-reset:focus, .c-form__search-submit:active, .c-form__search-submit.nice-select.open, .c-form__search-submit:focus {
  /* 1 */
}
.c-form__search-reset:active:not(:disabled):focus-visible, .c-form__search-reset.nice-select.open:not(:disabled):focus-visible, .c-form__search-reset:focus:not(:disabled):focus-visible, .c-form__search-submit:active:not(:disabled):focus-visible, .c-form__search-submit.nice-select.open:not(:disabled):focus-visible, .c-form__search-submit:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
.c-form__search-reset {
  display: none;
}
.c-form__search-reset.is-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-form__newsletter-wrapper {
  position: relative;
  display: flex;
}
.c-form__newsletter-submit {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  width: auto;
  height: auto;
  background: transparent;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-color: #000000;
  color: #ffffff;
  flex-shrink: 0;
  flex-grow: 0;
  padding-left: var(--s-10);
  padding-right: var(--s-10);
}
.c-form__newsletter-submit:hover, .c-form__newsletter-submit:focus, .c-form__newsletter-submit:active, .c-form__newsletter-submit.nice-select.open {
  outline: none;
}
.c-form__newsletter-submit:active, .c-form__newsletter-submit.nice-select.open, .c-form__newsletter-submit:focus {
  /* 1 */
}
.c-form__newsletter-submit:active:not(:disabled):focus-visible, .c-form__newsletter-submit.nice-select.open:not(:disabled):focus-visible, .c-form__newsletter-submit:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
@media (min-width: 1140px) and (hover: none) {
  .c-form__newsletter-submit {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-form__newsletter-submit:active, .c-form__newsletter-submit.nice-select.open {
    /* 1 */
    background-color: #ffffff;
    color: #000000;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-form__newsletter-submit:hover {
    /* 2 */
    background-color: #ffffff;
    color: #000000;
  }
}
.c-form__select-wrapper {
  position: relative;
  cursor: pointer;
}
.c-form__select-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: var(--s-15);
  transform: translateY(-50%);
  font-size: 0.75em;
  pointer-events: none;
}

.c-form .wpcf7-not-valid-tip {
  color: #ff0000;
  font-size: var(--body-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  padding-top: 0.44rem;
}
@media (min-width: 1920px) {
  .c-form .wpcf7-not-valid-tip {
    padding-top: max(0.44rem, 0.22vw + 0.17rem);
  }
}

.c-form .wpcf7 form .wpcf7-response-output {
  border: none;
  font-size: var(--body-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  padding-left: 0;
  padding-right: 0;
}

.c-form .wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  color: #ff0000;
}

.c-form .c-form .wpcf7-not-valid-tip {
  color: #ff0000;
  font-size: var(--body-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  padding-top: 0.44rem;
}
@media (min-width: 1920px) {
  .c-form .c-form .wpcf7-not-valid-tip {
    padding-top: max(0.44rem, 0.22vw + 0.17rem);
  }
}
.c-form .wpcf7 form .wpcf7-response-output {
  border: none;
  font-size: var(--body-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.c-form .wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  color: #ff0000;
}

/**
 * Tables
 */
/**
 * Modals
 */
/**
 * Sections
 */
.js-desktop-filters {
  display: flex !important;
}

.js-mobile-filters {
  display: none !important;
}

@media (max-width: 800px) {
  .js-desktop-filters {
    display: none !important;
  }
  .js-mobile-filters {
    display: flex !important;
  }
}
.c-archive__page-title {
  padding-top: var(--s-70);
  padding-bottom: var(--s-16);
}
.c-archive__filters {
  position: relative;
  z-index: 1;
  margin-bottom: var(--s-64);
  border-bottom: 1px solid var(--black-30);
  color: var(--grey);
}
.c-archive--community .c-archive__filters {
  border-bottom: none;
  margin-bottom: var(--s-50);
}
.c-archive--team .c-archive__filters {
  margin-bottom: var(--s-45);
}
.c-archive__filter {
  display: flex;
}
.c-archive__filter select {
  display: none;
}
.c-archive__filters-inner {
  display: flex;
  gap: var(--s-64);
  align-items: center;
  justify-content: flex-start;
}
.c-archive--community .c-archive__filters-inner {
  gap: var(--s-7);
}
@media (max-width: 1140px) {
  .c-archive--community .c-archive__filters-inner {
    flex-wrap: wrap; /* Allow items to wrap if needed */
  }
  .c-archive--community .c-archive__filters-inner .c-search-bar {
    flex: 1 1 100%; /* First item takes full width */
    width: 100%; /* Ensure 100% width */
  }
  .c-archive--community .c-archive__filters-inner .c-archive__filter {
    flex: 1 1 calc(50% - var(--s-64)); /* Ensure 50% width minus gap */
    box-sizing: border-box; /* Include padding and borders in width */
  }
}
.c-archive__content {
  position: relative;
  padding-bottom: var(--s-64);
}
.c-archive--team .c-archive__content {
  padding-bottom: var(--s-20);
}
.c-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-32);
}
@media (max-width: 1140px) {
  .c-archive__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .c-archive__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-archive--community .c-archive__list {
  gap: 0;
}
.c-archive--team .c-archive__list {
  overflow: hidden;
  gap: 0;
}
@media (max-width: 1140px) {
  .c-archive--team .c-archive__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .c-archive--team .c-archive__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-archive__article {
  position: relative;
}
.c-archive__article:nth-last-child(1):before {
  background-color: rgba(180, 158, 116, 0.42);
}
.c-archive__article:nth-last-child(1):after {
  background-color: rgba(124, 171, 174, 0.42);
}
.c-archive--team .c-archive__article:nth-last-child(1):before, .c-archive--team .c-archive__article:nth-last-child(1):after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
}
.c-archive--team .c-archive__article:nth-last-child(1):before {
  left: 100%;
}
.c-archive--team .c-archive__article:nth-last-child(1):after {
  left: 200%;
}
.c-archive__pagination {
  padding: var(--s-32) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-archive .nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #EAEAEA;
  border-radius: 0;
  border: solid 1px #EAEAEA;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  float: left;
  font-family: inherit;
  font-weight: normal;
  height: 1.9375rem;
  line-height: 1.9375rem;
  outline: none;
  padding: 0.375rem;
  padding-right: 2.1875rem;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 15.625rem;
}
@media (max-width: 1140px) {
  .c-archive .nice-select.js-nice-select-filters-mobile {
    min-width: 100%;
    width: 100%;
  }
}
.c-archive .nice-select:after {
  border-bottom: 1.5px solid var(--grey);
  border-right: 1.5px solid var(--grey);
  content: "";
  display: block;
  height: 0.5625rem;
  right: 0.75rem;
  margin-top: calc(-1 * 0.375rem);
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 0.5625rem;
}
.c-archive .nice-select .nice-select-dropdown {
  margin-top: 0;
  background-color: var(--white);
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(19px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  opacity: 0;
  width: 100%;
}
.c-archive .nice-select .nice-select-dropdown .option {
  line-height: 1.5625rem;
  padding: 0.375rem 0.75rem;
}
.c-archive .nice-select .list {
  border-radius: 0;
}
.c-archive__reset-button {
  border: none;
  background: none;
  font-weight: 500;
  text-decoration: underline;
  color: var(--grey);
  outline: 0;
  box-shadow: none;
  margin-left: 0.4375rem;
  cursor: pointer;
}
@media (max-width: 1140px) {
  .c-archive__reset-button {
    display: none !important;
  }
}

.c-no-results {
  padding-left: 2rem;
  padding-right: 2rem;
}

.c-image-popup + .o-section--archive .c-archive__page-title {
  padding-top: 0;
  padding-bottom: var(--s-16);
}

@media (max-width: 1140px) {
  .c-archive--community .nice-select {
    min-width: 100%;
    width: 100%;
  }
}

/**
 * Modules
 */
.c-header-a-module,
.c-header-b-module,
.c-header-c-module {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.c-header-a-module--center .c-header-a-module__content,
.c-header-a-module--center .c-header-b-module__content,
.c-header-b-module--center .c-header-a-module__content,
.c-header-b-module--center .c-header-b-module__content,
.c-header-c-module--center .c-header-a-module__content,
.c-header-c-module--center .c-header-b-module__content {
  margin-left: auto;
  margin-right: auto;
}
.c-header-a-module--center .c-header-a-module__actions,
.c-header-a-module--center .c-header-b-module__actions,
.c-header-b-module--center .c-header-a-module__actions,
.c-header-b-module--center .c-header-b-module__actions,
.c-header-c-module--center .c-header-a-module__actions,
.c-header-c-module--center .c-header-b-module__actions {
  justify-content: center;
}
.c-header-a-module__content,
.c-header-b-module__content,
.c-header-c-module__content {
  height: 100vh;
  height: 100dvh;
  max-width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  gap: var(--s-32);
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 50%);
}
@media (max-width: 960px) {
  .c-header-a-module__content,
  .c-header-b-module__content,
  .c-header-c-module__content {
    padding-top: 19.5443645084vw;
    padding-bottom: 19.5443645084vw;
  }
}
@media (max-width: 480px) {
  .c-header-a-module__content,
  .c-header-b-module__content,
  .c-header-c-module__content {
    padding-top: 31.5384615385vw;
    padding-bottom: 31.5384615385vw;
  }
}
@media (max-width: 800px) {
  .c-header-a-module__content,
  .c-header-b-module__content,
  .c-header-c-module__content {
    height: auto;
    grid-template-rows: auto;
  }
}
@media (max-width: 960px) {
  .c-header-a-module .c-header-a-module__content,
  .c-header-a-module .c-header-b-module__content,
  .c-header-a-module .c-header-c-module__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 800px) {
  .c-header-a-module .c-header-a-module__content,
  .c-header-a-module .c-header-b-module__content,
  .c-header-a-module .c-header-c-module__content {
    padding-top: 19.5443645084vw;
    padding-bottom: 2rem;
    gap: var(--s-40);
  }
}
@media (max-width: 480px) {
  .c-header-a-module .c-header-a-module__content,
  .c-header-a-module .c-header-b-module__content,
  .c-header-a-module .c-header-c-module__content {
    padding-top: 26.4102564103vw;
    padding-bottom: 6.1538461538vw;
  }
}
.c-header-c-module .c-header-a-module__content,
.c-header-c-module .c-header-b-module__content,
.c-header-c-module .c-header-c-module__content {
  height: auto;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 100%);
}
@media (max-width: 960px) {
  .c-header-c-module .c-header-a-module__content,
  .c-header-c-module .c-header-b-module__content,
  .c-header-c-module .c-header-c-module__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 800px) {
  .c-header-c-module .c-header-a-module__content,
  .c-header-c-module .c-header-b-module__content,
  .c-header-c-module .c-header-c-module__content {
    padding-top: 19.5443645084vw;
    padding-bottom: 11.5107913669vw;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .c-header-c-module .c-header-a-module__content,
  .c-header-c-module .c-header-b-module__content,
  .c-header-c-module .c-header-c-module__content {
    padding-top: 31.5384615385vw;
    padding-bottom: 24.6153846154vw;
    gap: 0;
  }
}
.c-header-a-module__content-inner,
.c-header-b-module__content-inner,
.c-header-c-module__content-inner {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}
.c-header-b-module .c-header-a-module__content-inner,
.c-header-b-module .c-header-b-module__content-inner,
.c-header-b-module .c-header-c-module__content-inner {
  width: var(--home-content);
  max-width: 100%;
}
@media (max-width: 1140px) {
  .c-header-b-module .c-header-a-module__content-inner,
  .c-header-b-module .c-header-b-module__content-inner,
  .c-header-b-module .c-header-c-module__content-inner {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .c-header-a-module__content-inner,
  .c-header-b-module__content-inner,
  .c-header-c-module__content-inner {
    padding-bottom: 0;
  }
}
.c-header-a-module__actions,
.c-header-b-module__actions,
.c-header-c-module__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-xs2);
}
.c-header-a-module__actions:not(:only-child),
.c-header-b-module__actions:not(:only-child),
.c-header-c-module__actions:not(:only-child) {
  padding-top: var(--spacing-xs2);
}
.c-header-a-module__title,
.c-header-b-module__title,
.c-header-c-module__title {
  width: 100%;
  margin-bottom: var(--s-20);
  color: var(--white);
}
@media (max-width: 960px) {
  .c-header-a-module__title,
  .c-header-b-module__title,
  .c-header-c-module__title {
    margin-bottom: 0;
  }
}
.c-header-a-module .c-header-a-module__title,
.c-header-a-module .c-header-b-module__title,
.c-header-a-module .c-header-c-module__title {
  color: var(--white);
}
.c-header-a-module__title:last-child,
.c-header-b-module__title:last-child,
.c-header-c-module__title:last-child {
  margin-bottom: 0;
}
.c-header-a-module__subtitle,
.c-header-b-module__subtitle,
.c-header-c-module__subtitle {
  width: 100%;
  color: var(--blue);
}
@media (max-width: 800px) {
  .c-header-b-module .c-header-a-module__subtitle br,
  .c-header-b-module .c-header-b-module__subtitle br,
  .c-header-b-module .c-header-c-module__subtitle br {
    display: none !important;
  }
}
.c-header-a-module__meta,
.c-header-b-module__meta,
.c-header-c-module__meta {
  margin-top: auto;
  width: 100%;
  align-self: flex-end;
  color: var(--white);
}
@media (max-width: 800px) {
  .c-header-a-module__meta,
  .c-header-b-module__meta,
  .c-header-c-module__meta {
    display: none !important;
  }
}
.c-header-a-module__meta--mobile,
.c-header-b-module__meta--mobile,
.c-header-c-module__meta--mobile {
  display: none !important;
  color: var(--black);
}
@media (max-width: 800px) {
  .c-header-a-module__meta--mobile,
  .c-header-b-module__meta--mobile,
  .c-header-c-module__meta--mobile {
    display: block !important;
  }
}
.c-header-a-module__meta a.is-loaded,
.c-header-b-module__meta a.is-loaded,
.c-header-c-module__meta a.is-loaded {
  color: var(--blue);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .c-header-a-module__meta a.is-loaded,
  .c-header-b-module__meta a.is-loaded,
  .c-header-c-module__meta a.is-loaded {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-header-a-module__meta a.is-loaded:active, .c-header-a-module__meta a.is-loaded.nice-select.open,
  .c-header-b-module__meta a.is-loaded:active,
  .c-header-b-module__meta a.is-loaded.nice-select.open,
  .c-header-c-module__meta a.is-loaded:active,
  .c-header-c-module__meta a.is-loaded.nice-select.open {
    /* 1 */
    color: var(--grey);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-header-a-module__meta a.is-loaded:hover,
  .c-header-b-module__meta a.is-loaded:hover,
  .c-header-c-module__meta a.is-loaded:hover {
    /* 2 */
    color: var(--grey);
  }
}
.c-header-a-module__meta a.is-loaded:focus, .c-header-a-module__meta a.is-loaded:active, .c-header-a-module__meta a.is-loaded.nice-select.open, .c-header-a-module__meta a.is-loaded:not(:disabled):active,
.c-header-b-module__meta a.is-loaded:focus,
.c-header-b-module__meta a.is-loaded:active,
.c-header-b-module__meta a.is-loaded.nice-select.open,
.c-header-b-module__meta a.is-loaded:not(:disabled):active,
.c-header-c-module__meta a.is-loaded:focus,
.c-header-c-module__meta a.is-loaded:active,
.c-header-c-module__meta a.is-loaded.nice-select.open,
.c-header-c-module__meta a.is-loaded:not(:disabled):active {
  color: var(--blue);
}
.c-header-a-module__icon-arrow-down,
.c-header-b-module__icon-arrow-down,
.c-header-c-module__icon-arrow-down {
  cursor: pointer;
  position: absolute;
  bottom: var(--s-32);
  left: 50%;
  width: 3.125rem;
  z-index: 1;
}
@media (max-width: 1140px) {
  .c-header-a-module__icon-arrow-down,
  .c-header-b-module__icon-arrow-down,
  .c-header-c-module__icon-arrow-down {
    display: none !important;
  }
}
.c-header-a-module__icon-arrow-down svg,
.c-header-b-module__icon-arrow-down svg,
.c-header-c-module__icon-arrow-down svg {
  display: block;
  width: 100%;
  height: auto;
}
.c-header-a-module__icon-arrow-down svg path,
.c-header-b-module__icon-arrow-down svg path,
.c-header-c-module__icon-arrow-down svg path {
  fill: var(--white);
}
.c-header-a-module__media,
.c-header-b-module__media,
.c-header-c-module__media {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--border-radius-media);
}
.c-header-a-module .c-header-a-module__media, .c-header-c-module .c-header-a-module__media,
.c-header-a-module .c-header-b-module__media,
.c-header-c-module .c-header-b-module__media,
.c-header-a-module .c-header-c-module__media,
.c-header-c-module .c-header-c-module__media {
  align-items: flex-start;
}
.c-header-a-module__media a,
.c-header-b-module__media a,
.c-header-c-module__media a {
  display: inline-block;
}
@media (max-width: 640px) {
  .c-header-a-module__media a,
  .c-header-b-module__media a,
  .c-header-c-module__media a {
    width: 100%;
  }
}
.c-header-a-module__media img,
.c-header-b-module__media img,
.c-header-c-module__media img {
  max-width: 100%;
  width: var(--home-image);
}
@media (max-width: 640px) {
  .c-header-a-module__media img,
  .c-header-b-module__media img,
  .c-header-c-module__media img {
    width: 100%;
  }
}
.c-header-a-module .c-header-a-module__media img, .c-header-c-module .c-header-a-module__media img,
.c-header-a-module .c-header-b-module__media img,
.c-header-c-module .c-header-b-module__media img,
.c-header-a-module .c-header-c-module__media img,
.c-header-c-module .c-header-c-module__media img {
  width: 13.8888888889vw;
}
@media (max-width: 800px) {
  .c-header-a-module .c-header-a-module__media img, .c-header-c-module .c-header-a-module__media img,
  .c-header-a-module .c-header-b-module__media img,
  .c-header-c-module .c-header-b-module__media img,
  .c-header-a-module .c-header-c-module__media img,
  .c-header-c-module .c-header-c-module__media img {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .c-header-a-module .c-header-a-module__media img, .c-header-c-module .c-header-a-module__media img,
  .c-header-a-module .c-header-b-module__media img,
  .c-header-c-module .c-header-b-module__media img,
  .c-header-a-module .c-header-c-module__media img,
  .c-header-c-module .c-header-c-module__media img {
    width: 100%;
  }
}

.c-image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Ensure it's initially transparent */
  visibility: hidden; /* Hidden from view */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-image-popup.is-visible {
  display: flex;
}
.c-image-popup__close {
  position: absolute;
  top: var(--s-32);
  right: var(--s-32);
  border: none;
  cursor: pointer;
  line-height: 1;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.c-image-popup__close svg {
  width: 3.3333333333vw;
  height: 3.3333333333vw;
}
.c-image-popup__close svg path {
  fill: var(--white);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .c-image-popup__close {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-image-popup__close:active, .c-image-popup__close.nice-select.open {
    /* 1 */
  }
  .c-image-popup__close:active svg path, .c-image-popup__close.nice-select.open svg path {
    fill: var(--blue);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-image-popup__close:hover {
    /* 2 */
  }
  .c-image-popup__close:hover svg path {
    fill: var(--blue);
  }
}
.c-image-popup__content {
  position: relative;
  height: 80%;
  max-height: 90%;
}
.c-image-popup__content img {
  object-fit: contain;
  height: 100%;
  width: auto;
}
.c-image-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.c-header-search {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.c-header-search--center {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.c-header-search__image {
  width: 46.0416666667vw;
  max-width: 100%;
}
.c-header-search__content {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 2rem;
  padding-bottom: 4rem;
  width: 100%;
}
@media (max-width: 960px) {
  .c-header-search__content {
    padding-top: 2rem;
  }
}
@media (max-width: 800px) {
  .c-header-search__content {
    padding-top: 19.5443645084vw;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .c-header-search__content {
    padding-top: 31.5384615385vw;
    gap: 0;
  }
}
.c-header-search__share {
  position: absolute;
  top: 0;
  right: 0;
}
.c-header-search__content-editor {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
}
.c-header-search__content-editor-inner {
  position: relative;
}
.c-header-search__content-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-32); /* Space between columns */
}
@media (max-width: 800px) {
  .c-header-search__content-inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--s-7); /* Space between columns */
  }
}
.c-header-search__title {
  color: var(--black);
  flex: 1; /* Takes up the remaining space */
}
.c-header-a-module .c-header-search__title {
  color: var(--black);
}
.c-header-search__title:last-child {
  margin-bottom: 0;
}
.c-header-search__meta {
  flex: 0;
}
.c-header-search__nbr-results {
  white-space: nowrap;
}
.c-header-search__description {
  width: 66.4583333333vw;
  max-width: 100%;
}
.c-header-search__media {
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius-media);
  align-items: flex-start;
  min-height: 30.4444444444vh;
}
@media (max-width: 960px) {
  .c-header-search__media {
    padding-bottom: 2rem;
  }
}
@media (max-width: 800px) {
  .c-header-search__media {
    padding-bottom: 11.5107913669vw;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .c-header-search__media {
    padding-bottom: 24.6153846154vw;
  }
}
@media (max-width: 800px) {
  .c-header-search__media {
    min-height: 1px;
  }
}
.c-header-search__media a {
  display: inline-block;
}
@media (max-width: 640px) {
  .c-header-search__media a {
    width: 100%;
  }
}
.c-header-search__media img {
  max-width: 100%;
  width: 13.8888888889vw;
}
@media (max-width: 800px) {
  .c-header-search__media img {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .c-header-search__media img {
    width: 100%;
  }
}

.c-header-default {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.c-header-default--center {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.c-header-default__image {
  width: 46.0416666667vw;
  max-width: 100%;
}
.c-header-default__content {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 2rem;
  padding-bottom: 4rem;
  width: 100%;
}
@media (max-width: 960px) {
  .c-header-default__content {
    padding-top: 2rem;
  }
}
@media (max-width: 800px) {
  .c-header-default__content {
    padding-top: 19.5443645084vw;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .c-header-default__content {
    padding-top: 31.5384615385vw;
    padding-bottom: 3.375rem;
    gap: 0;
  }
}
.c-header-default__share {
  position: absolute;
  top: 0;
  right: 0;
}
.c-header-default__content-editor {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
}
.c-header-default__content-editor-inner {
  position: relative;
}
.c-header-default__content-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-32); /* Space between columns */
}
@media (max-width: 800px) {
  .c-header-default__content-inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--s-7); /* Space between columns */
  }
}
.c-header-default__title {
  color: var(--black);
  flex: 1; /* Takes up the remaining space */
}
.c-header-a-module .c-header-default__title {
  color: var(--black);
}
.c-header-default__title:last-child {
  margin-bottom: 0;
}
.c-header-default__meta {
  flex: 0;
}
.c-header-default__description {
  width: 66.4583333333vw;
  max-width: 100%;
}
.c-header-default__media {
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius-media);
  align-items: flex-start;
  min-height: 30.4444444444vh;
}
@media (max-width: 960px) {
  .c-header-default__media {
    padding-bottom: 2rem;
  }
}
@media (max-width: 800px) {
  .c-header-default__media {
    padding-bottom: 11.5107913669vw;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .c-header-default__media {
    padding-bottom: 24.6153846154vw;
  }
}
@media (max-width: 800px) {
  .c-header-default__media {
    min-height: 1px;
  }
}
.c-header-default__media a {
  display: inline-block;
}
@media (max-width: 640px) {
  .c-header-default__media a {
    width: 100%;
  }
}
.c-header-default__media img {
  max-width: 100%;
  width: 13.8888888889vw;
}
@media (max-width: 800px) {
  .c-header-default__media img {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .c-header-default__media img {
    width: 100%;
  }
}

.c-header-404 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.c-header-404--center {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.c-header-404__image {
  width: 46.0416666667vw;
  max-width: 100%;
}
.c-header-404__content {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 2rem;
  padding-bottom: 4rem;
  width: 100%;
}
.c-header-404__share {
  position: absolute;
  top: 0;
  right: 0;
}
.c-header-404__content-editor {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
}
.c-header-404__content-editor-inner {
  position: relative;
}
.c-header-404__content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  display: flex;
  align-items: flex-start; /* Aligns items to the bottom */
  gap: var(--s-32); /* Space between columns */
}
.c-header-404__title {
  color: var(--black);
  flex: 1; /* Takes up the remaining space */
}
.c-header-a-module .c-header-404__title {
  color: var(--black);
}
.c-header-404__title:last-child {
  margin-bottom: 0;
}
.c-header-404__link {
  color: var(--blue);
  text-decoration: underline;
  font-family: "GT America Medium Italic", sans-serif;
  font-style: italic;
}
.c-header-404__meta {
  flex: 0;
}
.c-header-404__nbr-results {
  white-space: nowrap;
}
.c-header-404__description {
  width: 66.4583333333vw;
  max-width: 100%;
}
.c-header-404__media {
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius-media);
  align-items: flex-start;
  min-height: 30.4444444444vh;
}
.c-header-404__media img {
  max-width: 100%;
  width: 13.8888888889vw;
}

.c-footer-b-module {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--s-32);
  padding-top: var(--s-24);
  padding-bottom: var(--s-50);
  border-top: 1px solid var(--black-30);
}
.single-community .c-footer-b-module, .footer-dark .c-footer-b-module {
  border-top: 1px solid var(--white);
}
.c-footer-b-module__top {
  display: flex;
  gap: var(--s-24);
}
@media (max-width: 1140px) {
  .c-footer-b-module__top {
    gap: var(--s-20);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-footer-b-module__top a {
  text-decoration: underline;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-footer-b-module__top a:hover {
  color: var(--grey);
}
.c-footer-b-module__middle {
  display: flex;
  color: var(--grey);
}
.c-footer-b-module__middle a {
  color: var(--black);
  text-decoration: underline;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.single-community .c-footer-b-module__middle a, .footer-dark .c-footer-b-module__middle a {
  color: var(--white);
}
.c-footer-b-module__middle a:hover {
  color: var(--grey);
}
@media (max-width: 1140px) {
  .c-footer-b-module__middle {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-footer-b-module__socials {
  display: flex;
  align-items: center;
}
@media (max-width: 1140px) {
  .c-footer-b-module__divider {
    display: none;
  }
}
.c-footer-b-module__column {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
}
@media (max-width: 640px) {
  .c-footer-b-module__column {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-footer-b-module__column--grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  flex: 1 0 0;
}
.c-footer-b-module__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: var(--s-10);
  order: 2;
}
@media (max-width: 1140px) {
  .c-footer-b-module__menu {
    order: 1;
    gap: var(--s-5);
  }
}
.c-footer-b-module__menu--vertical {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.c-footer-b-module__info {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.c-footer-b-module__bottom {
  padding-top: var(--s-20);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--s-24);
}
.c-footer-b-module--other .c-footer-b-module__bottom {
  padding-top: 0;
}
@media (max-width: 1140px) {
  .c-footer-b-module__bottom {
    padding-top: 0;
    gap: var(--s-20);
  }
}
.c-footer-b-module__bottom a {
  text-decoration: underline;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-footer-b-module__bottom a:hover {
  color: var(--grey);
}
@media (max-width: 1140px) {
  .c-footer-b-module__bottom {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-footer-b-module__subtext {
  order: 1;
  color: var(--grey);
}
.single-community .c-footer-b-module__subtext, .footer-dark .c-footer-b-module__subtext {
  color: var(--white);
}
@media (max-width: 1140px) {
  .c-footer-b-module__subtext {
    order: 2;
  }
}

.c-intro-module {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  padding-bottom: var(--s-32);
}
.c-intro-module__title {
  color: var(--black);
}
.c-intro-module__title.u-heading-02 {
  padding-bottom: var(--s-32);
}
.c-intro-module__description {
  color: var(--grey);
}
.c-intro-module__description a {
  text-decoration: underline;
  color: var(--blue);
}
.c-intro-module__description a:hover {
  text-decoration: none;
}
.c-intro-module__form {
  padding-top: var(--s-16);
}

.c-partners-list-module {
  width: 100%;
  padding-bottom: var(--s-80);
}
.c-partners-list-module__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-20);
  width: 100%;
}
@media (max-width: 1140px) {
  .c-partners-list-module__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .c-partners-list-module__list {
    gap: var(--s-10);
  }
}
.c-partners-list-module__item a, .c-partners-list-module__item span {
  display: block;
  position: relative;
}
.c-partners-list-module__item a:before, .c-partners-list-module__item span:before {
  display: block;
  width: 100%;
  content: "";
  padding-bottom: 100.4115226337%;
}
.c-partners-list-module__item a:after, .c-partners-list-module__item span:after {
  position: absolute;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  content: "";
  background-size: contain;
  background-image: url("../ui/border.svg");
  background-repeat: no-repeat;
}
.c-partners-list-module__item a img, .c-partners-list-module__item span img {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  left: 0px;
}

.c-simple-wysiwyg-module {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  padding-bottom: var(--s-60);
}
.c-simple-wysiwyg-module__text {
  color: var(--grey);
}
.c-simple-wysiwyg-module__text strong, .c-simple-wysiwyg-module__text b {
  color: var(--black);
  font-weight: normal;
}
.c-simple-wysiwyg-module__text a {
  text-decoration: underline;
  color: var(--blue);
}

.c-home-articles-module {
  width: 100%;
  padding-bottom: var(--s-10);
}
.c-home-articles-module__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
}
.c-home-articles-module__item {
  width: 100%;
  padding-top: var(--s-50);
  padding-bottom: var(--s-50);
  border-bottom: 1px solid var(--grey);
}
@media (max-width: 1140px) {
  .c-home-articles-module__item {
    padding-top: var(--s-70-fixed);
    padding-bottom: var(--s-70-fixed);
  }
}
.c-home-articles-module__item:last-child {
  border-bottom: 0;
}
.c-home-articles-module__item-link {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-20);
}
@media (max-width: 1140px) {
  .c-home-articles-module__item-link {
    flex-direction: column;
    gap: var(--s-70-fixed);
  }
}
.c-home-articles-module__item-content {
  flex: 0 0 41.5399239544%;
  max-width: 41.5399239544%;
}
@media (max-width: 1140px) {
  .c-home-articles-module__item-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.c-home-articles-module__item-title {
  margin-bottom: var(--s-16);
}
.c-home-articles-module__item-subtitle {
  color: var(--blue);
}
.c-home-articles-module__item-image {
  width: 41.0646387833%;
  position: relative;
  flex: 0 0 41.0646387833%;
  max-width: 41.0646387833%;
  text-align: right;
}
@media (max-width: 1140px) {
  .c-home-articles-module__item-image {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.c-home-articles-module__item-image:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 63.4259259259%;
}

.c-testimonials-module {
  width: 100%;
  padding-right: var(--s-40);
}
@media (max-width: 1140px) {
  .c-testimonials-module {
    padding-right: 0;
  }
}
.c-testimonials-module__wrapper {
  padding-top: var(--s-60);
  padding-bottom: var(--s-60);
}
.c-testimonials-module__title {
  padding-bottom: var(--s-60);
}
.c-testimonials-module__item {
  height: auto !important;
}
.c-testimonials-module__item:last-child {
  border-bottom: 0;
}
.c-testimonials-module__item-link {
  padding: var(--s-24);
  padding-top: var(--s-30);
  border: 1px solid var(--grey-border);
  border-radius: var(--s-14);
  background-color: rgb(249, 249, 249);
}
.c-testimonials-module__item-content {
  flex: 0 0 1;
  max-width: 100%;
}
.c-testimonials-module__item-text {
  margin-bottom: var(--s-40);
  color: var(--black);
}
.c-testimonials-module__item-text p .u-nb,
.c-testimonials-module__item-text p .u-body-01 {
  font-family: "GT America Standard Regular", sans-serif;
  text-decoration: underline;
  color: var(--blue);
  opacity: 0.74;
}
.c-testimonials-module__item-text p .ellipsis {
  text-decoration: none;
  color: inherit;
  opacity: 1;
}
.c-testimonials-module__item-read-more {
  color: var(--blue);
  text-decoration: underline;
}
.c-testimonials-module__item-author {
  color: var(--blue);
}
.c-testimonials-module__item-author-title {
  color: var(--grey);
}
@media (max-width: 1140px) {
  .c-testimonials-module__slider {
    overflow: visible !important;
  }
}
.c-testimonials-module .c-slider-navigation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0;
  display: block;
}
@media (max-width: 1140px) {
  .c-testimonials-module .c-slider-navigation {
    display: none;
  }
}
.c-testimonials-module .c-slider-navigation__button .u-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
@media (min-width: 1920px) {
  .c-testimonials-module .c-slider-navigation__button .u-icon {
    width: max(1.88rem, 0.94vw + 0.75rem);
  }
}
@media (min-width: 1920px) {
  .c-testimonials-module .c-slider-navigation__button .u-icon {
    height: max(1.88rem, 0.94vw + 0.75rem);
  }
}
.c-testimonials-module .c-slider-navigation__button.js-slider-prev {
  display: none;
}
.c-testimonials-module .c-slider-navigation__button.js-slider-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(18px, -50%);
}

.c-community-single,
.c-team-single {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.c-community-single--center,
.c-team-single--center {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.c-community-single__header,
.c-team-single__header {
  position: relative;
}
@media (max-width: 960px) {
  .c-community-single__header,
  .c-team-single__header {
    padding-bottom: var(--s-32);
  }
}
.c-community-single__mobile-image,
.c-team-single__mobile-image {
  display: none;
}
@media (max-width: 960px) {
  .c-community-single__mobile-image,
  .c-team-single__mobile-image {
    display: block;
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: calc(100% + 4rem);
    height: calc(100% + 2rem);
    z-index: 0;
  }
}
.c-community-single__image,
.c-team-single__image {
  position: absolute;
  right: 0;
  top: var(--s-125);
  width: 52.0833333333vw;
}
@media (max-width: 960px) {
  .c-community-single__image,
  .c-team-single__image {
    display: none;
    top: 0;
    right: 0;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .c-community-single__image,
  .c-team-single__image {
    top: 0;
    right: auto;
    left: 50%;
    width: 150%;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 480px) {
  .c-community-single__image,
  .c-team-single__image {
    top: 0;
    right: auto;
    left: 50%;
    width: 150%;
    transform: translateX(-50%) !important;
  }
}
.c-community-single__image-inner,
.c-team-single__image-inner {
  position: relative;
  backface-visibility: hidden;
  will-change: transform;
}
@media (max-width: 1140px) {
  .c-community-single__image-inner,
  .c-team-single__image-inner {
    transform: none !important;
  }
}
.c-community-single__content,
.c-team-single__content {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 2rem;
  padding-bottom: 2rem;
  gap: var(--s-70);
  width: 100%;
}
@media (max-width: 960px) {
  .c-community-single__content,
  .c-team-single__content {
    gap: 0;
  }
}
.c-community-single__content-inner,
.c-team-single__content-inner {
  display: flex;
  flex-direction: column;
}
.c-community-single__back,
.c-team-single__back {
  display: block;
}
.c-community-single__title,
.c-team-single__title {
  width: 100%;
  margin-bottom: var(--s-70);
  color: var(--white);
}
.c-header-a-module .c-community-single__title,
.c-header-a-module .c-team-single__title {
  color: var(--white);
}
.c-community-single__title:last-child,
.c-team-single__title:last-child {
  margin-bottom: 0;
}
.c-community-single__subtitle,
.c-team-single__subtitle {
  width: 100%;
  color: var(--blue);
}
.c-community-single__description,
.c-team-single__description {
  width: 66.4583333333vw;
  max-width: 100%;
}
@media (max-width: 960px) {
  .c-community-single__description,
  .c-team-single__description {
    padding-top: var(--s-40);
  }
}
@media (max-width: 800px) {
  .c-community-single__description,
  .c-team-single__description {
    width: 100%;
  }
}
.c-community-single__email,
.c-team-single__email {
  padding-top: var(--s-32);
  display: block;
}
.c-community-single__email svg,
.c-team-single__email svg {
  margin-right: var(--s-25);
}
.c-community-single__email svg path,
.c-team-single__email svg path {
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-community-single__email span,
.c-team-single__email span {
  font-family: "GT America Medium", sans-serif;
  text-decoration: underline;
}
.c-community-single__email a,
.c-team-single__email a {
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 1140px) and (hover: none) {
  .c-community-single__email a,
  .c-team-single__email a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-community-single__email a:active, .c-community-single__email a.nice-select.open,
  .c-team-single__email a:active,
  .c-team-single__email a.nice-select.open {
    /* 1 */
    color: var(--blue);
  }
  .c-community-single__email a:active path, .c-community-single__email a.nice-select.open path,
  .c-team-single__email a:active path,
  .c-team-single__email a.nice-select.open path {
    fill: var(--blue);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-community-single__email a:hover,
  .c-team-single__email a:hover {
    /* 2 */
    color: var(--blue);
  }
  .c-community-single__email a:hover path,
  .c-team-single__email a:hover path {
    fill: var(--blue);
  }
}
.c-community-single__icon-arrow-down,
.c-team-single__icon-arrow-down {
  cursor: pointer;
  position: absolute;
  bottom: var(--s-32);
  right: var(--s-32);
  width: 2.0625rem;
  z-index: 1;
}
@media (max-width: 1140px) {
  .c-community-single__icon-arrow-down,
  .c-team-single__icon-arrow-down {
    display: none !important;
  }
}
.c-community-single__icon-arrow-down.hidden,
.c-team-single__icon-arrow-down.hidden {
  display: none !important;
}
.c-community-single__icon-arrow-down svg,
.c-team-single__icon-arrow-down svg {
  display: block;
  width: 100%;
  height: auto;
}
.c-community-single__icon-arrow-down svg path,
.c-team-single__icon-arrow-down svg path {
  fill: var(--white);
}
.c-community-single__media,
.c-team-single__media {
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius-media);
  align-items: flex-start;
  min-height: 30.4444444444vh;
}
@media (max-width: 800px) {
  .c-community-single__media,
  .c-team-single__media {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
.c-community-single__media img,
.c-team-single__media img {
  max-width: 100%;
  width: 13.8888888889vw;
}
.c-community-single__rows,
.c-team-single__rows {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.c-community-single__row,
.c-team-single__row {
  padding-top: var(--s-40);
  padding-bottom: var(--s-40);
  display: grid;
  grid-template-columns: 320px 1fr;
  border-bottom: 1px solid var(--grey);
}
@media (max-width: 800px) {
  .c-community-single__row,
  .c-team-single__row {
    grid-template-columns: 1fr;
    gap: var(--s-20);
  }
}
.c-community-single__row:last-child,
.c-team-single__row:last-child {
  border-bottom: none;
}
.c-community-single__row a,
.c-team-single__row a {
  color: var(--blue);
  text-decoration: underline;
}
@media (min-width: 1140px) and (hover: none) {
  .c-community-single__row a,
  .c-team-single__row a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-community-single__row a:active, .c-community-single__row a.nice-select.open,
  .c-team-single__row a:active,
  .c-team-single__row a.nice-select.open {
    /* 1 */
    color: var(--grey);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-community-single__row a:hover,
  .c-team-single__row a:hover {
    /* 2 */
    color: var(--grey);
  }
}
.c-community-single__row .c-social-icons__wrapper,
.c-team-single__row .c-social-icons__wrapper {
  display: flex;
  align-items: center;
  gap: var(--s-20);
}
.c-community-single__row .c-social-icons li,
.c-team-single__row .c-social-icons li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-community-single__row .c-social-icons li a,
.c-team-single__row .c-social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-community-single__row--social-icons .c-community-single__column,
.c-community-single__row--social-icons .c-team-single__column {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.c-community-single__other,
.c-team-single__other {
  padding-top: var(--s-32);
}
.c-community-single__other-trigger,
.c-team-single__other-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--blue);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  cursor: pointer;
  margin-bottom: var(--s-32);
  font-style: italic;
}
.c-community-single__other-trigger svg,
.c-team-single__other-trigger svg {
  display: inline-block;
  margin-left: 1.1111111111vw;
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  transform: scale(1); /* Default */
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transform-origin: center;
}
.c-community-single__other-trigger svg path,
.c-team-single__other-trigger svg path {
  fill: var(--blue);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-community-single__other-trigger.is-active svg,
.c-team-single__other-trigger.is-active svg {
  transform: scale(-1);
}
@media (min-width: 1140px) and (hover: none) {
  .c-community-single__other-trigger,
  .c-team-single__other-trigger {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-community-single__other-trigger:active, .c-community-single__other-trigger.nice-select.open,
  .c-team-single__other-trigger:active,
  .c-team-single__other-trigger.nice-select.open {
    /* 1 */
    color: var(--grey);
  }
  .c-community-single__other-trigger:active svg path, .c-community-single__other-trigger.nice-select.open svg path,
  .c-team-single__other-trigger:active svg path,
  .c-team-single__other-trigger.nice-select.open svg path {
    fill: var(--grey);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-community-single__other-trigger:hover,
  .c-team-single__other-trigger:hover {
    /* 2 */
    color: var(--grey);
  }
  .c-community-single__other-trigger:hover svg path,
  .c-team-single__other-trigger:hover svg path {
    fill: var(--grey);
  }
}
.c-community-single__other-list,
.c-team-single__other-list {
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
}
.c-community-single__other-item,
.c-team-single__other-item {
  margin-bottom: var(--s-32);
}
.c-community-single__other-item a,
.c-team-single__other-item a {
  display: inline-block;
  color: var(--blue);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .c-community-single__other-item a,
  .c-team-single__other-item a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-community-single__other-item a:active, .c-community-single__other-item a.nice-select.open,
  .c-team-single__other-item a:active,
  .c-team-single__other-item a.nice-select.open {
    /* 1 */
    color: var(--grey);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-community-single__other-item a:hover,
  .c-team-single__other-item a:hover {
    /* 2 */
    color: var(--grey);
  }
}

.c-community-single__icon-arrow-down {
  cursor: pointer;
  position: fixed;
  bottom: var(--s-32);
  right: var(--s-32);
  width: 2.0625rem;
  z-index: 1;
}

.c-blog-single {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.c-blog-single--center {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.c-blog-single__image {
  width: 46.0416666667vw;
  max-width: 100%;
}
.c-blog-single__content {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
  border-bottom: 1px solid var(--black-30);
}
@media (max-width: 960px) {
  .c-blog-single__content {
    padding-top: 2rem;
  }
}
@media (max-width: 800px) {
  .c-blog-single__content {
    padding-top: 19.5443645084vw;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .c-blog-single__content {
    padding-top: 31.5384615385vw;
    padding-bottom: 3.375rem;
    gap: 0;
  }
}
.c-blog-single__share {
  position: absolute;
  top: 0;
  right: 0;
}
.c-blog-single__content-editor {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
}
.c-blog-single__content-editor-inner {
  position: relative;
}
.c-blog-single__content-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-32); /* Space between columns */
}
@media (max-width: 1140px) {
  .c-blog-single__content-inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--s-7); /* Space between columns */
  }
}
.c-blog-single__title {
  color: var(--black);
  flex: 1; /* Takes up the remaining space */
}
.c-header-a-module .c-blog-single__title {
  color: var(--black);
}
.c-blog-single__title:last-child {
  margin-bottom: 0;
}
.c-blog-single__meta {
  flex: 0;
}
.c-blog-single__author {
  white-space: nowrap;
}
.c-blog-single__author span, .c-blog-single__author a {
  color: var(--blue);
}
.c-blog-single__author a {
  text-decoration: underline;
}
.c-blog-single__date {
  white-space: nowrap;
}
.c-blog-single__description {
  width: 66.4583333333vw;
  max-width: 100%;
}
.c-blog-single__media {
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius-media);
  align-items: flex-start;
  min-height: 30.4444444444vh;
}
@media (max-width: 960px) {
  .c-blog-single__media {
    padding-bottom: var(--s-32);
  }
}
@media (max-width: 800px) {
  .c-blog-single__media {
    padding-bottom: var(--s-32);
    gap: 0;
  }
}
@media (max-width: 480px) {
  .c-blog-single__media {
    padding-bottom: var(--s-32);
  }
}
@media (max-width: 800px) {
  .c-blog-single__media {
    min-height: 1px;
  }
}
.c-blog-single__media a {
  display: inline-block;
}
@media (max-width: 640px) {
  .c-blog-single__media a {
    width: 100%;
  }
}
.c-blog-single__media img {
  max-width: 100%;
  width: 13.8888888889vw;
}
@media (max-width: 800px) {
  .c-blog-single__media img {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .c-blog-single__media img {
    width: 100%;
  }
}

.c-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s linear;
}
.c-overlay.is-visible {
  opacity: 0.5;
  visibility: visible;
  pointer-events: auto;
}

.js-mm-dropdown {
  position: absolute;
  right: 0;
  width: 100%;
  height: 0;
  top: calc(100% + 10px);
  color: var(--grey);
  overflow: auto;
}
@media (max-width: 1140px) {
  .js-mm-dropdown {
    width: 64.3884892086vw;
  }
}
@media (max-width: 800px) {
  .js-mm-dropdown {
    width: 100%;
  }
}

.c-search-bar__wrapper {
  padding-bottom: var(--s-10);
}
.c-search-bar__form-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.c-search-bar__form-filter-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}
.c-search-bar__form-filter-inner svg {
  height: 1.125rem;
  left: 0.4375rem;
  margin-top: calc(-1 * 0.5625rem);
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform-origin: 66% 66%;
}
.c-search-bar__input {
  /* 1 */
  height: 70px;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* 2 */
  padding: var(--s-20) var(--s-24);
  margin: 0;
  /* 3 */
  border-radius: 45px;
  border: 1px solid var(--black);
  background-color: var(--white);
  box-shadow: none;
  outline: none;
  /* 4 */
  font-size: var(--nb);
  font-family: "GT America Medium", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  font-family: "GT America Standard Regular", sans-serif;
  font-weight: 400;
  color: var(--grey);
  /* 5 */
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  /* 6 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 7 */
  /* 8 */
  /* 9 */
  /* 11 */
  /* 12 */
  /**
   * Input placeholders
   * 1. Chrome, Firefox, Opera, Safari 10.1+
   * 2. Firefox needs opacity reset
   * 3. Internet Explorer 10-11
   * 4. Microsoft Edge
   */
  /* 1 */
  /* 3 */
  /* 4 */
}
@media (min-width: 1920px) {
  .c-search-bar__input {
    height: max(4.38rem, 2.19vw + 1.75rem);
  }
}
@media (min-width: 1920px) {
  .c-search-bar__input {
    border-radius: max(2.81rem, 1.41vw + 1.13rem);
  }
}
@media (min-width: 1140px) and (hover: none) {
  .c-search-bar__input {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-search-bar__input:active, .c-search-bar__input.nice-select.open {
    /* 1 */
    outline: 0;
    box-shadow: none;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-search-bar__input:hover {
    /* 2 */
    outline: 0;
    box-shadow: none;
  }
}
.c-search-bar__input:focus {
  outline: 0;
  box-shadow: none;
}
.c-search-bar__input:disabled {
  outline: 0;
  box-shadow: none;
  pointer-events: none;
}
.c-search-bar__input:-webkit-autofill, .c-search-bar__input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.c-search-bar__input[data-autocompleted] {
  background-color: transparent !important;
}
.c-search-bar__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  /* 2 */
  opacity: 1;
}
.c-search-bar__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.c-search-bar__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.c-search-bar__form-filter-input {
  /* 1 */
  height: 1.9375rem;
  padding: 0.375rem;
  padding-left: 2.25rem;
  min-width: 15.625rem;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #EAEAEA;
  border-radius: 0;
  border: solid 1px #EAEAEA;
  box-shadow: none;
  outline: none;
  /* 4 */
  font-family: "GT America Standard Regular", sans-serif;
  font-weight: 400;
  color: var(--grey);
  /* 5 */
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  /* 6 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 7 */
  /* 8 */
  /* 9 */
  /* 11 */
  /* 12 */
  /**
   * Input placeholders
   * 1. Chrome, Firefox, Opera, Safari 10.1+
   * 2. Firefox needs opacity reset
   * 3. Internet Explorer 10-11
   * 4. Microsoft Edge
   */
  /* 1 */
  /* 3 */
  /* 4 */
}
@media (min-width: 1140px) and (hover: none) {
  .c-search-bar__form-filter-input {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-search-bar__form-filter-input:active, .c-search-bar__form-filter-input.nice-select.open {
    /* 1 */
    outline: 0;
    box-shadow: none;
    border-color: #999;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-search-bar__form-filter-input:hover {
    /* 2 */
    outline: 0;
    box-shadow: none;
    border-color: #999;
  }
}
.c-search-bar__form-filter-input:focus {
  outline: 0;
  box-shadow: none;
  border-color: #999;
}
.c-search-bar__form-filter-input:disabled {
  outline: 0;
  box-shadow: none;
  pointer-events: none;
}
.c-search-bar__form-filter-input:-webkit-autofill, .c-search-bar__form-filter-input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.c-search-bar__form-filter-input[data-autocompleted] {
  background-color: transparent !important;
}
.c-search-bar__form-filter-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  /* 2 */
  opacity: 1;
}
.c-search-bar__form-filter-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.c-search-bar__form-filter-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.c-search-list__list a {
  margin-right: var(--s-32);
  word-break: break-all;
}
.c-search-list__list a:last-child {
  margin-right: 0;
}
.c-search-list__no-results {
  padding-bottom: var(--s-32);
}

.c-search-item {
  padding: var(--s-24) 0;
  border-top: 1px solid var(--black-30);
}
.c-search-item__title {
  color: var(--black);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-shop-card .c-search-item__title {
  margin-bottom: var(--s-16);
}
.c-search-item__excerpt {
  margin-bottom: var(--s-16);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  color: var(--grey);
}
.c-search-item__read-more {
  color: var(--blue);
  font-family: "GT America Medium Italic", sans-serif;
  text-decoration: underline;
  font-style: italic;
}

.c-featured-articles-module {
  padding-top: var(--s-80);
  padding-bottom: var(--s-160);
}
.c-featured-articles-module__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-24);
  padding-top: var(--s-32);
  padding-bottom: var(--s-32);
  border-top: 1px solid var(--black-30);
}
.c-featured-articles-module__title {
  width: 100%;
  max-width: 9.4375em;
}
.c-featured-articles-module__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-16);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: var(--blue);
  text-decoration: underline;
}
@media (min-width: 1140px) and (hover: none) {
  .c-featured-articles-module__cta {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-featured-articles-module__cta:active, .c-featured-articles-module__cta.nice-select.open {
    /* 1 */
    color: var(--grey);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-featured-articles-module__cta:hover {
    /* 2 */
    color: var(--grey);
  }
}
.c-featured-articles-module__cta:focus, .c-featured-articles-module__cta:active, .c-featured-articles-module__cta.nice-select.open, .c-featured-articles-module__cta:not(:disabled):active {
  color: var(--black);
}
.c-featured-articles-module__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: var(--s-50);
}
.c-featured-articles-module__list {
  gap: var(--s-40);
}
@media (max-width: 1140px) {
  .c-featured-articles-module__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .c-featured-articles-module__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-videos-module {
  width: 100%;
  padding-right: var(--s-40);
}
.c-videos-module--no-slider {
  padding-right: 0;
}
@media (max-width: 1140px) {
  .c-videos-module {
    padding-right: 0;
  }
}
.c-videos-module__wrapper {
  border-top: 1px solid var(--black-30);
  padding-top: var(--s-24);
  padding-bottom: var(--s-80);
}
.c-videos-module__title {
  padding-bottom: var(--s-32);
}
.c-videos-module--no-slider .c-videos-module__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-40);
}
@media (max-width: 1140px) {
  .c-videos-module--no-slider .c-videos-module__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-videos-module__media {
  position: relative;
  margin: -1px -1px 0 -1px;
  overflow: hidden;
}
.c-videos-module__media img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-videos-module__media:before {
  width: 100%;
  padding-bottom: 56.25%;
  content: "";
  display: block;
}
.c-videos-module__item-link {
  height: 100%;
}
.c-videos-module__item {
  height: auto !important;
}
.c-videos-module__item:last-child {
  border-bottom: 0;
}
.c-videos-module__item-content {
  flex: 0 0 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: var(--s-16);
}
.c-videos-module__item-title {
  color: var(--black);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  margin-bottom: var(--s-7);
}
.c-videos-module__item-excerpt {
  margin-bottom: var(--s-16);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  color: var(--grey);
}
.c-videos-module .c-slider-navigation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0;
  display: block;
}
@media (max-width: 1140px) {
  .c-videos-module .c-slider-navigation {
    display: none;
  }
}
.c-videos-module .c-slider-navigation__button .u-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
@media (min-width: 1920px) {
  .c-videos-module .c-slider-navigation__button .u-icon {
    width: max(1.88rem, 0.94vw + 0.75rem);
  }
}
@media (min-width: 1920px) {
  .c-videos-module .c-slider-navigation__button .u-icon {
    height: max(1.88rem, 0.94vw + 0.75rem);
  }
}
.c-videos-module .c-slider-navigation__button.js-slider-prev {
  display: none;
}
.c-videos-module .c-slider-navigation__button.js-slider-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(18px, -50%);
}
.c-videos-module__play-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.c-videos-module__play-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: var(--s-5);
}
.c-videos-module__play-wrapper svg path {
  fill: var(--white);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .c-videos-module__play-wrapper {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-videos-module__play-wrapper:active, .c-videos-module__play-wrapper.nice-select.open {
    /* 1 */
  }
  .c-videos-module__play-wrapper:active .c-videos-module__play, .c-videos-module__play-wrapper.nice-select.open .c-videos-module__play {
    background-color: var(--white);
  }
  .c-videos-module__play-wrapper:active svg path, .c-videos-module__play-wrapper.nice-select.open svg path {
    fill: var(--grey);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-videos-module__play-wrapper:hover {
    /* 2 */
  }
  .c-videos-module__play-wrapper:hover .c-videos-module__play {
    background-color: var(--white);
  }
  .c-videos-module__play-wrapper:hover svg path {
    fill: var(--grey);
  }
}
.c-videos-module__play-wrapper:focus .c-videos-module__play, .c-videos-module__play-wrapper:active .c-videos-module__play, .c-videos-module__play-wrapper.nice-select.open .c-videos-module__play, .c-videos-module__play-wrapper:not(:disabled):active .c-videos-module__play {
  border: 1px solid var(--blue);
}
.c-videos-module__play-wrapper:focus svg path, .c-videos-module__play-wrapper:active svg path, .c-videos-module__play-wrapper.nice-select.open svg path, .c-videos-module__play-wrapper:not(:disabled):active svg path {
  fill: var(--blue);
}
.c-videos-module__play {
  width: var(--s-60);
  height: var(--s-60);
  border: 1px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-video-popup__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.c-video-popup__overlay.is-visible {
  display: flex;
}
.c-video-popup__content {
  position: relative;
  width: 80%;
  max-height: 80%;
  max-width: 79.1666666667vw;
}
.c-video-popup__content:before {
  display: block;
  padding-bottom: 56.25%;
  content: "";
}
.c-video-popup__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-video-popup__close {
  position: absolute;
  top: var(--s-32);
  right: var(--s-32);
  border: none;
  cursor: pointer;
  line-height: 1;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.c-video-popup__close svg {
  width: 3.3333333333vw;
  height: 3.3333333333vw;
}
.c-video-popup__close svg path {
  fill: var(--white);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .c-video-popup__close {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .c-video-popup__close:active, .c-video-popup__close.nice-select.open {
    /* 1 */
  }
  .c-video-popup__close:active svg path, .c-video-popup__close.nice-select.open svg path {
    fill: var(--blue);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .c-video-popup__close:hover {
    /* 2 */
  }
  .c-video-popup__close:hover svg path {
    fill: var(--blue);
  }
}

.c-form-module {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  padding-bottom: var(--s-45);
}
.c-form-module__text {
  color: var(--grey);
}
.c-form-module__text strong, .c-form-module__text b {
  color: var(--black);
  font-weight: normal;
}
.c-form-module__text a {
  text-decoration: underline;
  color: var(--blue);
}

.sitemap-structure .sitemap-section {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--s-32);
  color: var(--grey);
  padding-bottom: var(--s-40);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (max-width: 1140px) {
  .sitemap-structure .sitemap-section {
    grid-template-columns: 1fr;
    gap: var(--s-7);
  }
}
@media (min-width: 1140px) and (hover: none) {
  .sitemap-structure .sitemap-section a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .sitemap-structure .sitemap-section a:active, .sitemap-structure .sitemap-section a.nice-select.open {
    /* 1 */
    color: var(--blue);
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .sitemap-structure .sitemap-section a:hover {
    /* 2 */
    color: var(--blue);
  }
}
.sitemap-structure .sitemap-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap-structure .sitemap-section h3 {
  color: var(--black);
}
.sitemap-structure .sitemap-section .renderMenuChildren,
.sitemap-structure .sitemap-section .renderHeaderMenuParents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--s-32);
}
@media (max-width: 1140px) {
  .sitemap-structure .sitemap-section .renderMenuChildren,
  .sitemap-structure .sitemap-section .renderHeaderMenuParents {
    grid-template-columns: 1fr;
  }
}
.sitemap-structure .sitemap-section .renderMenuChildren.connect, .sitemap-structure .sitemap-section .renderMenuChildren.help,
.sitemap-structure .sitemap-section .renderHeaderMenuParents.connect,
.sitemap-structure .sitemap-section .renderHeaderMenuParents.help {
  grid-template-columns: 1fr;
}
.sitemap-structure .sitemap-section .renderMenuChildren.connect li ul, .sitemap-structure .sitemap-section .renderMenuChildren.help li ul,
.sitemap-structure .sitemap-section .renderHeaderMenuParents.connect li ul,
.sitemap-structure .sitemap-section .renderHeaderMenuParents.help li ul {
  list-style: disc;
  margin: 0;
  padding-left: var(--s-32);
}
/* Stiliziranje za postojeće HTML klase */
.ngp-form {
  width: 100% !important;
  max-width: 100% !important;
}
.ngp-form form {
  display: block;
  width: 100%;
  /* Error styling */
}
.ngp-form form .at-row {
  display: flex;
  flex: 1 1 100%;
}
.ngp-form form .at-row.FirstName.LastName {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: var(--s-24) !important;
  margin-bottom: var(--s-45) !important;
}
@media (max-width: 800px) {
  .ngp-form form .at-row.FirstName.LastName {
    margin-bottom: var(--s-24) !important;
    display: block !important;
  }
  .ngp-form form .at-row.FirstName.LastName:last-child {
    margin-bottom: 0 !important;
  }
}
.ngp-form form .at-row.City.StateProvince {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: var(--s-24) !important;
  margin-bottom: var(--s-45) !important;
}
@media (max-width: 800px) {
  .ngp-form form .at-row.City.StateProvince {
    margin-bottom: var(--s-24) !important;
    display: block !important;
  }
  .ngp-form form .at-row.City.StateProvince:last-child {
    margin-bottom: 0 !important;
  }
}
.ngp-form form .at-row.UpdateMyProfile {
  margin-top: var(--s-25) !important;
}
.ngp-form form .at-row .FirstName, .ngp-form form .at-row .LastName,
.ngp-form form .at-row .City, .ngp-form form .at-row .StateProvince {
  flex: 1 0 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
}
@media (max-width: 800px) {
  .ngp-form form .at-row .FirstName, .ngp-form form .at-row .LastName,
  .ngp-form form .at-row .City, .ngp-form form .at-row .StateProvince {
    margin-bottom: var(--s-24) !important;
    display: block !important;
  }
  .ngp-form form .at-row .FirstName:last-child, .ngp-form form .at-row .LastName:last-child,
  .ngp-form form .at-row .City:last-child, .ngp-form form .at-row .StateProvince:last-child {
    margin-bottom: 0 !important;
  }
}
.ngp-form form .at-fieldset {
  padding: 0;
  border: none;
}
.ngp-form form .at-fieldset.ContactInformation {
  margin-bottom: var(--s-45) !important;
}
.ngp-form form .at-fieldset.ContactInformation .at-legend {
  display: none !important;
}
.ngp-form form .at-fieldset.AdditionalInformation {
  margin-bottom: var(--s-45) !important;
}
.ngp-form form .at-fieldset.AdditionalInformation .at-legend {
  display: none !important;
}
.ngp-form form .at-fieldset .at-legend {
  margin: 0 !important;
  margin-bottom: var(--s-32) !important;
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
}
.ngp-form form label.at-area,
.ngp-form form label.at-select,
.ngp-form form label.at-text {
  font-size: var(--body-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  color: #000000;
}
.ngp-form form .at-form-submit {
  display: flex;
  justify-content: flex-start;
  margin-top: var(--s-45);
}
.ngp-form form .at-form-submit input.at-submit {
  padding: 0 !important;
  margin: 0 !important;
  height: 52px;
  border-radius: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer !important;
  padding-left: var(--s-70) !important;
  padding-right: var(--s-70) !important;
  overflow: hidden;
  outline: 0;
  border: 1px solid #000000 !important;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) !important;
  background-color: transparent !important;
  color: #000000 !important;
  box-shadow: none;
  text-align: center;
  outline: none;
  box-sizing: border-box;
  position: relative;
  font-size: var(--nb);
  font-family: "GT America Medium Italic", sans-serif !important;
  line-height: 150% !important;
  font-weight: normal;
  letter-spacing: normal;
  text-transform: uppercase !important;
  text-shadow: none !important;
  float: none !important;
}
.ngp-form form .at-form-submit input.at-submit:hover {
  border-color: #00A0DE !important;
  color: #ffffff !important;
  background-color: #00A0DE !important;
}
.ngp-form form .at-error-console {
  color: #ff0000;
  font-size: 0.9rem;
  margin-top: var(--s-10);
}

.at {
  color: #000000 !important;
  font-family: "GT America Standard Regular", sans-serif !important;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: visible !important;
}

.at * {
  font-family: "GT America Standard Regular", sans-serif !important;
}

section.fastaction-modal .fa-modal-overlay:before, section.fastaction-modal .fa-modal-close:before {
  background: transparent !important;
}

section.fastaction-modal .fa-modal-inner {
  border: 1px solid #E3E3E3 !important;
  box-shadow: 0 0 32px rgba(123, 123, 123, 0.5) !important;
}

header.at-title {
  padding: 0 !important;
  color: var(--black) !important;
  font-size: var(--body-01) !important;
  font-family: "GT America Standard Regular", sans-serif !important;
  line-height: 133% !important;
  font-weight: normal !important;
  letter-spacing: normal !important;
  margin: 0 !important;
  margin-bottom: var(--s-32) !important;
  text-align: left !important;
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  display: none !important;
}

.FastAction.at-markup {
  display: none !important;
}

.fastAction {
  max-width: 100%;
  background: transparent !important;
  border-width: 1px 0;
  display: block;
  padding: 0 !important;
  position: relative;
  box-sizing: border-box;
  padding-bottom: var(--s-25) !important;
}
.fastAction p {
  color: var(--black) !important;
  float: none;
  padding-top: 0 !important;
  margin: 1px 0;
  min-height: 31px;
  font-size: var(--option) !important;
  font-family: "GT America Standard Regular", sans-serif !important;
  line-height: 200% !important;
  font-weight: normal !important;
  letter-spacing: normal !important;
}

.at-row > [class^=at-] {
  margin: 0 !important;
}

.at fieldset legend {
  color: var(--black) !important;
  padding: 0 !important;
}

.at-form-submit {
  padding: 0 !important;
}

.at select,
.at textarea {
  -webkit-appearance: none;
  box-shadow: none;
  display: block;
  font-size: var(--body-02) !important;
  line-height: 150% !important;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 !important;
  border-radius: 10px !important;
  background-color: #F9F9F9 !important;
  border: 1px solid #E3E3E3 !important;
  color: var(--black) !important;
  font-family: "GT America Standard Regular", sans-serif !important;
  margin-top: var(--s-6) !important;
}

.at select {
  height: 58px !important;
  padding: var(--s-15) var(--s-20) !important;
  box-shadow: none !important;
}

.at textarea {
  background-color: #F9F9F9 !important;
  min-height: 160px !important;
  height: auto !important;
  box-shadow: none !important;
  padding: var(--s-15) var(--s-20) !important;
  padding-top: var(--s-15) !important;
  padding-bottom: var(--s-15) !important;
}

.content.thankYou {
  font-size: var(--body-01) !important;
  font-family: "GT America Standard Regular", sans-serif !important;
  line-height: 133% !important;
  font-weight: normal !important;
  letter-spacing: normal !important;
  color: var(--grey) !important;
}
.content.thankYou .contributions,
.content.thankYou .contributions p {
  color: var(--grey) !important;
}
.content.thankYou .contributions a,
.content.thankYou .contributions p a {
  color: var(--blue);
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.thankYou .btn, .thankYou .btn-tag, .thankYou .tag, .thankYou .tag-static {
  margin-top: 24px !important;
  margin-bottom: 12px !important;
  margin-left: 0 !important;
  margin-right: 12px !important;
}

.at .error small.error {
  display: block;
  padding: 0.375rem;
  margin-bottom: 1rem;
  font-style: normal;
  white-space: normal;
  text-align: left;
  clear: both;
  background: rgba(0, 0, 0, 0);
  color: #ff0000 !important;
  font-size: var(--option) !important;
  font-family: "GT America Standard Regular", sans-serif !important;
  line-height: 150% !important;
  font-weight: normal !important;
  letter-spacing: normal !important;
}

.at textarea input[type=text],
.at textarea input[type=email],
.at textarea input[type=tel],
.at textarea select,
.at label.at-text input[type=text],
.at label.at-text input[type=email],
.at label.at-text input[type=tel],
.at label.at-text select {
  -webkit-appearance: none !important;
  box-shadow: none !important;
  display: block !important;
  outline: none !important;
  font-size: var(--body-02) !important;
  line-height: 150% !important;
  width: 100% !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  background-color: #F9F9F9 !important;
  border: 1px solid #E3E3E3 !important;
  color: var(--black) !important;
  font-family: "GT America Standard Regular", sans-serif !important;
  /* 1 */
  height: 58px;
  /* 2 */
  padding: var(--s-15) var(--s-20) !important;
  margin: 0 !important;
  /* 3 */
  border-radius: 10px;
  /* 4 */
  font-size: var(--body-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  /* 5 */
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  /* 6 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: var(--s-6) !important;
  /* 7 */
  /* 8 */
  /* 9 */
  /* 11 */
  /* 12 */
  /**
   * Input placeholders
   * 1. Chrome, Firefox, Opera, Safari 10.1+
   * 2. Firefox needs opacity reset
   * 3. Internet Explorer 10-11
   * 4. Microsoft Edge
   */
  /* 1 */
  /* 3 */
  /* 4 */
}
@media (min-width: 1920px) {
  .at textarea input[type=text],
  .at textarea input[type=email],
  .at textarea input[type=tel],
  .at textarea select,
  .at label.at-text input[type=text],
  .at label.at-text input[type=email],
  .at label.at-text input[type=tel],
  .at label.at-text select {
    height: max(3.63rem, 1.81vw + 1.45rem);
  }
}
@media (min-width: 1920px) {
  .at textarea input[type=text],
  .at textarea input[type=email],
  .at textarea input[type=tel],
  .at textarea select,
  .at label.at-text input[type=text],
  .at label.at-text input[type=email],
  .at label.at-text input[type=tel],
  .at label.at-text select {
    border-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (min-width: 1140px) and (hover: none) {
  .at textarea input[type=text],
  .at textarea input[type=email],
  .at textarea input[type=tel],
  .at textarea select,
  .at label.at-text input[type=text],
  .at label.at-text input[type=email],
  .at label.at-text input[type=tel],
  .at label.at-text select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .at textarea input[type=text]:active, .at textarea input[type=text].nice-select.open,
  .at textarea input[type=email]:active,
  .at textarea input[type=email].nice-select.open,
  .at textarea input[type=tel]:active,
  .at textarea input[type=tel].nice-select.open,
  .at textarea select:active,
  .at textarea select.nice-select.open,
  .at label.at-text input[type=text]:active,
  .at label.at-text input[type=text].nice-select.open,
  .at label.at-text input[type=email]:active,
  .at label.at-text input[type=email].nice-select.open,
  .at label.at-text input[type=tel]:active,
  .at label.at-text input[type=tel].nice-select.open,
  .at label.at-text select:active,
  .at label.at-text select.nice-select.open {
    /* 1 */
    outline: 0 !important;
    box-shadow: none !important;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .at textarea input[type=text]:hover,
  .at textarea input[type=email]:hover,
  .at textarea input[type=tel]:hover,
  .at textarea select:hover,
  .at label.at-text input[type=text]:hover,
  .at label.at-text input[type=email]:hover,
  .at label.at-text input[type=tel]:hover,
  .at label.at-text select:hover {
    /* 2 */
    outline: 0 !important;
    box-shadow: none !important;
  }
}
.at textarea input[type=text]:focus,
.at textarea input[type=email]:focus,
.at textarea input[type=tel]:focus,
.at textarea select:focus,
.at label.at-text input[type=text]:focus,
.at label.at-text input[type=email]:focus,
.at label.at-text input[type=tel]:focus,
.at label.at-text select:focus {
  outline: 0 !important;
  box-shadow: none !important;
  border-color: #E3E3E3 !important;
}
.at textarea input[type=text]:disabled,
.at textarea input[type=email]:disabled,
.at textarea input[type=tel]:disabled,
.at textarea select:disabled,
.at label.at-text input[type=text]:disabled,
.at label.at-text input[type=email]:disabled,
.at label.at-text input[type=tel]:disabled,
.at label.at-text select:disabled {
  outline: 0 !important;
  box-shadow: none !important;
  pointer-events: none !important;
}
.at textarea input[type=text]:-webkit-autofill, .at textarea input[type=text]:-webkit-autofill:focus,
.at textarea input[type=email]:-webkit-autofill,
.at textarea input[type=email]:-webkit-autofill:focus,
.at textarea input[type=tel]:-webkit-autofill,
.at textarea input[type=tel]:-webkit-autofill:focus,
.at textarea select:-webkit-autofill,
.at textarea select:-webkit-autofill:focus,
.at label.at-text input[type=text]:-webkit-autofill,
.at label.at-text input[type=text]:-webkit-autofill:focus,
.at label.at-text input[type=email]:-webkit-autofill,
.at label.at-text input[type=email]:-webkit-autofill:focus,
.at label.at-text input[type=tel]:-webkit-autofill,
.at label.at-text input[type=tel]:-webkit-autofill:focus,
.at label.at-text select:-webkit-autofill,
.at label.at-text select:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s !important;
}
.at textarea input[type=text][data-autocompleted],
.at textarea input[type=email][data-autocompleted],
.at textarea input[type=tel][data-autocompleted],
.at textarea select[data-autocompleted],
.at label.at-text input[type=text][data-autocompleted],
.at label.at-text input[type=email][data-autocompleted],
.at label.at-text input[type=tel][data-autocompleted],
.at label.at-text select[data-autocompleted] {
  background-color: transparent !important;
}
.at textarea input[type=text]::placeholder,
.at textarea input[type=email]::placeholder,
.at textarea input[type=tel]::placeholder,
.at textarea select::placeholder,
.at label.at-text input[type=text]::placeholder,
.at label.at-text input[type=email]::placeholder,
.at label.at-text input[type=tel]::placeholder,
.at label.at-text select::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
  /* 2 */
  opacity: 1 !important;
}
.at textarea input[type=text]:-ms-input-placeholder,
.at textarea input[type=email]:-ms-input-placeholder,
.at textarea input[type=tel]:-ms-input-placeholder,
.at textarea select:-ms-input-placeholder,
.at label.at-text input[type=text]:-ms-input-placeholder,
.at label.at-text input[type=email]:-ms-input-placeholder,
.at label.at-text input[type=tel]:-ms-input-placeholder,
.at label.at-text select:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
.at textarea input[type=text]::-ms-input-placeholder,
.at textarea input[type=email]::-ms-input-placeholder,
.at textarea input[type=tel]::-ms-input-placeholder,
.at textarea select::-ms-input-placeholder,
.at label.at-text input[type=text]::-ms-input-placeholder,
.at label.at-text input[type=email]::-ms-input-placeholder,
.at label.at-text input[type=tel]::-ms-input-placeholder,
.at label.at-text select::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
.at textarea input[type=text]:focus,
.at textarea input[type=email]:focus,
.at textarea input[type=tel]:focus,
.at textarea select:focus,
.at label.at-text input[type=text]:focus,
.at label.at-text input[type=email]:focus,
.at label.at-text input[type=tel]:focus,
.at label.at-text select:focus {
  border-color: #000000 !important;
}
.at textarea input[type=text].error,
.at textarea input[type=email].error,
.at textarea input[type=tel].error,
.at textarea select.error,
.at label.at-text input[type=text].error,
.at label.at-text input[type=email].error,
.at label.at-text input[type=tel].error,
.at label.at-text select.error {
  border-color: #ff0000;
  background-color: #F9F9F9;
  color: #ff0000;
}
.at textarea input[type=text].error:focus,
.at textarea input[type=email].error:focus,
.at textarea input[type=tel].error:focus,
.at textarea select.error:focus,
.at label.at-text input[type=text].error:focus,
.at label.at-text input[type=email].error:focus,
.at label.at-text input[type=tel].error:focus,
.at label.at-text select.error:focus {
  border-color: #ff0000;
}
.at label.error {
  color: #ff0000 !important;
}

.at .error input[type=text]:required, .at .error input[type=password]:required, .at .error input[type=date]:required, .at .error input[type=datetime]:required, .at .error input[type=datetime-local]:required, .at .error input[type=month]:required, .at .error input[type=week]:required, .at .error input[type=email]:required, .at .error input[type=number]:required, .at .error input[type=search]:required, .at .error input[type=tel]:required, .at .error input[type=time]:required, .at .error input[type=url]:required, .at .error input[type=color]:required, .at .error textarea {
  border-color: #ff0000 !important;
  color: #ff0000 !important;
}

input[type=radio]:checked:after {
  background-color: #00A0DE;
  border: 2.5px solid #E3E3E3;
}

input[type=checkbox] + span {
  font-size: var(--option) !important;
  font-family: "GT America Standard Regular", sans-serif !important;
  line-height: 200% !important;
  font-weight: normal !important;
  letter-spacing: normal !important;
  cursor: pointer;
  float: left;
  padding-left: var(--s-30) !important;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input[type=checkbox] + span:before {
  height: var(--s-24) !important;
  width: var(--s-24) !important;
  background: rgba(0, 0, 0, 0) !important;
  border-radius: 4px !important;
  border: 1px solid #E3E3E3 !important;
  color: inherit !important;
  content: "" !important;
  display: block !important;
  left: 0 !important;
  position: absolute !important;
  top: 2px !important;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
input[type=checkbox] + span:after {
  color: #ffffff;
  content: "✔";
  display: block;
  line-height: 1;
  left: 7px !important;
  position: absolute;
  top: 7px !important;
}
input[type=checkbox]:checked + span:before {
  background-color: #767676 !important;
  border-color: #E3E3E3 !important;
}
input[type=checkbox]:focus + span {
  box-shadow: none !important;
}
input[type=checkbox]:focus + span:before {
  box-shadow: none !important;
}
input[type=checkbox]:hover + span:before {
  border-color: #E3E3E3 !important;
  box-shadow: none !important;
}

small.error {
  color: #ff0000;
  font-family: "GT America Standard Regular", sans-serif;
}

progress {
  background: #E3E3E3;
  color: #767676;
}
progress::-webkit-progress-bar {
  background: #E3E3E3;
}
progress::-webkit-progress-value {
  background: #767676;
}
progress::-moz-progress-bar {
  background: #767676;
}

.lightbox-modal.at-modal button.lightbox-accept-button {
  background: #00A0DE;
  color: #F9F9F9;
}

.at-steps li.active {
  border-bottom-color: #00A0DE;
}
.at-steps li.active:before {
  background: #767676;
}
.at-steps li.invalid:before {
  background: #ff6666;
}
.at-steps li.valid:before {
  background-color: darkgray;
}

.at-table {
  background-color: #F9F9F9;
}
.at-table tr:nth-of-type(even) {
  background-color: #F9F9F9;
}
.at-table thead {
  background-color: rgba(227, 227, 227, 0.5);
}

input::placeholder {
  color: rgba(var(--black), 0.65);
}

.at-checkbox-title-container:before,
input[type=checkbox] + span.at-checkbox-title-container:before {
  border: 1px solid #E3E3E3;
}

.at-text.error input[type=text]:required:focus,
.at-text.error input[type=email]:required:focus,
textarea.at-text.error:required {
  background-color: #F9F9F9;
  border-color: #ff0000;
  color: #ff0000;
}

.at-error-console {
  color: #ff0000;
  font-size: 0.9rem;
}

.loading-bar-success progress {
  background: #E3E3E3;
}
.loading-bar-success progress::-webkit-progress-value {
  background: #767676;
}
.loading-bar-success progress::-moz-progress-bar {
  background: #767676;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #F9F9F9;
  color: var(--black);
}

.lightbox-modal.at-modal #lightbox-footer-content {
  background-color: #F9F9F9;
}

.at-validation-message {
  color: #ff0000;
  margin-top: 0.5rem;
}

input[type=checkbox]:focus + span {
  box-shadow: 0 0 4px #00A0DE;
}

.grecaptcha-badge {
  display: none !important;
}

/**
 * Gutenberg blocks
 */
/**
 * Utilities
 */
/**
 * Utilities
 */
/* Keyframes for bobbing animation */
@keyframes subtle-bob {
  0%, 100% {
    transform: translateY(0); /* Start and end at the original position */
  }
  50% {
    transform: translateY(-5px); /* Move up slightly */
  }
}
/* Apply the animation to an element */
.bobbin {
  display: inline-block;
  animation: subtle-bob 2s ease-in-out infinite; /* Smooth, infinite bobbing */
}

[data-fade=true] {
  opacity: 0;
}

.js-osa-custom-fade,
.js-osa-fade {
  opacity: 0;
}

.is-hidden {
  display: none !important;
}

.is-visually-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

.is-visually-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

.is-disabled {
  pointer-events: none !important;
}

@media (max-width: 800px) {
  .is-mobile-hidden {
    display: none !important;
  }
}

.is-mobile-visible {
  display: none !important;
}
@media (max-width: 800px) {
  .is-mobile-visible {
    display: block !important;
  }
}

.is-offscreen {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

/**
 * Typography utility classes
 */
.u-heading-01 {
  font-size: var(--heading-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 130%;
  font-weight: normal;
  letter-spacing: normal;
}

.u-heading-02 {
  font-size: var(--heading-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 130%;
  font-weight: normal;
  letter-spacing: normal;
}

.u-body-01 {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
}

.u-body-02 {
  font-size: var(--body-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
}

.u-av {
  font-size: var(--av);
  font-family: "Georgia", serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
}

.u-nb {
  font-size: var(--nb);
  font-family: "GT America Medium", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
}

.u-select, .c-archive .nice-select, .c-search-bar__form-filter-input {
  font-size: var(--select);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 100%;
  font-weight: normal;
  letter-spacing: normal;
}

.u-option, .c-archive .nice-select .nice-select-dropdown {
  font-size: var(--option);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 200%;
  font-weight: normal;
  letter-spacing: normal;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-capitalize {
  text-transform: capitalize;
}

.u-text-left {
  text-align: left;
}

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

.u-text-right {
  text-align: right;
}

.u-underline {
  text-decoration: underline;
}

.u-italic {
  font-family: "GT America Medium Italic", sans-serif;
}

.u-fw-thin,
.u-fw-100 {
  font-weight: 100;
}

.u-fw-extra-light,
.u-fw-200 {
  font-weight: 200;
}

.u-fw-light,
.u-fw-300 {
  font-weight: 300;
}

.u-fw-regular,
.u-fw-normal,
.u-fw-400 {
  font-weight: 400;
}

.u-fw-medium,
.u-fw-500 {
  font-weight: 500;
}

.u-fw-semi-bold,
.u-fw-600 {
  font-weight: 600;
}

.u-fw-bold,
.u-fw-700 {
  font-weight: 700;
}

.u-fw-extra-bold,
.u-fw-800 {
  font-weight: 800;
}

.u-fw-black,
.u-fw-900 {
  font-weight: 900;
}

.u-pt-0 {
  padding-top: 0;
}

.u-pt-small {
  padding-top: var(--s-60);
}

.u-pt-medium {
  padding-top: var(--s-90);
}

.u-pt-large {
  padding-top: var(--s-125);
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-pb-small {
  padding-bottom: var(--s-60);
}

.u-pb-medium {
  padding-bottom: var(--s-90);
}

.u-pb-large {
  padding-bottom: var(--s-125);
}

/**
 * Ratio
 * create ratio-bound content blocks, to keep media (e.g. images, videos) in their correct aspect ratios
 * 1. default cropping is a 1:1 ratio (i.e. a perfect square)
 * inspiration:
 * https://github.com/inuitcss/inuitcss/blob/19d0c7e/objects/_objects.ratio.scss
 */
.u-ratio {
  position: relative;
  display: block;
  overflow: hidden;
}
.u-ratio:before {
  display: block;
  padding-bottom: 100%;
  width: 100%;
  content: "";
}

.u-ratio__inner,
.u-ratio > img,
.u-ratio > video,
.u-ratio > iframe,
.u-ratio > embed,
.u-ratio > object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Ratio variants
 * generate a series of ratio classes
 * usage:
 * <div class="u-ratio u-ratio--16:9"></div>
 */
.u-ratio--1-2:before {
  padding-bottom: 200%;
}

.u-ratio--2-1:before {
  padding-bottom: 50%;
}

.u-ratio--1-2:before {
  padding-bottom: 200%;
}

.u-ratio--3-1:before {
  padding-bottom: 33.3333333333%;
}

.u-ratio--1-3:before {
  padding-bottom: 300%;
}

.u-ratio--3-2:before {
  padding-bottom: 66.6666666667%;
}

.u-ratio--2-3:before {
  padding-bottom: 150%;
}

.u-ratio--4-3:before {
  padding-bottom: 75%;
}

.u-ratio--3-4:before {
  padding-bottom: 133.3333333333%;
}

.u-ratio--16-9:before {
  padding-bottom: 56.25%;
}

.u-ratio--9-16:before {
  padding-bottom: 177.7777777778%;
}

.u-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.u-content-editor,
.rte {
  word-break: break-word;
}
.u-content-editor > h1,
.rte > h1 {
  font-size: var(--heading-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 130%;
  font-weight: normal;
  letter-spacing: normal;
  margin-bottom: var(--s-30);
  color: var(--black);
}
.c-community-single .u-content-editor > h1,
.c-community-single .rte > h1 {
  color: var(--white);
}
.u-content-editor > h1:last-child,
.rte > h1:last-child {
  margin-bottom: 0;
}
.u-content-editor > h2,
.rte > h2 {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  margin-bottom: var(--s-30);
  color: var(--black);
}
.c-community-single .u-content-editor > h2,
.c-community-single .rte > h2 {
  color: var(--white);
}
.u-content-editor > h2:last-child,
.rte > h2:last-child {
  margin-bottom: 0;
}
.u-content-editor > h6,
.rte > h6 {
  font-size: var(--nb);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  font-weight: 400;
  color: var(--grey);
}
.c-community-single .u-content-editor > h6,
.c-community-single .rte > h6 {
  color: var(--white);
}
.u-content-editor > h6:last-child,
.rte > h6:last-child {
  margin-bottom: 0;
}
.u-content-editor > h3,
.u-content-editor > h4,
.u-content-editor > h5,
.rte > h3,
.rte > h4,
.rte > h5 {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  color: var(--black);
}
.c-community-single .u-content-editor > h3,
.c-community-single .u-content-editor > h4,
.c-community-single .u-content-editor > h5,
.c-community-single .rte > h3,
.c-community-single .rte > h4,
.c-community-single .rte > h5 {
  color: var(--white);
}
.u-content-editor > h3:last-child,
.u-content-editor > h4:last-child,
.u-content-editor > h5:last-child,
.rte > h3:last-child,
.rte > h4:last-child,
.rte > h5:last-child {
  margin-bottom: 0;
}
.u-content-editor > h3 + h2,
.u-content-editor > h3 + h3,
.u-content-editor > h3 + h4,
.u-content-editor > h3 + h5,
.u-content-editor > h3 + h6,
.u-content-editor > h4 + h2,
.u-content-editor > h4 + h3,
.u-content-editor > h4 + h4,
.u-content-editor > h4 + h5,
.u-content-editor > h4 + h6,
.u-content-editor > h5 + h2,
.u-content-editor > h5 + h3,
.u-content-editor > h5 + h4,
.u-content-editor > h5 + h5,
.u-content-editor > h5 + h6,
.rte > h3 + h2,
.rte > h3 + h3,
.rte > h3 + h4,
.rte > h3 + h5,
.rte > h3 + h6,
.rte > h4 + h2,
.rte > h4 + h3,
.rte > h4 + h4,
.rte > h4 + h5,
.rte > h4 + h6,
.rte > h5 + h2,
.rte > h5 + h3,
.rte > h5 + h4,
.rte > h5 + h5,
.rte > h5 + h6 {
  margin-top: var(--s-60);
}
.u-content-editor > h3 > u,
.u-content-editor > h4 > u,
.u-content-editor > h5 > u,
.rte > h3 > u,
.rte > h4 > u,
.rte > h5 > u {
  text-decoration: underline;
}
.u-content-editor > h3 > a,
.u-content-editor > h4 > a,
.u-content-editor > h5 > a,
.rte > h3 > a,
.rte > h4 > a,
.rte > h5 > a {
  color: var(--blue);
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .u-content-editor > h3 > a,
  .u-content-editor > h4 > a,
  .u-content-editor > h5 > a,
  .rte > h3 > a,
  .rte > h4 > a,
  .rte > h5 > a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .u-content-editor > h3 > a:active, .u-content-editor > h3 > a.nice-select.open,
  .u-content-editor > h4 > a:active,
  .u-content-editor > h4 > a.nice-select.open,
  .u-content-editor > h5 > a:active,
  .u-content-editor > h5 > a.nice-select.open,
  .rte > h3 > a:active,
  .rte > h3 > a.nice-select.open,
  .rte > h4 > a:active,
  .rte > h4 > a.nice-select.open,
  .rte > h5 > a:active,
  .rte > h5 > a.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .u-content-editor > h3 > a:hover,
  .u-content-editor > h4 > a:hover,
  .u-content-editor > h5 > a:hover,
  .rte > h3 > a:hover,
  .rte > h4 > a:hover,
  .rte > h5 > a:hover {
    /* 2 */
  }
}
.u-content-editor > p > img,
.rte > p > img {
  max-width: 46.0416666667vw;
  width: 100%;
  height: auto;
}
@media (max-width: 800px) {
  .u-content-editor > p > img,
  .rte > p > img {
    max-width: 100%;
  }
}
.c-community-single .u-content-editor > p > img,
.c-community-single .rte > p > img {
  max-width: 39.9305555556vw;
}
@media (max-width: 800px) {
  .c-community-single .u-content-editor > p > img,
  .c-community-single .rte > p > img {
    max-width: 100%;
  }
}
.c-community-single .u-content-editor > p > img,
.c-community-single .rte > p > img {
  opacity: 0.58;
}
.u-content-editor > p,
.u-content-editor > ul,
.u-content-editor > ol,
.rte > p,
.rte > ul,
.rte > ol {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  color: var(--grey);
  margin-bottom: var(--s-32);
}
.c-community-single .u-content-editor > p,
.c-community-single .u-content-editor > ul,
.c-community-single .u-content-editor > ol,
.c-community-single .rte > p,
.c-community-single .rte > ul,
.c-community-single .rte > ol {
  color: var(--white);
}
.u-content-editor > p:last-child,
.u-content-editor > ul:last-child,
.u-content-editor > ol:last-child,
.rte > p:last-child,
.rte > ul:last-child,
.rte > ol:last-child {
  margin-bottom: 0;
}
.u-content-editor > p > u,
.u-content-editor > ul > u,
.u-content-editor > ol > u,
.rte > p > u,
.rte > ul > u,
.rte > ol > u {
  text-decoration: underline;
}
.u-content-editor > p a,
.u-content-editor > ul a,
.u-content-editor > ol a,
.rte > p a,
.rte > ul a,
.rte > ol a {
  color: var(--blue);
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.u-content-editor > p a.c-button,
.u-content-editor > ul a.c-button,
.u-content-editor > ol a.c-button,
.rte > p a.c-button,
.rte > ul a.c-button,
.rte > ol a.c-button {
  color: #000000;
  text-decoration: none;
}
@media (min-width: 1140px) and (hover: none) {
  .u-content-editor > p a,
  .u-content-editor > ul a,
  .u-content-editor > ol a,
  .rte > p a,
  .rte > ul a,
  .rte > ol a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .u-content-editor > p a:active, .u-content-editor > p a.nice-select.open,
  .u-content-editor > ul a:active,
  .u-content-editor > ul a.nice-select.open,
  .u-content-editor > ol a:active,
  .u-content-editor > ol a.nice-select.open,
  .rte > p a:active,
  .rte > p a.nice-select.open,
  .rte > ul a:active,
  .rte > ul a.nice-select.open,
  .rte > ol a:active,
  .rte > ol a.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .u-content-editor > p a:hover,
  .u-content-editor > ul a:hover,
  .u-content-editor > ol a:hover,
  .rte > p a:hover,
  .rte > ul a:hover,
  .rte > ol a:hover {
    /* 2 */
  }
}
.u-content-editor > h2,
.rte > h2 {
  font-size: var(--heading-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 130%;
  font-weight: normal;
  letter-spacing: normal;
}
.u-content-editor > h3,
.rte > h3 {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
}
.u-content-editor > h4,
.rte > h4 {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
}
.u-content-editor > h5,
.rte > h5 {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
}
.u-content-editor li:last-child,
.rte li:last-child {
  margin-bottom: 0;
}
.u-content-editor > ul,
.rte > ul {
  list-style: disc;
  margin-left: 0.5em;
  padding-left: 1em;
}
.u-content-editor > ul li,
.rte > ul li {
  list-style-position: outside;
  padding-left: 0;
}
.u-content-editor > ul li strong, .u-content-editor > ul li b,
.rte > ul li strong,
.rte > ul li b {
  font-family: "GT America Medium", sans-serif;
}
.u-content-editor > ul li::marker,
.rte > ul li::marker {
  font-size: var(--body-02);
}
.u-content-editor > ol,
.rte > ol {
  list-style: decimal inside;
  margin-left: 0.5em;
  padding-left: 1em;
}
.u-content-editor > ol li,
.rte > ol li {
  list-style-position: outside;
  padding-left: 0.5em;
}
.u-content-editor > u,
.rte > u {
  text-decoration: underline;
}
.u-content-editor > a,
.rte > a {
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .u-content-editor > a,
  .rte > a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .u-content-editor > a:active, .u-content-editor > a.nice-select.open,
  .rte > a:active,
  .rte > a.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .u-content-editor > a:hover,
  .rte > a:hover {
    /* 2 */
  }
}
.u-content-editor b,
.u-content-editor strong,
.u-content-editor .wp-block-heading,
.rte b,
.rte strong,
.rte .wp-block-heading {
  color: var(--black);
  font-family: "GT America Medium", sans-serif;
  font-weight: 400;
}
.c-community-single .u-content-editor b,
.c-community-single .u-content-editor strong,
.c-community-single .u-content-editor .wp-block-heading,
.c-community-single .rte b,
.c-community-single .rte strong,
.c-community-single .rte .wp-block-heading {
  color: var(--white);
}
.u-content-editor b > u,
.u-content-editor strong > u,
.u-content-editor .wp-block-heading > u,
.rte b > u,
.rte strong > u,
.rte .wp-block-heading > u {
  text-decoration: underline;
}
.u-content-editor b > a,
.u-content-editor strong > a,
.u-content-editor .wp-block-heading > a,
.rte b > a,
.rte strong > a,
.rte .wp-block-heading > a {
  color: var(--blue);
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .u-content-editor b > a,
  .u-content-editor strong > a,
  .u-content-editor .wp-block-heading > a,
  .rte b > a,
  .rte strong > a,
  .rte .wp-block-heading > a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .u-content-editor b > a:active, .u-content-editor b > a.nice-select.open,
  .u-content-editor strong > a:active,
  .u-content-editor strong > a.nice-select.open,
  .u-content-editor .wp-block-heading > a:active,
  .u-content-editor .wp-block-heading > a.nice-select.open,
  .rte b > a:active,
  .rte b > a.nice-select.open,
  .rte strong > a:active,
  .rte strong > a.nice-select.open,
  .rte .wp-block-heading > a:active,
  .rte .wp-block-heading > a.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .u-content-editor b > a:hover,
  .u-content-editor strong > a:hover,
  .u-content-editor .wp-block-heading > a:hover,
  .rte b > a:hover,
  .rte strong > a:hover,
  .rte .wp-block-heading > a:hover {
    /* 2 */
  }
}
.u-content-editor > h6.wp-block-heading,
.rte > h6.wp-block-heading {
  color: var(--grey);
}
.c-community-single .u-content-editor > h6.wp-block-heading,
.c-community-single .rte > h6.wp-block-heading {
  color: var(--white);
}
.u-content-editor hr,
.rte hr {
  border-top: 1px solid #000000;
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 0;
  margin: var(--s-60) 0;
  outline: none;
  box-shadow: none;
}
.c-community-single .u-content-editor hr,
.c-community-single .rte hr {
  color: var(--white);
}
.u-content-editor hr:first-child,
.rte hr:first-child {
  margin-top: 0;
}
.u-content-editor hr:last-child,
.rte hr:last-child {
  margin-bottom: 0;
}
.u-content-editor .wp-block-table,
.rte .wp-block-table {
  margin-top: var(--s-60);
  margin-bottom: var(--s-60);
}
.u-content-editor .wp-block-table:first-child,
.rte .wp-block-table:first-child {
  margin-top: 0;
}
.u-content-editor .wp-block-table:last-child,
.rte .wp-block-table:last-child {
  margin-bottom: 0;
}
.u-content-editor .wp-block-table table,
.rte .wp-block-table table {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  width: 100%;
}
.u-content-editor .wp-block-table tr,
.rte .wp-block-table tr {
  border-bottom: 1px solid #000000;
  display: flex;
  gap: var(--s-15);
}
.u-content-editor .wp-block-table td,
.rte .wp-block-table td {
  padding-top: var(--s-15);
  padding-bottom: var(--s-15);
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.u-content-editor .wp-block-table u,
.rte .wp-block-table u {
  text-decoration: underline;
}
.u-content-editor .wp-block-table a,
.rte .wp-block-table a {
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .u-content-editor .wp-block-table a,
  .rte .wp-block-table a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .u-content-editor .wp-block-table a:active, .u-content-editor .wp-block-table a.nice-select.open,
  .rte .wp-block-table a:active,
  .rte .wp-block-table a.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .u-content-editor .wp-block-table a:hover,
  .rte .wp-block-table a:hover {
    /* 2 */
  }
}
.u-content-editor blockquote,
.u-content-editor .wp-block-quote,
.rte blockquote,
.rte .wp-block-quote {
  margin-bottom: var(--s-32);
  padding-left: var(--s-24);
  border-left: 1px solid var(--black);
}
.c-community-single .u-content-editor blockquote,
.c-community-single .u-content-editor .wp-block-quote,
.c-community-single .rte blockquote,
.c-community-single .rte .wp-block-quote {
  border-left: 1px solid var(--white);
}
.u-content-editor blockquote:first-child,
.u-content-editor .wp-block-quote:first-child,
.rte blockquote:first-child,
.rte .wp-block-quote:first-child {
  margin-top: 0;
}
.u-content-editor blockquote:last-child,
.u-content-editor .wp-block-quote:last-child,
.rte blockquote:last-child,
.rte .wp-block-quote:last-child {
  margin-bottom: 0;
}
.u-content-editor blockquote p, .u-content-editor blockquote strong, .u-content-editor blockquote em,
.u-content-editor .wp-block-quote p,
.u-content-editor .wp-block-quote strong,
.u-content-editor .wp-block-quote em,
.rte blockquote p,
.rte blockquote strong,
.rte blockquote em,
.rte .wp-block-quote p,
.rte .wp-block-quote strong,
.rte .wp-block-quote em {
  font-size: var(--av);
  font-family: "Georgia", serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  color: var(--black);
}
.c-community-single .u-content-editor blockquote p, .c-community-single .u-content-editor blockquote strong, .c-community-single .u-content-editor blockquote em,
.c-community-single .u-content-editor .wp-block-quote p,
.c-community-single .u-content-editor .wp-block-quote strong,
.c-community-single .u-content-editor .wp-block-quote em,
.c-community-single .rte blockquote p,
.c-community-single .rte blockquote strong,
.c-community-single .rte blockquote em,
.c-community-single .rte .wp-block-quote p,
.c-community-single .rte .wp-block-quote strong,
.c-community-single .rte .wp-block-quote em {
  color: var(--white);
}
.u-content-editor blockquote p,
.u-content-editor .wp-block-quote p,
.rte blockquote p,
.rte .wp-block-quote p {
  margin-bottom: var(--s-32);
}
.u-content-editor blockquote p a,
.u-content-editor .wp-block-quote p a,
.rte blockquote p a,
.rte .wp-block-quote p a {
  color: var(--blue);
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .u-content-editor blockquote p a,
  .u-content-editor .wp-block-quote p a,
  .rte blockquote p a,
  .rte .wp-block-quote p a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .u-content-editor blockquote p a:active, .u-content-editor blockquote p a.nice-select.open,
  .u-content-editor .wp-block-quote p a:active,
  .u-content-editor .wp-block-quote p a.nice-select.open,
  .rte blockquote p a:active,
  .rte blockquote p a.nice-select.open,
  .rte .wp-block-quote p a:active,
  .rte .wp-block-quote p a.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .u-content-editor blockquote p a:hover,
  .u-content-editor .wp-block-quote p a:hover,
  .rte blockquote p a:hover,
  .rte .wp-block-quote p a:hover {
    /* 2 */
  }
}
.u-content-editor blockquote p:last-child,
.u-content-editor .wp-block-quote p:last-child,
.rte blockquote p:last-child,
.rte .wp-block-quote p:last-child {
  margin-bottom: 0;
}
.u-content-editor blockquote cite,
.u-content-editor .wp-block-quote cite,
.rte blockquote cite,
.rte .wp-block-quote cite {
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  margin-top: var(--s-15);
  display: block;
}
.u-content-editor blockquote cite > u,
.u-content-editor .wp-block-quote cite > u,
.rte blockquote cite > u,
.rte .wp-block-quote cite > u {
  text-decoration: underline;
}
.u-content-editor blockquote cite > a,
.u-content-editor .wp-block-quote cite > a,
.rte blockquote cite > a,
.rte .wp-block-quote cite > a {
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .u-content-editor blockquote cite > a,
  .u-content-editor .wp-block-quote cite > a,
  .rte blockquote cite > a,
  .rte .wp-block-quote cite > a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .u-content-editor blockquote cite > a:active, .u-content-editor blockquote cite > a.nice-select.open,
  .u-content-editor .wp-block-quote cite > a:active,
  .u-content-editor .wp-block-quote cite > a.nice-select.open,
  .rte blockquote cite > a:active,
  .rte blockquote cite > a.nice-select.open,
  .rte .wp-block-quote cite > a:active,
  .rte .wp-block-quote cite > a.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .u-content-editor blockquote cite > a:hover,
  .u-content-editor .wp-block-quote cite > a:hover,
  .rte blockquote cite > a:hover,
  .rte .wp-block-quote cite > a:hover {
    /* 2 */
  }
}
.u-content-editor .wp-block-embed,
.rte .wp-block-embed {
  margin-top: var(--s-60);
  margin-bottom: var(--s-60);
}
.u-content-editor .wp-block-embed:first-child,
.rte .wp-block-embed:first-child {
  margin-top: 0;
}
.u-content-editor .wp-block-embed:last-child,
.rte .wp-block-embed:last-child {
  margin-bottom: 0;
}
.u-content-editor .wp-block-embed.is-type-video .wp-block-embed__wrapper,
.rte .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.u-content-editor .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe,
.u-content-editor .wp-block-embed.is-type-video .wp-block-embed__wrapper object,
.u-content-editor .wp-block-embed.is-type-video .wp-block-embed__wrapper embed,
.rte .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe,
.rte .wp-block-embed.is-type-video .wp-block-embed__wrapper object,
.rte .wp-block-embed.is-type-video .wp-block-embed__wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.u-content-editor .c-media-block .c-responsive-media,
.rte .c-media-block .c-responsive-media {
  max-width: 46.0416666667vw;
  width: 100%;
}
.c-community-single .u-content-editor .c-media-block .c-responsive-media,
.c-community-single .rte .c-media-block .c-responsive-media {
  max-width: 39.9305555556vw;
}
@media (max-width: 800px) {
  .c-community-single .u-content-editor .c-media-block .c-responsive-media,
  .c-community-single .rte .c-media-block .c-responsive-media {
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .u-content-editor .c-media-block .c-responsive-media,
  .rte .c-media-block .c-responsive-media {
    max-width: 100%;
  }
}
.u-content-editor .c-media-block .c-responsive-media--full,
.rte .c-media-block .c-responsive-media--full {
  max-width: 100%;
  width: 100%;
}
.c-community-single .u-content-editor .c-media-block .c-responsive-media--full,
.c-community-single .rte .c-media-block .c-responsive-media--full {
  max-width: 100%;
}
@media (max-width: 800px) {
  .c-community-single .u-content-editor .c-media-block .c-responsive-media--full,
  .c-community-single .rte .c-media-block .c-responsive-media--full {
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .u-content-editor .c-media-block .c-responsive-media--full,
  .rte .c-media-block .c-responsive-media--full {
    max-width: 100%;
  }
}
.u-content-editor .wp-caption,
.u-content-editor .wp-block-image,
.rte .wp-caption,
.rte .wp-block-image {
  width: 100% !important;
  max-width: 100%;
  margin-bottom: var(--s-32);
}
.u-content-editor .wp-caption img,
.u-content-editor .wp-block-image img,
.rte .wp-caption img,
.rte .wp-block-image img {
  max-width: 46.0416666667vw;
  width: 100%;
  height: auto;
}
@media (max-width: 800px) {
  .u-content-editor .wp-caption img,
  .u-content-editor .wp-block-image img,
  .rte .wp-caption img,
  .rte .wp-block-image img {
    max-width: 100%;
  }
}
.c-community-single .u-content-editor .wp-caption img,
.c-community-single .u-content-editor .wp-block-image img,
.c-community-single .rte .wp-caption img,
.c-community-single .rte .wp-block-image img {
  max-width: 39.9305555556vw;
}
@media (max-width: 800px) {
  .c-community-single .u-content-editor .wp-caption img,
  .c-community-single .u-content-editor .wp-block-image img,
  .c-community-single .rte .wp-caption img,
  .c-community-single .rte .wp-block-image img {
    max-width: 100%;
  }
}
.c-community-single .u-content-editor .wp-caption img,
.c-community-single .u-content-editor .wp-block-image img,
.c-community-single .rte .wp-caption img,
.c-community-single .rte .wp-block-image img {
  opacity: 0.58;
}
.u-content-editor .wp-caption:first-child,
.u-content-editor .wp-block-image:first-child,
.rte .wp-caption:first-child,
.rte .wp-block-image:first-child {
  margin-top: 0;
}
.u-content-editor .wp-caption:last-child,
.u-content-editor .wp-block-image:last-child,
.rte .wp-caption:last-child,
.rte .wp-block-image:last-child {
  margin-bottom: 0;
}
.u-content-editor .wp-caption.size-medium img,
.u-content-editor .wp-block-image.size-medium img,
.rte .wp-caption.size-medium img,
.rte .wp-block-image.size-medium img {
  width: auto;
}
.u-content-editor .wp-caption.size-thumbnail img,
.u-content-editor .wp-block-image.size-thumbnail img,
.rte .wp-caption.size-thumbnail img,
.rte .wp-block-image.size-thumbnail img {
  width: auto;
}
.u-content-editor .wp-caption .wp-caption-text,
.u-content-editor .wp-caption .wp-element-caption,
.u-content-editor .wp-caption figcaption,
.u-content-editor .wp-block-image .wp-caption-text,
.u-content-editor .wp-block-image .wp-element-caption,
.u-content-editor .wp-block-image figcaption,
.rte .wp-caption .wp-caption-text,
.rte .wp-caption .wp-element-caption,
.rte .wp-caption figcaption,
.rte .wp-block-image .wp-caption-text,
.rte .wp-block-image .wp-element-caption,
.rte .wp-block-image figcaption {
  margin: 0;
  color: var(--grey);
  font-size: var(--body-02);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: normal;
  max-width: 46.0416666667vw;
  width: 100%;
}
@media (max-width: 800px) {
  .u-content-editor .wp-caption .wp-caption-text,
  .u-content-editor .wp-caption .wp-element-caption,
  .u-content-editor .wp-caption figcaption,
  .u-content-editor .wp-block-image .wp-caption-text,
  .u-content-editor .wp-block-image .wp-element-caption,
  .u-content-editor .wp-block-image figcaption,
  .rte .wp-caption .wp-caption-text,
  .rte .wp-caption .wp-element-caption,
  .rte .wp-caption figcaption,
  .rte .wp-block-image .wp-caption-text,
  .rte .wp-block-image .wp-element-caption,
  .rte .wp-block-image figcaption {
    max-width: 100%;
  }
}
.c-community-single .u-content-editor .wp-caption .wp-caption-text,
.c-community-single .u-content-editor .wp-caption .wp-element-caption,
.c-community-single .u-content-editor .wp-caption figcaption,
.c-community-single .u-content-editor .wp-block-image .wp-caption-text,
.c-community-single .u-content-editor .wp-block-image .wp-element-caption,
.c-community-single .u-content-editor .wp-block-image figcaption,
.c-community-single .rte .wp-caption .wp-caption-text,
.c-community-single .rte .wp-caption .wp-element-caption,
.c-community-single .rte .wp-caption figcaption,
.c-community-single .rte .wp-block-image .wp-caption-text,
.c-community-single .rte .wp-block-image .wp-element-caption,
.c-community-single .rte .wp-block-image figcaption {
  max-width: 39.9305555556vw;
}
@media (max-width: 800px) {
  .c-community-single .u-content-editor .wp-caption .wp-caption-text,
  .c-community-single .u-content-editor .wp-caption .wp-element-caption,
  .c-community-single .u-content-editor .wp-caption figcaption,
  .c-community-single .u-content-editor .wp-block-image .wp-caption-text,
  .c-community-single .u-content-editor .wp-block-image .wp-element-caption,
  .c-community-single .u-content-editor .wp-block-image figcaption,
  .c-community-single .rte .wp-caption .wp-caption-text,
  .c-community-single .rte .wp-caption .wp-element-caption,
  .c-community-single .rte .wp-caption figcaption,
  .c-community-single .rte .wp-block-image .wp-caption-text,
  .c-community-single .rte .wp-block-image .wp-element-caption,
  .c-community-single .rte .wp-block-image figcaption {
    max-width: 100%;
  }
}
.c-community-single .u-content-editor .wp-caption .wp-caption-text,
.c-community-single .u-content-editor .wp-caption .wp-element-caption,
.c-community-single .u-content-editor .wp-caption figcaption,
.c-community-single .u-content-editor .wp-block-image .wp-caption-text,
.c-community-single .u-content-editor .wp-block-image .wp-element-caption,
.c-community-single .u-content-editor .wp-block-image figcaption,
.c-community-single .rte .wp-caption .wp-caption-text,
.c-community-single .rte .wp-caption .wp-element-caption,
.c-community-single .rte .wp-caption figcaption,
.c-community-single .rte .wp-block-image .wp-caption-text,
.c-community-single .rte .wp-block-image .wp-element-caption,
.c-community-single .rte .wp-block-image figcaption {
  color: var(--blue);
}
.u-content-editor .wp-caption .wp-caption-text > u,
.u-content-editor .wp-caption .wp-element-caption > u,
.u-content-editor .wp-caption figcaption > u,
.u-content-editor .wp-block-image .wp-caption-text > u,
.u-content-editor .wp-block-image .wp-element-caption > u,
.u-content-editor .wp-block-image figcaption > u,
.rte .wp-caption .wp-caption-text > u,
.rte .wp-caption .wp-element-caption > u,
.rte .wp-caption figcaption > u,
.rte .wp-block-image .wp-caption-text > u,
.rte .wp-block-image .wp-element-caption > u,
.rte .wp-block-image figcaption > u {
  text-decoration: underline;
}
.u-content-editor .wp-caption .wp-caption-text > a,
.u-content-editor .wp-caption .wp-element-caption > a,
.u-content-editor .wp-caption figcaption > a,
.u-content-editor .wp-block-image .wp-caption-text > a,
.u-content-editor .wp-block-image .wp-element-caption > a,
.u-content-editor .wp-block-image figcaption > a,
.rte .wp-caption .wp-caption-text > a,
.rte .wp-caption .wp-element-caption > a,
.rte .wp-caption figcaption > a,
.rte .wp-block-image .wp-caption-text > a,
.rte .wp-block-image .wp-element-caption > a,
.rte .wp-block-image figcaption > a {
  color: var(--blue);
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .u-content-editor .wp-caption .wp-caption-text > a,
  .u-content-editor .wp-caption .wp-element-caption > a,
  .u-content-editor .wp-caption figcaption > a,
  .u-content-editor .wp-block-image .wp-caption-text > a,
  .u-content-editor .wp-block-image .wp-element-caption > a,
  .u-content-editor .wp-block-image figcaption > a,
  .rte .wp-caption .wp-caption-text > a,
  .rte .wp-caption .wp-element-caption > a,
  .rte .wp-caption figcaption > a,
  .rte .wp-block-image .wp-caption-text > a,
  .rte .wp-block-image .wp-element-caption > a,
  .rte .wp-block-image figcaption > a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .u-content-editor .wp-caption .wp-caption-text > a:active, .u-content-editor .wp-caption .wp-caption-text > a.nice-select.open,
  .u-content-editor .wp-caption .wp-element-caption > a:active,
  .u-content-editor .wp-caption .wp-element-caption > a.nice-select.open,
  .u-content-editor .wp-caption figcaption > a:active,
  .u-content-editor .wp-caption figcaption > a.nice-select.open,
  .u-content-editor .wp-block-image .wp-caption-text > a:active,
  .u-content-editor .wp-block-image .wp-caption-text > a.nice-select.open,
  .u-content-editor .wp-block-image .wp-element-caption > a:active,
  .u-content-editor .wp-block-image .wp-element-caption > a.nice-select.open,
  .u-content-editor .wp-block-image figcaption > a:active,
  .u-content-editor .wp-block-image figcaption > a.nice-select.open,
  .rte .wp-caption .wp-caption-text > a:active,
  .rte .wp-caption .wp-caption-text > a.nice-select.open,
  .rte .wp-caption .wp-element-caption > a:active,
  .rte .wp-caption .wp-element-caption > a.nice-select.open,
  .rte .wp-caption figcaption > a:active,
  .rte .wp-caption figcaption > a.nice-select.open,
  .rte .wp-block-image .wp-caption-text > a:active,
  .rte .wp-block-image .wp-caption-text > a.nice-select.open,
  .rte .wp-block-image .wp-element-caption > a:active,
  .rte .wp-block-image .wp-element-caption > a.nice-select.open,
  .rte .wp-block-image figcaption > a:active,
  .rte .wp-block-image figcaption > a.nice-select.open {
    /* 1 */
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .u-content-editor .wp-caption .wp-caption-text > a:hover,
  .u-content-editor .wp-caption .wp-element-caption > a:hover,
  .u-content-editor .wp-caption figcaption > a:hover,
  .u-content-editor .wp-block-image .wp-caption-text > a:hover,
  .u-content-editor .wp-block-image .wp-element-caption > a:hover,
  .u-content-editor .wp-block-image figcaption > a:hover,
  .rte .wp-caption .wp-caption-text > a:hover,
  .rte .wp-caption .wp-element-caption > a:hover,
  .rte .wp-caption figcaption > a:hover,
  .rte .wp-block-image .wp-caption-text > a:hover,
  .rte .wp-block-image .wp-element-caption > a:hover,
  .rte .wp-block-image figcaption > a:hover {
    /* 2 */
  }
}
.u-content-editor .wp-block-code,
.u-content-editor pre,
.rte .wp-block-code,
.rte pre {
  margin-top: var(--s-60);
  margin-bottom: var(--s-60);
  padding: var(--s-30);
  background-color: #ffffff;
  color: #000000;
}
.c-community-single .u-content-editor .wp-block-code,
.c-community-single .u-content-editor pre,
.c-community-single .rte .wp-block-code,
.c-community-single .rte pre {
  color: var(--white);
}
.u-content-editor .wp-block-code:first-child,
.u-content-editor pre:first-child,
.rte .wp-block-code:first-child,
.rte pre:first-child {
  margin-top: 0;
}
.u-content-editor .wp-block-code:last-child,
.u-content-editor pre:last-child,
.rte .wp-block-code:last-child,
.rte pre:last-child {
  margin-bottom: 0;
}
.u-content-editor .wp-block-code code,
.u-content-editor pre code,
.rte .wp-block-code code,
.rte pre code {
  font-size: 0.75em;
  line-height: 1.5;
  white-space: pre-wrap;
}
.u-content-editor .c-gutenberg-block,
.rte .c-gutenberg-block {
  margin-top: var(--s-60);
  margin-bottom: var(--s-60);
  position: relative;
  z-index: 1;
}
.u-content-editor .c-gutenberg-block:first-child,
.rte .c-gutenberg-block:first-child {
  margin-top: 0;
}
.u-content-editor .c-gutenberg-block:last-child,
.rte .c-gutenberg-block:last-child {
  margin-bottom: 0;
}

/**
 * Vendors
 */
/**
 * Third party vendors
 */
.js-accordion-panel {
  backface-visibility: hidden;
  overflow: hidden;
  height: 0;
}
.is-opened .js-accordion-panel {
  height: auto;
}

/**
 * Swiper 11.1.15
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 18, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 38px;
  line-height: 36px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: rgb(219.25, 219.25, 219.25);
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: rgb(237.1, 237.1, 237.1);
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .nice-select-dropdown {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .nice-select-dropdown {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .nice-select-dropdown {
  margin-top: 4px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(19px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  opacity: 0;
}
.nice-select .list {
  border-radius: 5px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  max-height: 210px;
  overflow-y: auto;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.nice-select .optgroup {
  font-weight: bold;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}
.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.nice-select .has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 36px;
  line-height: 22px;
}
.nice-select .has-multiple span.current {
  border: 1px solid #CCC;
  background: #EEE;
  padding: 0 10px;
  border-radius: 3px;
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 3px;
  margin-right: 3px;
}
.nice-select .has-multiple .multiple-options {
  display: block;
  line-height: 24px;
  padding: 0;
}
.nice-select .nice-select-search-box {
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
}
.nice-select .nice-select-search {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  color: #444;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  margin: 0 10px 0 0;
  width: 100%;
  min-height: 36px;
  line-height: 22px;
  height: auto;
  outline: 0 !important;
  font-size: 14px;
}

/**
 * Vendors
 */
.swiper-wrapper {
  box-sizing: border-box;
}

/**
 * Main container
 */
.ss-main {
  min-height: 50px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  position: relative;
  user-select: none;
  color: #000000;
  width: 100%;
  padding: 0 var(--s-15);
  margin: 0;
  cursor: pointer;
  border: 1px solid #000000;
  background-color: #ffffff;
  outline: 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media (min-width: 1920px) {
  .ss-main {
    min-height: max(3.13rem, 1.56vw + 1.25rem);
  }
}
@media (min-width: 1920px) {
  .ss-main {
    border-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-main:active, .ss-main.nice-select.open, .ss-main:focus {
  /* 1 */
}
.ss-main:active:not(:disabled):focus-visible, .ss-main.nice-select.open:not(:disabled):focus-visible, .ss-main:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
@media (max-width: 1140px) {
  .ss-main {
    min-height: 40px;
  }
}
@media (max-width: 1140px) and (min-width: 1920px) {
  .ss-main {
    min-height: max(2.5rem, 1.25vw + 1rem);
  }
}
.ss-main.ss-disabled {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: not-allowed;
}
.ss-main.ss-disabled .ss-values .ss-disabled {
  color: #000000;
}
.ss-main.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed;
}
.ss-main.ss-open-above {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.ss-main.ss-open-below {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ss-main .ss-values {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 100%;
  gap: var(--s-5);
}
.ss-main .ss-values .ss-placeholder {
  display: flex;
  padding: 0;
  margin: auto 0 auto 0;
  line-height: 1em;
  align-items: center;
  width: 100%;
  color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ss-main .ss-values .ss-max {
  border-radius: 10px;
  display: flex;
  user-select: none;
  align-items: center;
  width: fit-content;
  color: #ffffff;
  line-height: 1;
  background-color: #000000;
  padding: var(--s-5);
}
@media (min-width: 1920px) {
  .ss-main .ss-values .ss-max {
    border-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-main .ss-values .ss-single {
  display: flex;
  margin: auto 0;
}
.ss-main .ss-values .ss-value {
  border-radius: 10px;
  display: flex;
  user-select: none;
  align-items: center;
  width: fit-content;
  background-color: #000000;
  animation-name: ss-valueIn;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
@media (min-width: 1920px) {
  .ss-main .ss-values .ss-value {
    border-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-main .ss-values .ss-value.ss-value-out {
  animation-name: ss-valueOut;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}
.ss-main .ss-values .ss-value .ss-value-text {
  padding: var(--s-5);
  color: #ffffff;
  line-height: 1;
}
.ss-main .ss-values .ss-value .ss-value-delete {
  width: 10px;
  height: 10px;
  padding: var(--s-5);
  display: flex;
  align-items: center;
  cursor: pointer;
  border-left: 1px solid #000000;
  box-sizing: content-box;
}
@media (min-width: 1920px) {
  .ss-main .ss-values .ss-value .ss-value-delete {
    width: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (min-width: 1920px) {
  .ss-main .ss-values .ss-value .ss-value-delete {
    height: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-main .ss-values .ss-value .ss-value-delete svg {
  width: 10px;
  height: 10px;
}
@media (min-width: 1920px) {
  .ss-main .ss-values .ss-value .ss-value-delete svg {
    width: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (min-width: 1920px) {
  .ss-main .ss-values .ss-value .ss-value-delete svg {
    height: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-main .ss-values .ss-value .ss-value-delete svg path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ss-main .ss-deselect {
  width: 10px;
  height: 10px;
  margin-left: var(--s-10);
  margin-right: var(--s-10);
  display: flex;
  align-self: center;
  justify-content: flex-end;
  flex: 0 1 auto;
}
@media (min-width: 1920px) {
  .ss-main .ss-deselect {
    width: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (min-width: 1920px) {
  .ss-main .ss-deselect {
    height: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-main .ss-deselect svg {
  width: 10px;
  height: 10px;
}
@media (min-width: 1920px) {
  .ss-main .ss-deselect svg {
    width: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (min-width: 1920px) {
  .ss-main .ss-deselect svg {
    height: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-main .ss-deselect svg path {
  fill: none;
  stroke: #000000;
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ss-main .ss-arrow {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (min-width: 1920px) {
  .ss-main .ss-arrow {
    width: max(0.94rem, 0.47vw + 0.38rem);
  }
}
@media (min-width: 1920px) {
  .ss-main .ss-arrow {
    height: max(0.94rem, 0.47vw + 0.38rem);
  }
}
.ss-main .ss-arrow path {
  fill: none;
  stroke: #000000;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-timing-function: ease-out;
  transition: 0.2s;
}

/**
 * Content container
 */
.ss-content {
  max-height: 300px;
  position: absolute;
  display: flex;
  height: auto;
  flex-direction: column;
  width: auto;
  box-sizing: border-box;
  border: 1px solid #000000;
  background-color: #ffffff;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center top;
  overflow: hidden;
  z-index: 10000;
}
@media (min-width: 1920px) {
  .ss-content {
    max-height: max(18.75rem, 9.38vw + 7.5rem);
  }
}
.ss-content.ss-relative {
  position: relative;
  height: 100%;
}
.ss-content.ss-open-above {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  flex-direction: column-reverse;
  opacity: 1;
  transform: scaleY(1);
  transform-origin: center bottom;
}
@media (min-width: 1920px) {
  .ss-content.ss-open-above {
    border-top-left-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (min-width: 1920px) {
  .ss-content.ss-open-above {
    border-top-right-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-content.ss-open-below {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  opacity: 1;
  transform: scaleY(1);
  transform-origin: center top;
}
@media (min-width: 1920px) {
  .ss-content.ss-open-below {
    border-bottom-left-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (min-width: 1920px) {
  .ss-content.ss-open-below {
    border-bottom-right-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-content .ss-search {
  padding: var(--s-15);
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
}
.ss-content .ss-search input {
  height: 40px;
  border-radius: 10px;
  font-size: var(--body-01);
  font-family: "GT America Standard Regular", sans-serif;
  line-height: 133%;
  font-weight: normal;
  letter-spacing: normal;
  display: inline-flex;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: 0 var(--s-15);
  margin: 0;
  border: 1px solid #000000;
  background-color: #ffffff;
  outline: 0;
  text-align: left;
  box-sizing: border-box;
}
@media (min-width: 1920px) {
  .ss-content .ss-search input {
    height: max(2.5rem, 1.25vw + 1rem);
  }
}
@media (min-width: 1920px) {
  .ss-content .ss-search input {
    border-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-content .ss-search input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
}
.ss-content .ss-search input:active, .ss-content .ss-search input.nice-select.open, .ss-content .ss-search input:focus {
  /* 1 */
}
.ss-content .ss-search input:active:not(:disabled):focus-visible, .ss-content .ss-search input.nice-select.open:not(:disabled):focus-visible, .ss-content .ss-search input:focus:not(:disabled):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}
.ss-content .ss-search .ss-addable {
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  height: auto;
  margin: 0;
  border: 1px solid #000000;
}
@media (min-width: 1920px) {
  .ss-content .ss-search .ss-addable {
    border-radius: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-content .ss-search .ss-addable svg {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: auto 0;
}
@media (min-width: 1920px) {
  .ss-content .ss-search .ss-addable svg {
    width: max(0.94rem, 0.47vw + 0.38rem);
  }
}
@media (min-width: 1920px) {
  .ss-content .ss-search .ss-addable svg {
    height: max(0.94rem, 0.47vw + 0.38rem);
  }
}
.ss-content .ss-search .ss-addable svg path {
  fill: none;
  stroke: #000000;
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ss-content .ss-list {
  flex: 1 1 auto;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}
.ss-content .ss-list .ss-error {
  padding: var(--s-5);
  color: #ff0000;
}
.ss-content .ss-list .ss-searching {
  padding: var(--s-5);
  color: #000000;
}
.ss-content .ss-list .ss-optgroup.ss-close .ss-option {
  display: none !important;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  padding: var(--s-15);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text {
  flex: 1 1 auto;
  color: #000000;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label:has(.ss-arrow) {
  cursor: pointer;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: var(--s-10);
  cursor: pointer;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path {
  stroke: #ff0000;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall span {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg {
  width: 15px;
  height: 15px;
  flex: 0 1 auto;
}
@media (min-width: 1920px) {
  .ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg {
    width: max(0.94rem, 0.47vw + 0.38rem);
  }
}
@media (min-width: 1920px) {
  .ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg {
    height: max(0.94rem, 0.47vw + 0.38rem);
  }
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path {
  fill: none;
  stroke: #000000;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:first-child {
  stroke-width: 5;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:last-child {
  stroke-width: 10;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow {
  width: 10px;
  height: 10px;
  flex: 1 1 auto;
}
@media (min-width: 1920px) {
  .ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow {
    width: max(0.63rem, 0.31vw + 0.25rem);
  }
}
@media (min-width: 1920px) {
  .ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow {
    height: max(0.63rem, 0.31vw + 0.25rem);
  }
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path {
  fill: none;
  stroke: #000000;
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-timing-function: ease-out;
  transition: 0.2s;
}
.ss-content .ss-list .ss-optgroup .ss-option {
  padding: var(--s-10) var(--s-15) var(--s-10) var(--s-30);
}
.ss-content .ss-list .ss-option {
  padding: var(--s-10) var(--s-15);
  display: flex;
  color: #000000;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (min-width: 1140px) and (hover: none) {
  .ss-content .ss-list .ss-option {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .ss-content .ss-list .ss-option:active, .ss-content .ss-list .ss-option.nice-select.open {
    /* 1 */
  }
  .ss-content .ss-list .ss-option:active:not(.ss-disabled), .ss-content .ss-list .ss-option.nice-select.open:not(.ss-disabled) {
    color: #ffffff;
    background-color: #000000;
  }
}
@media (min-width: 1140px) and (hover: hover), (min-width: 1140px) and (-ms-high-contrast: none), (min-width: 1140px) and (-ms-high-contrast: active) {
  .ss-content .ss-list .ss-option:hover {
    /* 2 */
  }
  .ss-content .ss-list .ss-option:hover:not(.ss-disabled) {
    color: #ffffff;
    background-color: #000000;
  }
}
.ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: #ffffff;
  background-color: #000000;
}
.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.5);
}
.ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: rgba(0, 0, 0, 0.5);
}

/**
 * Misc classes
 */
.ss-hide {
  display: none !important;
}

/**
 * Animation keyframes
 */
@keyframes ss-valueIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ss-valueOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
body.logged-in.admin-bar .o-navigation {
  top: var(--wp-admin--admin-bar--height, 0);
}

.otgs-development-site-front-end {
  display: none;
}

/*# sourceMappingURL=style.css.map*/