/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Reboot from Bootstrap 4.5.3
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */
/**
 * IE10+ doesn't honor `<meta name="viewport">` in some cases
 */
/**
 * general reset
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/**
 * HTML5 display-role reset for older browsers
 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section,
main, summary {
  display: block;
}
/**
 * inherit box model for all elements
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}
/**
 * html root rules
 * 1. set border-box for inheritance
 * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 *    CSS property
 * 3. Prevent adjustments of font size after orientation changes in IE, on
 *    Windows Phone and iOS.
 * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * 5. Change the default tap highlight to be completely transparent in iOS.
 */
html {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/**
 * body rules
 * 1. reset line-height to 1
 * 2. set base font-family to sans-serif
 * 3. Set an explicit initial text-align value so that we can later use the
 *    `inherit` value on things like `<th>` elements.
 */
body {
  /* 1 */
  line-height: 1;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  text-align: left;
}
/**
 * Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
 * on elements that programmatically receive focus but wouldn't normally show a visible
 * focus outline. In general, this would mean that the outline is only applied if the
 * interaction that led to the element receiving programmatic focus was a keyboard interaction,
 * or the browser has somehow determined that the user is primarily a keyboard user and/or
 * wants focus outlines to always be presented.
 *
 * See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
 * and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
 */
[tabindex="-1"]:focus:not(.focus-visible) {
  outline: 0 !important;
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
/**
 * Lists
 */
ol, ul {
  list-style: none;
}
/**
 * Quotes
 */
blockquote, q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}
/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption {
  caption-side: bottom;
}
/**
 * Table Headers
 * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 *    closest parent with a set `text-align`.
 * 2. Fix alignment for Safari
 */
th {
  /* 1 */
  text-align: inherit;
  /* 2 */
  text-align: -webkit-match-parent;
}
/**
 * Horizontal Lines
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}
/**
 * Preformatted Text
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Don't allow content to break outside
 * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 *    counteract.
 */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}
pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}
/**
 * Links
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}
/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * 3. Add explicit cursor to indicate changed behavior.
 * 4. Prevent the text-decoration to be skipped.
 */
abbr[title] {
  /* 1 */
  border-bottom: 0;
  /* 2 */
  text-decoration: underline;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted currentColor;
          text-decoration: underline dotted currentColor;
  /* 3 */
  cursor: help;
  /* 4 */
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
address {
  font-style: normal;
  line-height: inherit;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 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 {
  position: relative;
  font-size: 75%;
  line-height: 0;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/**
 * Prevent `em` being affected from global reset
 */
em {
  font-style: italic;
}
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/**
 * Hide SVG overflow in IE
 */
svg:not(:root) {
  overflow: hidden;
}
/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * Details at https://github.com/twbs/bootstrap/issues/24093
 */
button {
  border-radius: 0;
}
/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 * Credit: https://github.com/suitcss/base/
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
/**
 * form element resets
 * 1. Remove the margin in Firefox and Safari
 * 2. inherit font rules
 */
input,
button,
select,
optgroup,
textarea {
  /* 1 */
  margin: 0;
  /* 2 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=reset],
[type=submit],
[type=button] {
  /* 2 */
  -webkit-appearance: button;
}
/**
 * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * bug where setting a custom line-height prevents text from being vertically
 * centered within the input.
 * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * and https://github.com/twbs/bootstrap/issues/11266
 */
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}
/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  overflow: auto;
  resize: vertical;
}
/**
 * Show the overflow in IE.
 */
button,
input {
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  text-transform: none;
}
/**
 * Set the cursor for non-`<button>` buttons
 * Details at https://github.com/twbs/bootstrap/pull/30562
 */
[role=button] {
  cursor: pointer;
}
/**
 * Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 */
select {
  word-wrap: normal;
}
/**
 * Remove inner border and padding from Firefox, but don't restore the outline
 * like Normalize.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * 1. Add the correct box sizing in IE 10-
 * 2. Remove the padding in IE 10-
 */
input[type=radio],
input[type=checkbox] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}
/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
 */
[tabindex="-1"]:focus {
  outline: 0 !important;
}
/**
 * Browsers set a default `min-width: min-content` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * So we reset that to ensure fieldsets behave more like a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
fieldset {
  min-width: 0;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Set display to block for all browsers
 */
