@charset "UTF-8";
/*------------------------------------*
  Light
*------------------------------------*/
@font-face {
  font-family: brother-1816;
  src: url("../fonts/brother1816-light_italic-web.woff2") format("woff2"), url("../fonts/brother1816-light_italic-web.woff") format("woff");
  font-display: auto;
  font-weight: 200;
}
/*------------------------------------*
  Regular
*------------------------------------*/
@font-face {
  font-family: brother-1816;
  src: url("../fonts/brother1816-book_italic-web.woff2") format("woff2"), url("../fonts/brother1816-book_italic-web.woff") format("woff");
  font-display: auto;
  font-weight: 300;
}
/*------------------------------------*
  Extrabold
*------------------------------------*/
@font-face {
  font-family: brother-1816;
  src: url("../fonts/brother1816-extrabold_italic-web.woff2") format("woff2"), url("../fonts/brother1816-extrabold_italic-web.woff2") format("woff");
  font-display: auto;
  font-weight: 800;
}
/*------------------------------------*
  Base font size
*------------------------------------*/
/*------------------------------------*
  Font family
*------------------------------------*/
/*------------------------------------*
  Primary font scales Brother-1816
*------------------------------------*/
/*------------------------------------*
  Secondary font scales Inter
*------------------------------------*/
:root {
  --wrapper: 120rem;
}

/*------------------------------------*
  HEADER VARIABLES
*------------------------------------*/
/*------------------------------------*
  GLOBAL X PADDING
*------------------------------------*/
/*------------------------------------*
  GRID
*------------------------------------*/
/*------------------------------------*\
  Important! 
  Everytime you need to add a color in this file, remember to 
  add it also into its config.json file in:
  src/pattern-library/01-design-tokens/colors/colors.config.js
\*------------------------------------*/
:root {
  --base-100: 0, 0%, 100%;
  --primary-100: 245, 37%, 17%;
  --highlight-100: 174, 100%, 44%;
  --accent-100: 347, 89%, 48%;
  --grey: 240, 2%, 92%;
  --geyser-blue: 210, 21%, 85%;
  --breeze-grey: 216, 20%, 95%;
}

