/**
 * 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;
  }
}
.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: 144rem;
}
.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: #0056b3 !important;
}
.text-secondary {
  color: #6c757d !important;
}
a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}
.text-success {
  color: #28a745 !important;
}
a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}
.text-info {
  color: #17a2b8 !important;
}
a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}
.text-warning {
  color: #ffc107 !important;
}
a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}
.text-danger {
  color: #dc3545 !important;
}
a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}
.text-dark {
  color: #343a40 !important;
}
a.text-dark:hover, a.text-dark:focus {
  color: #121416 !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,
h3,
h4 {
  font: 700 100% "Space Mono", monospace;
}
h1 {
  font-size: max(1.9rem, min(3vw, 3.2rem));
}
h2 {
  font-size: max(2.2rem, min(3vw, 2.8rem));
}
.text--sans {
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
.text--space {
  font-family: "Space Mono", sans-serif;
}
.text--title {
  display: inline-flex;
  margin-bottom: 3rem;
  background: #d7f407;
  padding: 1rem;
  color: #000;
  font-size: max(1rem, min(3vw, 2rem));
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .text--title {
    padding: 0.75rem 1rem;
  }
}
.text--featured {
  font-weight: 600;
  font-size: max(1.6rem, min(3vw, 3.2rem));
}
.text--split div {
  display: inline-flex;
}
.text--split .char {
  display: inline-block;
  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;
  transform: translateY(100%);
  transition: 0.75s cubic-bezier(0.57, 0, 0, 1.01) transform;
}
[data-anim=true] .text--split .char > span, .item--active .text--split .char > span {
  transform: translateY(0);
}
.text--split .space > span {
  display: inline-block;
  width: 0.25em;
}
html {
  background-color: #000;
  font-size: 62.5%;
}
body {
  color: #000;
  line-height: 1.8;
  font: 400 100% "DM Sans", sans-serif;
  font-size: 1.6rem;
}
ul {
  margin: 0;
  padding: 0;
}
a {
  color: currentColor;
  text-decoration: none;
}
img,
video {
  vertical-align: bottom;
}
p {
  margin-bottom: 4rem;
  line-height: 1.65;
}
main {
  position: relative;
  z-index: 5;
  overflow: hidden;
}
main:before {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 5;
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  background: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  content: "";
  transition: 0.25s linear opacity;
  pointer-events: none;
}
.nav--active main:before {
  opacity: 1;
  pointer-events: all;
}
.nav--closing main:before {
  opacity: 0;
  pointer-events: none;
}
section {
  background: #000;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #fff;
}
section.section--light {
  background: #fff;
  color: #000;
}
section.section--trans {
  background-color: transparent;
  color: #000;
}
section.section--gradient {
  position: relative;
  overflow: hidden;
}
section.section--gradient canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.section--gradient > *:not(canvas) {
  position: relative;
  z-index: 1;
}
section .content__wrap a {
  text-decoration: underline;
}
section .content__wrap a:not(.btn):hover {
  color: #a5d108;
}
.section__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.section__background img,
.section__background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
::-moz-selection {
  background: rgba(215, 244, 7, 0.5);
}
::selection {
  background: rgba(215, 244, 7, 0.5);
}
small {
  display: inline-block;
  line-height: 1.3;
}
header {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
  font: 700 100% "Space Mono", monospace;
}
.nav--active header {
  pointer-events: all;
}
body.admin-bar header {
  top: 4.7rem;
}
.header__container {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 1.2rem 0.2rem;
  pointer-events: all;
  color: #000;
  transition: 0.25s border-color;
  border-bottom: 0.2rem solid transparent;
}
.header--stroke .header__container {
  border: 0.3rem solid #000;
}
body.nav--active .header__container {
  border-color: #000;
}
body.nav--closing:not(.header--stroke) .header__container {
  transition: 0.125s border-color 0.125s;
  border-color: transparent;
}
.header__branding {
  display: inline-flex;
}
.header__branding svg {
  width: 100%;
  max-width: 19.5rem;
  height: 1.9rem;
}
@media (max-width: 767.98px) {
  .header__branding svg {
    max-width: 12rem;
  }
}
.header__branding a {
  display: inline-flex;
}
.header__branding a:hover svg path {
  fill: #a5d108;
}
.header__socials {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .header__socials .socials {
    margin: 2rem auto;
  }
}
.header__nav {
  position: relative;
  transform: translateY(-100%);
  z-index: 0;
  background-color: #fff;
  padding: 1.2rem 0.2rem;
  transition: 0.33s cubic-bezier(1, 0.01, 0.43, 0.95) transform;
}
@media (max-width: 767.98px) {
  .header__nav {
    flex-direction: column-reverse;
  }
}
.header--stroke .header__nav {
  border: 0.3rem solid #000;
  border-top: 0;
}
body.nav--active .header__nav {
  transform: translateY(0);
}
body.nav--closing .header__nav {
  transform: translateY(-100%);
}
.header__toggle {
  display: flex;
  position: relative;
  justify-content: flex-end;
  align-items: center;
}
.header__toggle span {
  display: inline-flex;
  position: relative;
  justify-content: center;
  min-width: 5rem;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .header__toggle span {
    min-width: 4rem;
  }
}
.header__toggle span:before, .header__toggle span:after {
  display: inline-flex;
  transition: 0.33s cubic-bezier(1, 0.01, 0.43, 0.95) transform;
}
.header__toggle span:before {
  content: "menu";
}
.header__toggle span:after {
  position: absolute;
  left: 0;
  transform: translateY(110%);
  content: "close";
}
body.nav--active .header__toggle span:before {
  transform: translateY(-100%);
}
body.nav--active .header__toggle span:after {
  transform: translateY(0);
}
body.nav--closing .header__toggle span:before {
  transform: translateY(0);
}
body.nav--closing .header__toggle span:after {
  transform: translateY(110%);
}
footer {
  border-top: 0.3rem solid #000;
  background: #fff;
  padding-top: 8rem;
  padding-bottom: 6rem;
  overflow: hidden;
}
footer a:hover {
  color: #a5d108;
}
.footer__top {
  padding-bottom: 14rem;
}
@media (max-width: 767.98px) {
  .footer__top {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767.98px) {
  .footer__brand-type {
    margin-bottom: 3rem;
  }
}
.footer__brand-type svg {
  width: 13rem;
}
.footer__brand-ident svg {
  width: 13rem;
}
.footer__contact {
  display: flex;
  align-items: center;
  font-size: 2rem;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .footer__contact {
    justify-content: center;
    margin-bottom: 4rem;
  }
}
.footer__legals {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  align-items: center;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .footer__legals {
    justify-content: flex-end;
    margin-top: 0;
  }
}
nav#header {
  display: flex;
}
@media (max-width: 767.98px) {
  nav#header {
    margin: 2rem 0 1rem;
  }
}
nav#header ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  margin: 0 auto;
}
@media (min-width: 768px) {
  nav#header ul {
    flex-direction: row;
    margin-right: 0;
    margin-left: auto;
  }
}
nav#header ul li {
  margin-left: max(1rem, min(2.5vw, 5rem));
}
@media (max-width: 767.98px) {
  nav#header ul li {
    margin-bottom: 1rem;
    margin-left: 0;
  }
}
nav#header ul a:hover {
  color: #a5d108;
}
.btn,
button {
  text-decoration: none !important;
}
.btn,
button {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  color: #000;
  font: 700 100% "Space Mono", monospace;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .btn,
  button {
    font-size: 1.3rem;
  }
}
.btn.btn--disabled,
button.btn--disabled {
  background-color: #ddd !important;
}
.btn.btn--disabled,
button.btn--disabled {
  pointer-events: none;
}
.btn.btn--default,
button.btn--default {
  border: 0.3rem solid #000;
  background-color: #d7f407;
  padding: 0.5rem 1.5rem;
  transition: 0.2s ease;
  margin-right: 0.5rem;
  box-shadow: 0.5rem 0.5rem 0 0;
}
.btn.btn--default:hover,
button.btn--default:hover {
  transform: translate(0.25rem, 0.25rem);
  box-shadow: 0.25rem 0.25rem 0 0;
}
.btn.btn--default:active,
button.btn--default:active {
  transform: translate(0.5rem, 0.5rem);
  box-shadow: 0 0 0 0;
}
.btn.btn--default.btn--lg,
button.btn--default.btn--lg {
  width: 100%;
  max-width: 40rem;
  font-size: 2.2rem;
}
.btn.btn--arrow, .btn.btn--arrow-prev, .btn.btn--arrow.carousel--prev, .btn.carousel--prev.btn--arrow-next, .btn.carousel--prev.carousel__button-next, .btn.carousel__button-prev, .btn.carousel__button.carousel--prev, .btn.carousel--next.btn--arrow-prev, .btn.carousel--next.carousel__button-prev, .btn.carousel--prev.btn--arrow-prev, .btn.carousel--prev.carousel__button-prev, .btn.btn--arrow-next, .btn.btn--arrow.carousel--next, .btn.carousel__button-next, .btn.carousel__button.carousel--next, .btn.carousel__button,
button.btn--arrow,
button.btn--arrow-prev,
button.btn--arrow.carousel--prev,
button.carousel--prev.btn--arrow-next,
button.carousel--prev.btn--arrow.carousel--next,
button.carousel--prev.carousel__button-next,
button.carousel--prev.carousel__button.carousel--next,
button.carousel__button-prev,
button.carousel__button.carousel--prev,
button.carousel--next.btn--arrow-prev,
button.carousel--next.carousel--prev.btn--arrow-next,
button.carousel--next.carousel--prev.carousel__button-next,
button.carousel--next.carousel__button-prev,
button.carousel--prev.btn--arrow-prev,
button.carousel--prev.btn--arrow,
button.carousel--prev.carousel__button-prev,
button.carousel--prev.carousel__button,
button.carousel--prev.carousel--next.btn--arrow-prev,
button.carousel--prev.carousel--next.carousel__button-prev,
button.btn--arrow-next,
button.btn--arrow.carousel--next,
button.carousel--next.btn--arrow-prev,
button.carousel--next.carousel__button-prev,
button.carousel--next.btn--arrow-prev,
button.carousel--next.carousel__button-prev,
button.carousel__button-next,
button.carousel__button.carousel--next,
button.carousel__button {
  color: #fff;
}
section:not(.events) .btn.btn--arrow.swiper-button-disabled, section:not(.events) .btn.swiper-button-disabled.btn--arrow-prev, section:not(.events) .btn.swiper-button-disabled.carousel__button-prev, section:not(.events) .btn.swiper-button-disabled.btn--arrow-next, section:not(.events) .btn.swiper-button-disabled.carousel__button-next, section:not(.events) .btn.carousel__button.swiper-button-disabled,
section:not(.events) button.btn--arrow.swiper-button-disabled,
section:not(.events) button.swiper-button-disabled.btn--arrow-prev,
section:not(.events) button.swiper-button-disabled.carousel__button-prev,
section:not(.events) button.swiper-button-disabled.btn--arrow-next,
section:not(.events) button.swiper-button-disabled.carousel__button-next,
section:not(.events) button.carousel__button.swiper-button-disabled {
  opacity: 0.4;
  filter: saturate(0);
  pointer-events: none;
}
.btn.btn--arrow:hover, .btn.btn--arrow-prev:hover, .btn.carousel__button-prev:hover, .btn.btn--arrow-next:hover, .btn.carousel__button-next:hover, .btn.carousel__button:hover,
button.btn--arrow:hover,
button.btn--arrow-prev:hover,
button.btn--arrow.carousel--prev:hover,
button.carousel--prev.btn--arrow-next:hover,
button.carousel--prev.carousel__button-next:hover,
button.carousel__button-prev:hover,
button.carousel__button.carousel--prev:hover,
button.carousel--next.btn--arrow-prev:hover,
button.carousel--next.carousel__button-prev:hover,
button.carousel--prev.btn--arrow-prev:hover,
button.carousel--prev.carousel__button-prev:hover,
button.btn--arrow-next:hover,
button.btn--arrow.carousel--next:hover,
button.carousel__button-next:hover,
button.carousel__button.carousel--next:hover,
button.carousel__button:hover {
  color: #d7f407;
}
.btn.btn--arrow:hover:before, .btn.btn--arrow-prev:hover:before, .btn.carousel__button-prev:hover:before, .btn.btn--arrow-next:hover:before, .btn.carousel__button-next:hover:before, .btn.btn--arrow:hover:after, .btn.btn--arrow-prev:hover:after, .btn.carousel__button-prev:hover:after, .btn.btn--arrow-next:hover:after, .btn.carousel__button-next:hover:after, .btn.carousel__button:hover:before, .btn.carousel__button:hover:after,
button.btn--arrow:hover:before,
button.btn--arrow-prev:hover:before,
button.btn--arrow.carousel--prev:hover:before,
button.carousel--prev.btn--arrow-next:hover:before,
button.carousel--prev.carousel__button-next:hover:before,
button.carousel__button-prev:hover:before,
button.carousel__button.carousel--prev:hover:before,
button.carousel--next.btn--arrow-prev:hover:before,
button.carousel--next.carousel__button-prev:hover:before,
button.carousel--prev.btn--arrow-prev:hover:before,
button.carousel--prev.carousel__button-prev:hover:before,
button.btn--arrow-next:hover:before,
button.btn--arrow.carousel--next:hover:before,
button.carousel__button-next:hover:before,
button.carousel__button.carousel--next:hover:before,
button.btn--arrow:hover:after,
button.btn--arrow-prev:hover:after,
button.btn--arrow.carousel--prev:hover:after,
button.carousel--prev.btn--arrow-next:hover:after,
button.carousel--prev.carousel__button-next:hover:after,
button.carousel__button-prev:hover:after,
button.carousel__button.carousel--prev:hover:after,
button.carousel--next.btn--arrow-prev:hover:after,
button.carousel--next.carousel__button-prev:hover:after,
button.carousel--prev.btn--arrow-prev:hover:after,
button.carousel--prev.carousel__button-prev:hover:after,
button.btn--arrow-next:hover:after,
button.btn--arrow.carousel--next:hover:after,
button.carousel__button-next:hover:after,
button.carousel__button.carousel--next:hover:after,
button.carousel__button:hover:before,
button.carousel__button:hover:after {
  background-color: #fff;
}
.btn.btn--arrow-next:after, .btn.btn--arrow.carousel--next:after, .btn.carousel--next.btn--arrow-prev:after, .btn.carousel--next.carousel__button-prev:after, .btn.carousel--next.btn--arrow-next:after, .btn.carousel--next.carousel__button-next:after, .btn.carousel__button-next:after, .btn.carousel__button.carousel--next:after,
button.btn--arrow-next:after,
button.btn--arrow.carousel--next:after,
button.carousel--next.btn--arrow-prev:after,
button.carousel--next.btn--arrow.carousel--prev:after,
button.carousel--next.carousel--prev.btn--arrow-next:after,
button.carousel--next.carousel--prev.carousel__button-next:after,
button.carousel--next.carousel--prev.carousel__button:after,
button.carousel--next.carousel__button-prev:after,
button.carousel--next.btn--arrow-prev:after,
button.carousel--next.carousel__button-prev:after,
button.carousel--next.carousel--prev.btn--arrow-prev:after,
button.carousel--next.carousel--prev.carousel__button-prev:after,
button.carousel--next.btn--arrow-next:after,
button.carousel--next.btn--arrow:after,
button.carousel--next.btn--arrow-prev:after,
button.carousel--next.carousel__button-prev:after,
button.carousel--next.btn--arrow-prev:after,
button.carousel--next.carousel__button-prev:after,
button.carousel--next.carousel__button-next:after,
button.carousel--next.carousel__button:after,
button.carousel__button-next:after,
button.carousel__button.carousel--next:after {
  margin-left: 2rem;
  width: 2.2rem;
  height: 2.7rem;
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 22.26 27.04'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: url(%23New_Gradient_Swatch-4); %7D .cls-1, .cls-2, .cls-3, .cls-4 %7B stroke-width: 0px; %7D .cls-2 %7B fill: url(%23New_Gradient_Swatch-2); %7D .cls-3 %7B fill: url(%23New_Gradient_Swatch-3); %7D .cls-4 %7B fill: url(%23New_Gradient_Swatch); %7D %3C/style%3E%3ClinearGradient id='New_Gradient_Swatch' data-name='New Gradient Swatch' x1='2100.63' y1='-817.5' x2='2116.68' y2='-817.5' gradientTransform='translate(-2093.16 837.77)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23d7f407'/%3E%3Cstop offset='1' stop-color='%23d7f407'/%3E%3C/linearGradient%3E%3ClinearGradient id='New_Gradient_Swatch-2' data-name='New Gradient Swatch' x1='138.25' y1='-4253.46' x2='154.3' y2='-4253.46' gradientTransform='translate(-130.77 4260.22)' xlink:href='%23New_Gradient_Swatch'/%3E%3ClinearGradient id='New_Gradient_Swatch-3' data-name='New Gradient Swatch' x1='2094.45' y1='-823.68' x2='2110.5' y2='-823.68' gradientTransform='translate(-2095.72 843.95)' xlink:href='%23New_Gradient_Swatch'/%3E%3ClinearGradient id='New_Gradient_Swatch-4' data-name='New Gradient Swatch' x1='132.07' y1='-4247.28' x2='148.12' y2='-4247.28' gradientTransform='translate(-133.33 4254.04)' xlink:href='%23New_Gradient_Swatch'/%3E%3C/defs%3E%3Cg%3E%3Crect class='cls-4' x='7.47' y='18.75' width='16.05' height='3.06' transform='translate(-9.8 16.9) rotate(-45)'/%3E%3Crect class='cls-2' x='7.47' y='5.23' width='16.05' height='3.06' transform='translate(9.32 -8.98) rotate(45)'/%3E%3C/g%3E%3Cg%3E%3Crect class='cls-3' x='-1.27' y='18.75' width='16.05' height='3.06' transform='translate(-12.36 10.72) rotate(-45)'/%3E%3Crect class='cls-1' x='-1.27' y='5.23' width='16.05' height='3.06' transform='translate(6.76 -2.8) rotate(45)'/%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 22.26 27.04'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: url(%23New_Gradient_Swatch-4); %7D .cls-1, .cls-2, .cls-3, .cls-4 %7B stroke-width: 0px; %7D .cls-2 %7B fill: url(%23New_Gradient_Swatch-2); %7D .cls-3 %7B fill: url(%23New_Gradient_Swatch-3); %7D .cls-4 %7B fill: url(%23New_Gradient_Swatch); %7D %3C/style%3E%3ClinearGradient id='New_Gradient_Swatch' data-name='New Gradient Swatch' x1='2100.63' y1='-817.5' x2='2116.68' y2='-817.5' gradientTransform='translate(-2093.16 837.77)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23d7f407'/%3E%3Cstop offset='1' stop-color='%23d7f407'/%3E%3C/linearGradient%3E%3ClinearGradient id='New_Gradient_Swatch-2' data-name='New Gradient Swatch' x1='138.25' y1='-4253.46' x2='154.3' y2='-4253.46' gradientTransform='translate(-130.77 4260.22)' xlink:href='%23New_Gradient_Swatch'/%3E%3ClinearGradient id='New_Gradient_Swatch-3' data-name='New Gradient Swatch' x1='2094.45' y1='-823.68' x2='2110.5' y2='-823.68' gradientTransform='translate(-2095.72 843.95)' xlink:href='%23New_Gradient_Swatch'/%3E%3ClinearGradient id='New_Gradient_Swatch-4' data-name='New Gradient Swatch' x1='132.07' y1='-4247.28' x2='148.12' y2='-4247.28' gradientTransform='translate(-133.33 4254.04)' xlink:href='%23New_Gradient_Swatch'/%3E%3C/defs%3E%3Cg%3E%3Crect class='cls-4' x='7.47' y='18.75' width='16.05' height='3.06' transform='translate(-9.8 16.9) rotate(-45)'/%3E%3Crect class='cls-2' x='7.47' y='5.23' width='16.05' height='3.06' transform='translate(9.32 -8.98) rotate(45)'/%3E%3C/g%3E%3Cg%3E%3Crect class='cls-3' x='-1.27' y='18.75' width='16.05' height='3.06' transform='translate(-12.36 10.72) rotate(-45)'/%3E%3Crect class='cls-1' x='-1.27' y='5.23' width='16.05' height='3.06' transform='translate(6.76 -2.8) rotate(45)'/%3E%3C/g%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: #d7f407;
}
@media (max-width: 767.98px) {
  .btn.btn--arrow-next:after, .btn.btn--arrow.carousel--next:after, .btn.carousel--next.btn--arrow-prev:after, .btn.carousel--next.carousel__button-prev:after, .btn.carousel--next.btn--arrow-next:after, .btn.carousel--next.carousel__button-next:after, .btn.carousel__button-next:after, .btn.carousel__button.carousel--next:after,
  button.btn--arrow-next:after,
  button.btn--arrow.carousel--next:after,
  button.carousel--next.btn--arrow-prev:after,
  button.carousel--next.btn--arrow.carousel--prev:after,
  button.carousel--next.carousel--prev.btn--arrow-next:after,
  button.carousel--next.carousel--prev.carousel__button-next:after,
  button.carousel--next.carousel--prev.carousel__button:after,
  button.carousel--next.carousel__button-prev:after,
  button.carousel--next.btn--arrow-prev:after,
  button.carousel--next.carousel__button-prev:after,
  button.carousel--next.carousel--prev.btn--arrow-prev:after,
  button.carousel--next.carousel--prev.carousel__button-prev:after,
  button.carousel--next.btn--arrow-next:after,
  button.carousel--next.btn--arrow:after,
  button.carousel--next.btn--arrow-prev:after,
  button.carousel--next.carousel__button-prev:after,
  button.carousel--next.btn--arrow-prev:after,
  button.carousel--next.carousel__button-prev:after,
  button.carousel--next.carousel__button-next:after,
  button.carousel--next.carousel__button:after,
  button.carousel__button-next:after,
  button.carousel__button.carousel--next:after {
    margin-left: 1rem;
    width: 1.75rem;
    height: 2rem;
  }
}
.btn.btn--arrow-prev:before, .btn.btn--arrow.carousel--prev:before, .btn.carousel--prev.btn--arrow-next:before, .btn.carousel--prev.carousel__button-next:before, .btn.carousel--prev.btn--arrow-prev:before, .btn.carousel--prev.carousel__button-prev:before, .btn.carousel__button-prev:before, .btn.carousel__button.carousel--prev:before,
button.btn--arrow-prev:before,
button.btn--arrow.carousel--prev:before,
button.carousel--prev.btn--arrow-next:before,
button.carousel--prev.btn--arrow.carousel--next:before,
button.carousel--prev.carousel__button-next:before,
button.carousel--prev.carousel__button.carousel--next:before,
button.carousel--prev.btn--arrow-prev:before,
button.carousel--prev.btn--arrow:before,
button.carousel--prev.btn--arrow-next:before,
button.carousel--prev.carousel__button-next:before,
button.carousel--prev.carousel__button-prev:before,
button.carousel--prev.carousel__button:before,
button.carousel--prev.carousel--next.btn--arrow-prev:before,
button.carousel--prev.carousel--next.btn--arrow-next:before,
button.carousel--prev.carousel--next.carousel__button-next:before,
button.carousel--prev.carousel--next.carousel__button-prev:before,
button.carousel--prev.btn--arrow-prev:before,
button.carousel--prev.btn--arrow:before,
button.carousel--prev.carousel__button-prev:before,
button.carousel--prev.carousel__button:before,
button.carousel__button-prev:before,
button.carousel__button.carousel--prev:before {
  transform: scale(-1);
  margin-right: 2rem;
  width: 2.2rem;
  height: 2.7rem;
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 22.26 27.04'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: url(%23New_Gradient_Swatch-4); %7D .cls-1, .cls-2, .cls-3, .cls-4 %7B stroke-width: 0px; %7D .cls-2 %7B fill: url(%23New_Gradient_Swatch-2); %7D .cls-3 %7B fill: url(%23New_Gradient_Swatch-3); %7D .cls-4 %7B fill: url(%23New_Gradient_Swatch); %7D %3C/style%3E%3ClinearGradient id='New_Gradient_Swatch' data-name='New Gradient Swatch' x1='2100.63' y1='-817.5' x2='2116.68' y2='-817.5' gradientTransform='translate(-2093.16 837.77)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23d7f407'/%3E%3Cstop offset='1' stop-color='%23d7f407'/%3E%3C/linearGradient%3E%3ClinearGradient id='New_Gradient_Swatch-2' data-name='New Gradient Swatch' x1='138.25' y1='-4253.46' x2='154.3' y2='-4253.46' gradientTransform='translate(-130.77 4260.22)' xlink:href='%23New_Gradient_Swatch'/%3E%3ClinearGradient id='New_Gradient_Swatch-3' data-name='New Gradient Swatch' x1='2094.45' y1='-823.68' x2='2110.5' y2='-823.68' gradientTransform='translate(-2095.72 843.95)' xlink:href='%23New_Gradient_Swatch'/%3E%3ClinearGradient id='New_Gradient_Swatch-4' data-name='New Gradient Swatch' x1='132.07' y1='-4247.28' x2='148.12' y2='-4247.28' gradientTransform='translate(-133.33 4254.04)' xlink:href='%23New_Gradient_Swatch'/%3E%3C/defs%3E%3Cg%3E%3Crect class='cls-4' x='7.47' y='18.75' width='16.05' height='3.06' transform='translate(-9.8 16.9) rotate(-45)'/%3E%3Crect class='cls-2' x='7.47' y='5.23' width='16.05' height='3.06' transform='translate(9.32 -8.98) rotate(45)'/%3E%3C/g%3E%3Cg%3E%3Crect class='cls-3' x='-1.27' y='18.75' width='16.05' height='3.06' transform='translate(-12.36 10.72) rotate(-45)'/%3E%3Crect class='cls-1' x='-1.27' y='5.23' width='16.05' height='3.06' transform='translate(6.76 -2.8) rotate(45)'/%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 22.26 27.04'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: url(%23New_Gradient_Swatch-4); %7D .cls-1, .cls-2, .cls-3, .cls-4 %7B stroke-width: 0px; %7D .cls-2 %7B fill: url(%23New_Gradient_Swatch-2); %7D .cls-3 %7B fill: url(%23New_Gradient_Swatch-3); %7D .cls-4 %7B fill: url(%23New_Gradient_Swatch); %7D %3C/style%3E%3ClinearGradient id='New_Gradient_Swatch' data-name='New Gradient Swatch' x1='2100.63' y1='-817.5' x2='2116.68' y2='-817.5' gradientTransform='translate(-2093.16 837.77)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23d7f407'/%3E%3Cstop offset='1' stop-color='%23d7f407'/%3E%3C/linearGradient%3E%3ClinearGradient id='New_Gradient_Swatch-2' data-name='New Gradient Swatch' x1='138.25' y1='-4253.46' x2='154.3' y2='-4253.46' gradientTransform='translate(-130.77 4260.22)' xlink:href='%23New_Gradient_Swatch'/%3E%3ClinearGradient id='New_Gradient_Swatch-3' data-name='New Gradient Swatch' x1='2094.45' y1='-823.68' x2='2110.5' y2='-823.68' gradientTransform='translate(-2095.72 843.95)' xlink:href='%23New_Gradient_Swatch'/%3E%3ClinearGradient id='New_Gradient_Swatch-4' data-name='New Gradient Swatch' x1='132.07' y1='-4247.28' x2='148.12' y2='-4247.28' gradientTransform='translate(-133.33 4254.04)' xlink:href='%23New_Gradient_Swatch'/%3E%3C/defs%3E%3Cg%3E%3Crect class='cls-4' x='7.47' y='18.75' width='16.05' height='3.06' transform='translate(-9.8 16.9) rotate(-45)'/%3E%3Crect class='cls-2' x='7.47' y='5.23' width='16.05' height='3.06' transform='translate(9.32 -8.98) rotate(45)'/%3E%3C/g%3E%3Cg%3E%3Crect class='cls-3' x='-1.27' y='18.75' width='16.05' height='3.06' transform='translate(-12.36 10.72) rotate(-45)'/%3E%3Crect class='cls-1' x='-1.27' y='5.23' width='16.05' height='3.06' transform='translate(6.76 -2.8) rotate(45)'/%3E%3C/g%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: #d7f407;
}
@media (max-width: 767.98px) {
  .btn.btn--arrow-prev:before, .btn.btn--arrow.carousel--prev:before, .btn.carousel--prev.btn--arrow-next:before, .btn.carousel--prev.carousel__button-next:before, .btn.carousel--prev.btn--arrow-prev:before, .btn.carousel--prev.carousel__button-prev:before, .btn.carousel__button-prev:before, .btn.carousel__button.carousel--prev:before,
  button.btn--arrow-prev:before,
  button.btn--arrow.carousel--prev:before,
  button.carousel--prev.btn--arrow-next:before,
  button.carousel--prev.btn--arrow.carousel--next:before,
  button.carousel--prev.carousel__button-next:before,
  button.carousel--prev.carousel__button.carousel--next:before,
  button.carousel--prev.btn--arrow-prev:before,
  button.carousel--prev.btn--arrow:before,
  button.carousel--prev.btn--arrow-next:before,
  button.carousel--prev.carousel__button-next:before,
  button.carousel--prev.carousel__button-prev:before,
  button.carousel--prev.carousel__button:before,
  button.carousel--prev.carousel--next.btn--arrow-prev:before,
  button.carousel--prev.carousel--next.btn--arrow-next:before,
  button.carousel--prev.carousel--next.carousel__button-next:before,
  button.carousel--prev.carousel--next.carousel__button-prev:before,
  button.carousel--prev.btn--arrow-prev:before,
  button.carousel--prev.btn--arrow:before,
  button.carousel--prev.carousel__button-prev:before,
  button.carousel--prev.carousel__button:before,
  button.carousel__button-prev:before,
  button.carousel__button.carousel--prev:before {
    margin-right: 1rem;
    width: 1.75rem;
    height: 2rem;
  }
}
.btn:focus, .btn[focus-within],
button:focus,
button[focus-within] {
  outline: 0;
}
.btn:focus, .btn:focus-within,
button:focus,
button:focus-within {
  outline: 0;
}
.btn:hover,
button:hover {
  cursor: pointer;
  color: #000;
}
.btn.btn--link,
button.btn--link {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #000;
}
.btn.btn--link:hover,
button.btn--link:hover {
  color: #a5d108;
}
.wpcf7 .wpcf7-response-output {
  margin: 3rem 0 0 !important;
  border-width: 0.1rem !important;
  border-color: #a5d108 !important;
  padding: 1rem !important;
}
.wpcf7 .wpcf7-response-output {
  color: #a5d108;
  font-size: 1.3rem;
  text-align: center;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  margin-top: 0;
}
.hero {
  position: relative;
  padding-top: 7.5rem;
  height: calc(56.2vw - 7.5rem);
  min-height: 50rem;
  max-height: 100rem;
}
@media (max-width: 767.98px) {
  .hero {
    padding-top: 9rem;
  }
}
.hero__background {
  z-index: 0;
}
.hero__carousel {
  position: relative;
}
.hero__carousel:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  z-index: 2;
  background: #000;
  content: "";
}
.hero__content {
  z-index: 2;
}
.hero__logo {
  display: flex;
  position: absolute;
  top: 20rem;
  right: 0;
  bottom: 10rem;
  left: 0;
  z-index: 3;
  margin: 0 auto;
  pointer-events: none;
}
.hero__logo canvas {
  width: auto !important;
  height: 100% !important;
}
.hero__logo canvas {
  margin: auto;
  pointer-events: all;
}
.carousel {
  display: flex;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.hero .carousel {
  min-height: 100% !important;
}
.carousel__item {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease opacity;
  z-index: 1;
  pointer-events: none;
}
.carousel__item.item--active {
  opacity: 1;
  z-index: 2;
  pointer-events: all;
}
.carousel--custom .carousel__item {
  transition: 0.5s linear opacity 0.5s;
}
.carousel--custom .carousel__item.item--active {
  transition: 0.25s linear opacity 0.5s;
}
.carousel__nav {
  position: relative;
  z-index: 3;
  margin-top: auto;
  margin-bottom: 2rem;
}
.carousel__nav .nav__item {
  margin-right: 0.6rem;
}
.carousel__nav .nav__item:not(.item--active):hover {
  transform: scale(1.1);
  cursor: pointer;
}
.carousel__nav .nav__item:not(.item--active):hover span {
  border-color: #fff;
}
.carousel__nav .nav__item.item--active {
  pointer-events: none;
}
.carousel__nav .nav__item.item--active span {
  background: #d7f407;
}
.carousel__nav ul {
  display: inline-flex;
}
.carousel__nav span {
  display: inline-flex;
  border: 0.1rem solid #000;
  background: #fff;
  width: 1.1rem;
  height: 1.1rem;
}
.carousel--custom .carousel__buttons {
  position: absolute;
  right: 0;
  bottom: 10rem;
  left: 0;
  z-index: 5;
}
.carousel--custom .carousel__buttons ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 69rem;
}
.carousel--custom .carousel__buttons .btn:after, .carousel--custom .carousel__buttons .btn:before {
  background: #000;
}
.carousel--custom .carousel__buttons .btn:hover:after, .carousel--custom .carousel__buttons .btn:hover:before {
  background: #d7f407;
}
.socials {
  margin: 0;
  padding: 0;
  list-style: none;
}
.socials.socials--icons {
  display: inline-flex;
}
.socials.socials--icons li {
  display: inline-flex;
  margin-right: 1.7rem;
}
@media (max-width: 767.98px) {
  .socials.socials--icons li {
    margin: 0 1rem;
  }
}
.socials.socials--icons li a {
  display: inline-block;
  -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: #000;
  width: 1.8rem;
  height: 1.8rem;
  text-indent: 999px;
}
.socials.socials--icons li a:hover {
  background-color: #a5d108;
}
.socials.socials--icons li.socials--facebook a {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Isolation_Mode' data-name='Isolation Mode' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.28 15.68'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23000; stroke-width: 0px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M8.28,6.92l-.2,1.59c-.03.27-.26.47-.53.47h-2.58v6.67c-.27.02-.55.04-.83.04-.62,0-1.23-.06-1.82-.18v-6.52H.33c-.18,0-.33-.15-.33-.33v-2c0-.18.15-.33.33-.33h1.99v-2.99c0-1.84,1.48-3.33,3.31-3.33h2.32c.18,0,.33.15.33.33v2c0,.18-.15.33-.33.33h-1.66c-.73,0-1.32.6-1.32,1.33v2.33h2.78c.32,0,.57.28.53.6Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Isolation_Mode' data-name='Isolation Mode' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.28 15.68'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23000; stroke-width: 0px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M8.28,6.92l-.2,1.59c-.03.27-.26.47-.53.47h-2.58v6.67c-.27.02-.55.04-.83.04-.62,0-1.23-.06-1.82-.18v-6.52H.33c-.18,0-.33-.15-.33-.33v-2c0-.18.15-.33.33-.33h1.99v-2.99c0-1.84,1.48-3.33,3.31-3.33h2.32c.18,0,.33.15.33.33v2c0,.18-.15.33-.33.33h-1.66c-.73,0-1.32.6-1.32,1.33v2.33h2.78c.32,0,.57.28.53.6Z'/%3E%3C/svg%3E");
}
.socials.socials--icons li.socials--instagram a {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24.86 24.86'%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Artwork'%3E%3Cg%3E%3Cpath d='M12.43,2.24c3.32,0,3.71,0,5,.07a7,7,0,0,1,2.31.43,3.93,3.93,0,0,1,1.43.93,3.69,3.69,0,0,1,.93,1.43,7,7,0,0,1,.43,2.31c.06,1.31.07,1.7.07,5s0,3.71-.07,5a7,7,0,0,1-.43,2.31,4.12,4.12,0,0,1-2.36,2.36,7,7,0,0,1-2.31.43c-1.31.06-1.7.07-5,.07s-3.71,0-5-.07a7,7,0,0,1-2.31-.43,3.69,3.69,0,0,1-1.43-.93,3.93,3.93,0,0,1-.93-1.43,7,7,0,0,1-.43-2.31c-.06-1.31-.07-1.7-.07-5s0-3.71.07-5A7,7,0,0,1,2.74,5.1,4.12,4.12,0,0,1,5.1,2.74a7,7,0,0,1,2.31-.43c1.31-.06,1.7-.07,5-.07m0-2.24C9.05,0,8.63,0,7.31.07a9.55,9.55,0,0,0-3,.58,6.12,6.12,0,0,0-2.2,1.44A6.12,6.12,0,0,0,.65,4.29a9.55,9.55,0,0,0-.58,3C0,8.63,0,9.05,0,12.43s0,3.8.07,5.13a9.54,9.54,0,0,0,.58,3,6.12,6.12,0,0,0,1.44,2.2,6,6,0,0,0,2.2,1.44,9,9,0,0,0,3,.58c1.32.06,1.74.07,5.12.07s3.8,0,5.13-.07a9,9,0,0,0,3-.58,6.43,6.43,0,0,0,3.64-3.64,9,9,0,0,0,.58-3c.06-1.33.07-1.75.07-5.13s0-3.8-.07-5.12a9,9,0,0,0-.58-3,6,6,0,0,0-1.44-2.2A6.12,6.12,0,0,0,20.57.65a9.54,9.54,0,0,0-3-.58C16.23,0,15.81,0,12.43,0Z' style='fill: %23fff'/%3E%3Cpath d='M12.43,6.05a6.38,6.38,0,1,0,6.38,6.38A6.38,6.38,0,0,0,12.43,6.05Zm0,10.52a4.14,4.14,0,1,1,4.14-4.14A4.14,4.14,0,0,1,12.43,16.57Z' style='fill: %23fff'/%3E%3Ccircle cx='19.07' cy='5.8' r='1.49' style='fill: %23fff'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24.86 24.86'%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Artwork'%3E%3Cg%3E%3Cpath d='M12.43,2.24c3.32,0,3.71,0,5,.07a7,7,0,0,1,2.31.43,3.93,3.93,0,0,1,1.43.93,3.69,3.69,0,0,1,.93,1.43,7,7,0,0,1,.43,2.31c.06,1.31.07,1.7.07,5s0,3.71-.07,5a7,7,0,0,1-.43,2.31,4.12,4.12,0,0,1-2.36,2.36,7,7,0,0,1-2.31.43c-1.31.06-1.7.07-5,.07s-3.71,0-5-.07a7,7,0,0,1-2.31-.43,3.69,3.69,0,0,1-1.43-.93,3.93,3.93,0,0,1-.93-1.43,7,7,0,0,1-.43-2.31c-.06-1.31-.07-1.7-.07-5s0-3.71.07-5A7,7,0,0,1,2.74,5.1,4.12,4.12,0,0,1,5.1,2.74a7,7,0,0,1,2.31-.43c1.31-.06,1.7-.07,5-.07m0-2.24C9.05,0,8.63,0,7.31.07a9.55,9.55,0,0,0-3,.58,6.12,6.12,0,0,0-2.2,1.44A6.12,6.12,0,0,0,.65,4.29a9.55,9.55,0,0,0-.58,3C0,8.63,0,9.05,0,12.43s0,3.8.07,5.13a9.54,9.54,0,0,0,.58,3,6.12,6.12,0,0,0,1.44,2.2,6,6,0,0,0,2.2,1.44,9,9,0,0,0,3,.58c1.32.06,1.74.07,5.12.07s3.8,0,5.13-.07a9,9,0,0,0,3-.58,6.43,6.43,0,0,0,3.64-3.64,9,9,0,0,0,.58-3c.06-1.33.07-1.75.07-5.13s0-3.8-.07-5.12a9,9,0,0,0-.58-3,6,6,0,0,0-1.44-2.2A6.12,6.12,0,0,0,20.57.65a9.54,9.54,0,0,0-3-.58C16.23,0,15.81,0,12.43,0Z' style='fill: %23fff'/%3E%3Cpath d='M12.43,6.05a6.38,6.38,0,1,0,6.38,6.38A6.38,6.38,0,0,0,12.43,6.05Zm0,10.52a4.14,4.14,0,1,1,4.14-4.14A4.14,4.14,0,0,1,12.43,16.57Z' style='fill: %23fff'/%3E%3Ccircle cx='19.07' cy='5.8' r='1.49' style='fill: %23fff'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.socials.socials--icons li.socials--twitter a {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.49 14.77'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23000; stroke-width: 0px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M10.28,6.09L15.97,0h-2.16l-4.47,4.78L5.92,0H0l5.99,8.36L0,14.77h2.16l4.76-5.1,3.65,5.1h5.92l-6.21-8.68ZM3.05,1.57h2.06l8.33,11.64h-2.06L3.05,1.57Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.49 14.77'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23000; stroke-width: 0px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M10.28,6.09L15.97,0h-2.16l-4.47,4.78L5.92,0H0l5.99,8.36L0,14.77h2.16l4.76-5.1,3.65,5.1h5.92l-6.21-8.68ZM3.05,1.57h2.06l8.33,11.64h-2.06L3.05,1.57Z'/%3E%3C/svg%3E");
}
.socials.socials--icons li.socials--linkedin a {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Isolation_Mode' data-name='Isolation Mode' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.6 13.9'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23000; stroke-width: 0px; %7D %3C/style%3E%3C/defs%3E%3Ccircle class='cls-1' cx='1.81' cy='1.81' r='1.81'/%3E%3Crect class='cls-1' x='.3' y='4.84' width='3.02' height='9.07' rx='1.51' ry='1.51'/%3E%3Cpath class='cls-1' d='M13.6,8.16v5.14c0,.33-.27.6-.6.6h-1.81c-.33,0-.6-.27-.6-.6v-4.23c0-.83-.68-1.51-1.51-1.51s-1.51.68-1.51,1.51v4.23c0,.33-.27.6-.6.6h-1.81c-.33,0-.6-.27-.6-.6v-7.86c0-.33.27-.6.6-.6h1.81c.33,0,.6.27.6.6v.39c.6-.78,1.6-1.29,2.72-1.29,1.67,0,3.32,1.21,3.32,3.63Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Isolation_Mode' data-name='Isolation Mode' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.6 13.9'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23000; stroke-width: 0px; %7D %3C/style%3E%3C/defs%3E%3Ccircle class='cls-1' cx='1.81' cy='1.81' r='1.81'/%3E%3Crect class='cls-1' x='.3' y='4.84' width='3.02' height='9.07' rx='1.51' ry='1.51'/%3E%3Cpath class='cls-1' d='M13.6,8.16v5.14c0,.33-.27.6-.6.6h-1.81c-.33,0-.6-.27-.6-.6v-4.23c0-.83-.68-1.51-1.51-1.51s-1.51.68-1.51,1.51v4.23c0,.33-.27.6-.6.6h-1.81c-.33,0-.6-.27-.6-.6v-7.86c0-.33.27-.6.6-.6h1.81c.33,0,.6.27.6.6v.39c.6-.78,1.6-1.29,2.72-1.29,1.67,0,3.32,1.21,3.32,3.63Z'/%3E%3C/svg%3E");
}
.socials.socials--icons li.socials--youtube a {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32.33 22.74'%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Artwork'%3E%3Cg id='Lozenge'%3E%3Cpath d='M32,4.91A7,7,0,0,0,30.72,1.7,4.58,4.58,0,0,0,27.48.33C23,0,16.17,0,16.17,0h0S9.37,0,4.85.33A4.6,4.6,0,0,0,1.61,1.7,7,7,0,0,0,.32,4.91,49.22,49.22,0,0,0,0,10.14v2.45a49.22,49.22,0,0,0,.32,5.23A7,7,0,0,0,1.61,21a5.5,5.5,0,0,0,3.56,1.39c2.59.24,11,.32,11,.32s6.79,0,11.31-.34A4.58,4.58,0,0,0,30.72,21,7,7,0,0,0,32,17.82a49.22,49.22,0,0,0,.32-5.23V10.14A49.22,49.22,0,0,0,32,4.91ZM12.83,15.56V6.48L21.56,11Z' style='fill: %23fff'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32.33 22.74'%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Artwork'%3E%3Cg id='Lozenge'%3E%3Cpath d='M32,4.91A7,7,0,0,0,30.72,1.7,4.58,4.58,0,0,0,27.48.33C23,0,16.17,0,16.17,0h0S9.37,0,4.85.33A4.6,4.6,0,0,0,1.61,1.7,7,7,0,0,0,.32,4.91,49.22,49.22,0,0,0,0,10.14v2.45a49.22,49.22,0,0,0,.32,5.23A7,7,0,0,0,1.61,21a5.5,5.5,0,0,0,3.56,1.39c2.59.24,11,.32,11,.32s6.79,0,11.31-.34A4.58,4.58,0,0,0,30.72,21,7,7,0,0,0,32,17.82a49.22,49.22,0,0,0,.32-5.23V10.14A49.22,49.22,0,0,0,32,4.91ZM12.83,15.56V6.48L21.56,11Z' style='fill: %23fff'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.intro {
  padding-bottom: 10rem;
}
@media (max-width: 767.98px) {
  .intro {
    padding-bottom: 5rem;
  }
}
.intro .content__wrap {
  max-width: 85rem;
}
.intro.intro--alt {
  padding-top: 12rem;
}
@media (max-width: 767.98px) {
  .intro.intro--alt {
    padding-top: 3rem;
  }
}
.intro.intro--event {
  padding-top: 20rem;
  padding-bottom: 4rem;
}
@media (max-width: 767.98px) {
  .intro.intro--event {
    padding-top: 12rem;
  }
}
@media (max-width: 767.98px) {
  .intro.intro--event .row {
    flex-direction: column-reverse;
  }
}
.intro.intro--event .news {
  padding-top: 8rem;
}
.intro.intro--event h1 {
  margin-bottom: max(1rem, min(5vw, 3rem));
  font-size: max(2rem, min(6vw, 10rem));
  line-height: 0.9;
}
.intro.intro--event .intro__logo-wrap {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 25rem;
  max-height: 25rem;
}
.intro.intro--event .intro__logo-wrap img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.intro.intro--event .intro__logo-wrap:before {
  display: block;
  padding-top: 100%;
  content: "";
}
.intro__logo {
  display: flex;
  margin-bottom: 5rem;
}
.intro__logos-wrap {
  position: relative;
  margin: auto;
}
.intro__logos-wrap svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.intro__logos-wrap svg rect {
  stroke-dashoffset: 366%;
  stroke-dasharray: 366%;
  opacity: 0;
  transition: 0.25s ease stroke-dashoffset, 0s opacity 0.225s;
}
.intro__logos-wrap img {
  transform: scale(0.95);
  transition: 0.5s ease transform;
}
.intro__logos-wrap:hover svg rect {
  opacity: 1;
  stroke-dashoffset: 0;
  transition: 0.25s ease stroke-dashoffset, 0s opacity 0s;
}
.intro__logos-wrap:hover img {
  transform: scale(1);
}
.intro--event .intro__content {
  font-size: 2rem;
}
.intro__container {
  position: relative;
}
.intro__container:before {
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 367.96 435.68'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-miterlimit: 10; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M44.42,1C20.48,1,1,20.48,1,44.42s19.48,43.42,43.42,43.42,43.42-19.48,43.42-43.42S68.35,1,44.42,1ZM55.34,48.36c-1.63,4.5-5.93,7.52-10.71,7.52-1.31,0-2.62-.23-3.88-.69-2.86-1.04-5.15-3.13-6.44-5.88-1.29-2.76-1.43-5.85-.39-8.71,1.63-4.5,5.94-7.52,10.71-7.52h0c1.31,0,2.61.23,3.88.69,5.91,2.14,8.97,8.69,6.83,14.59Z'/%3E%3Cpath class='cls-1' d='M291.17,181.32c-16.6-9.14-34.59-14.92-53.47-17.16-18.88-2.24-37.72-.84-56,4.16-18.95,5.19-36.43,14.01-51.95,26.24l-12.06,9.5,50.66,64.31,12.06-9.5c13.57-10.69,30.48-15.45,47.63-13.41,17.15,2.04,32.48,10.63,43.16,24.2,10.69,13.57,15.45,30.48,13.41,47.63-2.04,17.15-10.63,32.48-24.2,43.17l-12.06,9.5,50.66,64.31,12.06-9.5c15.52-12.23,28.2-27.15,37.68-44.36,9.14-16.6,14.92-34.59,17.16-53.47,2.24-18.88.84-37.72-4.16-56-5.18-18.95-14.01-36.43-26.24-51.95-12.23-15.53-27.15-28.2-44.36-37.68Z'/%3E%3Cpath class='cls-1' d='M96.13,329.58c-23.94,0-43.42,19.48-43.42,43.42s19.48,43.42,43.42,43.42,43.42-19.48,43.42-43.42-19.48-43.42-43.42-43.42ZM107.05,376.95c-1.63,4.5-5.93,7.52-10.71,7.52-1.31,0-2.62-.23-3.88-.69-2.86-1.04-5.15-3.13-6.44-5.88-1.29-2.76-1.43-5.85-.39-8.71,1.63-4.5,5.94-7.52,10.71-7.52h0c1.31,0,2.61.23,3.88.69,5.91,2.14,8.97,8.69,6.83,14.59Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: max(36.5rem, min(3vw, 50rem));
  height: 100%;
  content: "";
}
@media (max-width: 767.98px) {
  .intro__container:before {
    top: auto;
    bottom: 0;
    opacity: 0.3;
    background-position: bottom;
    max-width: 20rem;
  }
}
.intro--alt .intro__container:after {
  top: -2rem;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 276.49 408.04'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-miterlimit: 10; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M174.88,153.68c-16.6-9.14-34.59-14.92-53.47-17.16-18.88-2.24-37.72-.84-56,4.16-18.95,5.19-36.43,14.01-51.95,26.24l-12.06,9.5,50.66,64.31,12.06-9.5c13.57-10.69,30.48-15.45,47.63-13.41,17.15,2.04,32.48,10.63,43.16,24.2,10.69,13.57,15.45,30.48,13.41,47.63-2.04,17.15-10.63,32.48-24.2,43.17l-12.06,9.5,50.66,64.31,12.06-9.5c15.52-12.23,28.2-27.15,37.68-44.36,9.14-16.6,14.92-34.59,17.16-53.47,2.24-18.88.84-37.72-4.16-56-5.18-18.95-14.01-36.43-26.24-51.95-12.23-15.53-27.15-28.2-44.36-37.68Z'/%3E%3Cpath class='cls-1' d='M232.08,1c-23.94,0-43.42,19.48-43.42,43.42s19.48,43.42,43.42,43.42,43.42-19.48,43.42-43.42S256.02,1,232.08,1ZM243,48.36c-1.63,4.5-5.93,7.52-10.71,7.52-1.31,0-2.62-.23-3.88-.69-2.86-1.04-5.15-3.13-6.44-5.88-1.29-2.76-1.43-5.85-.39-8.71,1.63-4.5,5.94-7.52,10.71-7.52h0c1.31,0,2.61.23,3.88.69,5.91,2.14,8.97,8.69,6.83,14.59Z'/%3E%3C/svg%3E");
  width: max(27rem, min(3vw, 50rem));
}
.intro__logos {
  margin-top: 5rem;
}
.intro__logos img {
  width: 100%;
  max-width: 22rem;
  max-height: 7rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.intro__logos-entry {
  margin-bottom: 3rem;
}
.intro__logos-wrap {
  display: flex;
  justify-content: center;
  background: #000;
  padding: 3rem;
  height: 100%;
}
.events {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.events .section__title {
  position: absolute;
  top: 2.5rem;
  right: 0;
  left: 0;
  z-index: 2;
}
.events .swiper-slide {
  padding: 0;
  height: auto;
}
.events .swiper-slide:hover .events__entry-thumb img {
  transform: scale(1.075);
  filter: blur(0.5rem);
}
.events__container {
  position: relative;
}
@media (min-width: 768px) {
  .events__row {
    height: 50vh !important;
  }
  .events__row {
    min-height: 30rem;
    max-height: 50rem;
  }
}
.events__entry-thumb {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.75);
  height: 100%;
  overflow: hidden;
}
.events__entry-thumb img {
  filter: blur(0);
  transition: 1s ease;
  transform: scale(1.05);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.events__entry-content {
  display: flex;
  position: relative;
  align-items: center;
  z-index: 2;
  height: 100%;
  font: 700 100% "Space Mono", monospace;
  font-size: 2rem;
}
@media (max-width: 767.98px) {
  .events__entry-content {
    font-size: 1.4rem;
  }
}
.events__entry-content p {
  margin: 0;
}
.events__entry-content .btn {
  margin-top: 2rem;
}
.events__entry-inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.slider--reverse .events__entry-inner {
  flex-direction: row-reverse;
}
.events__entry-logo {
  display: flex;
}
@media (max-width: 767.98px) {
  .slider--reverse .events__entry-logo {
    justify-content: flex-end;
  }
}
.events__entry-logo img {
  max-width: 10rem;
  max-height: 10rem;
}
@media (max-width: 767.98px) {
  .events__entry-logo img {
    margin-top: 10rem;
  }
}
@media (min-width: 768px) {
  .events__entry-logo img {
    margin: auto;
    max-width: 16rem;
    max-height: 18rem;
  }
}
.events__entry-details {
  opacity: 0;
  margin: auto auto 0 0;
  padding-top: 2rem;
  padding-bottom: 10rem;
  transition: 0s ease 1s;
}
.swiper-slide-active .events__entry-details {
  opacity: 1;
  transition: 1s ease 0.5s;
}
@media (max-width: 767.98px) {
  .slider--reverse .events__entry-details {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .events__entry-details {
    padding: 4rem 0 4rem 2rem;
  }
}
.slider {
  position: relative;
}
.slider article {
  height: auto;
}
.slider__controls {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  justify-content: flex-end;
  z-index: 2;
  padding-bottom: 4rem;
  pointer-events: none;
}
.slider--news .slider__controls {
  justify-content: space-between;
}
.slider--reverse .slider__controls {
  justify-content: flex-start;
}
.slider__controls .slider__button {
  pointer-events: all;
}
.section--trans .slider__controls .slider__button {
  color: #000;
}
.section--trans .slider__controls .slider__button:hover {
  color: #a5d108;
}
.section--trans .slider__controls .slider__button:hover:after, .section--trans .slider__controls .slider__button:hover:before {
  background-color: #000;
}
/**
 * Swiper 6.8.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 23, 2021
 */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-family: "swiper-icons";
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  position: relative;
  /* Fix of Webkit flickering */
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  display: flex;
  position: relative;
  z-index: 1;
  transition-property: transform;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: cubic-bezier(1, 0.01, 0.43, 0.95) !important;
}
.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
}
.swiper-container-pointer-events {
  touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  position: relative;
  flex-shrink: 0;
  transition-property: transform;
  width: 100%;
  height: 100%;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
       --swiper-navigation-color: var(--swiper-theme-color);
       */
}
.swiper-button-prev,
.swiper-button-next {
  display: flex;
  position: absolute;
  top: 50%;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  margin-top: calc(0px - 44px / 2);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  width: calc(44px / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: 44px;
  height: var(--swiper-navigation-size);
  color: #007aff;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  text-transform: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-feature-settings: ;
  font-variant: normal;
  font-variant: initial;
  font-size: 44px;
  font-size: var(--swiper-navigation-size);
  line-height: 1;
  font-family: swiper-icons;
  letter-spacing: 0;
  text-transform: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 10px;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
       --swiper-pagination-color: var(--swiper-theme-color);
       */
}
.swiper-pagination {
  position: absolute;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  transition: 300ms opacity;
  text-align: center;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  display: inline-block;
  opacity: 0.2;
  border-radius: 50%;
  background: #000;
  width: 8px;
  height: 8px;
}
button.swiper-pagination-bullet {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  box-shadow: none;
  border: none;
  padding: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  top: 50%;
  right: 10px;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
  transform-origin: left top;
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  width: 100%;
  height: 100%;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -ms-touch-action: none;
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  bottom: 3px;
  left: 1%;
  z-index: 50;
  width: 98%;
  height: 5px;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  top: 1%;
  right: 3px;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
:root {
  /*
       --swiper-preloader-color: var(--swiper-theme-color);
       */
}
.swiper-lazy-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50%;
  z-index: 10;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  margin-top: -21px;
  margin-left: -21px;
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: transparent;
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1000;
  pointer-events: none;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  transition-property: opacity;
  pointer-events: none;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  transform-origin: 0 0;
  visibility: hidden;
  z-index: 1;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  visibility: visible;
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  bottom: 0px;
  left: 0;
  opacity: 0.6;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-cube-shadow:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: blur(50px);
  background: #000;
  content: "";
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  z-index: 1;
  backface-visibility: hidden;
  pointer-events: none;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
.projects__entry-thumb {
  width: 100%;
  pointer-events: none;
}
.projects__entry-thumb image {
  width: 100%;
  height: 100%;
}
.projects__entry-thumb clipPath > * {
  transform: translateX(0);
  transition: 0.45s cubic-bezier(1, 0.01, 0.43, 0.95) transform;
}
.carousel--loading .projects__entry-thumb clipPath circle {
  transform: translateX(32%);
}
.carousel--loading .projects__entry-thumb clipPath path#hemi-1 {
  transform: translateX(7%);
}
.carousel--loading .projects__entry-thumb clipPath path#hemi-2 {
  transform: translateX(-7%);
}
.carousel--loading .projects__entry-thumb clipPath rect {
  transform: translateX(-35%);
}
.projects__entry-details {
  padding: 5rem 0;
  text-align: center;
}
@media (max-width: 767.98px) {
  .projects__entry-details {
    padding: 2.5rem 0;
  }
  .projects__entry-details h2 {
    line-height: 1.1;
  }
}
.projects__entry-details > *:not(.btn) {
  opacity: 0;
  transition: 0.25s ease 0.5s;
}
.item--active .projects__entry-details > *:not(.btn) {
  opacity: 1;
}
.projects__entry-details p {
  margin-bottom: 2rem;
}
.projects__entry-details .text--split .char {
  display: inline-block;
  overflow: hidden;
}
.item--active .projects__entry-details .text--split .char:nth-child(1) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(2) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(3) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(4) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(5) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(6) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(7) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(8) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(9) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(10) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(11) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(12) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(13) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(14) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(15) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(16) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(17) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(18) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(19) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(20) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(21) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(22) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(23) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(24) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(25) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(26) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(27) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(28) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(29) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(30) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(31) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(32) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(33) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(34) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(35) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(36) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(37) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(38) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(39) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(40) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(41) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(42) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(43) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(44) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(45) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(46) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(47) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(48) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(49) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(50) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(51) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(52) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(53) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(54) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(55) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(56) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(57) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(58) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(59) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(60) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(61) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(62) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(63) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(64) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(65) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(66) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(67) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(68) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(69) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(70) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(71) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(72) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(73) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(74) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(75) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(76) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(77) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(78) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(79) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(80) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(81) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(82) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(83) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(84) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(85) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(86) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(87) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(88) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(89) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(90) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(91) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(92) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(93) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(94) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(95) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(96) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(97) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(98) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(99) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.item--active .projects__entry-details .text--split .char:nth-child(100) > span {
  transition-delay: calc(var(--delay) + 0.5s);
}
.support {
  position: relative;
  padding-bottom: 0;
  font-size: 2rem;
}
@media (max-width: 767.98px) {
  .support {
    font-size: 1.6rem;
  }
}
.support .section__title {
  margin-bottom: 6rem;
  text-align: center;
}
.support .section__title h3 {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font: 400 100% "DM Sans", sans-serif;
  font-size: 2rem;
}
.support .section__title h3:before {
  display: inline-flex;
  margin-right: 1.5rem;
  margin: 1rem 1.5rem 1rem 0;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Isolation_Mode' data-name='Isolation Mode' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 306.93 45.08'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23000; %7D .cls-1, .cls-2 %7B stroke-width: 0px; %7D .cls-2 %7B fill: %23fff; %7D %3C/style%3E%3C/defs%3E%3Cg%3E%3Crect class='cls-2' width='167.54' height='45.08'/%3E%3Cg%3E%3Cpath class='cls-1' d='M39.86,20.31c-1.35,3.74-2.34,6.55-2.98,8.43-.56,1.61-1.37,4.03-2.42,7.25-.11.34-.22.55-.34.65-.11.09-.36.14-.73.14h-6.07c-.56,0-.92-.26-1.07-.79-.6-1.69-1.5-4.18-2.7-7.47-.3-.82-.82-2.28-1.57-4.38-.75-2.1-1.33-3.71-1.74-4.83l-.28-.39v17.13c-.04.34-.09.54-.17.62-.08.07-.28.11-.62.11h-6.8c-.34,0-.53-.04-.59-.11-.06-.07-.1-.3-.14-.67V9.7c.04-.71.41-1.07,1.12-1.07h10.33c.56,0,.95.07,1.15.2.21.13.38.46.53.98.3.86.75,2.17,1.35,3.93.6,1.76,1.07,3.09,1.4,3.99.26.75.53,1.53.81,2.33.28.81.6,1.7.96,2.7.36.99.65,1.79.87,2.39.15-.11.32-.45.51-1.01,1.05-3.07,2.58-7.68,4.61-13.82.26-.86.5-1.36.7-1.49.21-.13.78-.2,1.71-.2h10c.52,0,.86.07,1.01.22.15.15.22.49.22,1.01v26.4c0,.34-.19.51-.56.51h-6.68c-.49,0-.79-.06-.9-.17-.11-.11-.17-.41-.17-.9v-17.52c-.3.75-.56,1.46-.79,2.13Z'/%3E%3Cpath class='cls-1' d='M81.88,26.66c0,1.39-.24,2.85-.73,4.38-.56,1.87-1.82,3.35-3.76,4.44-1.2.64-2.68,1.11-4.44,1.4-2.28.41-5.75.51-10.39.28-2.51-.08-4.66-.58-6.46-1.52-2.51-1.27-3.99-3.22-4.44-5.84-.26-1.42-.39-2.94-.39-4.55-.04-3.3-.06-8.22-.06-14.77v-.79c.04-.6.37-.92,1.01-.95h5.84c.82-.04,1.31,0,1.46.11.15.11.22.62.22,1.52,0,6.44.02,11.27.06,14.49,0,.45.06.9.17,1.35.37,1.68,1.5,2.66,3.37,2.92,1.31.15,2.77.22,4.38.22.22,0,1.2-.15,2.92-.45,1.65-.41,2.55-1.63,2.7-3.65v-15.11c0-.64.06-1.03.2-1.18.13-.15.51-.22,1.15-.22h6.52c.49.15.71.41.67.79v17.13Z'/%3E%3Cpath class='cls-1' d='M83.39,34.69c-.41-.3-.51-.66-.28-1.07l3.2-5.78c.19-.37.51-.47.95-.28,1.87.86,4.35,1.48,7.44,1.85,3.09.37,5.78.39,8.06.06.71-.11,1.14-.39,1.29-.84.07-.41,0-.69-.22-.84-.67-.49-2.98-.92-6.91-1.29-3.41-.3-5.8-.67-7.19-1.12-2.06-.64-3.72-1.76-4.97-3.37-1.25-1.61-1.84-3.41-1.77-5.39.07-1.76.74-3.42,1.99-4.97,1.25-1.55,3.17-2.65,5.76-3.29,1.8-.41,3.63-.64,5.5-.67,1.87-.04,3.52.07,4.94.31,1.42.24,2.84.59,4.24,1.04,1.4.45,2.49.84,3.26,1.18.77.34,1.47.67,2.11,1.01.19.08.31.22.37.42.06.21.03.4-.08.59l-3.48,5.67c-.19.41-.51.51-.95.28-.64-.34-1.34-.65-2.11-.93-.77-.28-1.85-.6-3.23-.95-1.39-.36-2.74-.53-4.07-.53s-2.87.15-4.63.45c-.34.07-.69.21-1.07.39-.15.07-.22.2-.22.36s.06.29.17.36c.22.15.45.24.67.28.71.22,2.56.51,5.56.84,1.76.19,3.11.35,4.04.48.94.13,2.07.39,3.4.76,1.33.37,2.42.86,3.29,1.46,1.46.97,2.51,2.31,3.15,4.02.64,1.7.75,3.45.34,5.25-.41,1.87-1.33,3.44-2.75,4.69-1.42,1.26-3.15,2.03-5.17,2.33-1.42.22-3.01.34-4.77.34-6.29,0-11.57-1.03-15.84-3.09Z'/%3E%3Cpath class='cls-1' d='M114.4,9.92c0-.6.06-.96.2-1.09s.5-.2,1.09-.2h5.84c.19,0,.43.04.73.11.34.08.51.26.51.56v26.51c-.04.49-.09.77-.17.84-.08.07-.34.11-.79.11h-6.29c-.56,0-.89-.05-.98-.14-.09-.09-.14-.42-.14-.98V9.92Z'/%3E%3Cpath class='cls-1' d='M142.06,37.19c-2.19-.06-4.28-.34-6.26-.84-1.98-.51-3.82-1.39-5.5-2.64-1.69-1.25-3-2.78-3.93-4.58-1.05-2.14-1.5-4.66-1.35-7.58.3-5.32,2.71-9.16,7.25-11.51,3.11-1.65,7.15-2.26,12.13-1.85,3.48.3,6.37,1.37,8.65,3.2.9.75,1.7,1.68,2.42,2.81.26.41.21.79-.17,1.12-.26.19-.77.61-1.52,1.26-.75.66-1.44,1.25-2.08,1.77-.64.53-1.09.86-1.35,1.01-.3.19-.75-.06-1.35-.73-2.02-2.28-4.44-3.43-7.25-3.43-.9,0-1.8.11-2.7.34-2.02.45-3.45,1.65-4.27,3.6-.9,2.28-.86,4.61.11,6.96.67,1.72,1.98,2.85,3.93,3.37,2.21.64,4.33.6,6.35-.11,1.24-.45,2.55-1.59,3.93-3.43.22-.34.4-.51.53-.53.13-.02.35.1.65.36.22.19,1.95,1.57,5.17,4.16.26.26.3.54.11.84-.75,1.09-1.37,1.91-1.85,2.47-.49.56-1.2,1.15-2.13,1.77-.94.62-2.04,1.09-3.31,1.43-1.95.56-4.02.81-6.21.76Z'/%3E%3Cpath class='cls-1' d='M178.82,9.47v-.17c-.04-.11,0-.22.11-.34'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-2' d='M183.35,22.13c-1.28-.85-2.03-2.04-2.25-3.57-.26-1.57-.22-2.92.09-4.06.45-1.34,1.25-2.34,2.41-2.99,1.09-.68,2.44-1.12,4.04-1.31,3.36-.48,6.47-.42,9.31.17.6.13,1.21.32,1.81.58,1.95.81,3.08,2.26,3.41,4.36.18,1.33.12,2.58-.2,3.76-.38,1.27-1.19,2.3-2.41,3.09.27.2.51.36.71.49,1.55.81,2.53,2.1,2.96,3.86.46,1.8.48,3.48.07,5.05-.45,1.57-1.45,2.77-3,3.6-1.36.72-3.3,1.16-5.84,1.33-4.03.29-7.24.12-9.62-.52-3.28-.89-4.95-3.02-4.99-6.39-.01-.77.06-1.62.21-2.56.31-1.77,1.26-3.15,2.85-4.14.07-.07.18-.15.35-.25.17-.1.28-.17.35-.21-.1-.17-.19-.26-.25-.3ZM193.11,26c-.94-.09-1.89-.07-2.85.04-1.37.12-2.04.8-2.02,2.03.02,1.33,1.08,2.04,3.18,2.11,1.2.02,2.14-.14,2.82-.47.68-.33,1-.92.95-1.79-.12-1.13-.81-1.77-2.08-1.92ZM189.04,17.3c-.16.54.01.9.52,1.09.4.16,1.11.21,2.13.15,1.02-.06,1.67-.16,1.97-.3.4-.21.58-.54.54-1.01-.07-.33-.38-.56-.91-.69-1.14-.22-2.31-.18-3.5.1-.37.07-.61.29-.74.66Z'/%3E%3Cpath class='cls-2' d='M213.51,27.77c.21,1.07.99,1.67,2.33,1.82,1.3.18,2.47.12,3.5-.2.9-.31,1.27-.95,1.12-1.92-.25-1.1-1.01-1.79-2.28-2.07-1.77-.31-3.31-.22-4.6.26-.23.14-.45.17-.65.11-.74-.16-1.83-.39-3.29-.71-1.46-.31-2.55-.55-3.29-.71-.13-.07-.29-.15-.45-.24,1.1-5.02,2.09-9.61,2.96-13.76l1.15-.02,15.36-.21h.5c.5-.01.74.25.71.78-.09,1.07-.18,2.55-.29,4.46,0,.17,0,.42-.01.75-.01.33-.02.57-.02.7-.03.5-.09.8-.19.9-.1.1-.38.16-.85.16l-5.76.08-2.35.03c-.23,0-.37.04-.42.11-.05.07-.14.29-.27.65l1.55-.02c2.57.1,4.58.45,6.02,1.07,2.01.84,3.4,2.26,4.16,4.25.79,2.02.96,4.09.49,6.2-.44,2.14-1.72,3.78-3.84,4.91-1.33.72-3.09,1.18-5.29,1.37-2.8.27-5.34.12-7.61-.45-1.44-.31-2.65-.88-3.63-1.7-1.89-1.51-2.8-3.68-2.74-6.52l7.96-.11Z'/%3E%3Cpath class='cls-2' d='M231.54,35.83l-.03-2.3c.11-1.54.25-2.67.4-3.41.28-1.77,1.24-3.12,2.9-4.04.79-.41,2.02-.96,3.68-1.65,2.62-1.07,4.63-2.13,6.01-3.19.2-.17.4-.36.62-.56s.45-.43.72-.69c.26-.25.46-.45.59-.58.07-.07.13-.17.2-.3.06-.13.13-.23.2-.3.78-1.55.33-2.49-1.34-2.83-1.77-.41-3.63-.37-5.55.13-.27.07-.48.14-.65.21-.9.38-1.09.97-.58,1.76.2.3.51.71.92,1.24-.56.31-.94.51-1.14.62-2.78,1.47-4.44,2.36-4.97,2.67-.53.24-.93.16-1.2-.23-.92-1.36-1.42-2.89-1.51-4.61-.09-1.72.32-3.28,1.24-4.7,1.11-1.48,2.8-2.51,5.06-3.07,3.29-.78,6.68-.89,10.16-.34,2.44.37,4.35,1.21,5.74,2.52,1.12,1.09,1.79,2.57,2.01,4.45.23,1.88-.1,3.56-.98,5.04-1.18,1.89-3.09,3.38-5.74,4.48-2.32,1.03-3.73,1.69-4.23,1.96h.8c1.1,0,2.75,0,4.95-.03,2.2-.03,3.85-.05,4.95-.07.5,0,.8.03.9.11.1.08.16.39.16.92l.08,5.45c0,.13-.03.47-.09,1l-24.27.34Z'/%3E%3Cpath class='cls-2' d='M265.75,27.04c.21,1.07.99,1.67,2.33,1.82,1.3.18,2.47.12,3.5-.2.9-.31,1.27-.95,1.12-1.92-.25-1.1-1.01-1.79-2.28-2.07-1.77-.31-3.31-.22-4.6.26-.23.14-.45.17-.65.11-.74-.16-1.83-.39-3.29-.71-1.46-.31-2.55-.55-3.29-.71-.13-.07-.29-.15-.45-.24,1.1-5.02,2.09-9.61,2.96-13.76l1.15-.02,15.36-.21h.5c.5-.01.74.25.71.78-.09,1.07-.18,2.55-.29,4.46,0,.17,0,.42-.01.75-.01.33-.02.57-.02.7-.03.5-.09.8-.19.9-.1.1-.38.16-.85.16l-5.76.08-2.35.03c-.23,0-.37.04-.42.11-.05.07-.14.29-.27.65l1.55-.02c2.57.1,4.58.45,6.02,1.07,2.01.84,3.4,2.26,4.16,4.25.79,2.02.96,4.09.49,6.2-.44,2.14-1.72,3.78-3.84,4.91-1.33.72-3.09,1.18-5.29,1.37-2.8.27-5.34.12-7.61-.45-1.44-.31-2.65-.88-3.63-1.7-1.89-1.51-2.8-3.68-2.74-6.52l7.96-.11Z'/%3E%3Cpath class='cls-2' d='M286.68,20.7c-1.28-.85-2.03-2.04-2.25-3.57-.26-1.57-.22-2.92.09-4.06.45-1.34,1.25-2.34,2.41-2.99,1.09-.68,2.44-1.12,4.04-1.31,3.36-.48,6.47-.42,9.31.17.6.13,1.21.32,1.81.58,1.95.81,3.08,2.26,3.41,4.36.18,1.33.12,2.58-.2,3.76-.38,1.27-1.19,2.3-2.41,3.09.27.2.51.36.71.49,1.55.81,2.53,2.1,2.96,3.86.46,1.8.48,3.48.07,5.05-.45,1.57-1.45,2.77-3,3.6-1.36.72-3.3,1.16-5.84,1.33-4.03.29-7.24.12-9.62-.52-3.28-.89-4.95-3.02-4.99-6.39-.01-.77.06-1.62.21-2.56.31-1.77,1.26-3.15,2.85-4.14.07-.07.18-.15.35-.25.17-.1.28-.17.35-.21-.1-.17-.19-.26-.25-.3ZM296.45,24.57c-.94-.09-1.89-.07-2.85.04-1.37.12-2.04.8-2.02,2.03.02,1.33,1.08,2.04,3.18,2.11,1.2.02,2.14-.14,2.82-.47.68-.33,1-.92.95-1.79-.12-1.13-.81-1.77-2.08-1.92ZM292.37,15.86c-.16.54.01.9.52,1.09.4.16,1.11.21,2.13.15,1.02-.06,1.67-.16,1.97-.3.4-.21.58-.54.54-1.01-.07-.33-.38-.56-.91-.69-1.14-.22-2.31-.18-3.5.1-.37.07-.61.29-.74.66Z'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30rem;
  height: 4.5rem;
  content: "";
}
@media (max-width: 767.98px) {
  .support .section__title h3:before {
    max-width: 20rem;
  }
}
.support strong {
  color: #d7f407;
}
.support__content a {
  margin-top: 1rem;
}
.support__content .content__wrap {
  margin: 0 auto;
  max-width: 85rem;
}
.support__content small {
  margin-top: 3rem;
  line-height: 1.5;
}
.support__default-text {
  padding-top: 2rem;
  text-align: center;
}
.support__default-text strong {
  color: #fff;
}
.support__banner {
  margin-top: 3rem;
}
.support__banner img {
  width: 100%;
}
.news {
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .news {
    padding-bottom: 10rem;
  }
}
.news__entry.type-event {
  margin-bottom: 5rem;
}
.news__entry:not(.type-event) {
  margin-right: 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .news__entry {
    max-width: 45rem;
  }
}
.news__entry:hover .news__entry-details a {
  background-color: #d7f407;
  color: #000;
}
.news__entry-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news__entry-thumb {
  border: 0.1rem solid #fff;
}
.news--artists .news__entry-thumb, .section--light .news__entry-thumb {
  border: 0;
}
.news__entry-details {
  border: 0.1rem solid #fff;
  border-top: 0;
  height: 100%;
  overflow: hidden;
}
.news__entry-details a {
  height: 100%;
}
.news__entry-details p {
  margin: 0;
}
.news--artists .news__entry-details, .section--light .news__entry-details {
  border: 0.3rem solid black;
}
.news--artists .news__entry-details {
  padding: 1rem 1.6rem;
}
@media (max-width: 767.98px) {
  .news--artists .news__entry-details {
    padding: 1.2rem;
  }
}
.news__entry-details a {
  display: flex;
  padding: 1.6rem;
}
@media (max-width: 767.98px) {
  .news__entry-details a {
    padding: 1.2rem;
  }
}
.section--light .news__entry-details a {
  padding: 1.3rem;
}
.news__entry-details h3 + p {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.news__inner {
  padding-top: 2rem;
  padding-bottom: 10rem;
}
@media (min-width: 768px) {
  .news__inner {
    padding-top: 10rem;
    padding-bottom: 15rem;
  }
}
.news--artists .news__inner {
  padding: 0;
}
.news__book {
  margin-top: 7rem;
}
.media__wrap.media--responsive {
  display: flex;
  position: relative;
  align-items: center;
  padding-top: 57%;
  overflow: hidden;
}
.media__wrap.media--responsive img,
.media__wrap.media--responsive video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content h1 {
  font-size: max(3rem, min(3vw, 6rem));
}
.content__media {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 3.5rem;
  max-height: 51.6rem;
}
.content__media:after {
  display: block;
  padding-top: 50%;
  content: "";
}
.content__media img,
.content__media video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content__body {
  display: flex;
  justify-content: flex-end;
  margin-top: 8rem;
}
.content__body .content__wrap {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .content__body .content__wrap {
    max-width: 66%;
  }
}
.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  background: rgba(0, 0, 0, 0.2);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  color: black;
  transition: 0.25s ease opacity;
}
.modal--active .modal {
  opacity: 1;
  pointer-events: all;
}
.modal .content__wrap {
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 0.66rem 0 rgba(0, 0, 0, 0.2);
  background: white;
  padding: 4rem 3rem;
  max-width: 59.6rem;
}
@media (max-width: 767.98px) {
  .modal .content__wrap {
    padding: 2rem 1.5rem;
  }
}
.modal .text--space {
  margin-bottom: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.modal p {
  font-size: 3.2rem;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .modal p {
    font-size: 1.8rem;
  }
}
.modal__close {
  display: inline-block;
  position: absolute;
  top: 1rem;
  right: 1rem;
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg height='512px' id='Layer_1' style='enable-background:new 0 0 512 512;' version='1.1' viewBox='0 0 512 512' width='512px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4 L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1 c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1 c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg height='512px' id='Layer_1' style='enable-background:new 0 0 512 512;' version='1.1' viewBox='0 0 512 512' width='512px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4 L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1 c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1 c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z'/%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: #000;
  width: 2rem;
  height: 2rem;
}
.modal__close:hover {
  cursor: pointer;
  background-color: #a5d108;
}
.subscribe {
  position: relative;
  margin-right: 0.5rem;
  box-shadow: 0.5rem 0.5rem 0 0;
  border: 0.3rem solid #000;
  transition: 0.2s ease transform, 0.2s ease box-shadow;
}
.wpcf7-form.sent .subscribe {
  display: none;
}
.subscribe:focus, .subscribe[focus-within] {
  transform: translate(0.25rem, 0.25rem);
  box-shadow: 0.25rem 0.25rem 0 0;
}
.subscribe:focus, .subscribe:focus-within {
  transform: translate(0.25rem, 0.25rem);
  box-shadow: 0.25rem 0.25rem 0 0;
}
.subscribe:active {
  transform: translate(0.5rem, 0.5rem);
  box-shadow: 0 0 0 0;
}
.subscribe .wpcf7-not-valid-tip,
.subscribe .wpcf7-response-output {
  display: none !important;
}
.subscribe form {
  position: relative;
}
.subscribe input[type=email],
.subscribe span {
  position: relative;
  outline: 0;
  border: 0;
  border: 0;
  width: 100%;
}
.subscribe input[type=email] {
  padding: 0.75rem 1rem;
}
@media (max-width: 767.98px) {
  .subscribe input[type=email] {
    padding: 0.5rem 0.75rem;
  }
}
.subscribe button,
.subscribe input[type=submit] {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  bottom: -0.3rem;
  border: 0.3rem solid #000;
  background-color: #d7f407;
}
.subscribe button:hover,
.subscribe input[type=submit]:hover {
  background-color: #000;
  color: #d7f407;
}
.notfound {
  padding-top: 10rem;
}
.notfound svg {
  margin-top: 2rem;
  width: max(15rem, min(50vw, 40rem));
  height: auto;
}
