@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Jomolhari&family=Montserrat:wght@400;900&display=swap");
/* ==========================================================================
   cover / tools
   ========================================================================== */
/* ==========================================================================
   cover / typo
   ========================================================================== */
/* ==========================================================================
   COLORS / SETTINGS
   ========================================================================== */
:root {
  --color-white: #fff;
  --color-black: #212121;
  --color-gray: #999;
  --color-darkgray: #333;
  --color-primary: #6aa84f;
  --color-primary-huer: #9fcc2e;
}

/* ==========================================================================
   FONTS / SETTINGS
   ========================================================================== */
:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Fira Code", monospace;
  --font-size-content: 1.19rem;
  --font-size-h1: clamp(2rem, 1.25vw + 1.63rem, 2.75rem);
  --font-size-h2: clamp(1.5rem, 0.83vw + 1.25rem, 2rem);
  --font-size-card-title: clamp(1.13rem, 0.83vw + 0.88rem, 1.63rem);
  --font-size-h3: 1rem;
}

/* ==========================================================================
   DIMENSIONS / SETTINGS
   ========================================================================== */
:root {
  --spacing-xs: 1rem;
  --spacing-sm: 2rem;
  --spacing-smd: 3rem;
  --spacing-md: 4rem;
  --spacing-lg: 6rem;
  --grid-gap: 30px;
}

/* ==========================================================================
   easing / settings
   ========================================================================== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  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
   ========================================================================== */
/**
 * 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
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

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

/**
 * 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 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
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

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

/**
 * 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;
}

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

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

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

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 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 */
}

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
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 in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/* ==========================================================================
   RESET / GENERIC
   ========================================================================== */
html {
  box-sizing: border-box;
}

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

img,
video {
  max-width: 100%;
}

/* ==========================================================================
   BODY / ELEMENT
   Le body permet d'initialiser les propriétés générales de la page.
   Les éléments de la page vont hérités des propriétés inscrite dans body
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--theme-bg);
  color: var(--theme-fg);
  font-family: var(--font-secondary);
  font-size: var(--font-size-content);
  line-height: 1.6;
}

/* ==========================================================================
   TYPOGRAPHY / ELEMENT
   ========================================================================== */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-primary);
  line-height: 1;
  font-weight: bold;
}

h1,
.h1 {
  font-size: var(--font-size-h1);
  margin-top: 0;
  color: var(--color-primary);
}

h2,
.h2 {
  font-size: var(--font-size-h2);
  font-family: var(--font-secondary);
  color: var(--color-primary);
}

h3,
.h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 5px;
}

h4,
.h4 {
  font-size: var(--font-size-h3);
}

h5,
.h5 {
  font-size: var(--font-size-h5);
}

h6,
.h6 {
  font-size: var(--font-size-h6);
}

.surtitle {
  font-size: 16px;
  font-weight: bold;
}

/* ==========================================================================
   LINKS / ELEMENTS
   Style de base de tous les liens et bouton du site
   ========================================================================== */
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
a.disabled {
  color: #e2e2e2;
}

/* ==========================================================================
   WRAPPER / ELEMENT
   ========================================================================== */
.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  width: calc(100% - var(--spacing-md));
}

/* ==========================================================================
   section / components
   ========================================================================== */
.section {
  padding: var(--spacing-lg) 0;
}

:root {
  --theme-bg: var(--color-black);
  --theme-primary: var(--color-primary);
  --theme-fg: var(--color-white);
}

