@charset "UTF-8";
@layer reset {
  /*
Reboot
Normalization of HTML elements, manually forked from Normalize.css to remove styles targeting irrelevant browsers while applying new styles.
Normalize is licensed MIT. https://github.com/necolas/normalize.css
* Bootstrap v4.0.0-beta (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
  /*
Document
1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
2. Change the default font family in all browsers.
3. Correct the line height in all browsers.
4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
6. Change the default tap highlight to be completely transparent in iOS.
*/
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    /* 1 */
  }
  html {
    font-family: sans-serif;
    /* 2 */
    line-height: 1.15;
    /* 3 */
    -webkit-text-size-adjust: 100%;
    /* 4 */
    -ms-text-size-adjust: 100%;
    /* 4 */
    -ms-overflow-style: scrollbar;
    /* 5 */
    -webkit-tap-highlight-color: transparent;
    /* 6 */
  }
  /* IE10+ doesn't honor `<meta name="viewport">` in some cases. */
  @-ms-viewport {
    width: device-width;
  }
  /* stylelint-disable selector-list-comma-newline-after
Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers) */
  article,
  aside,
  dialog,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  nav,
  section {
    display: block;
  }
  /*
Body
1. Remove the margin in all browsers.
2. As a best practice, apply a default `background-color`.
3. Set an explicit initial text-align value so that we can later use the `inherit` value on things like `<th>` elements.
*/
  body {
    margin: 0;
    /* 1 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    /* 3 */
    background-color: #fff;
    /* 2 */
  }
  /*
Suppress the focus outline on elements that cannot be accessed via keyboard.
This prevents an unwanted focus outline from appearing around elements that might still respond to pointer events.
Credit: https://github.com/suitcss/base
*/
  [tabindex="-1"]:focus {
    outline: none !important;
  }
  /*
Content grouping
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 */
  }
  /*
Typography
*/
  /*
Remove top margins from headings
By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top margin for easier control within type scales as it avoids margin collapsing.
*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 0;
    margin-bottom: .5rem;
  }
  /*
Reset margins on paragraphs
Similarly, the top margin on `<p>`s get reset. However, we also reset the bottom margin to use `rem` units instead of `em`.
*/
  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  /*
Abbreviations
1. Remove the bottom border in Firefox 39-.
2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
3. Add explicit cursor to indicate changed behavior.
4. Duplicate behavior to the data-* attribute for our tooltip plugin
*/
  abbr[title],
  abbr[data-original-title] {
    /* 4 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
    cursor: help;
    /* 3 */
    border-bottom: 0;
    /* 1 */
  }
  address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
  }
  ol,
  ul,
  dl {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  ol ol,
  ul ul,
  ol ul,
  ul ol {
    margin-bottom: 0;
  }
  dt {
    font-weight: bold;
  }
  dd {
    margin-bottom: .5rem;
    margin-left: 0;
    /* Undo browser default */
  }
  blockquote {
    margin: 0 0 1rem;
  }
  dfn {
    font-style: italic;
    /* Add the correct font style in Android 4.3- */
  }
  b,
  strong {
    font-weight: bolder;
    /* Add the correct font weight in Chrome, Edge, and Safari */
  }
  small {
    font-size: 80%;
    /* Add the correct font size in all browsers */
  }
  sub,
  sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
  }
  sub {
    bottom: -.25em;
  }
  sup {
    top: -.5em;
  }
  /*
Links
*/
  a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    /* Remove the gray background on active links in IE 10. */
    -webkit-text-decoration-skip: objects;
    /* Remove gaps in links underline in iOS 8+ and Safari 8+. */
  }
  a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  /*
And undo these styles for placeholder links/named anchors (without href) which have not been made explicitly keyboard-focusable (without tabindex). It would be more straightforward to just use a[href] in previous block, but that causes specificity issues in many other styles that are too complex to fix.
See https://github.com/twbs/bootstrap/issues/19402
*/
  a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
  }
  a:not([href]):not([tabindex]):focus,
  a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
  }
  a:not([href]):not([tabindex]):focus {
    outline: 0;
  }
  /*
Code
*/
  pre,
  code,
  kbd,
  samp {
    font-family: monospace, monospace;
    /* Correct the inheritance and scaling of font size in all browsers. */
    font-size: 1em;
    /* Correct the odd `em` font sizing in all browsers. */
  }
  pre {
    /* Remove browser default top margin */
    margin-top: 0;
    /* Reset browser default of `1em` to use `rem`s */
    margin-bottom: 1rem;
    /* Don't allow content to break outside */
    overflow: auto;
    /* We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to counteract. */
    -ms-overflow-style: scrollbar;
  }
  /*
Figures
*/
  figure {
    /* Apply a consistent margin strategy (matches our type styles). */
    margin: 0 0 1rem;
  }
  /*
Images and content
*/
  img {
    vertical-align: middle;
    border-style: none;
    /* Remove the border on images inside links in IE 10-. */
  }
  svg:not(:root) {
    overflow: hidden;
    /* Hide the overflow in IE */
  }
  /*
Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.
In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11 DON'T remove the click delay when `<meta name="viewport" content="width=device-width">` is present. However, they DO support removing the click delay via `touch-action: manipulation`.
See:
* https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch
* https://caniuse.com/#feat=css-touch-action
*  https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
*/
  a,
  area,
  button,
  [role="button"],
  input:not([type=range]),
  label,
  select,
  summary,
  textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
  }
  /*
Tables
*/
  table {
    border-collapse: collapse;
    /* Prevent double borders */
  }
  caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #868e96;
    text-align: left;
    caption-side: bottom;
  }
  th {
    /* Matches default `<td>` alignment by inheriting from the `<body>`, or the closest parent with a set `text-align`. */
    text-align: inherit;
  }
  /*
Forms
*/
  label {
    /* Allow labels to use `margin` for spacing. */
    display: inline-block;
    margin-bottom: .5rem;
  }
  /*
Remove the default `border-radius` that macOS Chrome adds.
Details at https://github.com/twbs/bootstrap/issues/24093
*/
  button {
    border-radius: 0;
  }
  /*
Work around a Firefox/IE bug where the transparent `button` background results in a loss of the default `button` focus styles.
Credit: https://github.com/suitcss/base/
*/
  button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
  }
  input,
  button,
  select,
  optgroup,
  textarea {
    margin: 0;
    /* Remove the margin in Firefox and Safari */
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  button,
  input {
    overflow: visible;
    /* Show the overflow in Edge */
  }
  button,
  select {
    text-transform: none;
    /* Remove the inheritance of text transform in Firefox */
  }
  /*
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;
  }
  /*
Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
*/
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
  }
  input[type="radio"],
  input[type="checkbox"] {
    box-sizing: border-box;
    /* 1. Add the correct box sizing in IE 10- */
    padding: 0;
    /* 2. Remove the padding in IE 10- */
  }
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    /*
  Remove the default appearance of temporal inputs to avoid a Mobile Safari bug where setting a custom line-height prevents text from being vertically centered within the input.

  See https://bugs.webkit.org/show_bug.cgi?id=139848
  and https://github.com/twbs/bootstrap/issues/11266
  */
    -webkit-appearance: listbox;
  }
  textarea {
    overflow: auto;
    /* Remove the default vertical scrollbar in IE. */
    /* Textareas should really only resize vertically so they don't break their (horizontal) containers. */
    resize: vertical;
  }
  fieldset {
    /*
  Browsers set a default `min-width: min-content;` on fieldsets, unlike e.g. `<div>`s, which have `min-width: 0;` by default. So we reset that to ensure fieldsets behave more like a standard block element.

  See https://github.com/twbs/bootstrap/issues/12359
  and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
  */
    min-width: 0;
    /* Reset the default outline behavior of fieldsets so they don't affect page layout. */
    padding: 0;
    margin: 0;
    border: 0;
  }
  /*
1. Correct the text wrapping in Edge and IE.
2. Correct the color inheritance from `fieldset` elements in IE.
*/
  legend {
    display: block;
    width: 100%;
    max-width: 100%;
    /* 1 */
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    /* 2 */
    white-space: normal;
    /* 1 */
  }
  progress {
    vertical-align: baseline;
    /* Add the correct vertical alignment in Chrome, Firefox, and Opera. */
  }
  /*
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;
  }
  [type="search"] {
    /*
  This overrides the extra rounded corners on search inputs in iOS so that our `.form-control` class can properly style them. Note that this cannot simply be added to `.form-control` as it's not specific enough.

  For details, see https://github.com/twbs/bootstrap/issues/11586.
  */
    outline-offset: -2px;
    -webkit-appearance: none;
  }
  /*
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 {
    font: inherit;
    -webkit-appearance: button;
  }
  /*
Correct element displays
*/
  output {
    display: inline-block;
  }
  summary {
    display: list-item;
    /* Add the correct display in all browsers */
  }
  template {
    display: none;
    /* Add the correct display in IE */
  }
  /*
Always hide an element with the `hidden` HTML attribute (from PureCSS).
Needed for proper display in IE 10-.
*/
  [hidden] {
    display: none !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  @font-face {
    font-family: 'Sofia Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local("Sofia Pro Regular"), url("../fonts/Sofia Pro Regular Az.woff") format("woff");
  }
  @font-face {
    font-family: 'Sofia Pro Light';
    font-style: normal;
    font-weight: normal;
    src: local("Sofia Pro Light"), url("../fonts/Sofia Pro Light Az.woff") format("woff");
  }
  @font-face {
    font-family: 'Sofia Pro SemiBold';
    font-style: normal;
    font-weight: normal;
    src: local("Sofia Pro SemiBold"), url("../fonts/Sofia Pro Semi Bold Az.woff") format("woff");
  }
  @font-face {
    font-family: 'Sofia Pro Black';
    font-style: normal;
    font-weight: normal;
    src: local("Sofia Pro Black"), url("../fonts/Sofia Pro Black Az.woff") format("woff");
  }
}