legend {
  /* 1 */
  max-width: 100%;
  white-space: normal;
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * 1. Remove the default vertical scrollbar in IE 10+.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[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] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[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 {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}
/**
 * Correct element display for output
 */
output {
  display: inline-block;
}
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Always hide an element with the `hidden` HTML attribute (from PureCSS).
 * Needed for proper display in IE 10-.
 */
[hidden] {
  display: none;
}
/*!
 * Bootstrap Grid v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}
.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}
.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}
.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}
.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  order: -1;
}
.order-last {
  order: 13;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.m-n1 {
  margin: -0.25rem !important;
}
.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}
.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}
.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}
.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}
.m-n2 {
  margin: -0.5rem !important;
}
.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}
.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}
.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}
.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}
.m-n4 {
  margin: -1.5rem !important;
}
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}
.m-n5 {
  margin: -3rem !important;
}
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
[data-anim] .text--subtitle {
  background: linear-gradient(90deg, #fff 0%, #fff 40%, #000 50%);
  background: -webkit-linear-gradient(0deg, 0% #fff, 50% #000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: right;
  background-size: 300%;
}
[data-anim] .text--split .char > span {
  transform: translateY(100%);
  transition: 0.75s cubic-bezier(0.41, 0.05, 0, 1) transform;
}
[data-anim] .hero__accent {
  overflow: clip;
}
[data-anim] .hero__accent.accent--one span {
  transform: translateX(-50%);
}
[data-anim] .hero__accent.accent--one span path:nth-child(2) {
  transform: translateX(-100%);
}
[data-anim] .hero__accent.accent--two span {
  transform: translateY(50%);
}
[data-anim] .hero__accent.accent--two span path:nth-child(2) {
  transform: translateY(100%);
}
[data-anim] .section__inner {
  opacity: 0;
}
[data-anim] .section__inner:before {
  transform-origin: left;
  clip-path: inset(0 100% 0 0);
}
[data-anim] .media:not(.media--no-overlay):after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, #000 50%);
  background-position: top right;
  background-size: 400%;
  content: "";
}
[data-anim] .media:not(.media--no-overlay) img,
[data-anim] .media:not(.media--no-overlay) video {
  transform: scale(1.1);
}
[data-anim=true] .text--subtitle {
  background-position: left;
  transition: 1.5s ease;
}
[data-anim=true] .text--split .char > span {
  transform: translateY(0);
}
[data-anim=true] .hero__accent span {
  display: inline-block;
}
[data-anim=true] .hero__accent svg {
  overflow: visible;
}
[data-anim=true] .hero__accent svg path {
  transform: translate(0, 0) !important;
}
[data-anim=true] .hero__accent svg path {
  transition: transform 1s cubic-bezier(0.3, 0.04, 0.03, 1) 0.3s;
}
[data-anim=true] .hero__accent.accent--one span {
  transform: translateX(0);
  transition: transform 2s cubic-bezier(0.41, 0.05, 0, 1);
}
[data-anim=true] .hero__accent.accent--two span {
  transform: translateY(0);
  transition: transform 2s cubic-bezier(0.41, 0.05, 0, 1);
}
[data-anim=true] .media:not(.media--no-overlay):after {
  transition: 2s ease;
  background-position: bottom left;
}
[data-anim=true] .section__inner {
  opacity: 1;
  transition: 1s ease;
}
[data-anim=true] .section__inner:before {
  clip-path: inset(0 0 0 0);
  transition: 1s cubic-bezier(0.65, 0, 0.4, 1);
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-0.5rem);
  }
  50% {
    transform: translateX(0.5rem);
  }
  75% {
    transform: translateX(-0.5rem);
  }
  100% {
    transform: translateX(0);
  }
}
.vh {
  min-height: auto;
}
@media (min-width: 992px) {
  .vh.vh--25 {
    height: auto;
    min-height: 25vh;
  }
  .vh.vh--33 {
    height: auto;
    min-height: 33vh;
  }
  .vh.vh--50 {
    height: auto;
    min-height: 50vh;
  }
  .vh.vh--75 {
    height: auto;
    min-height: 75vh;
  }
  .vh.vh--100 {
    height: auto;
    min-height: 100vh;
  }
}
.container-fluid.container--max, .container--max.container-sm, .container--max.container-md, .container--max.container-lg, .container--max.container-xl {
  max-width: 137.4rem;
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}
.text-justify {
  text-align: justify !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-lighter {
  font-weight: lighter !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.font-weight-bolder {
  font-weight: bolder !important;
}
.font-italic {
  font-style: italic !important;
}
.text-white {
  color: #fff !important;
}
.text-primary {
  color: #007bff !important;
}
a.text-primary:hover, a.text-primary:focus {
  color: rgb(0, 86.1, 178.5) !important;
}
.text-secondary {
  color: #6c757d !important;
}
a.text-secondary:hover, a.text-secondary:focus {
  color: rgb(72.5407725322, 78.5858369099, 83.9592274678) !important;
}
.text-success {
  color: #28a745 !important;
}
a.text-success:hover, a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}
.text-info {
  color: #17a2b8 !important;
}
a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}
.text-warning {
  color: #ffc107 !important;
}
a.text-warning:hover, a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}
.text-danger {
  color: #dc3545 !important;
}
a.text-danger:hover, a.text-danger:focus {
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}
.text-dark {
  color: #343a40 !important;
}
a.text-dark:hover, a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}
.text-body {
  color: #212529 !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.text-reset {
  color: inherit !important;
}
h1,
.h2,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-style: normal;
  font-weight: 400;
  font-family: "Basic Commercial LT", Helvetica, sans-serif;
  font-optical-sizing: auto;
  margin-bottom: 0.5em;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1.font--secondary,
.h2.font--secondary,
h2.font--secondary,
.h2.font--secondary,
h3.font--secondary,
.h3.font--secondary,
h4.font--secondary,
.h4.font--secondary,
h5.font--secondary,
.h5.font--secondary {
  text-transform: uppercase;
}
h1,
.h1 {
  font-size: max(4.3rem, min(5vw, 9.6rem));
}
h1.font--secondary,
.h1.font--secondary {
  font-size: max(4.3rem, min(5vw, 6.4rem));
  line-height: 1.05;
}
h2,
.h2 {
  font-size: max(3.4rem, min(5vw, 5.6rem));
}
h3,
.h3 {
  font-size: max(2.6rem, min(5vw, 3.2rem));
}
.text--subtitle {
  display: inline-flex;
  font-style: normal;
  font-weight: 500;
  font-family: "Roboto Mono", Courier, monospace;
  font-optical-sizing: auto;
  margin-bottom: 1.09em;
  font-weight: 400;
  font-size: max(1.1rem, min(3vw, 2.2rem));
  line-height: 1.06;
  text-transform: uppercase;
}
.font--primary {
  font-style: normal;
  font-weight: 400;
  font-family: "Basic Commercial LT", Helvetica, sans-serif;
  font-optical-sizing: auto;
}
.font--secondary {
  font-style: normal;
  font-weight: 500;
  font-family: "Roboto Mono", Courier, monospace;
  font-optical-sizing: auto;
}
p {
  margin-bottom: 1.15em;
  font-size: max(1.6rem, min(2vw, 2rem));
  line-height: 1.25;
}
.text--split .word {
  display: inline-block;
  margin-right: 0.275em;
}
.text--split.text-center .word {
  margin: 0 0.1375em;
}
.text--split .char {
  display: inline-block;
  will-change: transform;
  margin-bottom: -0.1em;
  overflow: hidden;
}
.text--split .char:nth-child(1) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(2) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(3) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(4) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(5) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(6) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(7) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(8) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(9) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(10) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(11) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(12) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(13) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(14) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(15) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(16) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(17) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(18) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(19) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(20) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(21) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(22) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(23) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(24) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(25) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(26) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(27) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(28) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(29) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(30) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(31) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(32) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(33) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(34) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(35) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(36) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(37) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(38) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(39) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(40) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(41) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(42) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(43) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(44) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(45) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(46) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(47) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(48) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(49) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(50) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(51) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(52) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(53) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(54) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(55) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(56) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(57) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(58) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(59) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(60) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(61) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(62) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(63) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(64) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(65) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(66) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(67) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(68) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(69) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(70) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(71) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(72) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(73) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(74) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(75) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(76) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(77) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(78) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(79) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(80) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(81) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(82) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(83) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(84) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(85) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(86) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(87) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(88) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(89) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(90) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(91) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(92) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(93) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(94) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(95) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(96) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(97) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(98) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(99) > span {
  transition-delay: var(--delay);
}
.text--split .char:nth-child(100) > span {
  transition-delay: var(--delay);
}
.text--split .char > span {
  display: inline-block;
}
.text--split .space > span {
  display: inline-block;
  width: 0.25em;
}
html {
  background-color: #000;
  font-size: 62.5%;
}
body {
  background: #000;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.8;
}
ul {
  margin: 0;
  padding: 0;
}
main {
  position: relative;
  z-index: 5;
  overflow: hidden;
}
section {
  position: relative;
  background: #000;
  padding-top: max(4rem, min(7vw, 8rem));
  padding-bottom: max(4rem, min(7vw, 8rem));
  color: #fff;
}
section .content__wrap {
  padding: 0 0.5rem;
}
section .section__content .content__wrap {
  height: 100%;
}
section:not(.section--no-border):before {
  position: absolute;
  right: 1.5rem;
  bottom: 0;
  left: 1.5rem;
  z-index: 1;
  margin: 0 auto;
  border-bottom: 0.1rem dashed #fff;
  max-width: 134.4rem;
  height: 0.2rem;
  content: "";
}
img,
video,
svg {
  vertical-align: bottom;
}
::-moz-selection {
  background: rgba(249, 2, 0, 0.3);
  color: #fff;
}
::selection {
  background: rgba(249, 2, 0, 0.3);
  color: #fff;
}
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  transition: all 0.3s ease;
}
body.admin-bar header {
  top: 3.2rem;
}
body.header--active header {
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
  background-color: rgba(0, 0, 0, 0.5);
}
.header__notification {
  position: absolute;
  top: calc(100% + 2rem);
  right: 0;
  left: 0;
  margin: 0 auto;
}
.header__notification-wrap {
  display: flex;
  position: relative;
  justify-content: center;
  margin: 0 auto;
  border-radius: 5rem;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  max-width: 60rem;
  pointer-events: none;
  font-weight: 500;
}
.notification--hide .header__notification-wrap {
  transform: translateY(-50%);
  transition: 1s ease;
  opacity: 0;
}
.header__notification-wrap span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.header__notification-wrap span:before {
  margin-right: 0.33em;
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='100' height='100' viewBox='0 0 64 64'%3E%3Cpath d='M 32 10 C 19.85 10 10 19.85 10 32 C 10 44.15 19.85 54 32 54 C 44.15 54 54 44.15 54 32 C 54 19.85 44.15 10 32 10 z M 32 14 C 41.941 14 50 22.059 50 32 C 50 41.941 41.941 50 32 50 C 22.059 50 14 41.941 14 32 C 14 22.059 22.059 14 32 14 z M 32 21 C 30.343 21 29 22.343 29 24 C 29 25.657 30.343 27 32 27 C 33.657 27 35 25.657 35 24 C 35 22.343 33.657 21 32 21 z M 32 30 C 30.895 30 30 30.896 30 32 L 30 42 C 30 43.104 30.895 44 32 44 C 33.105 44 34 43.104 34 42 L 34 32 C 34 30.896 33.105 30 32 30 z'%3E%3C/path%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='100' height='100' viewBox='0 0 64 64'%3E%3Cpath d='M 32 10 C 19.85 10 10 19.85 10 32 C 10 44.15 19.85 54 32 54 C 44.15 54 54 44.15 54 32 C 54 19.85 44.15 10 32 10 z M 32 14 C 41.941 14 50 22.059 50 32 C 50 41.941 41.941 50 32 50 C 22.059 50 14 41.941 14 32 C 14 22.059 22.059 14 32 14 z M 32 21 C 30.343 21 29 22.343 29 24 C 29 25.657 30.343 27 32 27 C 33.657 27 35 25.657 35 24 C 35 22.343 33.657 21 32 21 z M 32 30 C 30.895 30 30 30.896 30 32 L 30 42 C 30 43.104 30.895 44 32 44 C 33.105 44 34 43.104 34 42 L 34 32 C 34 30.896 33.105 30 32 30 z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: currentColor;
  display: inline-flex;
  width: 1.5em;
  height: 1.5em;
}
.btn,
button {
  display: inline-flex;
  font-style: normal;
  font-weight: 500;
  font-family: "Roboto Mono", Courier, monospace;
  font-optical-sizing: auto;
  align-items: center;
  border: 0;
  color: #000;
  font-size: max(1.1rem, min(2vw, 1.6rem));
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.btn:focus,
button:focus {
  outline: 0;
}
.btn:hover,
button:hover {
  cursor: pointer;
}
.btn.btn--search,
button.btn--search {
  position: relative;
  padding: max(1.1rem, min(2vw, 1.8rem)) max(1rem, min(1.1vw, 2.3rem));
}
.btn.btn--search > span,
button.btn--search > span {
  background-color: transparent;
  padding: 0;
}
.btn.btn--search:after,
button.btn--search:after {
  display: inline-block;
  right: 0;
  left: 0;
  margin: auto;
  width: 1.7rem;
  height: 1.7rem;
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.5 6.5C11.5 9.26142 9.26142 11.5 6.5 11.5C3.73858 11.5 1.5 9.26142 1.5 6.5C1.5 3.73858 3.73858 1.5 6.5 1.5C9.26142 1.5 11.5 3.73858 11.5 6.5ZM10.8074 11.368C9.66054 12.3835 8.15226 13 6.5 13C2.91015 13 0 10.0899 0 6.5C0 2.91015 2.91015 0 6.5 0C10.0899 0 13 2.91015 13 6.5C13 7.89646 12.5596 9.19007 11.8102 10.2495L17.5303 15.9697L16.4697 17.0303L10.8074 11.368Z' fill='black'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.5 6.5C11.5 9.26142 9.26142 11.5 6.5 11.5C3.73858 11.5 1.5 9.26142 1.5 6.5C1.5 3.73858 3.73858 1.5 6.5 1.5C9.26142 1.5 11.5 3.73858 11.5 6.5ZM10.8074 11.368C9.66054 12.3835 8.15226 13 6.5 13C2.91015 13 0 10.0899 0 6.5C0 2.91015 2.91015 0 6.5 0C10.0899 0 13 2.91015 13 6.5C13 7.89646 12.5596 9.19007 11.8102 10.2495L17.5303 15.9697L16.4697 17.0303L10.8074 11.368Z' fill='black'/%3E%3C/svg%3E%0A");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: currentColor;
}
@media (max-width: 767.98px) {
  .btn.btn--search:after,
  button.btn--search:after {
    margin-left: 0.5em;
    width: 1em;
    height: 1em;
  }
}
.btn.btn--search:hover,
button.btn--search:hover {
  background: #f90200;
}
.btn.btn--link,
button.btn--link {
  color: #fff;
}
.btn.btn--link > span,
button.btn--link > span {
  background-color: transparent;
  padding: 0;
}
.btn.btn--link:hover,
button.btn--link:hover {
  color: #f90200;
}
.btn > span,
button > span {
  border-radius: 5rem;
  background-color: #f90200;
  padding: max(1.1rem, min(2vw, 1.8rem)) max(1.5rem, min(2vw, 2.3rem));
}
.btn.btn--arrow, .btn.frm_button_submit,
button.btn--arrow,
button.frm_button_submit {
  position: relative;
  transition: cubic-bezier(0.65, 0, 0.4, 1) 0.45s;
}
.btn.btn--arrow:after, .btn.frm_button_submit:after,
button.btn--arrow:after,
button.frm_button_submit:after {
  margin-left: 0.6rem;
  border-radius: 5rem;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='104px' height='52px' viewBox='0 0 104 52' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' fill='%23000000' fill-rule='nonzero'%3E%3Cpolygon id='Combined-Shape' points='45.4204835 19.4 51.4204835 25.4 51.9508136 25.9303301 45.4204835 32.4606602 44.3598233 31.4 49.078 26.6803301 35 26.6803301 35 25.1803301 49.079 25.1803301 44.3598233 20.4606602'%3E%3C/polygon%3E%3Cpolygon id='Combined-Shape' points='79.4704837 19.4 85.4704839 25.4 86.000814 25.9303301 79.4704837 32.4606602 78.4098235 31.4 83.1280004 26.6803301 69.05 26.6803301 69.05 25.1803301 83.1290004 25.1803301 78.4098235 20.4606602'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: center right;
  background-size: 200%;
  background-repeat: no-repeat;
  background-color: #f90200;
  width: 3.25em;
  height: 3.25em;
  content: "";
  transition: cubic-bezier(0.65, 0, 0.4, 1) 0.45s;
  overflow: hidden;
}
.btn.btn--arrow:hover, .btn.frm_button_submit:hover,
button.btn--arrow:hover,
button.frm_button_submit:hover {
  cursor: pointer;
}
.btn.btn--arrow:hover:after, .btn.frm_button_submit:hover:after,
button.btn--arrow:hover:after,
button.frm_button_submit:hover:after {
  transform: translateX(33%);
  background-position: center right 68%;
}
.btn.btn--outline,
button.btn--outline {
  color: #fff;
}
.btn.btn--outline span,
button.btn--outline span {
  border: 0.1rem solid currentColor;
  background-color: transparent;
}
.btn.btn--outline:hover span,
button.btn--outline:hover span {
  background-color: #fff;
  color: #000;
}
.btn.btn--light,
button.btn--light {
  color: #000;
}
.btn.btn--light span,
button.btn--light span {
  background-color: #fff;
}
.btn.btn--light:hover span,
button.btn--light:hover span {
  background-color: #f90200;
}
form {
  width: 100%;
  color: #fff;
}
form input,
form textarea,
form select {
  color: #fff;
}
form input:not([type=checkbox]):not([type=radio]):not(.multi-select-search),
form textarea {
  vertical-align: bottom;
  margin-bottom: 1.2rem;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  background: #000;
  padding: max(1.5rem, min(4vw, 3rem)) max(2rem, min(4vw, 2.4rem));
  width: 100%;
}
form input:not([type=checkbox]):not([type=radio]):not(.multi-select-search):focus,
form textarea:focus {
  outline: 0;
  border-color: #fff;
}
form button {
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 5rem;
  background-color: #f90200;
  background-color: #fff;
  padding: max(1.1rem, min(2vw, 1.8rem)) max(1.5rem, min(2vw, 2.3rem));
}
form button:not(.btn--search) {
  margin-right: 4em;
}
form button:not(.btn--search):after {
  background-color: #fff !important;
}
form button:not(.btn--search):after {
  position: absolute;
  right: calc(-3.25em - 0.6rem);
}
form textarea {
  border-radius: max(1.8rem, min(4vw, 3.6rem));
  min-height: 14.4rem;
}
form ::-moz-placeholder {
  color: #fff;
}
form ::placeholder {
  color: #fff;
}
form label[\:has\(input\[type\%3Dradio\]\)] {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 2em;
  line-height: 1;
}
form label:has(input[type=radio]) {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 2em;
  line-height: 1;
}
form label[\:has\(input\[type\%3Dradio\]\)]:last-of-type {
  margin-bottom: 0;
}
form label:has(input[type=radio]):last-of-type {
  margin-bottom: 0;
}
form label[\:has\(input\[type\%3Dradio\]\)]:before, form label[\:has\(input\[type\%3Dradio\]\)]:after {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  content: "";
}
form label:has(input[type=radio]):before, form label:has(input[type=radio]):after {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  content: "";
}
form label[\:has\(input\[type\%3Dradio\]\)]:after {
  position: absolute;
  right: auto;
  left: 0.4rem;
  transform: scale(0);
  background: #f90200;
  width: 1.2rem;
  height: 1.2rem;
  transition: 0.25s ease transform;
}
form label:has(input[type=radio]):after {
  position: absolute;
  right: auto;
  left: 0.4rem;
  transform: scale(0);
  background: #f90200;
  width: 1.2rem;
  height: 1.2rem;
  transition: 0.25s ease transform;
}
form label[\:has\(input\[type\%3Dradio\]\)]:before {
  margin-right: 1rem;
  border: 0.1rem solid #fff;
}
form label:has(input[type=radio]):before {
  margin-right: 1rem;
  border: 0.1rem solid #fff;
}
form label[\:has\(input\[type\%3Dradio\]\)] input[type=radio] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
}
form label:has(input[type=radio]) input[type=radio] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
}
form label[\:has\(input\[type\%3Dradio\]\)]:hover {
  cursor: pointer;
}
form label:has(input[type=radio]):hover {
  cursor: pointer;
}
form label[\:has\(input\[type\%3Dradio\]\)] span {
  line-height: 1;
}
form label:has(input[type=radio]) span {
  line-height: 1;
}
form label[\:has\(input\[type\%3Dradio\]\)][\:has\(input\[type\%3Dradio\]\:checked\)]:after {
  transform: scale(1);
}
form label:has(input[type=radio]):has(input[type=radio]:checked):after {
  transform: scale(1);
}
form label[\:has\(input\[type\%3Dradio\]\)][\:has\(input\[type\%3Dradio\]\:checked\)]:before {
  border-color: #f90200;
}
form label:has(input[type=radio]):has(input[type=radio]:checked):before {
  border-color: #f90200;
}
form label[\:has\(input\[type\%3Dradio\]\)][\:has\(input\[type\%3Dradio\]\:not\(\:checked\)\)]:after {
  background: #fff;
}
form label:has(input[type=radio]):has(input[type=radio]:not(:checked)):after {
  background: #fff;
}
form label[\:has\(input\[type\%3Dradio\]\)][\:has\(input\[type\%3Dradio\]\:not\(\:checked\)\)]:hover:after {
  transform: scale(0.75);
}
form label:has(input[type=radio]):has(input[type=radio]:not(:checked)):hover:after {
  transform: scale(0.75);
}
.frm_forms p {
  margin-bottom: 0;
  text-align: center;
}
.hero {
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .hero {
    min-height: 60rem;
    max-height: 100rem;
  }
}
.hero p {
  font-size: max(1.8rem, min(2vw, 2.4rem));
}
.hero .section__content {
  display: flex;
  padding-top: 13rem;
  padding-bottom: 7rem;
}
.hero .section__content .content__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 0;
  max-width: 50rem;
}
@media (min-width: 992px) {
  .hero .section__content .content__wrap {
    height: 57%;
  }
}
.hero__accent {
  position: absolute;
  z-index: 1;
}
.hero__accent.accent--one {
  top: max(2rem, min(5vw, 5rem));
  left: 0;
  transform: translateX(-4vw);
}
.hero__accent.accent--one svg {
  width: max(12rem, min(19vw, 28.5rem));
  height: 100%;
}
.hero__accent.accent--two {
  right: 0;
  bottom: 0;
  transform: translateY(15%) translateX(20%);
}
.hero__accent.accent--two svg {
  width: max(17rem, min(27vw, 40.4rem));
  height: 100%;
}
.hero__gallery {
  position: relative;
  margin-bottom: 2.5rem;
}
.hero__gallery .media {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.1);
  opacity: 0;
  width: 100%;
}
.hero__gallery .media.item--active {
  position: relative;
  opacity: 1;
}
.hero__gallery img,
.hero__gallery video {
  transform: scale(1.3);
  width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__gallery-wrap {
  max-height: 90rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero__gallery-wrap {
    width: 108%;
  }
}
.inline .content__wrap > div:last-child {
  max-width: 54rem;
}
.inline h2 {
  margin-bottom: max(10rem, min(18vw, 30rem));
}
.inline__media {
  display: flex;
}
.inline__media img,
.inline__media video {
  min-width: 17rem;
}
.inline__media .media {
  margin: auto 0 5rem auto;
  border-radius: 50rem;
}
.media {
  position: relative;
  overflow: hidden;
}
.cards {
  padding-top: 0;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .cards {
    padding-bottom: 10rem;
  }
}
.cards__entries {
  color: #000;
}
.cards__entries .btn {
  margin-top: 4rem;
}
.cards__entries .pin-spacer {
  flex-basis: 33.333% !important;
  width: 33.333% !important;
}
.cards__entry {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .cards__entry {
    margin-top: var(--margin);
  }
}
.cards__entry .media {
  margin-bottom: max(4rem, min(4vw, 8rem));
  width: 100%;
}
.cards__entry .media img,
.cards__entry .media video {
  width: 100%;
}
.cards__entry p {
  margin-bottom: 0;
}
.cards__entry .content__wrap {
  max-width: 35rem;
}
@media (max-width: 767.98px) {
  .cards__entry .content__wrap {
    padding-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .cards__entry-inner {
    margin-bottom: 7.5rem;
  }
}
.cards__entry-wrap {
  border-radius: max(0.6rem, min(4vw, 0.8rem));
  background-color: #f90200;
  padding: max(2rem, min(4vw, 2.4rem));
}
@media (min-width: 768px) {
  .cards__entry-wrap {
    min-height: 55rem;
  }
}
.filter:before {
  visibility: hidden;
}
.filter[\:has\(.filter__results\)] {
  visibility: visible;
}
.filter:has(.filter__results) {
  visibility: visible;
}
.filter__intro {
  position: relative;
  z-index: 10;
  background-position: top center;
  background-size: cover;
}
.filter__intro .content__wrap {
  margin: 0 auto;
  max-width: 82rem;
}
.filter__content {
  margin-top: max(1.5rem, min(7vw, 3rem));
  margin-bottom: max(5rem, min(7vw, 10rem));
}
@media (max-width: 767.98px) {
  .filter__options.submit__form .content__wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.filter__options.submit__form .multi-select__wrap {
  margin-bottom: 0.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .filter__options.submit__form .multi-select__wrap {
    width: 33.333%;
  }
}
.filter__options.submit__form .content__wrap {
  display: flex;
  gap: 0.5rem;
  border-radius: max(5rem, min(4vw, 10rem));
  max-width: 137.4rem;
}
.filter__options.submit__form .content__wrap .multi-select .multi-select-header {
  border-color: transparent;
}
.filter__options.submit__form .content__wrap .multi-select[focus-within] .multi-select-header, .filter__options.submit__form .content__wrap .multi-select:focus .multi-select-header {
  border-color: #fff;
}
.filter__options.submit__form .content__wrap .multi-select:focus-within .multi-select-header, .filter__options.submit__form .content__wrap .multi-select:focus .multi-select-header {
  border-color: #fff;
}
.filter__results {
  padding-top: max(4.5rem, min(2vw, 9rem));
  font-style: normal;
  font-weight: 500;
  font-family: "Roboto Mono", Courier, monospace;
  font-optical-sizing: auto;
  text-transform: uppercase;
}
.filter__results-entry {
  position: relative;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.filter__results-entry:after {
  display: inline-block;
  position: absolute;
  right: 1.5rem;
  bottom: 0;
  left: 1.5rem;
  background-color: #fff;
  height: 0.1rem;
  content: "";
}
.filter__results-entry-col {
  display: flex;
  align-items: center;
}
.filter__results-entry-col .btn:last-child {
  margin-left: 1rem;
}
.filter__results-entry-col.filter--contact {
  margin-top: max(2rem, min(4vw, 3rem));
}
.filter__avatar {
  display: inline-block;
  position: relative;
  margin-right: max(2rem, min(4vw, 5rem));
  border-radius: 10rem;
  background-color: #f90200;
  width: max(4rem, min(4vw, 6rem));
  height: max(4rem, min(4vw, 6rem));
}
.filter__avatar:after {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  content: attr(data-normal);
  content: attr(data-initial);
  color: #000;
  font-size: 1em;
  line-height: 1;
  text-transform: uppercase;
}
.submit {
  padding-bottom: 0;
}
.submit__intro .content__wrap {
  margin: 0 auto;
  max-width: 56rem;
}
.submit__form {
  padding-bottom: max(8rem, min(4vw, 16rem));
}
@media (max-width: 767.98px) {
  .submit__form {
    margin-top: 2rem;
  }
}
.submit__form .content__wrap {
  -webkit-backdrop-filter: blur(5rem);
          backdrop-filter: blur(5rem);
  margin: 0 auto;
  border-radius: max(2.5rem, min(4vw, 5rem));
  padding: max(3rem, min(4vw, 6.4rem)) max(2.5rem, min(4vw, 8rem));
  max-width: 89rem;
}
.multi-select__wrap {
  margin: 0 auto;
  width: 100%;
  font-weight: 400;
}
.multi-select__wrap > select {
  display: none;
}
.multi-select__wrap > div {
  width: 100%;
}
.multi-select__wrap input {
  border: 0;
  background-color: transparent;
  color: #fff;
}
.multi-select {
  display: flex;
  position: relative;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  font-size: max(1.1rem, min(2vw, 1.6rem));
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.multi-select.field--error {
  animation: 0.5s cubic-bezier(0.59, 0.08, 0.385, 1) shake;
}
.multi-select.field--error .multi-select-header {
  border-color: #f90200;
}
.multi-select.field--error .multi-select-header:after {
  background-color: #f90200;
}
.multi-select.field--error .multi-select-header .multi-select-header-placeholder {
  color: #f90200;
}
.multi-select .multi-select-header-inner {
  display: flex;
  position: relative;
  align-items: center;
  gap: 0.7rem;
  background: #000;
  padding: 0 max(1.5rem, min(0.75vw, 2rem));
  width: 100%;
  height: max(3.5rem, min(6vw, 5.3rem));
  overflow: scroll;
}
.multi-select .multi-select-header-inner::-webkit-scrollbar {
  display: none;
}
.multi-select .multi-select-header {
  border: 0.1rem solid #dee2e6;
  overflow: hidden;
  line-height: 1;
}
.multi-select .multi-select-header:before {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  bottom: 0.1rem;
  z-index: 1;
  border-radius: 0 5rem 5rem 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.4) 40%, 40%, rgb(0, 0, 0) 40%, rgb(0, 0, 0));
  width: 6rem;
  content: "";
}
.multi-select .multi-select-header::after {
  display: block;
  position: absolute;
  right: 1.5rem;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L8.5 9L16 1' stroke='white'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L8.5 9L16 1' stroke='white'/%3E%3C/svg%3E%0A");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  content: "";
}
.multi-select .multi-select-header.multi-select-header-active {
  border-color: rgb(192.9827586207, 200.5, 208.0172413793);
}
.multi-select .multi-select-header.multi-select-header-active::after {
  transform: rotate(180deg);
}
.multi-select .multi-select-header.multi-select-header-active + .multi-select-options {
  display: flex;
}
.multi-select .multi-select-header .multi-select-header-placeholder {
  color: rgb(101.2297297297, 113.5, 125.7702702703);
}
.multi-select .multi-select-header .multi-select-header-option {
  display: inline-block;
  position: relative;
  border-radius: 5rem;
  background-color: #f90200;
  padding: 0.5rem 0.75rem 0.6rem;
  min-width: 7rem;
  max-width: 12rem;
  overflow: hidden;
  color: #000;
  font-size: inherit;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-select .multi-select-header .multi-select-header-option:last-of-type {
  margin-right: 3rem;
}
.multi-select .multi-select-header .multi-select-header-max {
  display: none;
  margin-right: 3rem;
  color: rgb(101.2297297297, 113.5, 125.7702702703);
  font-size: 1rem;
}
.multi-select .multi-select-header.options--max .multi-select-header-max {
  display: block;
}
.multi-select .multi-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  flex-flow: wrap;
  z-index: 999;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  box-sizing: border-box;
  margin-top: 0.5rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
  background-color: rgb(26, 26, 26);
  padding: 0.5rem 0;
  max-height: 22rem;
  overflow-x: hidden;
  overflow-y: auto;
  color: grey;
}
.multi-select .multi-select-options::-webkit-scrollbar {
  display: none;
}
.multi-select .multi-select-options .multi-select-option,
.multi-select .multi-select-options .multi-select-all {
  padding: 0.8rem 1.5rem;
}
.multi-select .multi-select-options .multi-select-option .multi-select-option-radio,
.multi-select .multi-select-options .multi-select-all .multi-select-option-radio {
  margin-right: 1.4rem;
  border: 0.1rem solid #ced4da;
  border-radius: 0.4rem;
  width: 1.6rem;
  height: 1.6rem;
}
.multi-select .multi-select-options .multi-select-option .multi-select-option-text,
.multi-select .multi-select-options .multi-select-all .multi-select-option-text {
  flex: 1;
  box-sizing: border-box;
  overflow: hidden;
  color: inherit;
  line-height: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-select .multi-select-options .multi-select-option.multi-select-selected .multi-select-option-radio,
.multi-select .multi-select-options .multi-select-all.multi-select-selected .multi-select-option-radio {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-color: #f90200;
  background-color: #f90200;
}
.multi-select .multi-select-options .multi-select-option.multi-select-selected .multi-select-option-radio::after,
.multi-select .multi-select-options .multi-select-all.multi-select-selected .multi-select-option-radio::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.903' height='19.395'%3E%3Cpath d='M22.903 2.828 20.075 0 6.641 13.435 3.102 9.09 0 11.616l6.338 7.779L22.903 2.828z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.903' height='19.395'%3E%3Cpath d='M22.903 2.828 20.075 0 6.641 13.435 3.102 9.09 0 11.616l6.338 7.779L22.903 2.828z'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  border-width: 0 0.15em 0.15em 0;
  background: #000;
  width: 1.2rem;
  height: 1rem;
  content: "";
}
.multi-select .multi-select-options .multi-select-option.multi-select-selected .multi-select-option-text,
.multi-select .multi-select-options .multi-select-all.multi-select-selected .multi-select-option-text {
  color: #f90200;
}
.multi-select .multi-select-options .multi-select-option:hover, .multi-select .multi-select-options .multi-select-option:active,
.multi-select .multi-select-options .multi-select-all:hover,
.multi-select .multi-select-options .multi-select-all:active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.multi-select .multi-select-options .multi-select-all {
  border-bottom: 0.1rem solid #f1f3f5;
  border-radius: 0;
}
.multi-select .multi-select-options .multi-select-search {
  margin: 1rem;
  outline: none;
  width: 100%;
}
.multi-select .multi-select-options .multi-select-search::-moz-placeholder {
  color: #b2b5b9;
}
.multi-select .multi-select-options .multi-select-search::placeholder {
  color: #b2b5b9;
}
.multi-select .multi-select-header {
  border-radius: 2.7rem;
}
.multi-select .multi-select-header,
.multi-select .multi-select-option,
.multi-select .multi-select-all {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
}
.onboard {
  position: relative;
  padding-top: 16rem;
  overflow: hidden;
}
.onboard:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(1.4);
  z-index: 10;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, rgb(0, 0, 0) 100%);
  background-position: center;
  background-size: 100%;
  pointer-events: none;
  content: "";
}
@media (min-width: 768px) {
  .onboard:after {
    transform: scale(1.2);
  }
}
@media (min-width: 992px) {
  .onboard:after {
    transform: scale(1);
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgb(0, 0, 0) 100%);
  }
}
.onboard p:not(.text--subtitle) {
  margin: 3em auto;
  text-align: center;
}
.onboard:before {
  display: none;
}
.onboard .content__wrap {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 37rem;
}
@media (min-width: 768px) {
  .onboard .content__wrap {
    padding: 0;
    max-width: 70rem;
  }
}
.onboard fieldset {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
.onboard form::-webkit-scrollbar {
  display: none;
}
.onboard form textarea {
  border: 0.1rem solid #fff;
  padding: 1.5rem 2rem;
  color: #fff;
  text-align: left;
}
.onboard__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.onboard__nav .btn {
  margin: 3em auto;
}
.onboard__nav[\:has\(.btn--link\)] .btn {
  margin: 3em 0;
}
.onboard__nav:has(.btn--link) .btn {
  margin: 3em 0;
}
.onboard__stage {
  display: flex;
  flex-wrap: nowrap;
  width: 600vw;
  width: var(--stage-width, 600vw);
  transition: 1s cubic-bezier(0.3, 0.04, 0.03, 1);
}
.onboard__step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
}
.onboard__field-wrap {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 60rem;
}
.onboard__order {
  font-size: max(1.4rem, min(2vw, 1.8rem));
}
.onboard__order[\:has\(.sortable-chosen\)] li:after {
  opacity: 0 !important;
}
.onboard__order:has(.sortable-chosen) li:after {
  opacity: 0 !important;
}
.onboard__order li {
  margin-bottom: 0.5em;
  background-color: #f90200;
  padding: 0.75rem;
  color: #000;
  font-style: normal;
  font-weight: 500;
  font-family: "Roboto Mono", Courier, monospace;
  font-optical-sizing: auto;
  display: flex;
  position: relative;
  justify-content: center;
}
@media (min-width: 768px) {
  .onboard__order li {
    padding: 1rem;
  }
}
.onboard__order li:nth-child(1):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "1";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(1):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li:nth-child(2):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "2";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(2):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li:nth-child(3):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "3";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(3):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li:nth-child(4):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "4";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(4):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li:nth-child(5):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "5";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(5):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li:nth-child(6):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "6";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(6):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li:nth-child(7):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "7";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(7):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li:nth-child(8):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "8";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(8):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li:nth-child(9):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "9";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(9):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li:nth-child(10):after {
  display: flex;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  justify-content: center;
  align-items: center;
  margin: auto 0 auto auto;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  width: 2rem;
  height: 2rem;
  content: "10";
  color: #000;
  font-size: 0.8rem;
  transition: 0.25s;
  opacity: 1;
}
@media (min-width: 768px) {
  .onboard__order li:nth-child(10):after {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.onboard__order li.sortable-ghost {
  opacity: 0.1;
  background: white;
}
.onboard__order li:hover {
  cursor: grab;
}
.onboard__order li:active {
  cursor: grabbing;
}
.onboard__order li:before {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 2rem;
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg height='16' viewBox='0 0 16 16' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7.375 3.67c0-.645-.56-1.17-1.25-1.17s-1.25.525-1.25 1.17c0 .646.56 1.17 1.25 1.17s1.25-.524 1.25-1.17zm0 8.66c0-.646-.56-1.17-1.25-1.17s-1.25.524-1.25 1.17c0 .645.56 1.17 1.25 1.17s1.25-.525 1.25-1.17zm-1.25-5.5c.69 0 1.25.525 1.25 1.17s-.56 1.17-1.25 1.17-1.25-.525-1.25-1.17.56-1.17 1.25-1.17zm5-3.16c0-.645-.56-1.17-1.25-1.17s-1.25.525-1.25 1.17c0 .646.56 1.17 1.25 1.17s1.25-.524 1.25-1.17zm-1.25 7.49c.69 0 1.25.524 1.25 1.17 0 .645-.56 1.17-1.25 1.17s-1.25-.525-1.25-1.17c0-.646.56-1.17 1.25-1.17zm1.25-3.16c0-.645-.56-1.17-1.25-1.17s-1.25.525-1.25 1.17.56 1.17 1.25 1.17 1.25-.525 1.25-1.17z' fill-rule='evenodd'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg height='16' viewBox='0 0 16 16' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7.375 3.67c0-.645-.56-1.17-1.25-1.17s-1.25.525-1.25 1.17c0 .646.56 1.17 1.25 1.17s1.25-.524 1.25-1.17zm0 8.66c0-.646-.56-1.17-1.25-1.17s-1.25.524-1.25 1.17c0 .645.56 1.17 1.25 1.17s1.25-.525 1.25-1.17zm-1.25-5.5c.69 0 1.25.525 1.25 1.17s-.56 1.17-1.25 1.17-1.25-.525-1.25-1.17.56-1.17 1.25-1.17zm5-3.16c0-.645-.56-1.17-1.25-1.17s-1.25.525-1.25 1.17c0 .646.56 1.17 1.25 1.17s1.25-.524 1.25-1.17zm-1.25 7.49c.69 0 1.25.524 1.25 1.17 0 .645-.56 1.17-1.25 1.17s-1.25-.525-1.25-1.17c0-.646.56-1.17 1.25-1.17zm1.25-3.16c0-.645-.56-1.17-1.25-1.17s-1.25.525-1.25 1.17.56 1.17 1.25 1.17 1.25-.525 1.25-1.17z' fill-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: currentColor;
}