/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

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

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    &:before {
      content: "";
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Flip slide shadows end */
.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/* ==========================================================================
   split / component
   ========================================================================== */
.panel {
  --radius: 5px;
  align-items: flex-start;
  margin: 10px 0 10px 10px;
}
@media (min-width: 1440px) {
  .panel {
    display: grid;
    gap: 0;
    grid-template-columns: auto minmax(0, 1fr);
    margin: 20px 0 20px 20px;
  }
}
.panel .swiper {
  overflow: visible;
}
.panel .swiper-wrapper {
  box-sizing: border-box;
}
.panel .swiper-slide {
  background: var(--color-black);
}

.panel__nav {
  --size: 4px;
  display: flex;
  margin-bottom: calc(var(--size) * -1);
  position: relative;
  z-index: 2;
}
.panel__nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.panel__nav button {
  cursor: pointer;
  color: var(--color-white);
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 5px 5px 0 0;
  line-height: 1.6;
  display: inline-flex;
}
.panel__nav button:hover {
  text-decoration: none;
}
.panel__nav button.active {
  position: relative;
}
.panel__nav button.active::before {
  opacity: 0.5;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-black);
  z-index: -1;
}
@media (min-width: 1440px) {
  .panel__nav {
    display: block;
    justify-self: end;
    position: sticky;
    top: 100px;
    margin-bottom: 0;
    margin-right: calc(var(--size) * -1);
  }
  .panel__nav ul {
    display: block;
  }
  .panel__nav button {
    border-radius: 5px 0 0 5px;
    padding: 10px 20px;
  }
}
.panel__bar {
  background: var(--color-black);
  border-bottom: 4px solid var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  z-index: -1;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  height: var(--tractor-height);
  width: var(--tractor-width);
  transform: translateX(var(--tractor-x));
}
@media (min-width: 1440px) {
  .panel__bar {
    border-bottom: none;
    border-right: 4px solid var(--color-primary);
    transform: translateY(var(--tractor-y));
  }
}

.panel__content {
  background: var(--color-black);
  border-radius: var(--radius) 0 0 var(--radius);
  padding: var(--spacing-sm);
  width: 100%;
  position: relative;
  overflow: clip;
}
@media (min-width: 1024px) {
  .panel__content {
    padding: var(--spacing-smd);
  }
}

.split__list {
  list-style: none;
  padding-left: var(--spacing-sm);
}
.split__list li + li {
  margin-top: var(--spacing-xs);
}

.panel__section em {
  font-style: normal;
  position: relative;
  display: inline-block;
  background: var(--color-primary);
  padding: 0 4px;
}
.panel__section h1 small {
  display: block;
  font-weight: 400;
  font-size: 1.5rem;
  opacity: 0.5;
}

.callout em {
  background: var(--color-primary-huer);
}

.panel__section {
  position: relative;
}
.panel__section + .panel__section {
  margin-top: var(--spacing-lg);
}
.panel__section h2 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0 var(--spacing-xs);
  margin-top: 0;
  margin-left: calc(var(--spacing-xs) * -1);
  position: relative;
}
.panel__section h2::before {
  background-color: rgba(255, 255, 255, 0.4);
  split: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 2px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s ease-in-out;
}
.panel__section h3 {
  margin-top: var(--spacing-md);
}
.panel__section:hover h2::before {
  transform: scaleX(1);
}
.panel__section summary {
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin: var(--spacing-xs) var(--spacing-xs) 0;
}
.panel__section summary:hover {
  color: var(--color-primary);
}
.panel__section :not(.callout) p,
.panel__section pre[class*=language-],
.panel__section details {
  margin-bottom: 2rem;
}
.panel__section details + p,
.panel__section ul + p {
  margin-top: 3rem;
}
.panel__section h3 + p {
  margin-top: 0;
}

.split__sub {
  --size: 4px;
  margin: var(--spacing-sm) 0 var(--spacing-md) calc(var(--spacing-sm) * 2.7);
  position: relative;
}
.split__sub li + li {
  margin-top: var(--spacing-xs);
}
.split__sub::before {
  background: white;
  border-radius: 5px;
  opacity: 0.1;
  content: "";
  position: absolute;
  inset: -20px;
}