:root {
  --spacer: 8px;
  --spacer-2x: 16px;
  --spacer-3x: 24px;
  --spacer-4x: 32px;
  --spacer-5x: 40px;
  --spacer-6x: 48px;
  --gutter: 30px;
  --gutter-2x: 60px;
  --gutter-3x: 90px;
  --gutter-4x: 120px;
}

.spacer {
  --spacer: 8px;
}

.spacer-2x {
  --spacer: 16px;
}

.spacer-3x {
  --spacer: 24px;
}

.spacer-4x {
  --spacer: 32px;
}

.spacer-5x {
  --spacer: 40px;
}

.spacer-6x {
  --spacer: 48px;
}

.gutter {
  --gutter: 30px;
}

.gutter-2x {
  --gutter: 60px;
}

.gutter-3x {
  --gutter: 90px;
}

.gutter-4x {
  --gutter: 120px;
}

:root {
  --_dark: #5D5D5D;
  --_darker: #333;
  --_light: #fff;
  --_faint: #F5F5F7;
  --primary: #5C3BA2;
  --interaction: #95C94E;
  --interaction-1: #4B9C45;
  --bg-blue: #5EC9E9;
  --btn-gradient: linear-gradient(104deg, var(--interaction-1) 0%, var(--interaction) 100%) 0% 0% no-repeat padding-box;
}

html {
  --text-light: var(--_light);
  --text-dark: var(--_dark);
  --social-icon-color: #939394;
  --link-color: var(--interaction);
}

.text-light {
  --link-color: var(--_light);
}

.text-dark {
  --link-color: #var(--_darker);
}

.bg-dark {
  background: var(--_dark);
}

.bg-darker {
  background: var(--_darker);
}

body {
  background: var(--body-bg);
}

.bg-lemon {
  background: #95C94E;
}

.bg-peach {
  background: #F7AAB1;
}

.bg-blue {
  background: #5EC9E9;
}

.bg-yellow {
  background: #EAD53C;
}

.bg-gray {
  background: #A5A1CF;
}

.bg-pale {
  background: #E1BC88;
}

.sticker-blue {
  --sticker-background: #5DC9E9;
  --sticker-peel-color: #48A6C7;
}

.sticker-peach {
  --sticker-background: #F7AAB1;
  --sticker-peel-color: #D18A94;
}

.sticker-yellow {
  --sticker-background: #EAD53B;
  --sticker-peel-color: #D1B93E;
}

.sticker-gray {
  --sticker-background: #A5A1CF;
  --sticker-peel-color: #9187B5;
}

:root {
  --text-size-xs: 10px;
  --text-size-s: 12px;
  --text-size-m: 14px;
  --text-size-l: 16px;
  --text-size-xl: 18px;
  --text-size-xxl: 20px;
  --text-size-xxxl: 22px;
  --text-size-xxxxl: 24px;
  --font-regular: 'Sofia Pro Regular';
  --font-light: 'Sofia Pro Light';
  --font-semibold: 'Sofia Pro SemiBold';
  --font-black: 'Sofia Pro Black';
}