/*------------------------------------*
  SASS map for generating utility classes
*------------------------------------*/
/* offset-x | offset-y | blur-radius | spread-radius | color */
/*------------------------------------*\
    Background gradient top to bottom
\*------------------------------------*/
/*------------------------------------*\
    Background gradient left to right
\*------------------------------------*/
/*------------------------------------*\
    Px to Em
\*------------------------------------*/
/*------------------------------------*\
    Px to Rem
\*------------------------------------*/
/*------------------------------------*
  Outline
*------------------------------------*/
/*------------------------------------*
  Aspect ratio fallback
*------------------------------------*/
/*------------------------------------*\
  Responsive iframe video
\*------------------------------------*/
/*------------------------------------*\
  Responsive typo management
\*------------------------------------*/
/*
.test {
  @include shadow(level-800);
}
*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

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

/**
 * 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,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

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

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

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * 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 {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
  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 {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

html {
  font-size: 100%;
  font-family: "Inter", sans-serif;
  color: RGB(var(--primary-100));
  background-color: RGB(var(--white));
  scroll-behavior: smooth;
}

.has-offCanvas {
  overflow: hidden;
}

html, body {
  overflow-x: hidden;
}

p {
  color: currentColor;
}

p, h1, h2, h3, h4, h5, strong {
  position: relative;
  z-index: 1;
}

b, strong {
  font-weight: 800;
}

em, i {
  font-style: italic;
}

a {
  color: HSL(var(--accent-100));
  text-underline-offset: 0.25rem;
  display: inline-block;
}
p a, ul li a {
  font-size: inherit;
  line-height: inherit;
  display: inline;
}

a[target=_blank]:after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4Ljc1IDIxLjc1SDIuMjVWNC44NzVIMTEuMjVWMy4zNzVIMC43NVYyMy4yNUgyMC4yNVYxMi43NUgxOC43NVYyMS43NVoiIGZpbGw9IiNFODBFM0YiLz4KPHBhdGggZD0iTTE0LjI1IDAuNzVWMi4yNUgyMC42ODk0TDguODQ0NzMgMTQuMDk0N0w5LjkwNTMyIDE1LjE1NTNMMjEuNzUgMy4zMTA2NFY5Ljc1SDIzLjI1VjAuNzVIMTQuMjVaIiBmaWxsPSIjRTgwRTNGIi8+Cjwvc3ZnPgo=");
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-size: contain;
  margin: 0 0.25rem;
  vertical-align: middle;
}

:focus {
  outline: 0.0625rem solid HSL(var(--accent-100));
}

a.skip-link {
  position: absolute;
  top: -1000px;
  left: -1000px;
  height: 1px;
  width: 1px;
  text-align: left;
  overflow: hidden;
  background-color: HSL(var(--base-100));
  padding: 0.5rem;
}
a.skip-link:active, a.skip-link:focus, a.skip-link:hover {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 900;
}

ul, ol {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.o-paper,
.o-paragraph {
  /*------------------------------------*\
    CSS styles for nested lists
  \*------------------------------------*/
}
.o-paper li,
.o-paragraph li {
  list-style: none;
}
.o-paper li + li,
.o-paragraph li + li {
  margin-top: 0.75rem;
}
.o-paper li:before,
.o-paragraph li:before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-color: HSL(var(--accent-100));
  border-radius: 50%;
  margin-right: 0.625rem;
}
.o-paper li p,
.o-paragraph li p {
  display: inline-block;
}
.o-paper ul ul,
.o-paper ol ol,
.o-paper ul ol,
.o-paper ol ul,
.o-paragraph ul ul,
.o-paragraph ol ol,
.o-paragraph ul ol,
.o-paragraph ol ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}
@media only screen and (min-width: 46.75em) {
  .o-paper ul ul,
.o-paper ol ol,
.o-paper ul ol,
.o-paper ol ul,
.o-paragraph ul ul,
.o-paragraph ol ol,
.o-paragraph ul ol,
.o-paragraph ol ul {
    padding-left: 2.25rem;
  }
}
.o-paper ul ul li:before, .o-paper ul ol li:before, .o-paper ol ul li:before, .o-paper ol ol li:before,
.o-paragraph ul ul li:before,
.o-paragraph ul ol li:before,
.o-paragraph ol ul li:before,
.o-paragraph ol ol li:before {
  border-radius: 0;
  width: 0.625rem;
  height: 0.625rem;
}
.o-paper ul ul ul li:before, .o-paper ul ul ol li:before, .o-paper ul ol ul li:before, .o-paper ul ol ol li:before, .o-paper ol ul ul li:before, .o-paper ol ul ol li:before, .o-paper ol ol ul li:before, .o-paper ol ol ol li:before,
.o-paragraph ul ul ul li:before,
.o-paragraph ul ul ol li:before,
.o-paragraph ul ol ul li:before,
.o-paragraph ul ol ol li:before,
.o-paragraph ol ul ul li:before,
.o-paragraph ol ul ol li:before,
.o-paragraph ol ol ul li:before,
.o-paragraph ol ol ol li:before {
  transform: rotate(45deg);
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
button > * {
  pointer-events: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.el-img-full {
  width: 100%;
}

.el-figure__caption {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
  color: HSL(var(--primary-100));
  text-align: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  max-width: 56.25rem;
}

@media screen and (min-width: 80em){
  .el-figure__caption{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .el-figure__caption{
    font-size: 0.875rem;
  }
}

svg {
  vertical-align: middle;
}

.el-separator--solid {
  border-top: 0.0625rem solid currentColor;
}

.el-separator--double {
  border-top: 0.1875rem double currentColor;
}

.el-separator--dotted {
  border-top: 0.0625rem dotted currentColor;
}

.el-separator--dashed {
  border-top: 0.0625rem dashed currentColor;
}

.el-separator--spaced {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 46.75em) {
  .el-separator--spaced {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

.el-video {
  width: 100%;
}
.el-video__player {
  width: 100%;
  height: auto;
}
.el-video__caption {
  margin-top: 1.5rem;
}

.o-container {
  max-width: var(--wrapper);
  margin: 0 auto;
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media only screen and (min-width: 46.75em) {
  .o-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.o-container-fluid {
  position: relative;
}

.o-container--raw {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 46.75em) {
  .o-container--raw {
    padding-left: 0;
    padding-right: 0;
  }
}

/*------------------------------------*
  Custom CSS modifier that expands grid height to 100%
*------------------------------------*/
.grid--full-height {
  height: 100%;
}

.o-antipodes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.o-paper {
  color: HSL(var(--primary-100));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  /* Aggiunge virgolette aperte agli elementi `<blockquote>` o ai primi figli `<p>` senza classe. */
  /* Aggiunge virgolette chiuse agli elementi `<blockquote>` o agli ultimi figli `<p>` senza classe. */
  /* Nasconde le virgolette nei `<blockquote>` che contengono `<p>` senza classi per evitare duplicazioni delle virgolette */
  /*------------------------------------*
    Redactor default figure element
  *------------------------------------*/
  /*------------------------------------*\
    Redactor default table element
  \*------------------------------------*/
}
@media only screen and (min-width: 46.75em) {
  .o-paper {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.o-paper h2 {
  font-family: brother-1816;
  font-size: calc(1.5rem + 0.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
  color: currentColor;
}
@media screen and (min-width: 80em){
  .o-paper h2{
    font-size: 2.4375rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paper h2{
    font-size: 1.5rem;
  }
}
.o-paper h3 {
  font-family: brother-1816;
  font-size: calc(1.25rem + 0.6875 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
  color: currentColor;
  margin-top: 1.5rem;
}
@media screen and (min-width: 80em){
  .o-paper h3{
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paper h3{
    font-size: 1.25rem;
  }
}
.o-paper p:not([class]),
.o-paper li {
  color: currentColor;
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}
@media screen and (min-width: 80em){
  .o-paper p:not([class]),
.o-paper li{
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paper p:not([class]),
.o-paper li{
    font-size: 1rem;
  }
}
.o-paper blockquote {
  margin-block: 1.5rem;
}
@media only screen and (min-width: 46.75em) {
  .o-paper blockquote {
    margin-block: 3rem;
  }
}
.o-paper blockquote,
.o-paper blockquote p:not([class]) {
  font-family: brother-1816;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 300;
}
@media screen and (min-width: 80em){
  .o-paper blockquote,
.o-paper blockquote p:not([class]){
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paper blockquote,
.o-paper blockquote p:not([class]){
    font-size: 1rem;
  }
}
.o-paper blockquote::before,
.o-paper blockquote p:not([class]):first-child::before {
  content: "“";
  margin-right: 0.25rem;
}
.o-paper blockquote::after,
.o-paper blockquote p:not([class]):last-child::after {
  content: "”";
  margin-left: 0.25rem;
}
.o-paper blockquote:has(p:not([class]))::before, .o-paper blockquote:has(p:not([class]))::after {
  display: none;
}
.o-paper .emphasis {
  font-family: brother-1816;
  font-size: calc(1.25rem + 0.6875 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 300;
  margin-block: 1.5rem;
}
@media screen and (min-width: 80em){
  .o-paper .emphasis{
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paper .emphasis{
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 46.75em) {
  .o-paper .emphasis {
    margin-block: 3rem;
  }
}
.o-paper p:not([class]) + p:not([class]) {
  margin-top: 1.5rem;
}
.o-paper p + h2,
.o-paper ul + h2 {
  margin-top: 3rem;
}
@media only screen and (min-width: 46.75em) {
  .o-paper p + h2,
.o-paper ul + h2 {
    margin-top: 6rem;
  }
}
.o-paper p + h3,
.o-paper ul + h3 {
  margin-top: 1.5rem;
}
.o-paper h2 + p,
.o-paper h3 + p,
.o-paper h2 + ul,
.o-paper h3 + ul {
  margin-top: 1.5rem;
}
.o-paper figure:not([class]) {
  padding: 3rem 0;
}
.o-paper figure:not([class]) img {
  width: 100%;
  height: auto;
}
.o-paper figure:not([class]).redactor-image-left {
  text-align: left;
}
.o-paper figure:not([class]).redactor-image-right {
  text-align: right;
}
.o-paper figure:not([class]).redactor-image-center {
  text-align: center;
}
.o-paper figure[class^=redactor-image] figcaption,
.o-paper figure:not([class]) figcaption {
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  text-align: center;
  padding: 1rem;
}
@media screen and (min-width: 80em){
  .o-paper figure[class^=redactor-image] figcaption,
.o-paper figure:not([class]) figcaption{
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paper figure[class^=redactor-image] figcaption,
.o-paper figure:not([class]) figcaption{
    font-size: 0.75rem;
  }
}
.o-paper * + ol,
.o-paper * + ul {
  margin: 1.5rem 0;
}
.o-paper iframe {
  display: block;
  width: 80%;
  height: 37.5rem;
  margin-left: auto;
  margin-right: auto;
}
.o-paper figure:has(iframe[src*="youtube.com"]) {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  margin-block: 3rem;
}
.o-paper iframe[src*="youtube.com"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.o-paper .o-paper__video-element {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.o-paper .o-paper__video-element iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.o-paper table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.o-paper table th, .o-paper table td {
  border: 1px solid HSL(var(--geyser-blue));
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
}
@media only screen and (min-width: 46.75em) {
  .o-paper table th, .o-paper table td {
    padding: 1rem;
  }
}
.o-paper table th {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 700;
}
@media screen and (min-width: 80em){
  .o-paper table th{
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paper table th{
    font-size: 1rem;
  }
}
.o-paper table td {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}
@media screen and (min-width: 80em){
  .o-paper table td{
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paper table td{
    font-size: 1rem;
  }
}

.o-paperImageBlock {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.o-paperImageBlock img {
  width: 100%;
}

/*------------------------------------*
  Modifier: customBg
*------------------------------------*/
.o-paper--customBg {
  color: HSL(var(--base-100));
  padding-left: 0;
  padding-right: 0;
}

/*------------------------------------*
  Modifier: person
*------------------------------------*/
.o-paper--person figure {
  width: 100vw;
  position: relative;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
.o-paper--person figure img {
  width: 100%;
  max-width: 120rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media only screen and (min-width: 46.75em) {
  .o-paper--person figure img {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/*------------------------------------*
  Modifier: spaceless
*------------------------------------*/
.o-paper--spaceless {
  padding: 0;
}

.o-paragraph {
  color: HSL(var(--primary-100));
}
.u-bg-color-primary-100 .o-paragraph {
  color: HSL(var(--base-100));
}
.o-paragraph h2:not([class]) {
  font-family: brother-1816;
  font-size: calc(1.6875rem + 1.375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
}
@media screen and (min-width: 80em){
  .o-paragraph h2:not([class]){
    font-size: 3.0625rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paragraph h2:not([class]){
    font-size: 1.6875rem;
  }
}
.o-paragraph h3:not([class]) {
  font-family: brother-1816;
  font-size: calc(1.5rem + 0.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
}
@media screen and (min-width: 80em){
  .o-paragraph h3:not([class]){
    font-size: 2.4375rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paragraph h3:not([class]){
    font-size: 1.5rem;
  }
}
.o-paragraph h4:not([class]) {
  font-family: brother-1816;
  font-size: calc(1.25rem + 0.6875 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 300;
}
@media screen and (min-width: 80em){
  .o-paragraph h4:not([class]){
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paragraph h4:not([class]){
    font-size: 1.25rem;
  }
}
.o-paragraph h5:not([class]) {
  font-family: brother-1816;
  font-size: calc(1rem + 0.25 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 800;
}
@media screen and (min-width: 80em){
  .o-paragraph h5:not([class]){
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paragraph h5:not([class]){
    font-size: 1rem;
  }
}
.o-paragraph p:not([class]) {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}
@media screen and (min-width: 80em){
  .o-paragraph p:not([class]){
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paragraph p:not([class]){
    font-size: 1rem;
  }
}
.o-paragraph * + ol,
.o-paragraph * + ul {
  margin: 1.5rem 0;
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}
@media screen and (min-width: 80em){
  .o-paragraph * + ol,
.o-paragraph * + ul{
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paragraph * + ol,
.o-paragraph * + ul{
    font-size: 1rem;
  }
}
.o-paragraph li {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}
@media screen and (min-width: 80em){
  .o-paragraph li{
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paragraph li{
    font-size: 1rem;
  }
}
.o-paragraph li + li {
  margin-top: 0.75rem;
}
.o-paragraph p + p {
  margin-top: 1.5rem;
}
.o-paragraph h2 + p,
.o-paragraph h3 + p,
.o-paragraph h4 + p,
.o-paragraph h2 + div,
.o-paragraph h3 + div,
.o-paragraph h4 + div {
  margin-top: 1.5rem;
}
.o-paragraph h5 + p {
  margin-top: 0.5rem;
}
.o-paragraph .c-action, .o-paragraph #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner .o-paragraph .iubenda-cs-customize-btn, .o-paragraph #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner .o-paragraph .iubenda-cs-reject-btn, .o-paragraph #iubenda-cs-banner .iubenda-cs-accept-btn, #iubenda-cs-banner .o-paragraph .iubenda-cs-accept-btn {
  display: inline-block;
  margin-top: 1.5rem;
  color: currentColor;
}

/*------------------------------------*
  Raw (without font styles)
*------------------------------------*/
.o-paragraph--raw p:not([class]) {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.o-paragraph--raw * + ol,
.o-paragraph--raw * + ul {
  margin: 1.5rem 0;
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}
@media screen and (min-width: 80em){
  .o-paragraph--raw * + ol,
.o-paragraph--raw * + ul{
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 26.75em){
  .o-paragraph--raw * + ol,
.o-paragraph--raw * + ul{
    font-size: 1rem;
  }
}
.o-paragraph--raw li + li {
  margin-top: 0.75rem;
}
.o-paragraph--raw p + p {
  margin-top: 1.5rem;
}
.o-paragraph--raw h2 + p,
.o-paragraph--raw h3 + p,
.o-paragraph--raw h4 + p,
.o-paragraph--raw h2 + div,
.o-paragraph--raw h3 + div,
.o-paragraph--raw h4 + div {
  margin-top: 1.5rem;
}
.o-paragraph--raw h5 + p {
  margin-top: 0.5rem;
}

.o-card__list {
  display: block;
  list-style: none;
  margin: -12px;
}

.o-card__list-item {
  display: inline-block;
  margin: 8px;
}

.o-splash p + p {
  margin-top: 1.5rem;
}

/*------------------------------------*
  LIFE IN TANGIBLE TEAM LIST (DEFAULT)
*------------------------------------*/
.l-teamlist {
  --row-gap: 1.5rem;
  --col-gap: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--row-gap) var(--col-gap);
}
@media only screen and (min-width: 26.75em) {
  .l-teamlist {
    grid-template-columns: repeat(3, 1fr);
    --row-gap: 2rem;
    --col-gap: 1.5rem;
  }
}
@media only screen and (min-width: 46.75em) {
  .l-teamlist {
    grid-template-columns: repeat(4, 1fr);
    --row-gap: 4rem;
  }
}
@media only screen and (min-width: 64em) {
  .l-teamlist {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media only screen and (min-width: 46.75em) {
  .l-teamlist__item--join {
    grid-column: 4;
    align-self: end;
  }
}
@media only screen and (min-width: 64em) {
  .l-teamlist__item--join {
    grid-column: 5;
  }
}
@media only screen and (max-width: 46.75em) {
  .l-teamlist__item--join {
    grid-column: 1/-1;
    align-self: initial;
  }
}

/*------------------------------------*
  WORK TEAM LIST
*------------------------------------*/
.l-teamlist-work {
  --col-gap: 0.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--col-gap);
}
@media only screen and (min-width: 46.75em) {
  .l-teamlist-work {
    grid-template-columns: repeat(2, 1fr);
    --col-gap: 1.5rem;
  }
}
@media only screen and (min-width: 80em) {
  .l-teamlist-work {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-single-person {
  grid-template-areas: "hero" "img" "text";
}
@media only screen and (min-width: 80em) {
  .l-single-person {
    grid-template-areas: "hero img" "text img";
  }
}

.l-single-person__hero {
  grid-area: hero;
  grid-column: span 12;
}
@media only screen and (min-width: 80em) {
  .l-single-person__hero {
    grid-column: 1/span 8;
  }
}

.l-single-person__text {
  grid-area: text;
  grid-column: span 12;
}
@media only screen and (min-width: 80em) {
  .l-single-person__text {
    grid-column: 1/span 8;
  }
}

.l-single-person__img {
  grid-area: img;
  grid-column: span 12;
}
@media only screen and (min-width: 80em) {
  .l-single-person__img {
    grid-column: 9/span 4;
  }
}

.l-ethicalcardlist__last-item {
  text-align: center;
  align-self: center;
  margin-top: 6rem;
}
@media only screen and (min-width: 46.75em) {
  .l-ethicalcardlist__last-item {
    margin-top: 0;
  }
}
@media only screen and (min-width: 80em) {
  .l-ethicalcardlist__last-item {
    grid-column: 3;
  }
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

[class~=container] {
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 1000px;
}

[class~=grid] {
  display: grid !important;
  grid-gap: 0.75rem;
  grid-template-columns: repeat(12, 1fr);
}

[class~=vertical-start] {
  align-items: start;
}

[class~=vertical-center] {
  align-items: center;
}

[class~=vertical-end] {
  align-items: end;
}

[class~=between] {
  justify-content: center;
}

[class~=gap-none] {
  grid-gap: 0;
  margin-bottom: 0;
}

[class~=gap-column-none] {
  grid-column-gap: 0;
}

[class~=gap-row-none] {
  grid-row-gap: 0;
  margin-bottom: 0;
}

[class~=first] {
  order: -1;
}

[class~=last] {
  order: 12;
}

[class~=hide] {
  display: none !important;
}

[class~=show] {
  display: initial !important;
}

[class~=grid][class*="@"] {
  grid-template-columns: 12fr;
}

[class~=grid][class*="@sm"], [class~=grid][class*="@md"], [class~=grid][class*="@lg"], [class~=grid][class*="@xl"] {
  grid-template-columns: 12fr;
}

[class~="12@sm"], [class~="12@md"], [class~="12@lg"], [class~="12@xl"], [class~="11@sm"], [class~="11@md"], [class~="11@lg"], [class~="11@xl"], [class~="10@sm"], [class~="10@md"], [class~="10@lg"], [class~="10@xl"], [class~="9@sm"], [class~="9@md"], [class~="9@lg"], [class~="9@xl"], [class~="8@sm"], [class~="8@md"], [class~="8@lg"], [class~="8@xl"], [class~="7@sm"], [class~="7@md"], [class~="7@lg"], [class~="7@xl"], [class~="6@sm"], [class~="6@md"], [class~="6@lg"], [class~="6@xl"], [class~="5@sm"], [class~="5@md"], [class~="5@lg"], [class~="5@xl"], [class~="4@sm"], [class~="4@md"], [class~="4@lg"], [class~="4@xl"], [class~="3@sm"], [class~="3@md"], [class~="3@lg"], [class~="3@xl"], [class~="2@sm"], [class~="2@md"], [class~="2@lg"], [class~="2@xl"], [class~="1@sm"], [class~="1@md"], [class~="1@lg"], [class~="1@xl"] {
  grid-column: span 12;
}

[class~=grid][class~="1"] {
  grid-template-columns: repeat(12, 1fr);
}

[class~="1"] {
  grid-column: span 1/span 1;
}

[class~=grid][class~="2"] {
  grid-template-columns: repeat(6, 1fr);
}

[class~="2"] {
  grid-column: span 2/span 2;
}

[class~=grid][class~="3"] {
  grid-template-columns: repeat(4, 1fr);
}

[class~="3"] {
  grid-column: span 3/span 3;
}

[class~=grid][class~="4"] {
  grid-template-columns: repeat(3, 1fr);
}

[class~="4"] {
  grid-column: span 4/span 4;
}

[class~=grid][class~="5"] {
  grid-template-columns: repeat(2.4, 1fr);
}

[class~="5"] {
  grid-column: span 5/span 5;
}

[class~=grid][class~="6"] {
  grid-template-columns: repeat(2, 1fr);
}

[class~="6"] {
  grid-column: span 6/span 6;
}

[class~=grid][class~="7"] {
  grid-template-columns: repeat(1.7142857143, 1fr);
}

[class~="7"] {
  grid-column: span 7/span 7;
}

[class~=grid][class~="8"] {
  grid-template-columns: repeat(1.5, 1fr);
}

[class~="8"] {
  grid-column: span 8/span 8;
}

[class~=grid][class~="9"] {
  grid-template-columns: repeat(1.3333333333, 1fr);
}

[class~="9"] {
  grid-column: span 9/span 9;
}

[class~=grid][class~="10"] {
  grid-template-columns: repeat(1.2, 1fr);
}

[class~="10"] {
  grid-column: span 10/span 10;
}

[class~=grid][class~="11"] {
  grid-template-columns: repeat(1.0909090909, 1fr);
}

[class~="11"] {
  grid-column: span 11/span 11;
}

[class~=grid][class~="12"] {
  grid-template-columns: repeat(1, 1fr);
}

[class~="12"] {
  grid-column: span 12/span 12;
}

[class~=offset-1] {
  grid-column-start: 1;
}

[class~=offset-2] {
  grid-column-start: 2;
}

[class~=offset-3] {
  grid-column-start: 3;
}

[class~=offset-4] {
  grid-column-start: 4;
}

[class~=offset-5] {
  grid-column-start: 5;
}

[class~=offset-6] {
  grid-column-start: 6;
}

[class~=offset-7] {
  grid-column-start: 7;
}

[class~=offset-8] {
  grid-column-start: 8;
}

[class~=offset-9] {
  grid-column-start: 9;
}

[class~=offset-10] {
  grid-column-start: 10;
}

[class~=offset-11] {
  grid-column-start: 11;
}

[class~=offset-12] {
  grid-column-start: 12;
}

@media (min-width: 26.75em) {
  [class~=grid][class~="1@sm"] {
    grid-template-columns: repeat(12, 1fr);
  }

  [class~="1@sm"] {
    grid-column: span 1/span 1;
  }

  [class~=grid][class~="2@sm"] {
    grid-template-columns: repeat(6, 1fr);
  }

  [class~="2@sm"] {
    grid-column: span 2/span 2;
  }

  [class~=grid][class~="3@sm"] {
    grid-template-columns: repeat(4, 1fr);
  }

  [class~="3@sm"] {
    grid-column: span 3/span 3;
  }

  [class~=grid][class~="4@sm"] {
    grid-template-columns: repeat(3, 1fr);
  }

  [class~="4@sm"] {
    grid-column: span 4/span 4;
  }

  [class~=grid][class~="5@sm"] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [class~="5@sm"] {
    grid-column: span 5/span 5;
  }

  [class~=grid][class~="6@sm"] {
    grid-template-columns: repeat(2, 1fr);
  }

  [class~="6@sm"] {
    grid-column: span 6/span 6;
  }

  [class~=grid][class~="7@sm"] {
    grid-template-columns: repeat(1.7142857143, 1fr);
  }

  [class~="7@sm"] {
    grid-column: span 7/span 7;
  }

  [class~=grid][class~="8@sm"] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [class~="8@sm"] {
    grid-column: span 8/span 8;
  }

  [class~=grid][class~="9@sm"] {
    grid-template-columns: repeat(1.3333333333, 1fr);
  }

  [class~="9@sm"] {
    grid-column: span 9/span 9;
  }

  [class~=grid][class~="10@sm"] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [class~="10@sm"] {
    grid-column: span 10/span 10;
  }

  [class~=grid][class~="11@sm"] {
    grid-template-columns: repeat(1.0909090909, 1fr);
  }

  [class~="11@sm"] {
    grid-column: span 11/span 11;
  }

  [class~=grid][class~="12@sm"] {
    grid-template-columns: repeat(1, 1fr);
  }

  [class~="12@sm"] {
    grid-column: span 12/span 12;
  }

  [class~="offset-1@sm"] {
    grid-column-start: 1;
  }

  [class~="offset-2@sm"] {
    grid-column-start: 2;
  }

  [class~="offset-3@sm"] {
    grid-column-start: 3;
  }

  [class~="offset-4@sm"] {
    grid-column-start: 4;
  }

  [class~="offset-5@sm"] {
    grid-column-start: 5;
  }

  [class~="offset-6@sm"] {
    grid-column-start: 6;
  }

  [class~="offset-7@sm"] {
    grid-column-start: 7;
  }

  [class~="offset-8@sm"] {
    grid-column-start: 8;
  }

  [class~="offset-9@sm"] {
    grid-column-start: 9;
  }

  [class~="offset-10@sm"] {
    grid-column-start: 10;
  }

  [class~="offset-11@sm"] {
    grid-column-start: 11;
  }

  [class~="offset-12@sm"] {
    grid-column-start: 12;
  }

  [class~="hide@sm"] {
    display: none !important;
  }

  [class~="show@sm"] {
    display: initial !important;
  }

  [class~="first@sm"] {
    order: -1;
  }

  [class~="last@sm"] {
    order: 12;
  }
}
@media (min-width: 46.75em) {
  [class~=grid][class~="1@md"] {
    grid-template-columns: repeat(12, 1fr);
  }

  [class~="1@md"] {
    grid-column: span 1/span 1;
  }

  [class~=grid][class~="2@md"] {
    grid-template-columns: repeat(6, 1fr);
  }

  [class~="2@md"] {
    grid-column: span 2/span 2;
  }

  [class~=grid][class~="3@md"] {
    grid-template-columns: repeat(4, 1fr);
  }

  [class~="3@md"] {
    grid-column: span 3/span 3;
  }

  [class~=grid][class~="4@md"] {
    grid-template-columns: repeat(3, 1fr);
  }

  [class~="4@md"] {
    grid-column: span 4/span 4;
  }

  [class~=grid][class~="5@md"] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [class~="5@md"] {
    grid-column: span 5/span 5;
  }

  [class~=grid][class~="6@md"] {
    grid-template-columns: repeat(2, 1fr);
  }

  [class~="6@md"] {
    grid-column: span 6/span 6;
  }

  [class~=grid][class~="7@md"] {
    grid-template-columns: repeat(1.7142857143, 1fr);
  }

  [class~="7@md"] {
    grid-column: span 7/span 7;
  }

  [class~=grid][class~="8@md"] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [class~="8@md"] {
    grid-column: span 8/span 8;
  }

  [class~=grid][class~="9@md"] {
    grid-template-columns: repeat(1.3333333333, 1fr);
  }

  [class~="9@md"] {
    grid-column: span 9/span 9;
  }

  [class~=grid][class~="10@md"] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [class~="10@md"] {
    grid-column: span 10/span 10;
  }

  [class~=grid][class~="11@md"] {
    grid-template-columns: repeat(1.0909090909, 1fr);
  }

  [class~="11@md"] {
    grid-column: span 11/span 11;
  }

  [class~=grid][class~="12@md"] {
    grid-template-columns: repeat(1, 1fr);
  }

  [class~="12@md"] {
    grid-column: span 12/span 12;
  }

  [class~="offset-1@md"] {
    grid-column-start: 1;
  }

  [class~="offset-2@md"] {
    grid-column-start: 2;
  }

  [class~="offset-3@md"] {
    grid-column-start: 3;
  }

  [class~="offset-4@md"] {
    grid-column-start: 4;
  }

  [class~="offset-5@md"] {
    grid-column-start: 5;
  }

  [class~="offset-6@md"] {
    grid-column-start: 6;
  }

  [class~="offset-7@md"] {
    grid-column-start: 7;
  }

  [class~="offset-8@md"] {
    grid-column-start: 8;
  }

  [class~="offset-9@md"] {
    grid-column-start: 9;
  }

  [class~="offset-10@md"] {
    grid-column-start: 10;
  }

  [class~="offset-11@md"] {
    grid-column-start: 11;
  }

  [class~="offset-12@md"] {
    grid-column-start: 12;
  }

  [class~="hide@md"] {
    display: none !important;
  }

  [class~="show@md"] {
    display: initial !important;
  }

  [class~="first@md"] {
    order: -1;
  }

  [class~="last@md"] {
    order: 12;
  }
}
@media (min-width: 64em) {
  [class~=grid][class~="1@lg"] {
    grid-template-columns: repeat(12, 1fr);
  }

  [class~="1@lg"] {
    grid-column: span 1/span 1;
  }

  [class~=grid][class~="2@lg"] {
    grid-template-columns: repeat(6, 1fr);
  }

  [class~="2@lg"] {
    grid-column: span 2/span 2;
  }

  [class~=grid][class~="3@lg"] {
    grid-template-columns: repeat(4, 1fr);
  }

  [class~="3@lg"] {
    grid-column: span 3/span 3;
  }

  [class~=grid][class~="4@lg"] {
    grid-template-columns: repeat(3, 1fr);
  }

  [class~="4@lg"] {
    grid-column: span 4/span 4;
  }

  [class~=grid][class~="5@lg"] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [class~="5@lg"] {
    grid-column: span 5/span 5;
  }

  [class~=grid][class~="6@lg"] {
    grid-template-columns: repeat(2, 1fr);
  }

  [class~="6@lg"] {
    grid-column: span 6/span 6;
  }

  [class~=grid][class~="7@lg"] {
    grid-template-columns: repeat(1.7142857143, 1fr);
  }

  [class~="7@lg"] {
    grid-column: span 7/span 7;
  }

  [class~=grid][class~="8@lg"] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [class~="8@lg"] {
    grid-column: span 8/span 8;
  }

  [class~=grid][class~="9@lg"] {
    grid-template-columns: repeat(1.3333333333, 1fr);
  }

  [class~="9@lg"] {
    grid-column: span 9/span 9;
  }

  [class~=grid][class~="10@lg"] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [class~="10@lg"] {
    grid-column: span 10/span 10;
  }

  [class~=grid][class~="11@lg"] {
    grid-template-columns: repeat(1.0909090909, 1fr);
  }

  [class~="11@lg"] {
    grid-column: span 11/span 11;
  }

  [class~=grid][class~="12@lg"] {
    grid-template-columns: repeat(1, 1fr);
  }

  [class~="12@lg"] {
    grid-column: span 12/span 12;
  }

  [class~="offset-1@lg"] {
    grid-column-start: 1;
  }

  [class~="offset-2@lg"] {
    grid-column-start: 2;
  }

  [class~="offset-3@lg"] {
    grid-column-start: 3;
  }

  [class~="offset-4@lg"] {
    grid-column-start: 4;
  }

  [class~="offset-5@lg"] {
    grid-column-start: 5;
  }

  [class~="offset-6@lg"] {
    grid-column-start: 6;
  }

  [class~="offset-7@lg"] {
    grid-column-start: 7;
  }

  [class~="offset-8@lg"] {
    grid-column-start: 8;
  }

  [class~="offset-9@lg"] {
    grid-column-start: 9;
  }

  [class~="offset-10@lg"] {
    grid-column-start: 10;
  }

  [class~="offset-11@lg"] {
    grid-column-start: 11;
  }

  [class~="offset-12@lg"] {
    grid-column-start: 12;
  }

  [class~="hide@lg"] {
    display: none !important;
  }

  [class~="show@lg"] {
    display: initial !important;
  }

  [class~="first@lg"] {
    order: -1;
  }

  [class~="last@lg"] {
    order: 12;
  }
}
@media (min-width: 80em) {
  [class~=grid][class~="1@xl"] {
    grid-template-columns: repeat(12, 1fr);
  }

  [class~="1@xl"] {
    grid-column: span 1/span 1;
  }

  [class~=grid][class~="2@xl"] {
    grid-template-columns: repeat(6, 1fr);
  }

  [class~="2@xl"] {
    grid-column: span 2/span 2;
  }

  [class~=grid][class~="3@xl"] {
    grid-template-columns: repeat(4, 1fr);
  }

  [class~="3@xl"] {
    grid-column: span 3/span 3;
  }

  [class~=grid][class~="4@xl"] {
    grid-template-columns: repeat(3, 1fr);
  }

  [class~="4@xl"] {
    grid-column: span 4/span 4;
  }

  [class~=grid][class~="5@xl"] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [class~="5@xl"] {
    grid-column: span 5/span 5;
  }

  [class~=grid][class~="6@xl"] {
    grid-template-columns: repeat(2, 1fr);
  }

  [class~="6@xl"] {
    grid-column: span 6/span 6;
  }

  [class~=grid][class~="7@xl"] {
    grid-template-columns: repeat(1.7142857143, 1fr);
  }

  [class~="7@xl"] {
    grid-column: span 7/span 7;
  }

  [class~=grid][class~="8@xl"] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [class~="8@xl"] {
    grid-column: span 8/span 8;
  }

  [class~=grid][class~="9@xl"] {
    grid-template-columns: repeat(1.3333333333, 1fr);
  }

  [class~="9@xl"] {
    grid-column: span 9/span 9;
  }

  [class~=grid][class~="10@xl"] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [class~="10@xl"] {
    grid-column: span 10/span 10;
  }

  [class~=grid][class~="11@xl"] {
    grid-template-columns: repeat(1.0909090909, 1fr);
  }

  [class~="11@xl"] {
    grid-column: span 11/span 11;
  }

  [class~=grid][class~="12@xl"] {
    grid-template-columns: repeat(1, 1fr);
  }

  [class~="12@xl"] {
    grid-column: span 12/span 12;
  }

  [class~="offset-1@xl"] {
    grid-column-start: 1;
  }

  [class~="offset-2@xl"] {
    grid-column-start: 2;
  }

  [class~="offset-3@xl"] {
    grid-column-start: 3;
  }

  [class~="offset-4@xl"] {
    grid-column-start: 4;
  }

  [class~="offset-5@xl"] {
    grid-column-start: 5;
  }

  [class~="offset-6@xl"] {
    grid-column-start: 6;
  }

  [class~="offset-7@xl"] {
    grid-column-start: 7;
  }

  [class~="offset-8@xl"] {
    grid-column-start: 8;
  }

  [class~="offset-9@xl"] {
    grid-column-start: 9;
  }

  [class~="offset-10@xl"] {
    grid-column-start: 10;
  }

  [class~="offset-11@xl"] {
    grid-column-start: 11;
  }

  [class~="offset-12@xl"] {
    grid-column-start: 12;
  }

  [class~="hide@xl"] {
    display: none !important;
  }

  [class~="show@xl"] {
    display: initial !important;
  }

  [class~="first@xl"] {
    order: -1;
  }

  [class~="last@xl"] {
    order: 12;
  }
}
@media only screen and (min-width: 46.75em) {
  [class~=grid] {
    grid-gap: 1.5rem;
  }
}

[class~=grid--row-spaced] {
  grid-gap: 4rem 1.5rem;
}
@media only screen and (min-width: 46.75em) {
  [class~=grid--row-spaced] {
    grid-gap: 3rem 1.5rem;
  }
}

[class~=grid--no-grid-row-gap] {
  grid-row-gap: 0;
}

[class~=grid--deco-line] {
  position: relative;
}
[class~=grid--deco-line]:before {
  content: "";
  display: block;
  width: 4rem;
  height: 0.125rem;
  background-color: HSL(var(--accent-100));
  position: relative;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 80em) {
  [class~=grid--deco-line]:before {
    top: 0.875rem;
  }
}

[class~=grid--row-spaced] + [class~=grid--row-spaced] {
  margin-top: 4rem;
}
@media only screen and (min-width: 46.75em) {
  [class~=grid--row-spaced] + [class~=grid--row-spaced] {
    margin-top: 3rem;
  }
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  transform-style: preserve-3d;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  outline: none;
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  outline: none;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slider {
  position: relative;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide--draggable > .splide__slider > .splide__track, .splide--draggable > .splide__track {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide--fade > .splide__slider > .splide__track > .splide__list, .splide--fade > .splide__track > .splide__list {
  display: block;
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide, .splide--fade > .splide__track > .splide__list > .splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide.is-active, .splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide--ttb.is-active > .splide__slider > .splide__track > .splide__list, .splide--ttb.is-active > .splide__track > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover {
  opacity: 0.9;
}

.splide__arrow:focus {
  outline: none;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus {
  outline: none;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide, .splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide.is-active, .splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide:focus, .splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}

.splide--rtl > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide--rtl > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide--rtl > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide--ttb > .splide__arrows .splide__arrow, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow, .splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide--ttb > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide--ttb > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide--ttb > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide--ttb > .splide__pagination, .splide--ttb > .splide__slider > .splide__pagination {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media screen {
  html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }

  html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }

  html:not(.no-js) [data-aos=fade-up] {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  html:not(.no-js) [data-aos=fade-down] {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }

  html:not(.no-js) [data-aos=fade-right] {
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  html:not(.no-js) [data-aos=fade-left] {
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  html:not(.no-js) [data-aos=fade-up-right] {
    -webkit-transform: translate3d(-100px, 100px, 0);
    transform: translate3d(-100px, 100px, 0);
  }

  html:not(.no-js) [data-aos=fade-up-left] {
    -webkit-transform: translate3d(100px, 100px, 0);
    transform: translate3d(100px, 100px, 0);
  }

  html:not(.no-js) [data-aos=fade-down-right] {
    -webkit-transform: translate3d(-100px, -100px, 0);
    transform: translate3d(-100px, -100px, 0);
  }

  html:not(.no-js) [data-aos=fade-down-left] {
    -webkit-transform: translate3d(100px, -100px, 0);
    transform: translate3d(100px, -100px, 0);
  }

  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }

  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
  }

  html:not(.no-js) [data-aos=zoom-in] {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  html:not(.no-js) [data-aos=zoom-in-up] {
    -webkit-transform: translate3d(0, 100px, 0) scale(0.6);
    transform: translate3d(0, 100px, 0) scale(0.6);
  }

  html:not(.no-js) [data-aos=zoom-in-down] {
    -webkit-transform: translate3d(0, -100px, 0) scale(0.6);
    transform: translate3d(0, -100px, 0) scale(0.6);
  }

  html:not(.no-js) [data-aos=zoom-in-right] {
    -webkit-transform: translate3d(-100px, 0, 0) scale(0.6);
    transform: translate3d(-100px, 0, 0) scale(0.6);
  }

  html:not(.no-js) [data-aos=zoom-in-left] {
    -webkit-transform: translate3d(100px, 0, 0) scale(0.6);
    transform: translate3d(100px, 0, 0) scale(0.6);
  }

  html:not(.no-js) [data-aos=zoom-out] {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  html:not(.no-js) [data-aos=zoom-out-up] {
    -webkit-transform: translate3d(0, 100px, 0) scale(1.2);
    transform: translate3d(0, 100px, 0) scale(1.2);
  }

  html:not(.no-js) [data-aos=zoom-out-down] {
    -webkit-transform: translate3d(0, -100px, 0) scale(1.2);
    transform: translate3d(0, -100px, 0) scale(1.2);
  }

  html:not(.no-js) [data-aos=zoom-out-right] {
    -webkit-transform: translate3d(-100px, 0, 0) scale(1.2);
    transform: translate3d(-100px, 0, 0) scale(1.2);
  }

  html:not(.no-js) [data-aos=zoom-out-left] {
    -webkit-transform: translate3d(100px, 0, 0) scale(1.2);
    transform: translate3d(100px, 0, 0) scale(1.2);
  }

  html:not(.no-js) [data-aos^=slide][data-aos^=slide] {
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    visibility: hidden;
  }

  html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate {
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  html:not(.no-js) [data-aos=slide-up] {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  html:not(.no-js) [data-aos=slide-down] {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  html:not(.no-js) [data-aos=slide-right] {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  html:not(.no-js) [data-aos=slide-left] {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  html:not(.no-js) [data-aos^=flip][data-aos^=flip] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }

  html:not(.no-js) [data-aos=flip-left] {
    -webkit-transform: perspective(2500px) rotateY(-100deg);
    transform: perspective(2500px) rotateY(-100deg);
  }

  html:not(.no-js) [data-aos=flip-left].aos-animate {
    -webkit-transform: perspective(2500px) rotateY(0);
    transform: perspective(2500px) rotateY(0);
  }

  html:not(.no-js) [data-aos=flip-right] {
    -webkit-transform: perspective(2500px) rotateY(100deg);
    transform: perspective(2500px) rotateY(100deg);
  }

  html:not(.no-js) [data-aos=flip-right].aos-animate {
    -webkit-transform: perspective(2500px) rotateY(0);
    transform: perspective(2500px) rotateY(0);
  }

  html:not(.no-js) [data-aos=flip-up] {
    -webkit-transform: perspective(2500px) rotateX(-100deg);
    transform: perspective(2500px) rotateX(-100deg);
  }

  html:not(.no-js) [data-aos=flip-up].aos-animate {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
  }

  html:not(.no-js) [data-aos=flip-down] {
    -webkit-transform: perspective(2500px) rotateX(100deg);
    transform: perspective(2500px) rotateX(100deg);
  }

  html:not(.no-js) [data-aos=flip-down].aos-animate {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
  }
}
.c-input__control.hf-invalid,
.c-textarea__control.hf-invalid {
  box-shadow: inset 0 0 0 0.0625rem HSL(var(--accent-100));
}

.c-form-field:has(.hf-invalid) .c-label__text,
.c-form-field:has(.hf-invalid) .c-label__required {
  color: HSL(var(--accent-100));
}

.c-icon {
  fill: currentColor;
}

.c-icon--8 {
  width: 0.5rem;
  height: 0.5rem;
}

.c-icon--16 {
  width: 1rem;
  height: 1rem;
}

.c-icon--20 {
  width: 1.25rem;
  height: 1.25rem;
}

.c-icon--24 {
  width: 1.5rem;
  height: 1.5rem;
}

.c-icon--32 {
  width: 2rem;
  height: 2rem;
}

.c-icon--48 {
  width: 3rem;
  height: 3rem;
}

.c-icon--56 {
  width: 3.5rem;
  height: 3.5rem;
}

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

.c-kpi__value {
  color: HSL(var(--highlight-100));
  font-family: brother-1816;
  font-size: calc(1.6875rem + 1.375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
}

@media screen and (min-width: 80em){
  .c-kpi__value{
    font-size: 3.0625rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-kpi__value{
    font-size: 1.6875rem;
  }
}

.c-kpi__description {
  color: HSL(var(--base-100));
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
  margin-top: 0.5rem;
}

@media screen and (min-width: 80em){
  .c-kpi__description{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-kpi__description{
    font-size: 0.875rem;
  }
}

.c-showcase {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.c-showcase__title {
  font-family: brother-1816;
  font-size: calc(1.6875rem + 1.375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
  color: HSL(var(--primary-100));
  display: inline-block;
}
@media screen and (min-width: 80em){
  .c-showcase__title{
    font-size: 3.0625rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-showcase__title{
    font-size: 1.6875rem;
  }
}

.c-showcase__subtitle {
  font-family: brother-1816;
  font-size: calc(1.5rem + 0.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 300;
  color: HSL(var(--primary-100));
  margin-top: 0.5rem;
}

@media screen and (min-width: 80em){
  .c-showcase__subtitle{
    font-size: 2.4375rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-showcase__subtitle{
    font-size: 1.5rem;
  }
}

.c-action, #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner .iubenda-cs-accept-btn {
  border: none;
  padding: 1rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: transparent;
}

@media screen and (min-width: 80em){
  .c-action, #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner .iubenda-cs-accept-btn{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-action, #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner .iubenda-cs-accept-btn{
    font-size: 1rem;
  }
}
.c-action[disabled], #iubenda-cs-banner [disabled].iubenda-cs-customize-btn, #iubenda-cs-banner [disabled].iubenda-cs-reject-btn, #iubenda-cs-banner [disabled].iubenda-cs-accept-btn, .c-action:disabled, #iubenda-cs-banner .iubenda-cs-customize-btn:disabled, #iubenda-cs-banner .iubenda-cs-reject-btn:disabled, #iubenda-cs-banner .iubenda-cs-accept-btn:disabled {
  cursor: not-allowed;
}

/*------------------------------------*
  COLOR VARIANTS
*------------------------------------*/
.c-action--brick, #iubenda-cs-banner .iubenda-cs-accept-btn {
  background-color: HSL(var(--accent-100));
  color: HSL(var(--base-100));
  white-space: nowrap;
}
.c-action--brick:hover, #iubenda-cs-banner .iubenda-cs-accept-btn:hover {
  background-color: #d50c39;
}
.c-action--brick:focus, #iubenda-cs-banner .iubenda-cs-accept-btn:focus, .c-action--brick:active, #iubenda-cs-banner .iubenda-cs-accept-btn:active {
  box-shadow: inset 0px 0 0px 0.125rem HSL(var(--primary-100));
}
.c-action--brick[disabled], #iubenda-cs-banner [disabled].iubenda-cs-accept-btn, .c-action--brick:disabled, #iubenda-cs-banner .iubenda-cs-accept-btn:disabled {
  background-color: HSL(var(--grey));
  color: HSL(var(--geyser-blue));
}

a.c-action--brick, #iubenda-cs-banner a.iubenda-cs-accept-btn {
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 800;
}

@media screen and (min-width: 80em){
  a.c-action--brick, #iubenda-cs-banner a.iubenda-cs-accept-btn{
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 26.75em){
  a.c-action--brick, #iubenda-cs-banner a.iubenda-cs-accept-btn{
    font-size: 1.125rem;
  }
}

.c-action[data-notation] ~ .rough-annotation *, #iubenda-cs-banner [data-notation].iubenda-cs-customize-btn ~ .rough-annotation *, #iubenda-cs-banner [data-notation].iubenda-cs-reject-btn ~ .rough-annotation *, #iubenda-cs-banner [data-notation].iubenda-cs-accept-btn ~ .rough-annotation * {
  transition: all 0.3s ease;
}

.c-action--highlight {
  color: HSL(var(--primary-100));
  padding: 0.625rem 1rem;
}
.c-action--highlight:hover ~ .rough-annotation *, .c-action--highlight:focus ~ .rough-annotation *, .c-action--highlight:active ~ .rough-annotation * {
  stroke: HSL(var(--accent-100));
}

.c-action--accent {
  color: HSL(var(--primary-100));
  padding: 0.625rem 1rem;
}
.c-action--accent:hover ~ .rough-annotation *, .c-action--accent:focus ~ .rough-annotation *, .c-action--accent:active ~ .rough-annotation * {
  stroke: HSL(var(--accent-100));
}

.c-action--text, #iubenda-cs-banner .iubenda-cs-reject-btn {
  color: HSL(var(--primary-100));
  padding: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.c-action--text:hover ~ .rough-annotation *, #iubenda-cs-banner .iubenda-cs-reject-btn:hover ~ .rough-annotation * {
  stroke: HSL(var(--highlight-100));
}
.c-action--text:focus ~ .rough-annotation *, #iubenda-cs-banner .iubenda-cs-reject-btn:focus ~ .rough-annotation *, .c-action--text:active ~ .rough-annotation *, #iubenda-cs-banner .iubenda-cs-reject-btn:active ~ .rough-annotation * {
  stroke: HSL(var(--accent-100));
}

.c-action--text-inverted {
  color: HSL(var(--primary-100));
  padding: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.c-action--text-inverted:hover ~ .rough-annotation * {
  stroke: HSL(var(--accent-100));
}
.c-action--text-inverted:focus ~ .rough-annotation *, .c-action--text-inverted:active ~ .rough-annotation * {
  stroke: HSL(var(--accent-100));
}

.c-action--nude, #iubenda-cs-banner .iubenda-cs-customize-btn {
  background-color: HSL(var(--base-100));
  color: HSL(var(--primary-100));
  box-shadow: inset 0px 0 0px 0.25rem HSL(var(--primary-100));
}
.c-action--nude:hover, #iubenda-cs-banner .iubenda-cs-customize-btn:hover {
  background-color: HSL(var(--primary-100));
  color: HSL(var(--base-100));
}
.c-action--nude:focus, #iubenda-cs-banner .iubenda-cs-customize-btn:focus, .c-action--nude:active, #iubenda-cs-banner .iubenda-cs-customize-btn:active {
  background-color: HSL(var(--base-100));
  color: HSL(var(--primary-100));
  box-shadow: inset 0px 0 0px 0.25rem HSL(var(--accent-100));
}
.c-action--nude[disabled], #iubenda-cs-banner [disabled].iubenda-cs-customize-btn, .c-action--nude:disabled, #iubenda-cs-banner .iubenda-cs-customize-btn:disabled {
  background-color: HSL(var(--grey));
  color: HSL(var(--geyser-blue));
}

.c-action--nude.c-action--small, #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner .c-action--nude.iubenda-cs-reject-btn, #iubenda-cs-banner .c-action--nude.iubenda-cs-accept-btn {
  box-shadow: inset 0px 0 0px 0.125rem HSL(var(--primary-100));
}

/*------------------------------------*
  SIZE VARIANTS
*------------------------------------*/
.c-action--small, #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner .iubenda-cs-accept-btn {
  padding: 0.625rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
}
@media screen and (min-width: 80em){
  .c-action--small, #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner .iubenda-cs-accept-btn{
    font-size: 1rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-action--small, #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner .iubenda-cs-accept-btn{
    font-size: 0.875rem;
  }
}

.c-action--text.c-action--small, #iubenda-cs-banner .c-action--text.iubenda-cs-customize-btn, #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner .c-action--text.iubenda-cs-accept-btn,
.c-action--text-inverted.c-action--small,
#iubenda-cs-banner .c-action--text-inverted.iubenda-cs-customize-btn,
#iubenda-cs-banner .c-action--text-inverted.iubenda-cs-accept-btn {
  padding: 0;
}

/*------------------------------------*
  NO-JS FALLBACK
*------------------------------------*/
.no-js .c-action[data-notation], .no-js #iubenda-cs-banner [data-notation].iubenda-cs-customize-btn, #iubenda-cs-banner .no-js [data-notation].iubenda-cs-customize-btn, .no-js #iubenda-cs-banner [data-notation].iubenda-cs-reject-btn, #iubenda-cs-banner .no-js [data-notation].iubenda-cs-reject-btn, .no-js #iubenda-cs-banner [data-notation].iubenda-cs-accept-btn, #iubenda-cs-banner .no-js [data-notation].iubenda-cs-accept-btn {
  text-decoration: underline;
}

.no-js .c-action[data-notation=circle-accent], .no-js #iubenda-cs-banner [data-notation=circle-accent].iubenda-cs-customize-btn, #iubenda-cs-banner .no-js [data-notation=circle-accent].iubenda-cs-customize-btn, .no-js #iubenda-cs-banner [data-notation=circle-accent].iubenda-cs-reject-btn, #iubenda-cs-banner .no-js [data-notation=circle-accent].iubenda-cs-reject-btn, .no-js #iubenda-cs-banner [data-notation=circle-accent].iubenda-cs-accept-btn, #iubenda-cs-banner .no-js [data-notation=circle-accent].iubenda-cs-accept-btn {
  text-decoration-color: HSL(var(--accent-100));
}

.no-js .c-action[data-notation=circle-cyan], .no-js #iubenda-cs-banner [data-notation=circle-cyan].iubenda-cs-customize-btn, #iubenda-cs-banner .no-js [data-notation=circle-cyan].iubenda-cs-customize-btn, .no-js #iubenda-cs-banner [data-notation=circle-cyan].iubenda-cs-reject-btn, #iubenda-cs-banner .no-js [data-notation=circle-cyan].iubenda-cs-reject-btn, .no-js #iubenda-cs-banner [data-notation=circle-cyan].iubenda-cs-accept-btn, #iubenda-cs-banner .no-js [data-notation=circle-cyan].iubenda-cs-accept-btn {
  text-decoration-color: HSL(var(--highlight-100));
}

.no-js .c-action[data-notation=underline-cta-accent], .no-js #iubenda-cs-banner [data-notation=underline-cta-accent].iubenda-cs-customize-btn, #iubenda-cs-banner .no-js [data-notation=underline-cta-accent].iubenda-cs-customize-btn, .no-js #iubenda-cs-banner [data-notation=underline-cta-accent].iubenda-cs-reject-btn, #iubenda-cs-banner .no-js [data-notation=underline-cta-accent].iubenda-cs-reject-btn, .no-js #iubenda-cs-banner [data-notation=underline-cta-accent].iubenda-cs-accept-btn, #iubenda-cs-banner .no-js [data-notation=underline-cta-accent].iubenda-cs-accept-btn {
  text-decoration-color: HSL(var(--accent-100));
}

.c-nav__list {
  display: flex;
  list-style: none;
  justify-content: space-evenly;
  align-items: center;
  font-family: "brother-1816";
}
@media only screen and (min-width: 46.75em) {
  .c-nav__list {
    justify-content: initial;
  }
}

.c-nav__link, .c-dropdown--nav .c-dropdown__button {
  color: HSL(var(--primary-100));
  text-decoration: none;
  font-family: brother-1816;
  font-size: calc(1rem + 0.25 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 800;
}

@media screen and (min-width: 80em){
  .c-nav__link, .c-dropdown--nav .c-dropdown__button{
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-nav__link, .c-dropdown--nav .c-dropdown__button{
    font-size: 1rem;
  }
}

.no-js .c-nav__link.is-active, .no-js .c-dropdown--nav .is-active.c-dropdown__button, .c-dropdown--nav .no-js .is-active.c-dropdown__button {
  text-decoration: underline;
  text-decoration-color: HSL(var(--accent-100));
}

.c-nav__list-item {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
@media only screen and (min-width: 46.75em) {
  .c-nav__list-item {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

/*------------------------------------*
  Off Canvas modifier
*------------------------------------*/
.c-nav--off-canvas {
  background-color: HSL(var(--primary-100));
}
.c-nav--off-canvas .c-nav__list-item {
  display: block;
}
.c-nav--off-canvas .c-nav__list-item--relevant {
  display: none;
}
.c-nav--off-canvas .c-nav__list {
  flex-direction: column;
  align-items: flex-start;
}
.c-nav--off-canvas .c-nav__link, .c-nav--off-canvas .c-dropdown--nav .c-dropdown__button, .c-dropdown--nav .c-nav--off-canvas .c-dropdown__button {
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 800;
  color: HSL(var(--base-100));
}
@media screen and (min-width: 80em){
  .c-nav--off-canvas .c-nav__link, .c-nav--off-canvas .c-dropdown--nav .c-dropdown__button, .c-dropdown--nav .c-nav--off-canvas .c-dropdown__button{
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-nav--off-canvas .c-nav__link, .c-nav--off-canvas .c-dropdown--nav .c-dropdown__button, .c-dropdown--nav .c-nav--off-canvas .c-dropdown__button{
    font-size: 1.125rem;
  }
}
.c-nav--off-canvas .c-nav__list-item {
  margin-left: 0;
  margin-right: 0;
}
.c-nav--off-canvas .c-nav__list-item + .c-nav__list-item {
  margin-top: 1.5rem;
}

.c-logo * {
  fill: HSL(var(--primary-100));
}

.c-header {
  position: relative;
  background-color: HSL(var(--base-100));
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  align-items: center;
  height: 4.5rem;
  max-width: var(--wrapper);
  margin: 0 auto;
  transition: 0.3s all;
}
@media only screen and (min-width: 59.375rem) {
  .c-header {
    justify-content: center;
    padding: 1.5rem 0;
    height: auto;
  }
}

@media only screen and (min-width: 59.375rem) {
  .c-header--landing {
    justify-content: end;
  }
}

.c-header__logo {
  display: block;
  width: 6.25rem;
  transform: translateY(0.25rem);
}
@media only screen and (min-width: 59.375rem) {
  .c-header__logo {
    width: 6.25rem;
    position: absolute;
    left: 0;
  }
}

.c-header__nav {
  display: none;
}
@media only screen and (min-width: 59.375rem) {
  .c-header__nav {
    display: block;
  }
}

.c-header__language-switcher {
  display: none;
  position: absolute;
  right: 0;
}
@media only screen and (min-width: 59.375rem) {
  .c-header__language-switcher {
    display: block;
  }
}

.c-header__off-canvas-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (min-width: 59.375rem) {
  .c-header__off-canvas-toggle {
    display: none;
  }
}

.c-header__chkbx {
  display: none;
}

.c-header__close-off-canvas {
  display: none;
}

.c-header__chkbx:checked ~ .c-off-canvas-nav {
  display: block;
}

.c-header__chkbx:checked ~ .c-header .c-header__off-canvas-toggle .c-header__open-off-canvas {
  display: none;
}
.c-header__chkbx:checked ~ .c-header .c-header__off-canvas-toggle .c-header__close-off-canvas {
  display: block;
  color: HSL(var(--accent-100));
}

/*------------------------------------*
  Top spaced
*------------------------------------*/
.c-header--top-spaced {
  margin-top: 3rem;
}

/*------------------------------------*
  Dynamic
*------------------------------------*/
.c-header.is-sticky {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  opacity: 1;
  transition: 0.5s opacity;
}

.c-off-canvas-nav {
  display: none;
  position: absolute;
  z-index: 1000;
  top: 4.5rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 4.5rem);
  background-color: HSL(var(--primary-100));
  overflow-y: auto;
  padding: 1rem;
}
@media only screen and (min-width: 59.375rem) {
  .c-off-canvas-nav {
    display: none !important;
  }
}

.c-off-canvas-nav__body-claim {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
  color: HSL(var(--base-100));
}

@media screen and (min-width: 80em){
  .c-off-canvas-nav__body-claim{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-off-canvas-nav__body-claim{
    font-size: 0.875rem;
  }
}

.c-off-canvas-nav__body {
  margin-top: 2.5rem;
}

.c-off-canvas-nav__secondary-nav {
  margin-top: 1rem;
  list-style: none;
}

.c-off-canvas-nav__secondary-nav-item + .c-off-canvas-nav__secondary-nav-item {
  margin-top: 0.5rem;
}

.c-off-canvas-nav__secondary-nav a {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 700;
  color: HSL(var(--base-100));
  text-decoration: none;
}

@media screen and (min-width: 80em){
  .c-off-canvas-nav__secondary-nav a{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-off-canvas-nav__secondary-nav a{
    font-size: 1rem;
  }
}

.c-off-canvas-nav__language {
  margin-top: 1.5rem;
}

.c-language-switcher {
  display: inline-flex;
  background-color: HSL(var(--grey));
  border-radius: 3.125rem;
}

.c-language-switcher__action {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.125rem;
  padding: 0.5rem;
  text-transform: uppercase;
  color: HSL(var(--primary-100));
  background-color: HSL(var(--grey));
  text-decoration: none;
  width: 2.5rem;
  aspect-ratio: 1/1;
}

.c-language-switcher__action.is-active {
  background-color: HSL(var(--primary-100));
  color: HSL(var(--base-100));
}
.c-off-canvas-nav .c-language-switcher__action.is-active {
  background-color: HSL(var(--highlight-100));
  color: HSL(var(--primary-100));
}

.c-results {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 46.75em) {
  .c-results {
    padding-bottom: 3rem;
  }
}

.c-results__title {
  font-family: brother-1816;
  font-size: calc(1rem + 0.25 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 200;
  color: HSL(var(--base-100));
  text-align: center;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 80em){
  .c-results__title{
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-results__title{
    font-size: 1rem;
  }
}

.c-results__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
@media only screen and (min-width: 46.75em) {
  .c-results__items {
    gap: 24px;
  }
}

.c-results__item {
  flex: 1 1 8.75rem;
}
@media only screen and (min-width: 46.75em) {
  .c-results__item {
    flex: 1 1 12.5rem;
  }
}

.c-footer {
  background-color: HSL(var(--base-100));
  padding: 1.5rem 0;
  display: grid;
  gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: repeat(12, 1fr);
}
@media only screen and (min-width: 80em) {
  .c-footer {
    padding: 3rem 0;
  }
}

.c-footer--landing {
  grid-template-columns: 3fr 1fr;
  padding-top: 3rem;
}
@media only screen and (min-width: 80em) {
  .c-footer--landing {
    padding-top: 6rem;
  }
}
@media only screen and (min-width: 80em) {
  .c-footer--landing .c-footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-footer__brand {
  grid-column: 1/span 12;
}
@media only screen and (min-width: 46.75em) {
  .c-footer__brand {
    grid-column: 1/span 2;
  }
}
@media only screen and (min-width: 80em) {
  .c-footer__brand {
    grid-column: 1/span 1;
  }
}

.c-footer__logo {
  max-width: 7.8125rem;
}
@media only screen and (min-width: 46.75em) {
  .c-footer__logo {
    width: 7.8125rem;
  }
}

.c-footer__main {
  grid-column: 1/span 12;
  display: grid;
  gap: 1.5rem 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (min-width: 46.75em) {
  .c-footer__main {
    grid-column: 3/span 6;
  }
}
@media only screen and (min-width: 80em) {
  .c-footer__main {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.c-footer__subscribe {
  grid-column: 1/span 12;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 46.75em) {
  .c-footer__subscribe {
    grid-column: 9/span 4;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.c-footer__copyright {
  grid-column: 1/span 12;
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-footer__copyright{
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-footer__copyright{
    font-size: 0.75rem;
  }
}
.c-footer__copyright a {
  color: currentColor;
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
}
@media screen and (min-width: 80em){
  .c-footer__copyright a{
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-footer__copyright a{
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 46.75em) {
  .c-footer__copyright {
    margin-top: 3rem;
  }
}

.c-footer__copyright-text + .c-footer__copyright-text {
  margin-top: 0.25rem;
}

.c-footer__label {
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
  color: HSL(var(--primary-100));
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 80em){
  .c-footer__label{
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-footer__label{
    font-size: 0.75rem;
  }
}

.c-footer__eu {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}

.c-footer__nav-list {
  list-style: none;
}

.c-footer__nav-link {
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
  color: HSL(var(--primary-100));
  text-decoration: none;
}

@media screen and (min-width: 80em){
  .c-footer__nav-link{
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-footer__nav-link{
    font-size: 0.75rem;
  }
}

.c-footer__certifications-list {
  display: flex;
  list-style: none;
  align-items: center;
}

.c-footer__nav-list-item + .c-footer__nav-list-item {
  margin-top: 0.5rem;
}

.c-footer__certifications-list-item + .c-footer__certifications-list-item {
  margin-left: 0.75rem;
}

.c-footer__certifications-img {
  max-width: 2.5rem;
}
@media only screen and (min-width: 80em) {
  .c-footer__certifications-img {
    max-width: 3.125rem;
  }
}

.c-footer__subscribe-label {
  font-family: brother-1816;
  font-size: calc(1.25rem + 0.6875 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 200;
  margin-bottom: 1rem;
}

@media screen and (min-width: 80em){
  .c-footer__subscribe-label{
    font-size: 1.9375rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-footer__subscribe-label{
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 80em) {
  .c-footer__subscribe-label {
    margin-bottom: 1.5rem;
  }
}

.c-callout {
  background-color: HSL(var(--base-100));
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.c-callout__img {
  width: 100%;
}

.c-callout__body {
  width: 100%;
  max-width: 46.5625rem;
  margin-left: auto;
  margin-right: auto;
}

.c-callout__title {
  font-family: brother-1816;
  font-size: calc(1.5rem + 0.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 300;
  color: HSL(var(--primary-100));
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 80em){
  .c-callout__title{
    font-size: 2.4375rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-callout__title{
    font-size: 1.5rem;
  }
}

.c-callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/*------------------------------------*
  Modifier: imageless
*------------------------------------*/
.c-callout--imageless .c-callout__title {
  margin-bottom: 3.5rem;
  text-align: center;
}
.c-callout--imageless .c-callout__actions {
  justify-content: center;
}

/*------------------------------------*
  Modifier: form
*------------------------------------*/
.c-callout--form .c-callout__body {
  width: 100%;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: initial;
}

.c-person {
  display: block;
  text-decoration: none;
}

.c-person__image-block {
  margin-bottom: 0.5rem;
}
@supports not (aspect-ratio: 16/9) {
  .c-person__image-block {
    position: relative;
    height: 0;
    padding-top: 133%;
  }
}

.c-person__image {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  width: 100%;
  max-height: 100%;
}
@supports not (aspect-ratio: 16/9) {
  .c-person__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

.c-person__name {
  display: block;
  font-family: brother-1816;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 800;
  color: HSL(var(--primary-100));
  margin-bottom: 0.25rem;
  text-decoration: underline;
}

@media screen and (min-width: 80em){
  .c-person__name{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-person__name{
    font-size: 1rem;
  }
}

.c-person__role,
.c-person__contact {
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-person__role,
.c-person__contact{
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-person__role,
.c-person__contact{
    font-size: 0.75rem;
  }
}

.c-person__contact {
  display: block;
  margin-top: 0.25rem;
  word-break: break-all;
}

a.c-person:hover .c-person__name,
a.c-person:focus-within .c-person__name {
  color: HSL(var(--accent-100));
}

/*------------------------------------*
  Contributor
*------------------------------------*/
.c-person--contributor:hover .c-person__name {
  color: HSL(var(--primary-100));
}
.c-person--contributor .c-person__name {
  text-decoration: none;
}

/*------------------------------------*
  Ratio 1:1
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-person--ratio-1-1 .c-person__image-block {
    position: relative;
    height: 0;
    padding-top: 100%;
  }
}
.c-person--ratio-1-1 .c-person__image {
  aspect-ratio: 1/1;
}
@supports not (aspect-ratio: 16/9) {
  .c-person--ratio-1-1 .c-person__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Small
*------------------------------------*/
.c-person--small {
  display: flex;
  align-items: center;
}
.c-person--small .c-person__image-block {
  flex: 0 0 auto;
  margin-bottom: 0;
}
.c-person--small .c-person__image {
  width: 8.125rem;
}
.c-person--small .c-person__info {
  margin-left: 0.75rem;
}
@media only screen and (min-width: 64em) {
  .c-person--small .c-person__info {
    margin-left: 1.5rem;
  }
}

/*------------------------------------*\
  Area
\*------------------------------------*/
.c-person--area {
  align-items: flex-start;
}
.c-person--area .c-person__area {
  font-family: brother-1816;
  font-size: calc(1.25rem + 0.6875 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
  color: HSL(var(--primary-100));
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 80em){
  .c-person--area .c-person__area{
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-person--area .c-person__area{
    font-size: 1.25rem;
  }
}
.c-person--area .c-person__name,
.c-person--area .c-person__role,
.c-person--area .c-person__contact {
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 300;
}
@media screen and (min-width: 80em){
  .c-person--area .c-person__name,
.c-person--area .c-person__role,
.c-person--area .c-person__contact{
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-person--area .c-person__name,
.c-person--area .c-person__role,
.c-person--area .c-person__contact{
    font-size: 1.125rem;
  }
}
.c-person--area .c-person__name {
  margin-bottom: 0;
  text-decoration: none;
}
.c-person--area .c-person__image {
  width: 6.25rem;
}

.c-hero {
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
@media only screen and (min-width: 64em) {
  .c-hero {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.c-hero:after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.125rem;
  background-color: HSL(var(--accent-100));
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-hero__content {
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 26.75em) {
  .c-hero__content {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width: 80em) {
  .c-hero__content {
    padding-bottom: 6rem;
  }
}

.c-hero__title {
  font-family: brother-1816;
  font-size: calc(1.875rem + 1.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 300;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-hero__title{
    font-size: 3.8125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-hero__title{
    font-size: 1.875rem;
  }
}

.c-hero__subtitle {
  font-family: brother-1816;
  font-size: calc(1.5rem + 0.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 300;
  color: HSL(var(--primary-100));
  margin-top: 1.5rem;
}

@media screen and (min-width: 80em){
  .c-hero__subtitle{
    font-size: 2.4375rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-hero__subtitle{
    font-size: 1.5rem;
  }
}
.c-hero__subtitle a {
  color: HSL(var(--primary-100));
  text-decoration-color: HSL(var(--accent-100));
}

.c-hero__label {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-hero__label{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-hero__label{
    font-size: 0.875rem;
  }
}

/*------------------------------------*
  Person
*------------------------------------*/
.c-hero--person {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 64em) {
  .c-hero--person {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 64em) {
  .c-hero--person .c-hero__content {
    padding-bottom: 0;
  }
}
.c-hero--person .c-hero__image {
  width: 100%;
  max-width: 23.4375rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 64em) {
  .c-hero--person .c-hero__image {
    margin-top: 0;
    max-width: 100%;
    width: 37rem;
  }
}
.c-hero--person .c-hero__title {
  font-family: brother-1816;
  font-size: calc(1.875rem + 1.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
}
@media screen and (min-width: 80em){
  .c-hero--person .c-hero__title{
    font-size: 3.8125rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-hero--person .c-hero__title{
    font-size: 1.875rem;
  }
}
.c-hero--person .c-hero__role {
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 300;
  color: HSL(var(--primary-100));
  margin-top: 0.125rem;
}
@media screen and (min-width: 80em){
  .c-hero--person .c-hero__role{
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-hero--person .c-hero__role{
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64em) {
  .c-hero--person .c-hero__role {
    margin-top: 0.5rem;
  }
}
.c-hero--person .c-hero__subtitle {
  margin-top: 1rem;
}
@media only screen and (min-width: 64em) {
  .c-hero--person .c-hero__subtitle {
    margin-top: 1.5rem;
  }
}
.c-hero--person .c-hero__socials {
  margin-top: 1rem;
}
@media only screen and (min-width: 64em) {
  .c-hero--person .c-hero__socials {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 64em) {
  .c-hero--person .c-hero__socials--mobile {
    display: none;
  }
}
.c-hero--person .c-hero__socials--desk {
  display: none;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 64em) {
  .c-hero--person .c-hero__socials--desk {
    display: block;
  }
}
.c-hero--person .c-hero__socials__label {
  font-family: "Inter", sans-serif;
  font-size: calc(0.625rem + 0 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
  color: HSL(var(--primary-100));
  margin-bottom: 1rem;
}
@media screen and (min-width: 80em){
  .c-hero--person .c-hero__socials__label{
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-hero--person .c-hero__socials__label{
    font-size: 0.625rem;
  }
}

/*------------------------------------*
  Bolded title
*------------------------------------*/
.c-hero--bolded-title .c-hero__title {
  font-family: brother-1816;
  font-size: calc(1.875rem + 1.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
}
@media screen and (min-width: 80em){
  .c-hero--bolded-title .c-hero__title{
    font-size: 3.8125rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-hero--bolded-title .c-hero__title{
    font-size: 1.875rem;
  }
}

.c-socials__list {
  display: flex;
  list-style: none;
}

.c-socials__list-item {
  color: HSL(var(--primary-100));
}
.c-socials__list-item a {
  color: currentColor;
}

.c-socials__list-item + .c-socials__list-item {
  margin-left: 1rem;
}

.c-case-animation {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background: #e9ecf7;
  overflow-x: hidden;
}

.c-case-animation__container {
  height: 162.5rem;
}

.c-case-animation__device-wrapper {
  position: absolute;
  z-index: 20;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 15rem;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (min-width: 64em) {
  .c-case-animation__device-wrapper {
    max-width: 20rem;
  }
}

.c-case-animation__device {
  position: relative;
  top: 0;
  z-index: 10;
}

.c-case-animation__imagewrapper {
  position: absolute;
  z-index: 2;
  top: 0.8125rem;
  left: 0.9375rem;
  bottom: 0.9375rem;
  width: 89%;
  overflow: hidden;
}
@media only screen and (min-width: 64em) {
  .c-case-animation__imagewrapper {
    top: 0.9375rem;
    left: 1.125rem;
  }
}

.c-case-animation__image {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
}

.c-case-animation__sticky {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.c-case-animation__comp {
  position: absolute;
  box-shadow: 0px 6px 12px -6px hsla(var(--primary-100), 0.12), 0px 8px 24px -4px hsla(var(--primary-100), 0.08);
}

.c-case-animation .comp-0 {
  top: 3%;
  left: 50%;
  margin-left: 12.5rem;
  z-index: 1;
  box-shadow: none;
}

.c-case-animation .comp-1 {
  top: 9%;
  right: 50%;
  margin-right: 14.375rem;
  z-index: 1;
}

.c-case-animation .comp-2 {
  top: 14%;
  left: 50%;
  margin-left: 13.125rem;
  z-index: 30;
}

.c-case-animation .comp-3 {
  top: 25%;
  right: 50%;
  margin-right: 12.5rem;
  z-index: 10;
}

.c-case-animation .comp-4 {
  top: 32%;
  left: 50%;
  margin-left: 9.375rem;
  z-index: 10;
}

.c-case-animation .comp-5 {
  top: 35%;
  right: 50%;
  margin-right: 15.625rem;
  z-index: 10;
}

.c-case-animation .comp-6 {
  top: 42%;
  left: 50%;
  margin-left: 8.125rem;
  z-index: 30;
}

.c-case-animation .comp-7 {
  top: 50%;
  right: 50%;
  margin-right: 11.25rem;
  z-index: 30;
}

.c-case-animation .comp-8 {
  top: 57%;
  left: 50%;
  margin-left: 17.5rem;
  z-index: 10;
}

.c-case-animation .comp-9 {
  top: 65%;
  right: 50%;
  margin-right: 13.125rem;
  z-index: 30;
}

.c-case-animation .comp-10 {
  top: 70%;
  left: 50%;
  margin-left: 8.75rem;
  z-index: 10;
}

.c-case-animation .comp-11 {
  top: 78%;
  right: 50%;
  margin-right: 10.625rem;
  z-index: 30;
}

/*------------------------------------*
  I-Tel modifier
*------------------------------------*/
.c-case-animation--itel .comp {
  box-shadow: 0 2px 50px 0 rgba(122, 145, 197, 0.2);
}
.c-case-animation--itel .comp-0 {
  position: absolute;
  top: 3%;
  left: 50%;
  margin-left: 200px;
  z-index: 1;
}
.c-case-animation--itel .comp-1 {
  position: absolute;
  top: 9%;
  right: 50%;
  margin-right: 230px;
  z-index: 1;
}
.c-case-animation--itel .comp-2 {
  position: absolute;
  top: 14%;
  left: 50%;
  margin-left: 210px;
  z-index: 30;
}
.c-case-animation--itel .comp-3 {
  position: absolute;
  top: 25%;
  right: 60%;
  margin-right: 200px;
  z-index: 10;
}
.c-case-animation--itel .comp-4 {
  position: absolute;
  top: 32%;
  left: 62%;
  margin-left: 130px;
  z-index: 10;
}
.c-case-animation--itel .comp-5 {
  position: absolute;
  top: 44%;
  right: 50%;
  margin-right: 250px;
  z-index: 10;
}
.c-case-animation--itel .comp-6 {
  position: absolute;
  top: 52%;
  left: 57%;
  margin-left: 130px;
  z-index: 30;
}
.c-case-animation--itel .comp-7 {
  position: absolute;
  top: 70%;
  right: 56%;
  margin-right: 150px;
  z-index: 30;
}

/*------------------------------------*
  Comet modifier
*------------------------------------*/
.c-case-animation--comet .comp {
  box-shadow: 0 2px 50px 0 rgba(122, 145, 197, 0.2);
}
.c-case-animation--comet .comp-0 {
  position: absolute;
  top: 3%;
  left: 50%;
  margin-left: 200px;
  z-index: 1;
}
.c-case-animation--comet .comp-1 {
  position: absolute;
  top: 9%;
  right: 50%;
  margin-right: 230px;
  z-index: 1;
}
.c-case-animation--comet .comp-2 {
  position: absolute;
  top: 14%;
  left: 50%;
  margin-left: 210px;
  z-index: 30;
}
.c-case-animation--comet .comp-3 {
  position: absolute;
  top: 34%;
  right: 60%;
  margin-right: 200px;
  z-index: 10;
}
.c-case-animation--comet .comp-4 {
  position: absolute;
  top: 32%;
  left: 62%;
  margin-left: 130px;
  z-index: 10;
}
.c-case-animation--comet .comp-5 {
  position: absolute;
  top: 44%;
  right: 50%;
  margin-right: 250px;
  z-index: 10;
}
.c-case-animation--comet .comp-6 {
  position: absolute;
  top: 52%;
  left: 57%;
  margin-left: 130px;
  z-index: 30;
}
.c-case-animation--comet .comp-7 {
  position: absolute;
  top: 55%;
  right: 56%;
  margin-right: 150px;
  z-index: 30;
}

.c-card {
  display: flex;
  flex-direction: column;
}

.c-card__click-area {
  color: currentColor;
}

.c-card__image-block {
  overflow: hidden;
}

.c-card__image {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.c-card__content {
  padding: 1.5rem 0;
}

.c-card__title {
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 800;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-card__title{
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-card__title{
    font-size: 1.125rem;
  }
}

.c-card__subtitle {
  font-family: brother-1816;
  font-size: calc(1rem + 0.25 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 300;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-card__subtitle{
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-card__subtitle{
    font-size: 1rem;
  }
}

.c-card__body-text {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-card__body-text{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-card__body-text{
    font-size: 1rem;
  }
}

.c-card__title + .c-card__subtitle {
  margin-top: 0.5rem;
}

.c-card__subtitle + .c-card__body-text {
  margin-top: 1.5rem;
}

.c-card__chips {
  margin-bottom: 0.5rem;
}

.c-card__actions {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.c-card__actions a {
  display: block;
}

.c-card__authors {
  display: block;
  flex-wrap: initial;
  margin: 0;
  margin-top: auto;
}

.c-card__authors-label {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 700;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-card__authors-label{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-card__authors-label{
    font-size: 1rem;
  }
}

.c-card__authors-list {
  list-style: none;
}

.c-card__author {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}

@media screen and (min-width: 80em){
  .c-card__author{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-card__author{
    font-size: 1rem;
  }
}

.c-card__date {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
  color: HSL(var(--primary-100));
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 80em){
  .c-card__date{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-card__date{
    font-size: 1rem;
  }
}

.c-card__section {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 80em){
  .c-card__section{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-card__section{
    font-size: 0.875rem;
  }
}

/*------------------------------------*
  Hover state
*------------------------------------*/
.c-card:hover .c-card__click-area,
.c-card:focus-within .c-card__click-area {
  color: HSL(var(--accent-100));
}

/*------------------------------------*
  Bottom image
*------------------------------------*/
.c-card--bottom-image {
  flex-direction: column-reverse;
}

/*------------------------------------*
  Ratio 1:1
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--1-1 .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 100%;
  }
}
.c-card--1-1 .c-card__image {
  aspect-ratio: 1/1;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--1-1 .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Ratio 4:3 
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--4-3 .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 75%;
  }
}
.c-card--4-3 .c-card__image {
  aspect-ratio: 4/3;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--4-3 .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Ratio 3:2 
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--3-2 .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 66.67%;
  }
}
.c-card--3-2 .c-card__image {
  aspect-ratio: 3/2;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--3-2 .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Ratio 16:9 
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--16-9 .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 56.25%;
  }
}
.c-card--16-9 .c-card__image {
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--16-9 .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Ratio 16:10 
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--16-10 .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 62.5%;
  }
}
.c-card--16-10 .c-card__image {
  aspect-ratio: 16/10;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--16-10 .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Ratio 9:16 
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--9-16 .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 177.78%;
  }
}
.c-card--9-16 .c-card__image {
  aspect-ratio: 9/16;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--9-16 .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Ratio 10:16 
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--10-16 .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 160%;
  }
}
.c-card--10-16 .c-card__image {
  aspect-ratio: 10/16;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--10-16 .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Ratio 3:4 
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--3-4 .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 133.33%;
  }
}
.c-card--3-4 .c-card__image {
  aspect-ratio: 3/4;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--3-4 .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Ultrawide
*------------------------------------*/
.c-card--ultrawide .c-card__image-block {
  max-height: 40.625rem;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--ultrawide .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 56.25%;
  }
}
.c-card--ultrawide .c-card__image {
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--ultrawide .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

/*------------------------------------*
  Event
*------------------------------------*/
.c-card--event {
  border: 0.0625rem solid HSL(var(--geyser-blue));
  padding: 1rem;
  height: auto;
  min-height: 20.625rem;
}
@media only screen and (min-width: 64em) {
  .c-card--event {
    min-height: 26.875rem;
    padding: 1.5rem;
  }
}
.c-card--event .c-card__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-card--event .c-card__body-text {
  margin-top: 0.25rem;
}
.c-card--event .c-card__author {
  float: left;
  margin-right: 0.5rem;
}
.c-card--event .c-card__author:after {
  content: ",";
}
.c-card--event .c-card__author:last-child {
  margin-right: 0;
}
.c-card--event .c-card__author:last-child:after {
  display: none;
}

/*------------------------------------*
  Post
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--post .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 66.67%;
  }
}
.c-card--post .c-card__image {
  aspect-ratio: 3/2;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--post .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}
.c-card--post .c-card__authors {
  display: block;
  margin: initial;
  margin-top: 1.5rem;
}
.c-card--post .c-card__author {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 80em){
  .c-card--post .c-card__author{
    font-size: 1rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-card--post .c-card__author{
    font-size: 0.875rem;
  }
}
.c-card--post .c-card__author:before {
  content: " ";
}
.c-card--post .c-card__author + .c-card__author:before {
  content: ", ";
}

/*------------------------------------*
  Centered
*------------------------------------*/
.c-card--centered .c-card__title,
.c-card--centered .c-card__body-text,
.c-card--centered .c-card__image-block,
.c-card--centered .c-card__actions {
  text-align: center;
}
@media only screen and (min-width: 96em) {
  .c-card--centered .c-card__content {
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/*------------------------------------*
  Colors Reverse
*------------------------------------*/
.c-card--colors-reverse .c-card__title,
.c-card--colors-reverse .c-card__subtitle,
.c-card--colors-reverse .c-card__body-text,
.c-card--colors-reverse .c-card__actions a {
  color: HSL(var(--base-100));
}

/*------------------------------------*
  No authors
*------------------------------------*/
.c-card--no-authors .c-card__authors {
  display: none;
}

/*------------------------------------*
  Brackets card homepage
*------------------------------------*/
.c-card--brackets-home .c-card__title {
  font-family: brother-1816;
  font-size: calc(1.5rem + 0.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media screen and (min-width: 80em){
  .c-card--brackets-home .c-card__title{
    font-size: 2.4375rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-card--brackets-home .c-card__title{
    font-size: 1.5rem;
  }
}

/*------------------------------------*
  Product card
*------------------------------------*/
@supports not (aspect-ratio: 16/9) {
  .c-card--product .c-card__image-block {
    position: relative;
    height: 0;
    padding-top: 25%;
  }
}
.c-card--product .c-card__image {
  aspect-ratio: 16/4;
}
@supports not (aspect-ratio: 16/9) {
  .c-card--product .c-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}
.c-card--product .c-card__content {
  background-color: HSL(var(--base-100));
  padding: 1.5rem;
}
.c-card--product .c-card__body-text {
  margin-top: 1rem;
}
.c-card--product .c-card__sell-block {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.c-card--product .sell-block__label {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 80em){
  .c-card--product .sell-block__label{
    font-size: 1rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-card--product .sell-block__label{
    font-size: 0.875rem;
  }
}
.c-card--product .sell-block__body {
  font-family: brother-1816;
  font-size: calc(1rem + 0.25 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
}
@media screen and (min-width: 80em){
  .c-card--product .sell-block__body{
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-card--product .sell-block__body{
    font-size: 1rem;
  }
}

/*------------------------------------*\
  Showcase card
\*------------------------------------*/
.c-card--showcase .c-card__content {
  padding: 1rem 0;
}
@media only screen and (min-width: 46.75em) {
  .c-card--showcase .c-card__content {
    padding: 1.5rem 0;
  }
}

.c-chip {
  display: inline-block;
  border-radius: 1.5rem;
  background-color: HSL(var(--geyser-blue));
  padding: 0.5rem 1rem;
  color: HSL(var(--primary-100));
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
}

@media screen and (min-width: 80em){
  .c-chip{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-chip{
    font-size: 0.875rem;
  }
}

/*------------------------------------*
  Clickable
*------------------------------------*/
.c-chip--clickable {
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
  padding: 0.125rem 1rem 0.375rem;
  text-underline-offset: 0.125rem;
}
@media screen and (min-width: 80em){
  .c-chip--clickable{
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-chip--clickable{
    font-size: 0.75rem;
  }
}

.c-dropdown {
  position: relative;
  max-width: 21.25rem;
  display: inline-block;
}

.c-dropdown__label {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}

@media screen and (min-width: 80em){
  .c-dropdown__label{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-dropdown__label{
    font-size: 1rem;
  }
}

.c-dropdown__button {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: HSL(var(--base-100));
  width: 100%;
  border: 0;
  box-sizing: border-box;
  padding: 1rem 1.5rem;
  overflow: hidden;
  color: HSL(var(--primary-100));
  cursor: pointer;
  box-shadow: inset 0px 0 0px 0.0625rem HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-dropdown__button{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-dropdown__button{
    font-size: 1rem;
  }
}

.c-dropdown__button:focus,
.c-dropdown__button:focus-within,
.c-dropdown__button:active {
  outline: 0px solid transparent;
  box-shadow: inset 0px 0 0px 0.0625rem HSL(var(--highlight-100));
}
.c-dropdown__button:focus .c-dropdown__list,
.c-dropdown__button:focus-within .c-dropdown__list,
.c-dropdown__button:active .c-dropdown__list {
  opacity: 1;
  visibility: visible;
}

.c-dropdown__button-icon {
  margin-left: 0.5rem;
}

.c-dropdown__button:hover .c-dropdown__button-icon {
  color: HSL(var(--accent-100));
}

.c-dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: HSL(var(--base-100));
  width: max-content;
  min-width: 21.25rem;
  box-shadow: 0px 8px 28px -6px hsla(var(--primary-100), 0.12), 0px 8px 88px -4px hsla(var(--primary-100), 0.14);
  text-align: left;
  display: none;
  list-style: none;
  overflow-y: scroll;
  z-index: 100;
}
.c-nav--off-canvas .c-dropdown__list {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  box-shadow: none;
  text-align: left;
  max-height: initial;
  overflow-y: initial;
  margin-left: -1rem;
}

.c-dropdown.is-open .c-dropdown__list {
  display: block;
}
.c-dropdown.is-open .c-dropdown__button-icon {
  transform: rotate(180deg);
  color: HSL(var(--accent-100));
}

.c-dropdown__list-item {
  z-index: 1;
  position: relative;
  color: HSL(var(--primary-100));
}

.c-dropdown__link {
  display: block;
  padding: 1rem 1.5rem;
  color: inherit;
  text-decoration: none;
  background-color: HSL(var(--base-100));
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}

@media screen and (min-width: 80em){
  .c-dropdown__link{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-dropdown__link{
    font-size: 1rem;
  }
}
.c-nav--off-canvas .c-dropdown__link {
  background-color: HSL(var(--grey));
  padding: 1rem;
}

.c-dropdown__link:hover {
  background-color: HSL(var(--geyser-blue));
}

.c-dropdown__link:focus,
.c-dropdown__link.is-active {
  background-color: HSL(var(--primary-100));
  color: HSL(var(--base-100));
}
.c-nav--off-canvas .c-dropdown__link:focus,
.c-nav--off-canvas .c-dropdown__link.is-active {
  background-color: HSL(var(--accent-100));
}

/*------------------------------------*
  Raw modifier
*------------------------------------*/
.c-dropdown--raw .c-dropdown__button {
  justify-content: initial;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  font-family: inherit;
}
.c-dropdown--raw .c-dropdown__button:focus,
.c-dropdown--raw .c-dropdown__button:focus-within,
.c-dropdown--raw .c-dropdown__button:active {
  outline: 0.0625rem solid HSL(var(--accent-100));
}
.c-dropdown--raw .c-dropdown__list {
  margin-top: 1rem;
}

/*------------------------------------*
  Centered-list modifier
*------------------------------------*/
.c-dropdown--centered-list .c-dropdown__list {
  left: 50%;
  transform: translateX(-50%);
}
.c-nav--off-canvas .c-dropdown--centered-list .c-dropdown__list {
  left: 0;
  transform: initial;
}

/*------------------------------------*
  Nav modifier
*------------------------------------*/
/*------------------------------------*
  No-js version for progressive enhancement
*------------------------------------*/
.no-js .c-dropdown:hover .c-dropdown__list,
.no-js .c-dropdown__button:focus ~ .c-dropdown__list,
.no-js .c-dropdown__button:active ~ .c-dropdown__list {
  display: block;
}
.no-js .c-dropdown--raw .c-dropdown__button::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 1rem);
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.c-quote,
blockquote:not(.c-quote__text) {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 0.25rem solid HSL(var(--primary-100));
}
@media only screen and (min-width: 46.75em) {
  .c-quote,
blockquote:not(.c-quote__text) {
    margin: 3rem 0;
  }
}

/* Aggiunge virgolette aperte agli elementi `<blockquote>` o ai primi figli `<p>` senza classe. */
.c-quote__text::before,
.c-quote__text p:first-child::before {
  content: "“";
  margin-right: 0.25rem;
}

/* Aggiunge virgolette chiuse agli elementi `<blockquote>` o agli ultimi figli `<p>` senza classe. */
.c-quote__text::after,
.c-quote__text p:last-child::after {
  content: "”";
  margin-left: 0.25rem;
}

/* Nasconde le virgolette nei `<blockquote>` che contengono `<p>` senza classi per evitare duplicazioni delle virgolette */
.c-quote__text:has(p:not([class]))::before, .c-quote__text:has(p:not([class]))::after {
  display: none;
}

.c-quote__text {
  font-family: brother-1816;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 300;
  color: HSL(var(--primary-100));
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 80em){
  .c-quote__text{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-quote__text{
    font-size: 1rem;
  }
}
.c-quote__text p + p {
  margin-top: 1rem;
}

.c-quote__author {
  color: HSL(var(--primary-100));
}
@media only screen and (min-width: 46.75em) {
  .c-quote__author {
    display: flex;
  }
}

.c-quote__author-name {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
}

@media screen and (min-width: 80em){
  .c-quote__author-name{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-quote__author-name{
    font-size: 0.875rem;
  }
}

.c-quote__author-role {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 300;
}

@media screen and (min-width: 80em){
  .c-quote__author-role{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-quote__author-role{
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 46.75em) {
  .c-quote__author-role:before {
    content: "-";
    margin: 0 0.5rem;
  }
}

.c-categories__list {
  list-style: none;
  display: flex;
  margin: 0 -1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.c-categories__list-item {
  display: flex;
  margin: 0 1rem;
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
}

@media screen and (min-width: 80em){
  .c-categories__list-item{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-categories__list-item{
    font-size: 0.875rem;
  }
}

.c-categories__link {
  color: HSL(var(--primary-100));
  white-space: pre;
}

.c-categories__link.is-active {
  color: HSL(var(--accent-100));
}

.c-categories__counter {
  margin-left: 0.25rem;
}

/*------------------------------------*
  Vertical modifier
*------------------------------------*/
.c-categories--vertical {
  margin: 0;
}
@media only screen and (min-width: 64em) {
  .c-categories--vertical .c-categories__list {
    display: block;
    margin: 0;
  }
}
@media only screen and (min-width: 64em) {
  .c-categories--vertical .c-categories__list-item {
    margin: 2rem 0;
  }
  .c-categories--vertical .c-categories__list-item:first-child {
    margin-top: 0;
  }
  .c-categories--vertical .c-categories__list-item:last-child {
    margin-bottom: 0;
  }
}

.c-slider {
  margin: 3rem 0;
  width: 100vw;
  margin-left: -1.5rem;
}
@media only screen and (min-width: 46.75em) {
  .c-slider {
    margin-left: 0;
    width: auto;
  }
}
@media only screen and (min-width: 64em) {
  .c-slider {
    margin: 6rem 0;
  }
}

.c-slider--marginLess {
  margin: 0;
}

.c-postcard {
  background-color: HSL(var(--primary-100));
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 64em) {
  .c-postcard {
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.c-postcard__img-block {
  margin-top: 3rem;
}
@media only screen and (min-width: 64em) {
  .c-postcard__img-block {
    margin-top: 0;
  }
}

.c-postcard__img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: center center;
}
@media only screen and (min-width: 46.75em) {
  .c-postcard__img {
    height: 27.5rem;
  }
}
@media only screen and (min-width: 64em) {
  .c-postcard__img {
    height: 35rem;
  }
}

.c-postcard__text-block {
  color: HSL(var(--base-100));
}

.c-postcard__label {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 80em){
  .c-postcard__label{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-postcard__label{
    font-size: 0.875rem;
  }
}

.c-postcard__title {
  font-family: brother-1816;
  font-size: calc(1.25rem + 0.6875 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 80em){
  .c-postcard__title{
    font-size: 1.9375rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-postcard__title{
    font-size: 1.25rem;
  }
}

.c-postcard__body {
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 300;
}

@media screen and (min-width: 80em){
  .c-postcard__body{
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-postcard__body{
    font-size: 1.125rem;
  }
}
.c-postcard__body p + p {
  margin-top: 1.5rem;
}

.c-postcard .c-action, .c-postcard #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner .c-postcard .iubenda-cs-customize-btn, .c-postcard #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner .c-postcard .iubenda-cs-reject-btn, .c-postcard #iubenda-cs-banner .iubenda-cs-accept-btn, #iubenda-cs-banner .c-postcard .iubenda-cs-accept-btn {
  color: currentColor;
}

.c-postcard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/*------------------------------------*
  Modifier: bottomless
*------------------------------------*/
.c-postcard--bottomless {
  margin-bottom: 0;
}

/*------------------------------------*
  Modifier: topless
*------------------------------------*/
.c-postcard--topless {
  margin-top: 0;
}

.c-avatar__image {
  width: 5rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top center;
}

.c-label__text {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-label__text{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-label__text{
    font-size: 0.875rem;
  }
}

.c-input__control {
  padding: 1rem 1.5rem;
  background-color: HSL(var(--base-100));
  border: none;
  outline: none;
  box-shadow: inset 0 0 0 0.0625rem HSL(var(--primary-100));
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
  color: HSL(var(--primary-100));
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

@media screen and (min-width: 80em){
  .c-input__control{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-input__control{
    font-size: 1rem;
  }
}
.c-input__control:active, .c-input__control:focus {
  box-shadow: inset 0 0 0.25rem HSL(var(--accent-100));
}

.c-textarea__control {
  padding: 1rem 1.5rem;
  background-color: HSL(var(--base-100));
  border: none;
  outline: none;
  box-shadow: inset 0 0 0 0.0625rem HSL(var(--primary-100));
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
  color: HSL(var(--primary-100));
  resize: vertical;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

@media screen and (min-width: 80em){
  .c-textarea__control{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-textarea__control{
    font-size: 1rem;
  }
}
.c-textarea__control:active, .c-textarea__control:focus {
  box-shadow: inset 0 0 0.25rem HSL(var(--accent-100));
}

.c-form-field__label {
  margin-bottom: 0.25rem;
}

.c-form-field__hint,
.c-form-field__error {
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 400;
}

@media screen and (min-width: 80em){
  .c-form-field__hint,
.c-form-field__error{
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-form-field__hint,
.c-form-field__error{
    font-size: 0.75rem;
  }
}

.c-form-field__hint {
  margin-top: 0.25rem;
  color: HSL(var(--primary-100));
}

.c-form-field__error {
  color: HSL(var(--accent-100));
}

.c-checkbox__input {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.c-checkbox__label {
  position: relative;
  cursor: pointer;
  padding: 0;
  color: HSL(var(--base-100));
  display: inline-flex;
  align-items: center;
}
.c-checkbox__label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
  background-color: HSL(var(--base-100));
  box-shadow: inset 0 0 0 0.0625rem HSL(var(--primary-100));
}

.c-checkbox__input:focus ~ .c-checkbox__label:before {
  outline: 0.0625rem solid HSL(var(--accent-100));
}

.c-checkbox__input:checked ~ .c-checkbox__label:before {
  background-color: HSL(var(--accent-100));
  box-shadow: none;
}

.c-checkbox__input:checked ~ .c-checkbox__label:after {
  content: "";
  position: absolute;
  left: 0.375rem;
  background-color: HSL(var(--base-100));
  width: 0.1875rem;
  height: 0.1875rem;
  box-shadow: 0.125rem 0 0 HSL(var(--base-100)), 0.25rem 0 0 HSL(var(--base-100)), 0.25rem -0.125rem 0 HSL(var(--base-100)), 0.25rem -0.25rem 0 HSL(var(--base-100)), 0.25rem -0.375rem 0 HSL(var(--base-100)), 0.25rem -0.5rem 0 HSL(var(--base-100));
  transform: rotate(45deg);
}

.c-checkbox__text {
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-checkbox__text{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-checkbox__text{
    font-size: 0.875rem;
  }
}
.c-checkbox__text a {
  color: HSL(var(--primary-100));
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
}
@media screen and (min-width: 80em){
  .c-checkbox__text a{
    font-size: 1rem;
  }
}
@media screen and (max-width: 26.75em){
  .c-checkbox__text a{
    font-size: 0.875rem;
  }
}

.c-loadmore {
  display: inline-block;
}

.c-loadmore__text {
  text-align: center;
  margin-top: 0.5rem;
}

.c-newsletter {
  padding: 1.5rem 1rem;
  border: 0.125rem solid HSL(var(--primary-100));
  text-align: center;
  color: HSL(var(--primary-100));
}
@media only screen and (min-width: 64em) {
  .c-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: initial;
    padding: 3rem;
    border: 0.25rem solid HSL(var(--primary-100));
  }
}

.c-newsletter__title {
  font-family: brother-1816;
  font-size: calc(1.25rem + 0.6875 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  margin-bottom: 0.5rem;
  color: currentColor;
}

@media screen and (min-width: 80em){
  .c-newsletter__title{
    font-size: 1.9375rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-newsletter__title{
    font-size: 1.25rem;
  }
}

.c-newsletter__body {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  color: currentColor;
}

@media screen and (min-width: 80em){
  .c-newsletter__body{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-newsletter__body{
    font-size: 1rem;
  }
}

.c-newsletter__sub {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 64em) {
  .c-newsletter__sub {
    margin-top: 0;
  }
}
.c-newsletter__sub a {
  color: currentColor;
}

/*------------------------------------*
  Inverted
*------------------------------------*/
.c-newsletter--inverted {
  background-color: HSL(var(--primary-100));
  border: none;
  color: HSL(var(--base-100));
}

@media only screen and (min-width: 46.75em) {
  .c-file {
    display: flex;
  }
}
@media only screen and (min-width: 80em) {
  .c-file {
    align-items: center;
  }
}

.c-file__media {
  margin-bottom: 1.5rem;
  text-align: center;
}
@media only screen and (min-width: 46.75em) {
  .c-file__media {
    flex: 1 0 20rem;
    margin-right: 6rem;
    margin-bottom: 0;
  }
}

.c-file__img {
  width: 20rem;
}

.c-file__cta {
  color: HSL(var(--primary-100));
}
.c-file__cta[target=_blank]:after {
  display: none;
}

.c-file__cta-text {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: calc(0.875rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 700;
  margin-top: 1.5rem;
}

@media screen and (min-width: 80em){
  .c-file__cta-text{
    font-size: 1rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-file__cta-text{
    font-size: 0.875rem;
  }
}

.c-file__cta[target=_blank] .c-file__cta-text:after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4Ljc1IDIxLjc1SDIuMjVWNC44NzVIMTEuMjVWMy4zNzVIMC43NVYyMy4yNUgyMC4yNVYxMi43NUgxOC43NVYyMS43NVoiIGZpbGw9IiNFODBFM0YiLz4KPHBhdGggZD0iTTE0LjI1IDAuNzVWMi4yNUgyMC42ODk0TDguODQ0NzMgMTQuMDk0N0w5LjkwNTMyIDE1LjE1NTNMMjEuNzUgMy4zMTA2NFY5Ljc1SDIzLjI1VjAuNzVIMTQuMjVaIiBmaWxsPSIjRTgwRTNGIi8+Cjwvc3ZnPgo=");
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-size: contain;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.c-file__content-label {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 700;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-file__content-label{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-file__content-label{
    font-size: 1rem;
  }
}

.c-file__content-title {
  font-family: brother-1816;
  font-size: calc(1.5rem + 0.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
  color: HSL(var(--primary-100));
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 80em){
  .c-file__content-title{
    font-size: 2.4375rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-file__content-title{
    font-size: 1.5rem;
  }
}

/**************************\
  Basic Modal Styles
\**************************/
.c-modal {
  display: none;
}

.c-modal.is-open {
  display: block;
}

.c-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.c-modal__container {
  background-color: HSL(var(--base-100));
  padding: 1.5rem;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}

.c-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-modal__title {
  font-family: brother-1816;
  font-size: calc(1.5rem + 0.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  color: HSL(var(--primary-100));
}

@media screen and (min-width: 80em){
  .c-modal__title{
    font-size: 2.4375rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-modal__title{
    font-size: 1.5rem;
  }
}

.c-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  width: 2.125rem;
  height: 2.125rem;
  border: 0.0625rem solid HSL(var(--primary-100));
}

.c-modal__close:before {
  content: "✕";
  font-size: 1rem;
  color: HSL(var(--primary-100));
}

.c-modal__body {
  font-family: brother-1816;
  font-size: calc(1rem + 0.25 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
}

@media screen and (min-width: 80em){
  .c-modal__body{
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-modal__body{
    font-size: 1rem;
  }
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.c-modal--slide {
  display: none;
}

.c-modal--slide.is-open {
  display: block;
}

.c-modal--slide[aria-hidden=false] .c-modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal--slide[aria-hidden=false] .c-modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal--slide[aria-hidden=true] .c-modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal--slide[aria-hidden=true] .c-modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal--slide .c-modal__container,
.c-modal--slide .c-modal__overlay {
  will-change: transform;
}

/*------------------------------------*
  NEWSLETTER MODAL
*------------------------------------*/
.c-modal--newsletter .c-modal__inner {
  padding: 0 1.5rem;
  margin-top: 4rem;
}
@media only screen and (min-width: 64em) {
  .c-modal--newsletter .c-modal__inner {
    padding: 0;
    margin-top: 0;
  }
}
.c-modal--newsletter .c-modal__container {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: HSL(var(--base-100));
  padding: 0;
}
.c-modal--newsletter .c-modal__bg {
  height: 100vh;
}
.c-modal--newsletter .c-modal__bg_img {
  height: 100%;
}

.c-tabs__tablist {
  display: flex;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
}

.c-tabs__tab {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
  flex: 1 0 auto;
  outline: none;
}

.c-tabs__tab + .c-tabs__tab {
  margin-left: 1.5rem;
}
@media only screen and (min-width: 64em) {
  .c-tabs__tab + .c-tabs__tab {
    margin-left: 5rem;
  }
}

.c-tabs__tabpanel-title {
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 800;
  color: HSL(var(--primary-100));
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 80em){
  .c-tabs__tabpanel-title{
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-tabs__tabpanel-title{
    font-size: 1.125rem;
  }
}

.c-tabs__tab-text {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 150%;
  color: HSL(var(--primary-100));
}

.c-tabs__tab[aria-selected=true] .c-tabs__tab-text {
  font-weight: bold;
  border-bottom: 0.125rem solid HSL(var(--accent-100));
}

.c-tabs__tabpanel {
  padding: 1.5rem 0;
}

.c-tabs__tabpanel.is-hidden {
  display: none;
}

/*------------------------------------*
  Modifier: timeline
*------------------------------------*/
@media only screen and (min-width: 64em) {
  .c-tabs--timeline .c-tabs__tabpanel-inner {
    display: flex;
    align-items: center;
  }
}
.c-tabs--timeline .c-tabs__tabpanel-img-container {
  text-align: center;
  padding-right: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 64em) {
  .c-tabs--timeline .c-tabs__tabpanel-img-container {
    flex: 0 1 60%;
    margin-bottom: 0;
    padding-right: 6rem;
  }
}
@media only screen and (min-width: 64em) {
  .c-tabs--timeline .c-tabs__tabpanel-content {
    flex: 1 1 40%;
  }
}

.c-customer-logos__title {
  color: HSL(var(--primary-100));
  font-family: brother-1816;
  font-size: calc(1.6875rem + 1.375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
}

@media screen and (min-width: 80em){
  .c-customer-logos__title{
    font-size: 3.0625rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-customer-logos__title{
    font-size: 1.6875rem;
  }
}

.c-customer-logos__label {
  color: HSL(var(--primary-100));
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 300;
  margin-bottom: 3rem;
}

@media screen and (min-width: 80em){
  .c-customer-logos__label{
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-customer-logos__label{
    font-size: 1.125rem;
  }
}

.c-customer-logos__list__item {
  text-align: center;
}

.c-meta {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 46.75em) {
  .c-meta {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}

.c-meta__item + .c-meta__item {
  margin-top: 1rem;
}

.c-meta__title {
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 800;
  color: HSL(var(--primary-100));
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 80em){
  .c-meta__title{
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-meta__title{
    font-size: 1.125rem;
  }
}

.c-meta__description {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  font-weight: 400;
}

@media screen and (min-width: 80em){
  .c-meta__description{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .c-meta__description{
    font-size: 1rem;
  }
}

.c-meta__description a {
  color: HSL(var(--primary-100));
}

/*------------------------------------*
  Spaceless Modifier
*------------------------------------*/
.c-meta--spaceless {
  margin: 0;
}

.addthis_toolbox a[target=_blank]:after {
  display: none;
}

fieldset {
  border: none;
}

.t-bcorp-logo-home {
  display: block;
  margin-top: 2.5rem;
}
@media only screen and (min-width: 46.75em) {
  .t-bcorp-logo-home {
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 96em) {
  .t-bcorp-logo-home {
    position: absolute;
    bottom: 0;
    left: 3rem;
    margin-bottom: 2.5rem;
  }
}

.no-js [data-aos] {
  pointer-events: initial;
}

:root {
  --navbar-height: 78px;
}

body.js-sticky-pre-zone,
body.js-sticky-zone {
  padding-top: var(--navbar-height);
}

body.js-sticky-pre-zone.js-scrolling-down .js-topnav {
  display: none;
}

body.js-sticky-zone .js-topnav,
body.js-sticky-pre-zone .js-topnav {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: HSL(var(--base-100));
  width: 100%;
  z-index: 900;
  transform: translate(-50%, -100%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
body.js-sticky-zone .js-topnav:before,
body.js-sticky-pre-zone .js-topnav:before {
  content: "";
}

body.js-sticky-zone.js-scrolling-up .js-topnav {
  transform: translate(-50%, 0);
  opacity: 1;
}

/*------------------------------------*
  Styles for old articles imported from Wordpress
*------------------------------------*/
.c-article__video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.c-article__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.imported-image {
  margin-top: 3rem;
  margin-bottom: 3rem;
  width: 100%;
  height: auto;
}

[data-notation] {
  position: relative;
  z-index: 100;
  display: inline !important;
}

h1, h2, h3, h4, h5, h6, p {
  position: relative;
  z-index: 1;
}
h1 svg.rough-annotation, h2 svg.rough-annotation, h3 svg.rough-annotation, h4 svg.rough-annotation, h5 svg.rough-annotation, h6 svg.rough-annotation, p svg.rough-annotation {
  z-index: -1 !important;
}

.u-bg-color-primary-100 [data-notation=highlight-cyan] {
  color: HSL(var(--primary-100));
}

/*------------------------------------*
  NO-JS FALLBACK
*------------------------------------*/
.no-js [data-notation=highlight-cyan] {
  background-color: HSL(var(--highlight-100));
}

.no-js [data-notation=underline-cyan] {
  border-bottom: 0.5rem solid HSL(var(--highlight-100));
}

.no-js [data-notation=circle-cyan] {
  border: 0.125rem solid HSL(var(--highlight-100));
}

.no-js [data-notation=underline-cta-accent] {
  border-bottom: 0.1875rem solid HSL(var(--accent-100));
}

.no-js [data-notation=circle-accent] {
  border: 0.125rem solid HSL(var(--accent-100));
}

.splide__track {
  overflow-x: scroll;
  padding-right: 80px !important;
}
@media only screen and (min-width: 80em) {
  .splide__track {
    padding-right: 0 !important;
  }
}
.splide__track::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 0.4375rem;
}
.splide__track::-webkit-scrollbar-thumb {
  background-color: HSL(var(--primary-100));
}
.splide__track::-webkit-scrollbar-track {
  background: #1f1c3d;
  background: linear-gradient(0deg, #1f1c3d 0%, #1f1c3d 30%, rgba(178, 182, 223, 0) 30%, rgba(178, 182, 223, 0) 100%);
}

.splide__list {
  padding-bottom: 3.5rem !important;
}

.splide__arrows {
  display: none;
}

.splide__slide:focus {
  outline: 0.0625rem solid HSL(var(--accent-100));
}

/*------------------------------------*
  Visually hidden
*------------------------------------*/
.u-visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.u-objfit-cover {
  object-fit: cover;
  object-position: center;
}

.u-ratio-16-9 {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.u-wp-imported-img {
  display: block;
  margin: 0 auto;
}

.u-grid-align-self-end {
  align-self: end;
}

#iubenda-cs-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  width: 100%;
  background: #fff !important;
  box-shadow: 0px -15px 21px 0px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
#iubenda-cs-banner .iubenda-cs-content {
  max-width: 90rem;
  margin: 0 auto;
}
#iubenda-cs-banner #iubenda-cs-title {
  font-family: brother-1816;
  font-size: calc(1.125rem + 0.4375 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  font-weight: 800;
  color: HSL(var(--primary-100));
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 80em){
  #iubenda-cs-banner #iubenda-cs-title{
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 26.75em){
  #iubenda-cs-banner #iubenda-cs-title{
    font-size: 1.125rem;
  }
}
#iubenda-cs-banner #iubenda-cs-paragraph {
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  color: HSL(var(--primary-100));
}
@media screen and (min-width: 80em){
  #iubenda-cs-banner #iubenda-cs-paragraph{
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 26.75em){
  #iubenda-cs-banner #iubenda-cs-paragraph{
    font-size: 0.75rem;
  }
}
#iubenda-cs-banner .iubenda-cs-opt-group {
  margin-top: 2rem;
}
@media only screen and (min-width: 26.75em) {
  #iubenda-cs-banner .iubenda-cs-opt-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
#iubenda-cs-banner .iubenda-cs-close-btn {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  background: 0 0;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}
@media only screen and (min-width: 46.75em) {
  #iubenda-cs-banner .iubenda-cs-close-btn {
    right: 5rem;
    top: 1.5rem;
  }
}
#iubenda-cs-banner .iubenda-cs-reject-btn {
  border-bottom: 0.125rem solid HSL(var(--accent-100));
}
#iubenda-cs-banner .iubenda-cs-btn-primary + .iubenda-cs-btn-primary {
  margin-left: 1.5rem;
}
#iubenda-cs-banner .iubenda-cs-customize-btn {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 26.75em) {
  #iubenda-cs-banner .iubenda-cs-customize-btn {
    margin-bottom: 0;
  }
}
#iubenda-cs-banner .iubenda-granular-controls-container {
  margin-top: 0.5rem;
}
#iubenda-cs-banner .iub-toggle-checkbox.granular-control-checkbox {
  font-family: "Inter", sans-serif;
  font-size: calc(0.75rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 150%;
  color: HSL(var(--primary-100));
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (min-width: 80em){
  #iubenda-cs-banner .iub-toggle-checkbox.granular-control-checkbox{
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 26.75em){
  #iubenda-cs-banner .iub-toggle-checkbox.granular-control-checkbox{
    font-size: 0.75rem;
  }
}
#iubenda-cs-banner .iub-toggle-checkbox.granular-control-checkbox input[type=checkbox] {
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  padding: 0;
  box-shadow: inset 0 0 0 0.0625rem HSL(var(--primary-100));
  appearance: none;
  background-color: transparent;
  outline: none;
  transition: outline 0.1s;
  cursor: pointer;
}
#iubenda-cs-banner .iub-toggle-checkbox.granular-control-checkbox input[type=checkbox] ~ label {
  cursor: pointer;
}
#iubenda-cs-banner .iub-toggle-checkbox.granular-control-checkbox input[type=checkbox]:checked {
  background-size: cover;
  background-color: HSL(var(--accent-100));
  box-shadow: none;
}
#iubenda-cs-banner .iub-toggle-checkbox.granular-control-checkbox input[type=checkbox]:not(:disabled):checked {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 32 32" xml:space="preserve"><path style="fill: %23fff" d="M11.941,28.877l-11.941-11.942l5.695-5.696l6.246,6.246l14.364-14.364L32,8.818"/></svg>');
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
#iubenda-cs-banner .iub-toggle-checkbox.granular-control-checkbox input[type=checkbox]:disabled {
  background-color: HSL(var(--geyser-blue));
}
#iubenda-cs-banner .iub-toggle-checkbox.granular-control-checkbox input[type=checkbox]:disabled:checked {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 32 32" xml:space="preserve"><path style="fill: %238b8c89" d="M11.941,28.877l-11.941-11.942l5.695-5.696l6.246,6.246l14.364-14.364L32,8.818"/></svg>');
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

._form._inline-form {
  font-family: "Inter", sans-serif !important;
  padding: 0 !important;
}

._form-content .c-form-field {
  position: relative;
}
._form-content .c-form-field + .c-form-field {
  margin-top: 1rem;
}
._form-content .c-input__control {
  padding: 1rem 1.5rem !important;
  background-color: HSL(var(--base-100)) !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: inset 0 0 0 0.0625rem HSL(var(--primary-100)) !important;
  width: 100% !important;
  color: HSL(var(--primary-100)) !important;
  font-family: "Inter", sans-serif !important;
  font-size: calc(1rem + 0.125 * (100vw - 26.75em) / 53.25) !important;
  line-height: 180% !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
@media only screen and (min-width: 80em) {
  ._form-content .c-input__control {
    font-size: 1.125rem !important;
  }
}
@media only screen and (min-width: 26.75em) {
  ._form-content .c-input__control {
    font-size: 1rem !important;
  }
}
._form-content .c-input__control:active, ._form-content .c-input__control:focus {
  box-shadow: inset 0 0 0.25rem HSL(var(--accent-100)) !important;
}
._form-content ._error {
  position: relative !important;
  top: initial !important;
}
._form-content ._error._below {
  right: initial !important;
  left: 0 !important;
}
._form-content ._error-inner {
  background-color: transparent !important;
  color: HSL(var(--accent-100)) !important;
  padding: 0 !important;
  text-align: left !important;
}
._form-content ._error-arrow {
  display: none !important;
}
._form-content ._button-wrapper {
  margin-top: 2rem;
  text-align: center;
}
._form-content .c-action, ._form-content #iubenda-cs-banner .iubenda-cs-accept-btn, #iubenda-cs-banner ._form-content .iubenda-cs-accept-btn, ._form-content #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner ._form-content .iubenda-cs-reject-btn, ._form-content #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner ._form-content .iubenda-cs-customize-btn {
  min-width: 13.75rem;
  padding: 1rem 1.5rem !important;
  font-family: "Inter", sans-serif !important;
  font-size: calc(1rem + 0.125 * (100vw - 26.75em) / 53.25) !important;
  line-height: 180% !important;
}
@media only screen and (min-width: 80em) {
  ._form-content .c-action, ._form-content #iubenda-cs-banner .iubenda-cs-accept-btn, #iubenda-cs-banner ._form-content .iubenda-cs-accept-btn, ._form-content #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner ._form-content .iubenda-cs-reject-btn, ._form-content #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner ._form-content .iubenda-cs-customize-btn {
    font-size: 1.125rem !important;
  }
}
@media only screen and (min-width: 26.75em) {
  ._form-content .c-action, ._form-content #iubenda-cs-banner .iubenda-cs-accept-btn, #iubenda-cs-banner ._form-content .iubenda-cs-accept-btn, ._form-content #iubenda-cs-banner .iubenda-cs-reject-btn, #iubenda-cs-banner ._form-content .iubenda-cs-reject-btn, ._form-content #iubenda-cs-banner .iubenda-cs-customize-btn, #iubenda-cs-banner ._form-content .iubenda-cs-customize-btn {
    font-size: 1rem !important;
  }
}
._form-content ._form-thank-you {
  font-family: "Inter", sans-serif !important;
  font-size: calc(1rem + 0.125 * (100vw - 26.75em) / 53.25) !important;
  line-height: 180% !important;
}
@media only screen and (min-width: 80em) {
  ._form-content ._form-thank-you {
    font-size: 1.125rem !important;
  }
}
@media only screen and (min-width: 26.75em) {
  ._form-content ._form-thank-you {
    font-size: 1rem !important;
  }
}
._form-content ._button-wrapper {
  text-align: left;
  display: block !important;
}

/* Flexbox
// ================================================== */
.u-d--f {
  display: flex;
}

.u-d--if {
  display: inline-flex;
}

/* Flex direction */
.u-fd--r {
  flex-direction: row;
}

/* Default */
.u-fd--rr {
  flex-direction: row-reverse;
}

.u-fd--c {
  flex-direction: column;
}

.u-fd--cr {
  flex-direction: column-reverse;
}

/* Flex wrap */
.u-fw--n {
  flex-wrap: nowrap;
}

/* Default */
.u-fw--w {
  flex-wrap: wrap;
}

.u-fw--wr {
  flex-wrap: wrap-reverse;
}

/* Justify content */
.u-jc--fe {
  justify-content: flex-end;
}

.u-jc--fs {
  justify-content: flex-start;
}

/* Default */
.u-jc--c {
  justify-content: center;
}

.u-jc--sa {
  justify-content: space-around;
}

.u-jc--sb {
  justify-content: space-between;
}

/* Align items */
.u-ai--fs {
  align-items: flex-start;
}

.u-ai--c {
  align-items: center;
}

.u-ai--fe {
  align-items: flex-end;
}

.u-ai--s {
  align-items: stretch;
}

/* Default */
.u-ai--b {
  align-items: baseline;
}

/* Flex grow */
.u-fg--0 {
  flex-grow: 0;
}

/* Default */
.u-fg--1 {
  flex-grow: 1;
}

/* Flex shrink */
.u-fs--0 {
  flex-shrink: 0;
}

.u-fs--1 {
  flex-shrink: 1;
}

/* Default */
/* Flex basis */
.u-fb--a {
  flex-basis: auto;
}

/* Default */
.u-fb--0 {
  flex-basis: 0;
}

/* Align self */
.u-as--a {
  align-self: auto;
}

/* Default */
.u-as--fs {
  align-self: flex-start;
}

.u-as--c {
  align-self: center;
}

.u-as--fe {
  align-self: flex-end;
}

.u-as--s {
  align-self: stretch;
}

.u-as--b {
  align-self: baseline;
}

.modal-gaza-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-gaza-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-gaza-content {
  position: relative;
  background-color: transparent;
  max-width: 900px;
  max-height: 90%;
  padding: 2rem;
  text-align: left;
  margin: 48px auto 0;
}

.modal-gaza-close {
  position: fixed;
  top: 0;
  right: 16px;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #ffffff;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 10000;
}

.modal-gaza-close:hover {
  color: #cccccc;
}

.modal-gaza-body {
  color: #ffffff;
}

.modal-gaza-title {
  margin: 0 0 1.5rem 0;
  font-family: brother-1816;
  font-size: calc(1.5rem + 0.9375 * ((100vw - 26.75em) / 53.25));
  line-height: 125%;
  font-weight: 800;
  color: #ffffff;
}

@media screen and (min-width: 80em){
  .modal-gaza-title{
    font-size: 2.4375rem;
  }
}

@media screen and (max-width: 26.75em){
  .modal-gaza-title{
    font-size: 1.5rem;
  }
}

.modal-gaza-text {
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 0.125 * ((100vw - 26.75em) / 53.25));
  line-height: 180%;
  color: #ffffff;
}

@media screen and (min-width: 80em){
  .modal-gaza-text{
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 26.75em){
  .modal-gaza-text{
    font-size: 1rem;
  }
}

.modal-gaza-text p {
  margin: 0 0 1.5rem 0;
}

.modal-gaza-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .modal-gaza-content {
    max-width: 95%;
    padding: 1.5rem;
    margin: 24px auto 0;
  }

  .modal-gaza-title {
    font-size: 1.5rem;
  }

  .modal-gaza-text {
    font-size: 1rem;
  }

  .modal-gaza-close {
    top: 0;
    right: 16px;
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .modal-gaza-title {
    font-size: 1.25rem;
  }

  .modal-gaza-text {
    font-size: 0.9rem;
  }
}

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