.split__options {
  position: absolute;
  right: var(--spacing-xs);
  top: var(--spacing-xs);
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.split__steps {
  opacity: 0;
  position: absolute;
  left: var(--spacing-sm);
  top: calc(100% + 20px);
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
[data-steps=true] .split__steps {
  transform: translateX(0);
  opacity: 1;
}

.split__steps-title {
  text-transform: uppercase;
  font-size: clamp(1.13rem, 0.42vw + 1rem, 1.38rem);
}

.split__steps-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

[data-steps=true] .js-section:not(.is-collapsed) {
  display: none;
}

.checklist input:checked,
.checklist input:checked + .input__label {
  opacity: 0.2;
}

.checklist__count {
  color: var(--color-gray);
  font-weight: 700;
  font-size: 0.8rem;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  line-height: 1;
  right: 10px;
  bottom: 10px;
}

.checklist__card h2 small {
  display: block;
  font-weight: 400;
  font-size: 1.5rem;
  opacity: 0.5;
}

/* ==========================================================================
   brand / component
   ========================================================================== */
.brand {
  --liquid: var(--color-primary);
  display: inline-flex;
  position: relative;
  overflow: clip;
}
.brand:hover {
  --liquid: #ee2e31;
}
.home .brand {
  margin-top: -10%;
  max-width: 500px;
  width: 100%;
}
.home .brand svg {
  height: auto;
  width: 100%;
}
.brand .liquid {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  height: calc(100% - 1px);
}
.brand .liquid::before, .brand .liquid::after {
  transition: background 3s cubic-bezier(0.19, 1, 0.22, 1);
  content: "";
  background: var(--liquid);
  border-radius: 50%;
  width: 33%;
  aspect-ratio: 1;
  position: absolute;
  z-index: -1;
  animation: wave-turn 3s forwards infinite linear;
}
.brand .liquid::before {
  right: 15%;
  bottom: -9%;
  transform-origin: 55% 47%;
  animation-delay: 0.3s;
}
.brand .liquid::after {
  right: 0;
  bottom: -11%;
  transform-origin: 45% 53%;
}
.brand .bubble1,
.brand .bubble2 {
  animation: bubbles 2s both infinite linear;
}
.brand .bubble1 {
  --left: 3%;
  transform-origin: 67% 35%;
}
.brand .bubble2 {
  --left: 0;
  animation-delay: 1.2s;
  transform-origin: 78% 35%;
}

.bg {
  fill: var(--theme-bg);
}

@keyframes wave-turn {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes bubbles {
  0% {
    opacity: 0;
    translate: var(--left) 5%;
    scale: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    scale: 1;
    translate: var(--left) 2.5%;
  }
  99% {
    opacity: 0;
    translate: var(--left) -15%;
    scale: 1;
  }
  100% {
    scale: 0;
    opacity: 0;
    translate: var(--left) 5%;
  }
}
/* ==========================================================================
   BUTTONS / COMPONENTS
   ========================================================================== */
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.btn {
  background: var(--color-primary);
  border-radius: 0.3em;
  color: white;
  display: inline-block;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  transition: all 0.2s ease-out;
  text-decoration: none !important;
  text-transform: uppercase;
}
.btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-icon {
  --size: 44px;
  --bg: var(--color-primary);
  --fg: var(--color-white);
  font-size: 30px;
  cursor: pointer;
  color: var(--fg);
  border: none;
  height: var(--size);
  width: var(--size);
  position: relative;
  background-color: var(--bg);
  border-radius: 5px;
}
.btn-icon:hover {
  --fg: var(--color-primary);
  --bg: var(--color-white);
}
.btn-icon.is-disabled {
  opacity: 0.1;
}

.btn-steps-toggle .unfold {
  display: none;
}
[data-steps=true] .btn-steps-toggle {
  --fg: var(--color-primary);
  --bg: var(--color-white);
}
[data-steps=true] .btn-steps-toggle .fold {
  display: none;
}
[data-steps=true] .btn-steps-toggle .unfold {
  display: flex;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-sm);
}
.cards + .cards {
  margin-top: var(--spacing-md);
}

.card {
  --padding: var(--spacing-sm);
  background: var(--color-white);
  border-radius: 5px;
  padding: var(--padding);
  text-decoration: none !important;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}
.card .card__title {
  font-size: var(--font-size-card-title);
  text-decoration: inherit;
  color: inherit;
}
.card span {
  color: var(--color-black);
  position: relative;
}
.card span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  background: var(--color-primary);
  width: 30px;
  transition: 0.4s all cubic-bezier(0.19, 1, 0.22, 1), 0.4s background cubic-bezier(0.19, 1, 0.22, 1);
}
.card:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05) rotate(1deg);
}
.card:hover .checklist__count {
  color: var(--color-white);
}
.card:hover span::after {
  background: var(--color-white);
  width: 100%;
}