body {
  font-family: var(--font-regular), Helvetica, Arial;
  line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
.strong,
.bold,
.heading {
  font-family: var(--font-black);
  font-weight: normal;
}

.section-title {
  font-size: 32px;
  font-family: var(--font-semibold);
}

p {
  font-size: var(--text-size-xxl);
  margin-bottom: 60px;
}

.font-semibold {
  font-family: var(--font-semibold);
}

.font-regular {
  font-family: var(--font-regular);
}

.font-light {
  font-family: var(--font-light);
}

.wide-container {
  margin-inline: auto;
  position: relative;
  width: calc(100vw - 80px);
}

html {
  height: 100%;
}

body {
  min-height: 100%;
}

ul,
ol {
  padding: var(--ul-padding, 0);
}

.grid-col {
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: var(--grid-template-columns, repeat(1, 1fr));
}

@media (min-width: 1024px) {
  .grid-col-2 {
    --grid-template-columns: repeat(2, 1fr);
  }
  .grid-col-3 {
    --grid-template-columns: repeat(3, 1fr);
  }
  .grid-col-4 {
    --grid-template-columns: repeat(4, 1fr);
  }
  .grid-col-5 {
    --grid-template-columns: repeat(5, 1fr);
  }
  .grid-col-6 {
    --grid-template-columns: repeat(6, 1fr);
  }
}

.fade-in-viewport:not(.faded-in) {
  opacity: 0.3;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.5s linear;
}

.faded-in {
  opacity: 1;
}

video {
  width: 100%;
  height: 100%;
}

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

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.static {
  position: static !important;
}

.inset {
  inset: 0;
}

.section-title {
  margin-bottom: 60px;
}

.viewport-height {
  height: 100vh;
}

.object-media {
  width: 100%;
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.object-center {
  object-position: center center;
}

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

.list-inline {
  display: flex;
  list-style-type: none;
  gap: var(--spacer);
}

.loader-mask {
  position: fixed;
  inset: 0;
  background-color: #5C3BA2;
  z-index: 99999;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 5px;
  width: 5em;
  height: 5em;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  border-top: 0.5em solid #2b2b2b;
  border-right: 0.5em solid rgba(245, 245, 245, 0.5);
  border-bottom: 0.5em solid rgba(245, 245, 245, 0.5);
  border-left: 0.5em solid rgba(245, 245, 245, 0.5);
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
  transition: all .2s ease;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader-hide {
  display: none;
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

:root {
  --header-max-height: 120px;
}

header {
  width: 100%;
  background: transparent;
  top: 0;
  left: 0;
  z-index: 10;
  max-height: var(--header-max-height);
  margin-bottom: var(--spacer-6x);
}

.nav-wrapper {
  display: grid;
  grid-template-columns: max-content 1fr;
  justify-content: space-between;
  padding-top: 30px;
}

.nav-links a,
.nav-links .btn-link {
  white-space: nowrap;
}

.nav-links a.active,
.nav-links .btn-link.active {
  font-family: var(--font-semibold);
}

.brand-logo {
  max-width: var(--brand-logo-size, 180px);
}

@media (min-width: 640px) {
  .brand-logo {
    --brand-logo-size: 248px;
  }
}

.header-tools {
  margin-left: auto;
}

.menu {
  font-size: var(--text-size-m);
}

.menu .nav-links {
  min-height: 39px;
}

.page-loaded .sub-menu {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.text-dark .brand-logo path {
  fill: var(--_dark);
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

@keyframes smile {
  to {
    width: 100%;
  }
}

@keyframes drop {
  0%,
  50% {
    translate: 0 -300%;
  }
  50%,
  100% {
    translate: 0 0;
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes levitate {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3px, 6px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes fall {
  0% {
    top: -110px;
    transform: rotate(0deg) rotateY(-90deg);
    opacity: 1;
  }
  100% {
    top: 900px;
    transform: rotate(360deg) rotateY(180deg);
    opacity: 0.7;
  }
}

@keyframes fall2 {
  0% {
    top: -110px;
    transform: rotate(0deg) rotateY(90deg);
    opacity: 1;
  }
  100% {
    top: 900px;
    transform: rotate(-360deg) rotateY(-180deg);
    opacity: 0.5;
  }
}

.hero-caption {
  color: var(--text-light);
  position: relative;
  z-index: 10;
}

.hero-caption strong,
.hero-caption span {
  display: block;
}

.hero-caption .title strong {
  line-height: 1;
}

.hero-caption .link {
  margin-top: 30px;
}

.btn {
  --edge-gradient: conic-gradient(from calc(270deg - (var(--spread) * 0.5)),
            transparent 0,
            #fff var(--spread),
            transparent var(--spread));
  --edge-gradient-size: 150%;
  --speed: .9s;
  --spread: 90deg;
  --border-radius: 40px;
  --btn-bg: transparent var(--btn-gradient);
  --btn-width: auto;
  --btn-radius: 24px 4px 24px 4px;
}

@media (min-width: 640px) {
  .btn {
    --btn-radius: 24px 4px 24px 4px;
    --btn-padding: 12px 36px;
  }
}

.btn {
  background: transparent;
  border: none;
  color: var(--btn-text-color, var(--text-color));
  border-radius: var(--btn-radius);
  padding: var(--btn-padding, 8px 24px);
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::after {
  content: '';
  background: var(--btn-bg);
  position: absolute;
  inset: 2px;
  border-radius: var(--btn-radius);
  z-index: -1;
}

.btn-label {
  position: relative;
  z-index: 10;
}

.btn .animated {
  position: absolute;
  z-index: -2;
  width: var(--edge-gradient-size);
  inset: 50% 0 0 50%;
  translate: -50%;
  aspect-ratio: 1;
  translate: -50% -50%;
}

.btn:hover, .btn:focus, .btn.active {
  --btn-text-color: var(--text-color);
}

.btn:hover .animated, .btn:focus .animated, .btn.active .animated {
  background: var(--edge-gradient);
  animation: rotate calc(var(--speed) * 2) linear infinite;
}

.btn:active {
  transform: scale(0.99);
  transition: transform .1s ease;
}

.btn-primary {
  --btn-bg: transparent linear-gradient(104deg, #4B9C45 0%, #95C94E 100%) 0% 0% no-repeat padding-box;
  --btn-text-color: #fff;
}

.btn-primary:hover, .btn-primary:focus {
  --btn-text-color: #fff;
}

.btn-large {
  --btn-padding: 12px 20px;
}

@media (min-width: 640px) {
  .btn-large {
    --btn-padding: 16px 28px;
  }
}

.btn-link {
  padding: 0;
  border: 0;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.btn-link:hover, .btn-link:focus {
  color: var(--_darker);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 0;
  width: 40px;
  aspect-ratio: 1;
  background: var(--_darker);
  border-radius: 50%;
  opacity: .7;
}

.back-to-top:hover {
  opacity: 1;
}

.back-to-top::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  aspect-ratio: 1;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg) translate(20px, 3px);
}

html {
  scroll-behavior: smooth;
}

html:has(.homepage),
body:has(.homepage) {
  --body-bg: var(--primary);
  overflow: hidden;
}

body:has(.homepage) {
  --body-bg: var(--primary);
}

.fullpage-slider-item .col {
  display: flex;
  align-items: center;
}

.hero-caption .title {
  margin-bottom: 0;
}

.hero-caption .btn {
  margin-top: 40px;
}

.hero-caption .font-regular {
  font-size: 30px;
}

.hero-caption strong {
  font-size: 32px;
}

.hero-caption .font-light {
  font-size: 16px;
}

@media (min-width: 640px) {
  .hero-caption .font-regular {
    font-size: 60px;
  }
  .hero-caption strong {
    font-size: 84px;
  }
  .hero-caption .font-light {
    font-size: 24px;
  }
}

.section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
  height: 130vh;
  position: fixed;
  width: 100%;
  transform: translateY(30vh);
  transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
}

.section-content {
  height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-flow: column nowrap;
  transform: translateY(40vh);
  will-change: transform;
  backface-visibility: hidden;
  transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
}

.section:first-child {
  transform: translateY(-15vh);
}

.section:first-child .section-content {
  transform: translateY(15vh);
}

/* Set stacking context of slides */
.section:nth-child(1) {
  z-index: 5;
}

.section:nth-child(2) {
  z-index: 4;
}

.section:nth-child(3) {
  z-index: 3;
}

.section:nth-child(4) {
  z-index: 2;
}

.section:nth-child(5) {
  z-index: 1;
}

.section.up-scroll {
  transform: translate3d(0, -15vh, 0);
}

.section.up-scroll .section-content {
  transform: translateY(15vh);
}

.section.up-scroll + .section {
  transform: translate3d(0, 30vh, 0);
}

.section.up-scroll + .section .section-content {
  transform: translateY(30vh);
}

.section.down-scroll {
  transform: translate3d(0, -130vh, 0);
}

.section.down-scroll .section-content {
  transform: translateY(40vh);
}

.section.down-scroll + .section:not(.down-scroll) {
  transform: translate3d(0, -15vh, 0);
}

.section.down-scroll + .section:not(.down-scroll) .section-content {
  transform: translateY(15vh);
}

.fullpage-slider-inner {
  width: 100%;
  height: 100%;
}

.fullpage-slider-item {
  background: transparent linear-gradient(124deg, #5C3BA2 0%, #2A0F64 100%) 0% 0% no-repeat;
}

@media (max-width: 1023px) {
  .fullpage-slide-1 .grid-col .col {
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  .fullpage-slide-1 .hero-caption {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .fullpage-slide-1 .hero-caption {
    padding-left: 160px;
  }
}

.fullpage-slide-2 {
  background: url("../images/bg.jpg");
  background-attachment: fixed;
  background-size: cover;
}

.fullpage-slide-3 .hero-caption strong::before {
  content: "​";
  content: "​"/"FULLPROOF";
  alt: "FULLPROOF";
  white-space: break-spaces;
  will-change: content;
  animation: typed-0 24.54s linear 1s infinite forwards;
}

.fullpage-slide-3 .hero-caption strong::after {
  content: "​";
  position: relative;
  display: inline-block;
  padding-right: 0.1ch;
  border-right: 1ch solid currentColor;
  white-space: nowrap;
  animation: typed-0-caret 0.75s linear 1s infinite forwards;
}

@keyframes typed-0 {
  0%,
  0.4065% {
    content: "​F";
    content: "​F"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  0.4075%,
  0.814% {
    content: "​FU";
    content: "​FU"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  0.815%,
  1.22149% {
    content: "​FUL";
    content: "​FUL"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  1.22249%,
  1.62899% {
    content: "​FULL";
    content: "​FULL"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  1.62999%,
  2.03649% {
    content: "​FULLP";
    content: "​FULLP"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  2.03749%,
  2.44399% {
    content: "​FULLPR";
    content: "​FULLPR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  2.44499%,
  2.85149% {
    content: "​FULLPRO";
    content: "​FULLPRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  2.85249%,
  3.25898% {
    content: "​FULLPROO";
    content: "​FULLPROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  3.25998%,
  12.14244% {
    content: "​FULLPROOF";
    content: "​FULLPROOF"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  12.14344%,
  12.46844% {
    content: "​FULLPROO";
    content: "​FULLPROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  12.46944%,
  12.79444% {
    content: "​FULLPRO";
    content: "​FULLPRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  12.79544%,
  13.12043% {
    content: "​FULLPR";
    content: "​FULLPR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  13.12143%,
  13.44643% {
    content: "​FULLP";
    content: "​FULLP"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  13.44743%,
  13.77243% {
    content: "​FULL";
    content: "​FULL"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  13.77343%,
  14.09843% {
    content: "​FUL";
    content: "​FUL"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  14.09943%,
  14.42443% {
    content: "​FU";
    content: "​FU"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  14.42543%,
  14.75043% {
    content: "​F";
    content: "​F"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  14.75143%,
  18.82541% {
    content: "​";
    content: "​"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  18.82641%,
  19.2329% {
    content: "​W";
    content: "​W"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  19.2339%,
  19.6404% {
    content: "​WA";
    content: "​WA"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  19.6414%,
  20.0479% {
    content: "​WAT";
    content: "​WAT"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  20.0489%,
  20.4554% {
    content: "​WATE";
    content: "​WATE"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  20.4564%,
  20.8629% {
    content: "​WATER";
    content: "​WATER"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  20.8639%,
  21.27039% {
    content: "​WATER ";
    content: "​WATER "/"FULLPROOF";
    alt: "FULLPROOF";
  }
  21.27139%,
  21.67789% {
    content: "​WATER P";
    content: "​WATER P"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  21.67889%,
  22.08539% {
    content: "​WATER PR";
    content: "​WATER PR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  22.08639%,
  22.49289% {
    content: "​WATER PRO";
    content: "​WATER PRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  22.49389%,
  22.90039% {
    content: "​WATER PROO";
    content: "​WATER PROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  22.90139%,
  31.78384% {
    content: "​WATER PROOF";
    content: "​WATER PROOF"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  31.78484%,
  32.10984% {
    content: "​WATER PROO";
    content: "​WATER PROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  32.11084%,
  32.43584% {
    content: "​WATER PRO";
    content: "​WATER PRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  32.43684%,
  32.76184% {
    content: "​WATER PR";
    content: "​WATER PR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  32.76284%,
  33.08783% {
    content: "​WATER P";
    content: "​WATER P"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  33.08883%,
  33.41383% {
    content: "​WATER ";
    content: "​WATER "/"FULLPROOF";
    alt: "FULLPROOF";
  }
  33.41483%,
  33.73983% {
    content: "​WATER";
    content: "​WATER"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  33.74083%,
  34.06583% {
    content: "​WATE";
    content: "​WATE"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  34.06683%,
  34.39183% {
    content: "​WAT";
    content: "​WAT"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  34.39283%,
  34.71783% {
    content: "​WA";
    content: "​WA"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  34.71883%,
  35.04382% {
    content: "​W";
    content: "​W"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  35.04482%,
  39.1188% {
    content: "​";
    content: "​"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  39.1198%,
  39.5263% {
    content: "​S";
    content: "​S"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  39.5273%,
  39.9338% {
    content: "​SC";
    content: "​SC"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  39.9348%,
  40.3413% {
    content: "​SCR";
    content: "​SCR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  40.3423%,
  40.7488% {
    content: "​SCRA";
    content: "​SCRA"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  40.7498%,
  41.15629% {
    content: "​SCRAT";
    content: "​SCRAT"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  41.15729%,
  41.56379% {
    content: "​SCRATC";
    content: "​SCRATC"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  41.56479%,
  41.97129% {
    content: "​SCRATCH";
    content: "​SCRATCH"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  41.97229%,
  42.37879% {
    content: "​SCRATCH ";
    content: "​SCRATCH "/"FULLPROOF";
    alt: "FULLPROOF";
  }
  42.37979%,
  42.78629% {
    content: "​SCRATCH P";
    content: "​SCRATCH P"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  42.78729%,
  43.19378% {
    content: "​SCRATCH PR";
    content: "​SCRATCH PR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  43.19478%,
  43.60128% {
    content: "​SCRATCH PRO";
    content: "​SCRATCH PRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  43.60228%,
  44.00878% {
    content: "​SCRATCH PROO";
    content: "​SCRATCH PROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  44.00978%,
  52.89224% {
    content: "​SCRATCH PROOF";
    content: "​SCRATCH PROOF"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  52.89324%,
  53.21823% {
    content: "​SCRATCH PROO";
    content: "​SCRATCH PROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  53.21923%,
  53.54423% {
    content: "​SCRATCH PRO";
    content: "​SCRATCH PRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  53.54523%,
  53.87023% {
    content: "​SCRATCH PR";
    content: "​SCRATCH PR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  53.87123%,
  54.19623% {
    content: "​SCRATCH P";
    content: "​SCRATCH P"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  54.19723%,
  54.52223% {
    content: "​SCRATCH ";
    content: "​SCRATCH "/"FULLPROOF";
    alt: "FULLPROOF";
  }
  54.52323%,
  54.84823% {
    content: "​SCRATCH";
    content: "​SCRATCH"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  54.84923%,
  55.17422% {
    content: "​SCRATC";
    content: "​SCRATC"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  55.17522%,
  55.50022% {
    content: "​SCRAT";
    content: "​SCRAT"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  55.50122%,
  55.82622% {
    content: "​SCRA";
    content: "​SCRA"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  55.82722%,
  56.15222% {
    content: "​SCR";
    content: "​SCR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  56.15322%,
  56.47822% {
    content: "​SC";
    content: "​SC"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  56.47922%,
  56.80422% {
    content: "​S";
    content: "​S"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  56.80522%,
  60.8792% {
    content: "​";
    content: "​"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  60.8802%,
  61.28669% {
    content: "​D";
    content: "​D"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  61.28769%,
  61.69419% {
    content: "​DU";
    content: "​DU"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  61.69519%,
  62.10169% {
    content: "​DUS";
    content: "​DUS"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  62.10269%,
  62.50919% {
    content: "​DUST";
    content: "​DUST"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  62.51019%,
  62.91669% {
    content: "​DUST ";
    content: "​DUST "/"FULLPROOF";
    alt: "FULLPROOF";
  }
  62.91769%,
  63.32418% {
    content: "​DUST P";
    content: "​DUST P"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  63.32518%,
  63.73168% {
    content: "​DUST PR";
    content: "​DUST PR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  63.73268%,
  64.13918% {
    content: "​DUST PRO";
    content: "​DUST PRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  64.14018%,
  64.54668% {
    content: "​DUST PROO";
    content: "​DUST PROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  64.54768%,
  73.43013% {
    content: "​DUST PROOF";
    content: "​DUST PROOF"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  73.43113%,
  73.75613% {
    content: "​DUST PROO";
    content: "​DUST PROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  73.75713%,
  74.08213% {
    content: "​DUST PRO";
    content: "​DUST PRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  74.08313%,
  74.40813% {
    content: "​DUST PR";
    content: "​DUST PR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  74.40913%,
  74.73413% {
    content: "​DUST P";
    content: "​DUST P"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  74.73513%,
  75.06012% {
    content: "​DUST ";
    content: "​DUST "/"FULLPROOF";
    alt: "FULLPROOF";
  }
  75.06112%,
  75.38612% {
    content: "​DUST";
    content: "​DUST"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  75.38712%,
  75.71212% {
    content: "​DUS";
    content: "​DUS"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  75.71312%,
  76.03812% {
    content: "​DU";
    content: "​DU"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  76.03912%,
  76.36412% {
    content: "​D";
    content: "​D"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  76.36512%,
  80.4391% {
    content: "​";
    content: "​"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  80.4401%,
  80.8466% {
    content: "​L";
    content: "​L"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  80.8476%,
  81.25409% {
    content: "​LO";
    content: "​LO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  81.25509%,
  81.66159% {
    content: "​LOS";
    content: "​LOS"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  81.66259%,
  82.06909% {
    content: "​LOST";
    content: "​LOST"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  82.07009%,
  82.47659% {
    content: "​LOST ";
    content: "​LOST "/"FULLPROOF";
    alt: "FULLPROOF";
  }
  82.47759%,
  82.88409% {
    content: "​LOST P";
    content: "​LOST P"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  82.88509%,
  83.29158% {
    content: "​LOST PR";
    content: "​LOST PR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  83.29258%,
  83.69908% {
    content: "​LOST PRO";
    content: "​LOST PRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  83.70008%,
  84.10658% {
    content: "​LOST PROO";
    content: "​LOST PROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  84.10758%,
  92.99004% {
    content: "​LOST PROOF";
    content: "​LOST PROOF"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  92.99104%,
  93.31603% {
    content: "​LOST PROO";
    content: "​LOST PROO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  93.31703%,
  93.64203% {
    content: "​LOST PRO";
    content: "​LOST PRO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  93.64303%,
  93.96803% {
    content: "​LOST PR";
    content: "​LOST PR"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  93.96903%,
  94.29403% {
    content: "​LOST P";
    content: "​LOST P"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  94.29503%,
  94.62003% {
    content: "​LOST ";
    content: "​LOST "/"FULLPROOF";
    alt: "FULLPROOF";
  }
  94.62103%,
  94.94603% {
    content: "​LOST";
    content: "​LOST"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  94.94703%,
  95.27202% {
    content: "​LOS";
    content: "​LOS"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  95.27302%,
  95.59802% {
    content: "​LO";
    content: "​LO"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  95.59902%,
  95.92402% {
    content: "​L";
    content: "​L"/"FULLPROOF";
    alt: "FULLPROOF";
  }
  95.92502%,
  100% {
    content: "​";
    content: "​"/"FULLPROOF";
    alt: "FULLPROOF";
  }
}

@keyframes typed-0-caret {
  75% {
    border-color: transparent;
  }
}

.fullpage-slide-1 .hero-caption {
  translate: 0 100px;
  opacity: 0;
  transition: all 1.4s .5s ease-out;
}

.fullpage-slide-4 .hero-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fullpage-slide-4 .hero-caption .title .font-regular {
  font-size: 14vw;
}

@media (min-width: 640px) {
  .fullpage-slide-4 .hero-caption .title .font-regular {
    font-size: 100px;
  }
}

.fullpage-slide-4 .smile {
  margin-top: 40px;
}

.fullpage-slide-4 .smile svg {
  width: 0;
}

.fullpage-slide-4.active .font-regular::before {
  content: "​";
  content: "​"/"Stick it up";
  alt: "Stick it up";
  white-space: break-spaces;
  will-change: content;
  animation: typed-1 4.98s linear 1s 0 forwards, typed-1-final 1.1s linear 1s 1 forwards;
}

@keyframes typed-1-final {
  0%,
  9.09091% {
    content: "​S";
    content: "​S"/"Stick it up";
    alt: "Stick it up";
  }
  9.09191%,
  18.18182% {
    content: "​St";
    content: "​St"/"Stick it up";
    alt: "Stick it up";
  }
  18.18282%,
  27.27273% {
    content: "​Sti";
    content: "​Sti"/"Stick it up";
    alt: "Stick it up";
  }
  27.27373%,
  36.36364% {
    content: "​Stic";
    content: "​Stic"/"Stick it up";
    alt: "Stick it up";
  }
  36.36464%,
  45.45455% {
    content: "​Stick";
    content: "​Stick"/"Stick it up";
    alt: "Stick it up";
  }
  45.45555%,
  54.54545% {
    content: "​Stick ";
    content: "​Stick "/"Stick it up";
    alt: "Stick it up";
  }
  54.54645%,
  63.63636% {
    content: "​Stick i";
    content: "​Stick i"/"Stick it up";
    alt: "Stick it up";
  }
  63.63736%,
  72.72727% {
    content: "​Stick it";
    content: "​Stick it"/"Stick it up";
    alt: "Stick it up";
  }
  72.72827%,
  81.81818% {
    content: "​Stick it ";
    content: "​Stick it "/"Stick it up";
    alt: "Stick it up";
  }
  81.81918%,
  90.90909% {
    content: "​Stick it u";
    content: "​Stick it u"/"Stick it up";
    alt: "Stick it up";
  }
  90.91009%,
  100% {
    content: "​Stick it up";
    content: "​Stick it up"/"Stick it up";
    alt: "Stick it up";
  }
}

.fullpage-slide-4.active .font-regular::after {
  content: "​";
  position: relative;
  display: inline-block;
  padding-right: 0.1ch;
  border-right: 10px solid currentColor;
  white-space: nowrap;
  animation: typed-1-caret 0.75s linear 1s infinite forwards;
}

@keyframes typed-1 {
  0%,
  2.00703% {
    content: "​S";
    content: "​S"/"Stick it up";
    alt: "Stick it up";
  }
  2.00803%,
  4.01506% {
    content: "​St";
    content: "​St"/"Stick it up";
    alt: "Stick it up";
  }
  4.01606%,
  6.0231% {
    content: "​Sti";
    content: "​Sti"/"Stick it up";
    alt: "Stick it up";
  }
  6.0241%,
  8.03113% {
    content: "​Stic";
    content: "​Stic"/"Stick it up";
    alt: "Stick it up";
  }
  8.03213%,
  10.03916% {
    content: "​Stick";
    content: "​Stick"/"Stick it up";
    alt: "Stick it up";
  }
  10.04016%,
  12.04719% {
    content: "​Stick ";
    content: "​Stick "/"Stick it up";
    alt: "Stick it up";
  }
  12.04819%,
  14.05522% {
    content: "​Stick i";
    content: "​Stick i"/"Stick it up";
    alt: "Stick it up";
  }
  14.05622%,
  16.06326% {
    content: "​Stick it";
    content: "​Stick it"/"Stick it up";
    alt: "Stick it up";
  }
  16.06426%,
  18.07129% {
    content: "​Stick it ";
    content: "​Stick it "/"Stick it up";
    alt: "Stick it up";
  }
  18.07229%,
  20.07932% {
    content: "​Stick it u";
    content: "​Stick it u"/"Stick it up";
    alt: "Stick it up";
  }
  20.08032%,
  63.85442% {
    content: "​Stick it up";
    content: "​Stick it up"/"Stick it up";
    alt: "Stick it up";
  }
  63.85542%,
  65.46085% {
    content: "​Stick it u";
    content: "​Stick it u"/"Stick it up";
    alt: "Stick it up";
  }
  65.46185%,
  67.06727% {
    content: "​Stick it ";
    content: "​Stick it "/"Stick it up";
    alt: "Stick it up";
  }
  67.06827%,
  68.6737% {
    content: "​Stick it";
    content: "​Stick it"/"Stick it up";
    alt: "Stick it up";
  }
  68.6747%,
  70.28012% {
    content: "​Stick i";
    content: "​Stick i"/"Stick it up";
    alt: "Stick it up";
  }
  70.28112%,
  71.88655% {
    content: "​Stick ";
    content: "​Stick "/"Stick it up";
    alt: "Stick it up";
  }
  71.88755%,
  73.49298% {
    content: "​Stick";
    content: "​Stick"/"Stick it up";
    alt: "Stick it up";
  }
  73.49398%,
  75.0994% {
    content: "​Stic";
    content: "​Stic"/"Stick it up";
    alt: "Stick it up";
  }
  75.1004%,
  76.70583% {
    content: "​Sti";
    content: "​Sti"/"Stick it up";
    alt: "Stick it up";
  }
  76.70683%,
  78.31225% {
    content: "​St";
    content: "​St"/"Stick it up";
    alt: "Stick it up";
  }
  78.31325%,
  79.91868% {
    content: "​S";
    content: "​S"/"Stick it up";
    alt: "Stick it up";
  }
  79.91968%,
  100% {
    content: "​";
    content: "​"/"Stick it up";
    alt: "Stick it up";
  }
}

@keyframes typed-1-caret {
  75% {
    border-color: transparent;
  }
}

.fullpage-slide-4.active svg {
  animation: smile .4s linear forwards;
  animation-delay: 2s;
}

.fullpage-slide-5 .contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fullpage-slide-5 .contact-details li {
  padding-block: 15px;
  font-size: 20px;
  font-family: var(--font-regular);
}

.fullpage-slide-5 .contact-details li:not(:first-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.fullpage-slide-5 .contact-details li:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.fullpage-slide-5 .contact-details a {
  color: #fff;
}

@media (min-width: 640px) {
  .fullpage-slide-5 .contact-details li {
    padding-block: 30px;
    font-size: 30px;
  }
}

.contact-details {
  list-style-type: none;
  padding: 0;
  color: #fff;
}

.contact-details .icon svg g path {
  fill: var(--interaction);
}

@media (max-width: 639px) {
  .shape {
    display: none !important;
  }
}

.shape {
  transition: all .2s ease-in-out;
  transition-delay: .1s;
  --shape-width: 180px;
  --shape-height: var(--shape-width);
  width: var(--shape-width);
  height: var(--shape-height);
  position: absolute;
  top: var(--shape-top, auto);
  bottom: var(--shape-bottom, 0);
  left: var(--shape-left, 0);
  right: var(--shape-right, auto);
  border-radius: var(--border-radius, 0);
  z-index: 11;
}

.shape.position-right {
  --shape-left: auto;
}

.shape-1 {
  --shape-width: 90px;
  --shape-height: 180px;
  --shape-left: -24px;
  --shape-bottom: 100px;
  transform: rotate(10deg);
}

.shape-2 {
  --shape-width: 102px;
  --shape-height: calc(var(--shape-width) / 2);
  --shape-left: -10px;
}

.shape-3 {
  --shape-left: 80px;
  --shape-bottom: 40px;
  transform: rotate(351deg);
}

.shape-4 {
  --shape-left: 200px;
  --shape-bottom: 0;
  transform: rotate(11deg);
  --shape-width: 111px;
}

.shape-5 {
  --shape-left: 330px;
  --shape-bottom: -23px;
  --shape-width: 90px;
  --shape-height: 180px;
  transform: rotate(-31deg);
}

.shape-6 {
  --shape-left: 460px;
  --shape-bottom: 35px;
  --shape-width: 104px;
  transform: rotate(27deg);
}

.shape-7 {
  --shape-bottom: 530px;
  --shape-right: -25px;
  transform: rotate(-24deg);
}

.shape-8 {
  --shapde-width: 110px;
  --shape-bottom: 350px;
  --shape-right: -40px;
  transform: rotate(132deg);
}

.shape-9 {
  --shape-bottom: 200px;
  --shape-right: -35px;
  transform: rotate(-21deg);
}

.shape-10 {
  --shape-right: -70px;
  --shape-bottom: 70px;
  transform: rotate(-30deg);
}

.square {
  --shape-width: 93px;
  --shape-height: var(--shape-width);
}

.rounded {
  --border-radius: 24px;
}

.circle-left {
  border-top-left-radius: var(--shape-width);
  border-bottom-left-radius: var(--shape-width);
}

.circle-bottom {
  border-top-left-radius: var(--shape-width);
  border-top-right-radius: var(--shape-width);
}

.bg-stripped {
  --strip-color: 25%;
  --strip-gap: 12.5%;
  background: linear-gradient(var(--bg-blue) 0%, var(--bg-blue) var(--strip-color), transparent var(--strip-color), transparent calc(var(--strip-color) + var(--strip-gap)), var(--bg-blue) calc(var(--strip-color) + var(--strip-gap)), var(--bg-blue) calc(var(--strip-color) + var(--strip-gap) + var(--strip-color)), transparent calc(var(--strip-color) + var(--strip-gap) + var(--strip-color)), transparent calc(var(--strip-color) + var(--strip-gap) + var(--strip-color) + var(--strip-gap)), var(--bg-blue) calc(var(--strip-color) + var(--strip-gap) + var(--strip-color) + var(--strip-gap)), var(--bg-blue) 100%);
}

.fullpage-slider:has(.fullpage-slide-2.active) + .shapes .shape-9,
.fullpage-slider:has(.fullpage-slide-2.active) + .shapes .shape-10 {
  --shape-left: -20px;
}

.fullpage-slider:has(.fullpage-slide-2.active) + .shapes .shape-1 {
  --shape-right: 0;
  --shape-left: auto;
  transform: rotate(0);
}

.fullpage-slider:has(.fullpage-slide-2.active) + .shapes .shape-2,
.fullpage-slider:has(.fullpage-slide-2.active) + .shapes .shape-3,
.fullpage-slider:has(.fullpage-slide-2.active) + .shapes .shape-4,
.fullpage-slider:has(.fullpage-slide-2.active) + .shapes .shape-5,
.fullpage-slider:has(.fullpage-slide-2.active) + .shapes .shape-6 {
  opacity: 0;
  visibility: hidden;
}

.fullpage-slider:has(.fullpage-slide-3.active) + .shapes .shape-10 {
  --shape-bottom: auto;
  --shape-top: 185px;
  --shape-right: -34px;
  transform: rotate(-23deg);
}

.fullpage-slider:has(.fullpage-slide-3.active) + .shapes .shape-7 {
  --shape-bottom: 160px;
  --shape-right: -60px;
  transform: rotate(-38deg);
}

.fullpage-slider:has(.fullpage-slide-3.active) + .shapes .shape-8 {
  --shape-top: 350px;
  --shape-bottom: auto;
}

.fullpage-slider:has(.fullpage-slide-3.active) + .shapes .shape-9 {
  --shape-bottom: 300px;
}

.fullpage-slider:has(.fullpage-slide-3.active) + .shapes .shape-3,
.fullpage-slider:has(.fullpage-slide-3.active) + .shapes .shape-4,
.fullpage-slider:has(.fullpage-slide-3.active) + .shapes .shape-5,
.fullpage-slider:has(.fullpage-slide-3.active) + .shapes .shape-6 {
  opacity: 0;
  visibility: hidden;
}

.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-1,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-1 {
  --shape-bottom: 0;
  --shape-left: -66px;
  transform: rotate(115deg);
  background: #5EC9E9;
}

.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-5,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-5 {
  --shape-left: -35px;
  --shape-bottom: 86px;
  transform: rotate(-65deg);
}

.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-6,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-6 {
  --shape-left: 160px;
  --shape-bottom: 0;
  transform: rotate(0);
}

.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-9,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-9 {
  --border-radius: 0;
  --shape-right: 140px;
  --shape-bottom: -1px;
  transform: rotate(14deg);
}

.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-7,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-7 {
  --shape-width: 114px;
  --border-radius: 24px;
  transform: rotate(0);
  --shape-bottom: 190px;
  --shape-right: -40px;
}

.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-8,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-8 {
  transform: rotate(75deg);
}

.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-10,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-10 {
  transform: rotate(0);
  --shape-right: -40px;
}

.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-2,
.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-3,
.fullpage-slider:has(.fullpage-slide-4.active) + .shapes .shape-4,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-2,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-3,
.fullpage-slider:has(.fullpage-slide-5.active) + .shapes .shape-4 {
  opacity: 0;
  visibility: hidden;
}

.packing {
  animation: levitate 3s linear infinite;
}

@media (max-width: 639px) {
  .packing {
    max-width: 184px;
    margin-inline: auto;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .packing {
    max-width: 346px;
    margin-inline: auto;
  }
}

.sticker {
  --sticker-size: 100px;
  --sticker-border: 7px;
  --sticker-transition: all 500ms ease-in-out;
  --sticker-clip: 0;
  --sticker-back-translate: 100%;
  width: var(--sticker-size);
  aspect-ratio: 1;
}

@media (min-width: 640px) {
  .sticker {
    --sticker-size: 212px;
    --sticker-clip: 0;
    --sticker-border: 16px;
  }
}

.active .sticker {
  --sticker-transition: all 500ms 1s ease-in-out;
  --sticker-clip: 16px;
  --sticker-back-translate: 68px;
}

@media (min-width: 640px) {
  .active .sticker {
    --sticker-clip: 30px;
    --sticker-back-translate: 150px;
  }
}

.sticker:hover {
  --sticker-transition: all 500ms 0s ease-in-out;
  --sticker-clip: 0;
  --sticker-back-translate: var(--sticker-size);
}

.sticker-inner {
  width: var(--sticker-size);
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  transform: rotate(-45deg);
  transition: var(--sticker-transition);
  clip-path: inset(0 0 var(--sticker-clip) 0);
}

.sticker-front, .sticker-back {
  width: var(--sticker-size);
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}

.sticker-front {
  box-shadow: inset 0 0 0 var(--sticker-border) rgba(255, 255, 255, 0.6);
  background: var(--sticker-background);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticker-front svg {
  position: absolute;
  width: calc(var(--sticker-size) / 2);
  height: auto;
}

.sticker-back {
  background: var(--sticker-peel-color);
  transform-origin: bottom;
  transform: translateY(var(--sticker-back-translate));
  transition: var(--sticker-transition);
}

.sticker::after {
  content: '';
  background: var(--sticker-label-image);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: var(--sticker-size);
  aspect-ratio: 503/173;
  top: var(--sticker-text-gap, -20px);
  left: 0;
}

@media (min-width: 640px) {
  .sticker::after {
    --sticker-text-gap: -40px;
  }
}

.sticker-scratch {
  --sticker-label-image: url('../images/text-scratchproof.png');
}

.sticker-water {
  --sticker-label-image: url('../images/text-waterproof.png');
}

.sticker-dust {
  --sticker-label-image: url('../images/text-dustproof.png');
}

.sticker-lost {
  --sticker-label-image: url('../images/text-lostproof.png');
}

.sticker-blue,
.sticker-yellow {
  left: 60px;
}

@media (min-width: 640px) {
  .sticker-blue,
  .sticker-yellow {
    left: 150px;
  }
}

.sticker-peach,
.sticker-blue {
  top: 150px;
}

.sticker-gray,
.sticker-yellow {
  bottom: 90px;
}

.sticker-peach,
.sticker-gray {
  right: 60px;
}

@media (min-width: 640px) {
  .sticker-peach,
  .sticker-gray {
    right: 150px;
  }
}

.school-asset {
  left: var(--asset-left, 50%);
  top: var(--asset-top, 50%);
  right: var(--asset-right, auto);
  bottom: var(--asset-bottom, auto);
}

.school-asset:nth-child(even) {
  animation: levitate 2s ease-out infinite;
}

.school-asset:nth-child(odd) {
  animation: levitate 2.4s ease-in alternate-reverse infinite;
}

.school-asset svg {
  max-width: var(--asset-svg-size, 44px);
  height: auto;
  width: 100%;
}

.school-asset-1 {
  --asset-top: 16vh;
  --asset-left: 10vw;
}

.school-asset-2 {
  --asset-top: 18vh;
  --asset-left: 30vw;
}

.school-asset-3 {
  --asset-top: 13vh;
  --asset-left: 49vw;
}

.school-asset-4 {
  --asset-top: 15.5vh;
  --asset-left: auto;
  --asset-right: 5vw;
}

.school-asset-5 {
  display: none;
}

.school-asset-6 {
  --asset-top: 30vh;
  --asset-right: 5.5vh;
  --asset-left: auto;
}

.school-asset-7 {
  --asset-left: auto;
  --asset-right: 10vw
    ;
}

.school-asset-8 {
  --asset-right: 13vw;
  --asset-left: auto;
  --asset-bottom: 33vw;
  --asset-top: auto;
}

.school-asset-9 {
  --asset-left: auto;
  --asset-right: 38vw;
  --asset-bottom: 22vh;
  --asset-top: auto;
}

.school-asset-10 {
  --asset-left: auto;
  --asset-top: auto;
  --asset-right: 50vw;
  --asset-bottom: 10vh;
}

.school-asset-11 {
  display: none;
}

.school-asset-12 {
  --asset-top: auto;
  --asset-left: 16vw;
  --asset-bottom: 13vh;
}

.school-asset-13 {
  --asset-top: 48vh;
  --asset-left: 3vh;
}

@media (min-width: 640px) {
  .school-asset {
    --asset-svg-size: 80px;
  }
  .school-asset-4 {
    --right: 430px;
    --asset-top: 137px;
  }
  .school-asset-11 {
    --asset-left: 35vw;
    --asset-top: auto;
    --asset-bottom: 25vh;
  }
}

@media (min-width: 1024px) {
  .school-asset-1 {
    --asset-left: 104px;
    --asset-top: 160px;
  }
  .school-asset-2 {
    --asset-left: 296px;
    --asset-top: 180px;
  }
  .school-asset-3 {
    --asset-left: 580px;
    --asset-top: 100px;
  }
  .school-asset-4 {
    --asset-right: 350px;
    --asset-top: 180px;
  }
  .school-asset-5 {
    --asset-right: 280px;
    --asset-top: 100px;
    transform: rotate(-70deg);
  }
  .school-asset-6 {
    --asset-right: 129px;
    --asset-top: 300px;
  }
  .school-asset-7 {
    --asset-right: 220px;
    --asset-top: 500px;
  }
  .school-asset-8 {
    --asset-right: 140px;
    --asset-bottom: 100px;
  }
  .school-asset-9 {
    --asset-right: 410px;
    --asset-bottom: 130px;
  }
  .school-asset-10 {
    --asset-left: 580px;
    --asset-bottom: 90px;
  }
  .school-asset-11 {
    --asset-left: 400px;
    --asset-bottom: 300px;
  }
  .school-asset-12 {
    --asset-left: 150px;
    --asset-bottom: 150px;
  }
  .school-asset-13 {
    --asset-left: 180px;
    --asset-bottom: 450px;
  }
}

.badges {
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin-top: 60px;
  max-width: 1000px;
  margin-inline: auto;
}

@media (max-width: 639px) {
  .badges .badge-item {
    max-width: 100px;
  }
}

.badges .badge-item svg {
  max-width: 100%;
  height: auto;
}

.loader-hide ~ main .gravity .shape:nth-child(even) {
  animation: drop 2s forwards var(--ease);
}

.loader-hide ~ main .gravity .shape:nth-child(odd) {
  animation: drop 3s forwards var(--ease);
}

.loader-hide ~ main .fullpage-slide-1 .hero-caption {
  translate: 0 0;
  opacity: 1;
}

:root {
  --bounce-easing: linear(0, 0.004, 0.016, 0.035, 0.063, 0.098, 0.141 13.6%, 0.25, 0.391, 0.563, 0.765,
            1, 0.891 40.9%, 0.848, 0.813, 0.785, 0.766, 0.754, 0.75, 0.754, 0.766, 0.785,
            0.813, 0.848, 0.891 68.2%, 1 72.7%, 0.973, 0.953, 0.941, 0.938, 0.941, 0.953,
            0.973, 1, 0.988, 0.984, 0.988, 1);
  --ease: ease-in-out;
}

@supports (animation-timing-function: linear(0, 1)) {
  :root {
    --ease: var(--bounce-easing);
  }
}

.fall .shape:nth-child(1) {
  animation: fall 2.5s linear infinite;
}

.fall .shape:nth-child(2) {
  animation: fall 2.3s linear infinite .2s;
}

.fall .shape:nth-child(3) {
  animation: fall2 2.3s linear infinite 1.1s;
}

.fall .shape:nth-child(4) {
  animation: fall 2.7s linear infinite .1s;
}

.fall .shape:nth-child(5) {
  animation: fall 2.6s linear infinite .7s;
}

.fall .shape:nth-child(6) {
  animation: fall 2.4s linear infinite .2s;
}

.fall .shape:nth-child(7) {
  animation: fall 2.3s linear infinite 1.1s;
}

.fall .shape:nth-child(8) {
  animation: fall 2.4s linear infinite .9s;
}

.fall .shape:nth-child(9) {
  animation: fall2 2.3s linear infinite 1.1s;
}

.fall .shape:nth-child(10) {
  animation: fall 2.2s linear infinite 1.1s;
}

:root {
  --transition: .5s cubic-bezier(.33, 0, .2, 1);
}

.work-listing {
  padding-bottom: var(--work-listing-padding-bottom, 100px);
}

@media (min-width: 640px) {
  .work-listing {
    --grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .work-listing {
    --grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .wide-container:has(.work-listing) {
    --gutter-2x: var(--gutter-4x);
  }
}

.work-listing-item figure {
  aspect-ratio: 540/400;
  overflow: hidden;
  margin: 0;
}

.work-listing-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-listing-item figure::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background var(--transition);
}

.work-listing-item figcaption {
  z-index: 10;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  opacity: 0;
  padding: var(--gutter);
}

.work-listing-item figcaption .title {
  font-size: var(--text-size-xxl);
}

.work-listing-item figcaption .location {
  font-size: var(--text-size-m);
}

.work-listing-item:hover figure::before, .work-listing-item:focus figure::before {
  transition: background var(--transition);
  background: rgba(0, 0, 0, 0.67);
  backdrop-filter: blur(0.47px);
  z-index: 1;
}

.work-listing-item:hover figcaption, .work-listing-item:focus figcaption {
  transition: all var(--transition);
  opacity: 1;
  transform: translateY(-100%);
  color: var(--_light);
}

.project-media {
  padding-block: 10px;
  display: flex;
  width: 100%;
  justify-content: center;
}

dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

dt {
  font-family: var(--font-bold);
  font-weight: normal;
  font-size: var(--text-size-xxl);
}

dd {
  font-size: var(--text-size-xl);
}

.project-meta {
  padding-block: 100px;
}

.project-featured .section-title {
  margin-bottom: 40px;
}

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