.callout {
  position: relative;
  color: var(--color-black);
  z-index: 1;
  padding: 20px 20px 20px 40px;
  margin-top: 3rem;
}
.callout > * {
  margin: 0;
}
.callout ul {
  margin-top: var(--spacing-sm);
}
.callout + .callout {
  margin-top: -10px;
  padding-top: 20px;
}
.callout + .callout::before {
  content: none;
}
.callout::before {
  content: "";
  position: absolute;
  background-image: url("/assets/images/warning.svg");
  background-size: 100% auto;
  width: 60px;
  aspect-ratio: 1/1;
  left: -30px;
  top: 10px;
}
.callout::after {
  --padding: 10px;
  content: "";
  background: var(--color-white);
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

/* ==========================================================================
   icons / component
   ========================================================================== */
.icon {
  fill: currentColor;
  display: inline-block;
  flex: 0 0 auto;
  height: 1em;
  vertical-align: middle;
  width: 1em;
  stroke: transparent;
}

.icon--stroke {
  fill: transparent;
  stroke: currentColor;
}

.icon--xs {
  height: 0.75em;
  width: 0.75em;
}

.icon--sm {
  height: 0.8em;
  width: 0.8em;
}

.icon--md {
  height: 1.25em;
  width: 1.25em;
}

.icon--lg {
  height: 1.75em;
  width: 1.75em;
}

.icon--xl {
  height: 7em;
  width: 7em;
}

/* ==========================================================================
   footer / component
   ========================================================================== */
.panel__footer {
  grid-column: 2/-1;
  padding-inline: var(--spacing-smd);
}

/* ==========================================================================
   scrolly / component
   ========================================================================== */
.has-js [data-scrolly=fromBottom] {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.4s ease-out;
}
.has-js [data-scrolly=fromBottom].is-active {
  opacity: 1;
  transform: translateY(0);
}
.has-js [data-scrolly=fromLeft] {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.4s ease-out;
}
.has-js [data-scrolly=fromLeft].is-active {
  opacity: 1;
  transform: translateX(0);
}
.has-js [data-scrolly=fromRight] {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.4s ease-out;
}
.has-js [data-scrolly=fromRight].is-active {
  opacity: 1;
  transform: translateX(0);
}
.has-js [data-scrolly=flipFromBottom] {
  opacity: 0;
  transform: rotateX(90deg) translate3d(0, 60px, 0);
  transition: all 0.4s ease-out;
}
.has-js [data-scrolly=flipFromBottom].is-active {
  opacity: 1;
  transform: rotateX(0) translate3d(0, 0, 0);
}

/* ==========================================================================
    ACCESSIBILITY / UTILITIES
   ========================================================================== */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

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

/* ==========================================================================
   spacing / utilities
   ========================================================================== */
.u-mt-4 {
  margin-top: 4rem !important;
}

.u-mb-4 {
  margin-bottom: 4rem !important;
}

.u-mbn-4 {
  margin-bottom: -4rem !important;
}

.u-full-center {
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
/*# sourceMappingURL=main.css.map */
