/*!****************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./node_modules/photoswipe/dist/photoswipe.css ***!
  \****************************************************************************************************************************************************************************************************************************************/
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10; /* always overlap slide content */
  pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-left: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}
/*!***************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./assets/styles/scss/bundle.scss ***!
  \***************************************************************************************************************************************************************************************************************************/
/**
 * This file should only be used to import the files that need to be bundled and used in the frontend
 */
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com
 */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
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;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-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.
*/
::-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 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.h-screen-smallest {
  height: 100vh;
}
.h-screen-largest {
  height: 100vh;
}
.h-screen-dynamic {
  height: 100vh;
}
.min-h-screen-smallest {
  min-height: 100vh;
}
.min-h-screen-largest {
  min-height: 100vh;
}
.min-h-screen-dynamic {
  min-height: 100vh;
}
.max-h-screen-smallest {
  max-height: 100vh;
}
.max-h-screen-largest {
  max-height: 100vh;
}
.max-h-screen-dynamic {
  max-height: 100vh;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.mb-20 {
  margin-bottom: 1.25rem;
}
.mb-4 {
  margin-bottom: 0.25rem;
}
.mb-40 {
  margin-bottom: 2.5rem;
}
.ml-10 {
  margin-left: 0.625rem;
}
.mt-24 {
  margin-top: 1.5rem;
}
.mt-3 {
  margin-top: 0.1875rem;
}
.mt-gutter-mobile {
  margin-top: 1.25rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.size-full {
  width: 100%;
  height: 100%;
}
.h-16 {
  height: 1rem;
}
.h-auto {
  height: auto;
}
.max-h-80 {
  max-height: 5rem;
}
.min-h-\[calc\(100vh_-_43rem\)\] {
  min-height: calc(100vh - 43rem);
}
.w-16 {
  width: 1rem;
}
.w-\[0\%\] {
  width: 0%;
}
.w-\[1\%\] {
  width: 1%;
}
.w-\[10\%\] {
  width: 10%;
}
.w-\[100\%\] {
  width: 100%;
}
.w-\[11\%\] {
  width: 11%;
}
.w-\[12\%\] {
  width: 12%;
}
.w-\[13\%\] {
  width: 13%;
}
.w-\[14\%\] {
  width: 14%;
}
.w-\[15\%\] {
  width: 15%;
}
.w-\[16\%\] {
  width: 16%;
}
.w-\[17\%\] {
  width: 17%;
}
.w-\[18\%\] {
  width: 18%;
}
.w-\[19\%\] {
  width: 19%;
}
.w-\[2\%\] {
  width: 2%;
}
.w-\[20\%\] {
  width: 20%;
}
.w-\[21\%\] {
  width: 21%;
}
.w-\[22\%\] {
  width: 22%;
}
.w-\[23\%\] {
  width: 23%;
}
.w-\[24\%\] {
  width: 24%;
}
.w-\[25\%\] {
  width: 25%;
}
.w-\[26\%\] {
  width: 26%;
}
.w-\[27\%\] {
  width: 27%;
}
.w-\[28\%\] {
  width: 28%;
}
.w-\[29\%\] {
  width: 29%;
}
.w-\[3\%\] {
  width: 3%;
}
.w-\[30\%\] {
  width: 30%;
}
.w-\[31\%\] {
  width: 31%;
}
.w-\[32\%\] {
  width: 32%;
}
.w-\[33\%\] {
  width: 33%;
}
.w-\[34\%\] {
  width: 34%;
}
.w-\[35\%\] {
  width: 35%;
}
.w-\[36\%\] {
  width: 36%;
}
.w-\[37\%\] {
  width: 37%;
}
.w-\[38\%\] {
  width: 38%;
}
.w-\[39\%\] {
  width: 39%;
}
.w-\[4\%\] {
  width: 4%;
}
.w-\[40\%\] {
  width: 40%;
}
.w-\[41\%\] {
  width: 41%;
}
.w-\[42\%\] {
  width: 42%;
}
.w-\[43\%\] {
  width: 43%;
}
.w-\[44\%\] {
  width: 44%;
}
.w-\[45\%\] {
  width: 45%;
}
.w-\[46\%\] {
  width: 46%;
}
.w-\[47\%\] {
  width: 47%;
}
.w-\[48\%\] {
  width: 48%;
}
.w-\[49\%\] {
  width: 49%;
}
.w-\[5\%\] {
  width: 5%;
}
.w-\[50\%\] {
  width: 50%;
}
.w-\[51\%\] {
  width: 51%;
}
.w-\[52\%\] {
  width: 52%;
}
.w-\[53\%\] {
  width: 53%;
}
.w-\[54\%\] {
  width: 54%;
}
.w-\[55\%\] {
  width: 55%;
}
.w-\[56\%\] {
  width: 56%;
}
.w-\[57\%\] {
  width: 57%;
}
.w-\[58\%\] {
  width: 58%;
}
.w-\[59\%\] {
  width: 59%;
}
.w-\[6\%\] {
  width: 6%;
}
.w-\[60\%\] {
  width: 60%;
}
.w-\[61\%\] {
  width: 61%;
}
.w-\[62\%\] {
  width: 62%;
}
.w-\[63\%\] {
  width: 63%;
}
.w-\[64\%\] {
  width: 64%;
}
.w-\[65\%\] {
  width: 65%;
}
.w-\[66\%\] {
  width: 66%;
}
.w-\[67\%\] {
  width: 67%;
}
.w-\[68\%\] {
  width: 68%;
}
.w-\[69\%\] {
  width: 69%;
}
.w-\[7\%\] {
  width: 7%;
}
.w-\[70\%\] {
  width: 70%;
}
.w-\[71\%\] {
  width: 71%;
}
.w-\[72\%\] {
  width: 72%;
}
.w-\[73\%\] {
  width: 73%;
}
.w-\[74\%\] {
  width: 74%;
}
.w-\[75\%\] {
  width: 75%;
}
.w-\[76\%\] {
  width: 76%;
}
.w-\[77\%\] {
  width: 77%;
}
.w-\[78\%\] {
  width: 78%;
}
.w-\[79\%\] {
  width: 79%;
}
.w-\[8\%\] {
  width: 8%;
}
.w-\[80\%\] {
  width: 80%;
}
.w-\[81\%\] {
  width: 81%;
}
.w-\[82\%\] {
  width: 82%;
}
.w-\[83\%\] {
  width: 83%;
}
.w-\[84\%\] {
  width: 84%;
}
.w-\[85\%\] {
  width: 85%;
}
.w-\[86\%\] {
  width: 86%;
}
.w-\[87\%\] {
  width: 87%;
}
.w-\[88\%\] {
  width: 88%;
}
.w-\[89\%\] {
  width: 89%;
}
.w-\[9\%\] {
  width: 9%;
}
.w-\[90\%\] {
  width: 90%;
}
.w-\[91\%\] {
  width: 91%;
}
.w-\[92\%\] {
  width: 92%;
}
.w-\[93\%\] {
  width: 93%;
}
.w-\[94\%\] {
  width: 94%;
}
.w-\[95\%\] {
  width: 95%;
}
.w-\[96\%\] {
  width: 96%;
}
.w-\[97\%\] {
  width: 97%;
}
.w-\[98\%\] {
  width: 98%;
}
.w-\[99\%\] {
  width: 99%;
}
.w-full {
  width: 100%;
}
.max-w-\[9rem\] {
  max-width: 9rem;
}
.max-w-full {
  max-width: 100%;
}
.max-w-medium {
  max-width: 77.5rem;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.table-auto {
  table-layout: auto;
}
.caption-top {
  caption-side: top;
}
.border-collapse {
  border-collapse: collapse;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize {
  resize: both;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.gap-12 {
  gap: 0.75rem;
}
.gap-16 {
  gap: 1rem;
}
.gap-20 {
  gap: 1.25rem;
}
.gap-8 {
  gap: 0.5rem;
}
.overflow-x-auto {
  overflow-x: auto;
}
.\!border {
  border-width: 1px !important;
}
.border {
  border-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(207, 207, 207, 1);
  border-color: rgba(207, 207, 207, var(--tw-border-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(17, 17, 17, 1);
  background-color: rgba(17, 17, 17, var(--tw-bg-opacity, 1));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(247, 247, 247, 1);
  background-color: rgba(247, 247, 247, var(--tw-bg-opacity, 1));
}
.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgba(189, 224, 61, 1);
  background-color: rgba(189, 224, 61, var(--tw-bg-opacity, 1));
}
.bg-primary-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(150, 177, 49, 1);
  background-color: rgba(150, 177, 49, var(--tw-bg-opacity, 1));
}
.bg-secondary {
  --tw-bg-opacity: 1;
  background-color: rgba(37, 37, 37, 1);
  background-color: rgba(37, 37, 37, var(--tw-bg-opacity, 1));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-primary {
  --tw-gradient-from: #BDE03D var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(189, 224, 61, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-primary-dark {
  --tw-gradient-to: #96b131 var(--tw-gradient-to-position);
}
.fill-black {
  fill: #111111;
}
.fill-black\/0 {
  fill: rgba(17, 17, 17, 0);
}
.fill-black\/10 {
  fill: rgba(17, 17, 17, 0.1);
}
.fill-black\/100 {
  fill: rgb(17, 17, 17);
}
.fill-black\/15 {
  fill: rgba(17, 17, 17, 0.15);
}
.fill-black\/20 {
  fill: rgba(17, 17, 17, 0.2);
}
.fill-black\/25 {
  fill: rgba(17, 17, 17, 0.25);
}
.fill-black\/30 {
  fill: rgba(17, 17, 17, 0.3);
}
.fill-black\/35 {
  fill: rgba(17, 17, 17, 0.35);
}
.fill-black\/40 {
  fill: rgba(17, 17, 17, 0.4);
}
.fill-black\/45 {
  fill: rgba(17, 17, 17, 0.45);
}
.fill-black\/5 {
  fill: rgba(17, 17, 17, 0.05);
}
.fill-black\/50 {
  fill: rgba(17, 17, 17, 0.5);
}
.fill-black\/55 {
  fill: rgba(17, 17, 17, 0.55);
}
.fill-black\/60 {
  fill: rgba(17, 17, 17, 0.6);
}
.fill-black\/65 {
  fill: rgba(17, 17, 17, 0.65);
}
.fill-black\/70 {
  fill: rgba(17, 17, 17, 0.7);
}
.fill-black\/75 {
  fill: rgba(17, 17, 17, 0.75);
}
.fill-black\/80 {
  fill: rgba(17, 17, 17, 0.8);
}
.fill-black\/85 {
  fill: rgba(17, 17, 17, 0.85);
}
.fill-black\/90 {
  fill: rgba(17, 17, 17, 0.9);
}
.fill-black\/95 {
  fill: rgba(17, 17, 17, 0.95);
}
.fill-current {
  fill: currentColor;
}
.fill-error {
  fill: #ff0000;
}
.fill-error\/0 {
  fill: rgba(255, 0, 0, 0);
}
.fill-error\/10 {
  fill: rgba(255, 0, 0, 0.1);
}
.fill-error\/100 {
  fill: rgb(255, 0, 0);
}
.fill-error\/15 {
  fill: rgba(255, 0, 0, 0.15);
}
.fill-error\/20 {
  fill: rgba(255, 0, 0, 0.2);
}
.fill-error\/25 {
  fill: rgba(255, 0, 0, 0.25);
}
.fill-error\/30 {
  fill: rgba(255, 0, 0, 0.3);
}
.fill-error\/35 {
  fill: rgba(255, 0, 0, 0.35);
}
.fill-error\/40 {
  fill: rgba(255, 0, 0, 0.4);
}
.fill-error\/45 {
  fill: rgba(255, 0, 0, 0.45);
}
.fill-error\/5 {
  fill: rgba(255, 0, 0, 0.05);
}
.fill-error\/50 {
  fill: rgba(255, 0, 0, 0.5);
}
.fill-error\/55 {
  fill: rgba(255, 0, 0, 0.55);
}
.fill-error\/60 {
  fill: rgba(255, 0, 0, 0.6);
}
.fill-error\/65 {
  fill: rgba(255, 0, 0, 0.65);
}
.fill-error\/70 {
  fill: rgba(255, 0, 0, 0.7);
}
.fill-error\/75 {
  fill: rgba(255, 0, 0, 0.75);
}
.fill-error\/80 {
  fill: rgba(255, 0, 0, 0.8);
}
.fill-error\/85 {
  fill: rgba(255, 0, 0, 0.85);
}
.fill-error\/90 {
  fill: rgba(255, 0, 0, 0.9);
}
.fill-error\/95 {
  fill: rgba(255, 0, 0, 0.95);
}
.fill-gray-100 {
  fill: #f7f7f7;
}
.fill-gray-100\/0 {
  fill: rgba(247, 247, 247, 0);
}
.fill-gray-100\/10 {
  fill: rgba(247, 247, 247, 0.1);
}
.fill-gray-100\/100 {
  fill: rgb(247, 247, 247);
}
.fill-gray-100\/15 {
  fill: rgba(247, 247, 247, 0.15);
}
.fill-gray-100\/20 {
  fill: rgba(247, 247, 247, 0.2);
}
.fill-gray-100\/25 {
  fill: rgba(247, 247, 247, 0.25);
}
.fill-gray-100\/30 {
  fill: rgba(247, 247, 247, 0.3);
}
.fill-gray-100\/35 {
  fill: rgba(247, 247, 247, 0.35);
}
.fill-gray-100\/40 {
  fill: rgba(247, 247, 247, 0.4);
}
.fill-gray-100\/45 {
  fill: rgba(247, 247, 247, 0.45);
}
.fill-gray-100\/5 {
  fill: rgba(247, 247, 247, 0.05);
}
.fill-gray-100\/50 {
  fill: rgba(247, 247, 247, 0.5);
}
.fill-gray-100\/55 {
  fill: rgba(247, 247, 247, 0.55);
}
.fill-gray-100\/60 {
  fill: rgba(247, 247, 247, 0.6);
}
.fill-gray-100\/65 {
  fill: rgba(247, 247, 247, 0.65);
}
.fill-gray-100\/70 {
  fill: rgba(247, 247, 247, 0.7);
}
.fill-gray-100\/75 {
  fill: rgba(247, 247, 247, 0.75);
}
.fill-gray-100\/80 {
  fill: rgba(247, 247, 247, 0.8);
}
.fill-gray-100\/85 {
  fill: rgba(247, 247, 247, 0.85);
}
.fill-gray-100\/90 {
  fill: rgba(247, 247, 247, 0.9);
}
.fill-gray-100\/95 {
  fill: rgba(247, 247, 247, 0.95);
}
.fill-gray-200 {
  fill: #e1e1e1;
}
.fill-gray-200\/0 {
  fill: rgba(225, 225, 225, 0);
}
.fill-gray-200\/10 {
  fill: rgba(225, 225, 225, 0.1);
}
.fill-gray-200\/100 {
  fill: rgb(225, 225, 225);
}
.fill-gray-200\/15 {
  fill: rgba(225, 225, 225, 0.15);
}
.fill-gray-200\/20 {
  fill: rgba(225, 225, 225, 0.2);
}
.fill-gray-200\/25 {
  fill: rgba(225, 225, 225, 0.25);
}
.fill-gray-200\/30 {
  fill: rgba(225, 225, 225, 0.3);
}
.fill-gray-200\/35 {
  fill: rgba(225, 225, 225, 0.35);
}
.fill-gray-200\/40 {
  fill: rgba(225, 225, 225, 0.4);
}
.fill-gray-200\/45 {
  fill: rgba(225, 225, 225, 0.45);
}
.fill-gray-200\/5 {
  fill: rgba(225, 225, 225, 0.05);
}
.fill-gray-200\/50 {
  fill: rgba(225, 225, 225, 0.5);
}
.fill-gray-200\/55 {
  fill: rgba(225, 225, 225, 0.55);
}
.fill-gray-200\/60 {
  fill: rgba(225, 225, 225, 0.6);
}
.fill-gray-200\/65 {
  fill: rgba(225, 225, 225, 0.65);
}
.fill-gray-200\/70 {
  fill: rgba(225, 225, 225, 0.7);
}
.fill-gray-200\/75 {
  fill: rgba(225, 225, 225, 0.75);
}
.fill-gray-200\/80 {
  fill: rgba(225, 225, 225, 0.8);
}
.fill-gray-200\/85 {
  fill: rgba(225, 225, 225, 0.85);
}
.fill-gray-200\/90 {
  fill: rgba(225, 225, 225, 0.9);
}
.fill-gray-200\/95 {
  fill: rgba(225, 225, 225, 0.95);
}
.fill-gray-300 {
  fill: #cfcfcf;
}
.fill-gray-300\/0 {
  fill: rgba(207, 207, 207, 0);
}
.fill-gray-300\/10 {
  fill: rgba(207, 207, 207, 0.1);
}
.fill-gray-300\/100 {
  fill: rgb(207, 207, 207);
}
.fill-gray-300\/15 {
  fill: rgba(207, 207, 207, 0.15);
}
.fill-gray-300\/20 {
  fill: rgba(207, 207, 207, 0.2);
}
.fill-gray-300\/25 {
  fill: rgba(207, 207, 207, 0.25);
}
.fill-gray-300\/30 {
  fill: rgba(207, 207, 207, 0.3);
}
.fill-gray-300\/35 {
  fill: rgba(207, 207, 207, 0.35);
}
.fill-gray-300\/40 {
  fill: rgba(207, 207, 207, 0.4);
}
.fill-gray-300\/45 {
  fill: rgba(207, 207, 207, 0.45);
}
.fill-gray-300\/5 {
  fill: rgba(207, 207, 207, 0.05);
}
.fill-gray-300\/50 {
  fill: rgba(207, 207, 207, 0.5);
}
.fill-gray-300\/55 {
  fill: rgba(207, 207, 207, 0.55);
}
.fill-gray-300\/60 {
  fill: rgba(207, 207, 207, 0.6);
}
.fill-gray-300\/65 {
  fill: rgba(207, 207, 207, 0.65);
}
.fill-gray-300\/70 {
  fill: rgba(207, 207, 207, 0.7);
}
.fill-gray-300\/75 {
  fill: rgba(207, 207, 207, 0.75);
}
.fill-gray-300\/80 {
  fill: rgba(207, 207, 207, 0.8);
}
.fill-gray-300\/85 {
  fill: rgba(207, 207, 207, 0.85);
}
.fill-gray-300\/90 {
  fill: rgba(207, 207, 207, 0.9);
}
.fill-gray-300\/95 {
  fill: rgba(207, 207, 207, 0.95);
}
.fill-info {
  fill: #0099ff;
}
.fill-info\/0 {
  fill: rgba(0, 153, 255, 0);
}
.fill-info\/10 {
  fill: rgba(0, 153, 255, 0.1);
}
.fill-info\/100 {
  fill: rgb(0, 153, 255);
}
.fill-info\/15 {
  fill: rgba(0, 153, 255, 0.15);
}
.fill-info\/20 {
  fill: rgba(0, 153, 255, 0.2);
}
.fill-info\/25 {
  fill: rgba(0, 153, 255, 0.25);
}
.fill-info\/30 {
  fill: rgba(0, 153, 255, 0.3);
}
.fill-info\/35 {
  fill: rgba(0, 153, 255, 0.35);
}
.fill-info\/40 {
  fill: rgba(0, 153, 255, 0.4);
}
.fill-info\/45 {
  fill: rgba(0, 153, 255, 0.45);
}
.fill-info\/5 {
  fill: rgba(0, 153, 255, 0.05);
}
.fill-info\/50 {
  fill: rgba(0, 153, 255, 0.5);
}
.fill-info\/55 {
  fill: rgba(0, 153, 255, 0.55);
}
.fill-info\/60 {
  fill: rgba(0, 153, 255, 0.6);
}
.fill-info\/65 {
  fill: rgba(0, 153, 255, 0.65);
}
.fill-info\/70 {
  fill: rgba(0, 153, 255, 0.7);
}
.fill-info\/75 {
  fill: rgba(0, 153, 255, 0.75);
}
.fill-info\/80 {
  fill: rgba(0, 153, 255, 0.8);
}
.fill-info\/85 {
  fill: rgba(0, 153, 255, 0.85);
}
.fill-info\/90 {
  fill: rgba(0, 153, 255, 0.9);
}
.fill-info\/95 {
  fill: rgba(0, 153, 255, 0.95);
}
.fill-none {
  fill: none;
}
.fill-primary {
  fill: #BDE03D;
}
.fill-primary-dark {
  fill: #96b131;
}
.fill-primary-dark\/0 {
  fill: rgba(150, 177, 49, 0);
}
.fill-primary-dark\/10 {
  fill: rgba(150, 177, 49, 0.1);
}
.fill-primary-dark\/100 {
  fill: rgb(150, 177, 49);
}
.fill-primary-dark\/15 {
  fill: rgba(150, 177, 49, 0.15);
}
.fill-primary-dark\/20 {
  fill: rgba(150, 177, 49, 0.2);
}
.fill-primary-dark\/25 {
  fill: rgba(150, 177, 49, 0.25);
}
.fill-primary-dark\/30 {
  fill: rgba(150, 177, 49, 0.3);
}
.fill-primary-dark\/35 {
  fill: rgba(150, 177, 49, 0.35);
}
.fill-primary-dark\/40 {
  fill: rgba(150, 177, 49, 0.4);
}
.fill-primary-dark\/45 {
  fill: rgba(150, 177, 49, 0.45);
}
.fill-primary-dark\/5 {
  fill: rgba(150, 177, 49, 0.05);
}
.fill-primary-dark\/50 {
  fill: rgba(150, 177, 49, 0.5);
}
.fill-primary-dark\/55 {
  fill: rgba(150, 177, 49, 0.55);
}
.fill-primary-dark\/60 {
  fill: rgba(150, 177, 49, 0.6);
}
.fill-primary-dark\/65 {
  fill: rgba(150, 177, 49, 0.65);
}
.fill-primary-dark\/70 {
  fill: rgba(150, 177, 49, 0.7);
}
.fill-primary-dark\/75 {
  fill: rgba(150, 177, 49, 0.75);
}
.fill-primary-dark\/80 {
  fill: rgba(150, 177, 49, 0.8);
}
.fill-primary-dark\/85 {
  fill: rgba(150, 177, 49, 0.85);
}
.fill-primary-dark\/90 {
  fill: rgba(150, 177, 49, 0.9);
}
.fill-primary-dark\/95 {
  fill: rgba(150, 177, 49, 0.95);
}
.fill-primary-light {
  fill: #e95cff;
}
.fill-primary-light\/0 {
  fill: rgba(233, 92, 255, 0);
}
.fill-primary-light\/10 {
  fill: rgba(233, 92, 255, 0.1);
}
.fill-primary-light\/100 {
  fill: rgb(233, 92, 255);
}
.fill-primary-light\/15 {
  fill: rgba(233, 92, 255, 0.15);
}
.fill-primary-light\/20 {
  fill: rgba(233, 92, 255, 0.2);
}
.fill-primary-light\/25 {
  fill: rgba(233, 92, 255, 0.25);
}
.fill-primary-light\/30 {
  fill: rgba(233, 92, 255, 0.3);
}
.fill-primary-light\/35 {
  fill: rgba(233, 92, 255, 0.35);
}
.fill-primary-light\/40 {
  fill: rgba(233, 92, 255, 0.4);
}
.fill-primary-light\/45 {
  fill: rgba(233, 92, 255, 0.45);
}
.fill-primary-light\/5 {
  fill: rgba(233, 92, 255, 0.05);
}
.fill-primary-light\/50 {
  fill: rgba(233, 92, 255, 0.5);
}
.fill-primary-light\/55 {
  fill: rgba(233, 92, 255, 0.55);
}
.fill-primary-light\/60 {
  fill: rgba(233, 92, 255, 0.6);
}
.fill-primary-light\/65 {
  fill: rgba(233, 92, 255, 0.65);
}
.fill-primary-light\/70 {
  fill: rgba(233, 92, 255, 0.7);
}
.fill-primary-light\/75 {
  fill: rgba(233, 92, 255, 0.75);
}
.fill-primary-light\/80 {
  fill: rgba(233, 92, 255, 0.8);
}
.fill-primary-light\/85 {
  fill: rgba(233, 92, 255, 0.85);
}
.fill-primary-light\/90 {
  fill: rgba(233, 92, 255, 0.9);
}
.fill-primary-light\/95 {
  fill: rgba(233, 92, 255, 0.95);
}
.fill-primary-xlight {
  fill: #f29cff;
}
.fill-primary-xlight\/0 {
  fill: rgba(242, 156, 255, 0);
}
.fill-primary-xlight\/10 {
  fill: rgba(242, 156, 255, 0.1);
}
.fill-primary-xlight\/100 {
  fill: rgb(242, 156, 255);
}
.fill-primary-xlight\/15 {
  fill: rgba(242, 156, 255, 0.15);
}
.fill-primary-xlight\/20 {
  fill: rgba(242, 156, 255, 0.2);
}
.fill-primary-xlight\/25 {
  fill: rgba(242, 156, 255, 0.25);
}
.fill-primary-xlight\/30 {
  fill: rgba(242, 156, 255, 0.3);
}
.fill-primary-xlight\/35 {
  fill: rgba(242, 156, 255, 0.35);
}
.fill-primary-xlight\/40 {
  fill: rgba(242, 156, 255, 0.4);
}
.fill-primary-xlight\/45 {
  fill: rgba(242, 156, 255, 0.45);
}
.fill-primary-xlight\/5 {
  fill: rgba(242, 156, 255, 0.05);
}
.fill-primary-xlight\/50 {
  fill: rgba(242, 156, 255, 0.5);
}
.fill-primary-xlight\/55 {
  fill: rgba(242, 156, 255, 0.55);
}
.fill-primary-xlight\/60 {
  fill: rgba(242, 156, 255, 0.6);
}
.fill-primary-xlight\/65 {
  fill: rgba(242, 156, 255, 0.65);
}
.fill-primary-xlight\/70 {
  fill: rgba(242, 156, 255, 0.7);
}
.fill-primary-xlight\/75 {
  fill: rgba(242, 156, 255, 0.75);
}
.fill-primary-xlight\/80 {
  fill: rgba(242, 156, 255, 0.8);
}
.fill-primary-xlight\/85 {
  fill: rgba(242, 156, 255, 0.85);
}
.fill-primary-xlight\/90 {
  fill: rgba(242, 156, 255, 0.9);
}
.fill-primary-xlight\/95 {
  fill: rgba(242, 156, 255, 0.95);
}
.fill-primary\/0 {
  fill: rgba(189, 224, 61, 0);
}
.fill-primary\/10 {
  fill: rgba(189, 224, 61, 0.1);
}
.fill-primary\/100 {
  fill: rgb(189, 224, 61);
}
.fill-primary\/15 {
  fill: rgba(189, 224, 61, 0.15);
}
.fill-primary\/20 {
  fill: rgba(189, 224, 61, 0.2);
}
.fill-primary\/25 {
  fill: rgba(189, 224, 61, 0.25);
}
.fill-primary\/30 {
  fill: rgba(189, 224, 61, 0.3);
}
.fill-primary\/35 {
  fill: rgba(189, 224, 61, 0.35);
}
.fill-primary\/40 {
  fill: rgba(189, 224, 61, 0.4);
}
.fill-primary\/45 {
  fill: rgba(189, 224, 61, 0.45);
}
.fill-primary\/5 {
  fill: rgba(189, 224, 61, 0.05);
}
.fill-primary\/50 {
  fill: rgba(189, 224, 61, 0.5);
}
.fill-primary\/55 {
  fill: rgba(189, 224, 61, 0.55);
}
.fill-primary\/60 {
  fill: rgba(189, 224, 61, 0.6);
}
.fill-primary\/65 {
  fill: rgba(189, 224, 61, 0.65);
}
.fill-primary\/70 {
  fill: rgba(189, 224, 61, 0.7);
}
.fill-primary\/75 {
  fill: rgba(189, 224, 61, 0.75);
}
.fill-primary\/80 {
  fill: rgba(189, 224, 61, 0.8);
}
.fill-primary\/85 {
  fill: rgba(189, 224, 61, 0.85);
}
.fill-primary\/90 {
  fill: rgba(189, 224, 61, 0.9);
}
.fill-primary\/95 {
  fill: rgba(189, 224, 61, 0.95);
}
.fill-secondary {
  fill: #252525;
}
.fill-secondary\/0 {
  fill: rgba(37, 37, 37, 0);
}
.fill-secondary\/10 {
  fill: rgba(37, 37, 37, 0.1);
}
.fill-secondary\/100 {
  fill: rgb(37, 37, 37);
}
.fill-secondary\/15 {
  fill: rgba(37, 37, 37, 0.15);
}
.fill-secondary\/20 {
  fill: rgba(37, 37, 37, 0.2);
}
.fill-secondary\/25 {
  fill: rgba(37, 37, 37, 0.25);
}
.fill-secondary\/30 {
  fill: rgba(37, 37, 37, 0.3);
}
.fill-secondary\/35 {
  fill: rgba(37, 37, 37, 0.35);
}
.fill-secondary\/40 {
  fill: rgba(37, 37, 37, 0.4);
}
.fill-secondary\/45 {
  fill: rgba(37, 37, 37, 0.45);
}
.fill-secondary\/5 {
  fill: rgba(37, 37, 37, 0.05);
}
.fill-secondary\/50 {
  fill: rgba(37, 37, 37, 0.5);
}
.fill-secondary\/55 {
  fill: rgba(37, 37, 37, 0.55);
}
.fill-secondary\/60 {
  fill: rgba(37, 37, 37, 0.6);
}
.fill-secondary\/65 {
  fill: rgba(37, 37, 37, 0.65);
}
.fill-secondary\/70 {
  fill: rgba(37, 37, 37, 0.7);
}
.fill-secondary\/75 {
  fill: rgba(37, 37, 37, 0.75);
}
.fill-secondary\/80 {
  fill: rgba(37, 37, 37, 0.8);
}
.fill-secondary\/85 {
  fill: rgba(37, 37, 37, 0.85);
}
.fill-secondary\/90 {
  fill: rgba(37, 37, 37, 0.9);
}
.fill-secondary\/95 {
  fill: rgba(37, 37, 37, 0.95);
}
.fill-success {
  fill: #00cc66;
}
.fill-success\/0 {
  fill: rgba(0, 204, 102, 0);
}
.fill-success\/10 {
  fill: rgba(0, 204, 102, 0.1);
}
.fill-success\/100 {
  fill: rgb(0, 204, 102);
}
.fill-success\/15 {
  fill: rgba(0, 204, 102, 0.15);
}
.fill-success\/20 {
  fill: rgba(0, 204, 102, 0.2);
}
.fill-success\/25 {
  fill: rgba(0, 204, 102, 0.25);
}
.fill-success\/30 {
  fill: rgba(0, 204, 102, 0.3);
}
.fill-success\/35 {
  fill: rgba(0, 204, 102, 0.35);
}
.fill-success\/40 {
  fill: rgba(0, 204, 102, 0.4);
}
.fill-success\/45 {
  fill: rgba(0, 204, 102, 0.45);
}
.fill-success\/5 {
  fill: rgba(0, 204, 102, 0.05);
}
.fill-success\/50 {
  fill: rgba(0, 204, 102, 0.5);
}
.fill-success\/55 {
  fill: rgba(0, 204, 102, 0.55);
}
.fill-success\/60 {
  fill: rgba(0, 204, 102, 0.6);
}
.fill-success\/65 {
  fill: rgba(0, 204, 102, 0.65);
}
.fill-success\/70 {
  fill: rgba(0, 204, 102, 0.7);
}
.fill-success\/75 {
  fill: rgba(0, 204, 102, 0.75);
}
.fill-success\/80 {
  fill: rgba(0, 204, 102, 0.8);
}
.fill-success\/85 {
  fill: rgba(0, 204, 102, 0.85);
}
.fill-success\/90 {
  fill: rgba(0, 204, 102, 0.9);
}
.fill-success\/95 {
  fill: rgba(0, 204, 102, 0.95);
}
.fill-techniconcept-color {
  fill: #76bd4c;
}
.fill-techniconcept-color\/0 {
  fill: rgba(118, 189, 76, 0);
}
.fill-techniconcept-color\/10 {
  fill: rgba(118, 189, 76, 0.1);
}
.fill-techniconcept-color\/100 {
  fill: rgb(118, 189, 76);
}
.fill-techniconcept-color\/15 {
  fill: rgba(118, 189, 76, 0.15);
}
.fill-techniconcept-color\/20 {
  fill: rgba(118, 189, 76, 0.2);
}
.fill-techniconcept-color\/25 {
  fill: rgba(118, 189, 76, 0.25);
}
.fill-techniconcept-color\/30 {
  fill: rgba(118, 189, 76, 0.3);
}
.fill-techniconcept-color\/35 {
  fill: rgba(118, 189, 76, 0.35);
}
.fill-techniconcept-color\/40 {
  fill: rgba(118, 189, 76, 0.4);
}
.fill-techniconcept-color\/45 {
  fill: rgba(118, 189, 76, 0.45);
}
.fill-techniconcept-color\/5 {
  fill: rgba(118, 189, 76, 0.05);
}
.fill-techniconcept-color\/50 {
  fill: rgba(118, 189, 76, 0.5);
}
.fill-techniconcept-color\/55 {
  fill: rgba(118, 189, 76, 0.55);
}
.fill-techniconcept-color\/60 {
  fill: rgba(118, 189, 76, 0.6);
}
.fill-techniconcept-color\/65 {
  fill: rgba(118, 189, 76, 0.65);
}
.fill-techniconcept-color\/70 {
  fill: rgba(118, 189, 76, 0.7);
}
.fill-techniconcept-color\/75 {
  fill: rgba(118, 189, 76, 0.75);
}
.fill-techniconcept-color\/80 {
  fill: rgba(118, 189, 76, 0.8);
}
.fill-techniconcept-color\/85 {
  fill: rgba(118, 189, 76, 0.85);
}
.fill-techniconcept-color\/90 {
  fill: rgba(118, 189, 76, 0.9);
}
.fill-techniconcept-color\/95 {
  fill: rgba(118, 189, 76, 0.95);
}
.fill-transparent {
  fill: transparent;
}
.fill-transparent\/0 {
  fill: rgba(0, 0, 0, 0);
}
.fill-transparent\/10 {
  fill: rgba(0, 0, 0, 0.1);
}
.fill-transparent\/100 {
  fill: rgb(0, 0, 0);
}
.fill-transparent\/15 {
  fill: rgba(0, 0, 0, 0.15);
}
.fill-transparent\/20 {
  fill: rgba(0, 0, 0, 0.2);
}
.fill-transparent\/25 {
  fill: rgba(0, 0, 0, 0.25);
}
.fill-transparent\/30 {
  fill: rgba(0, 0, 0, 0.3);
}
.fill-transparent\/35 {
  fill: rgba(0, 0, 0, 0.35);
}
.fill-transparent\/40 {
  fill: rgba(0, 0, 0, 0.4);
}
.fill-transparent\/45 {
  fill: rgba(0, 0, 0, 0.45);
}
.fill-transparent\/5 {
  fill: rgba(0, 0, 0, 0.05);
}
.fill-transparent\/50 {
  fill: rgba(0, 0, 0, 0.5);
}
.fill-transparent\/55 {
  fill: rgba(0, 0, 0, 0.55);
}
.fill-transparent\/60 {
  fill: rgba(0, 0, 0, 0.6);
}
.fill-transparent\/65 {
  fill: rgba(0, 0, 0, 0.65);
}
.fill-transparent\/70 {
  fill: rgba(0, 0, 0, 0.7);
}
.fill-transparent\/75 {
  fill: rgba(0, 0, 0, 0.75);
}
.fill-transparent\/80 {
  fill: rgba(0, 0, 0, 0.8);
}
.fill-transparent\/85 {
  fill: rgba(0, 0, 0, 0.85);
}
.fill-transparent\/90 {
  fill: rgba(0, 0, 0, 0.9);
}
.fill-transparent\/95 {
  fill: rgba(0, 0, 0, 0.95);
}
.fill-warning {
  fill: #ffcc00;
}
.fill-warning\/0 {
  fill: rgba(255, 204, 0, 0);
}
.fill-warning\/10 {
  fill: rgba(255, 204, 0, 0.1);
}
.fill-warning\/100 {
  fill: rgb(255, 204, 0);
}
.fill-warning\/15 {
  fill: rgba(255, 204, 0, 0.15);
}
.fill-warning\/20 {
  fill: rgba(255, 204, 0, 0.2);
}
.fill-warning\/25 {
  fill: rgba(255, 204, 0, 0.25);
}
.fill-warning\/30 {
  fill: rgba(255, 204, 0, 0.3);
}
.fill-warning\/35 {
  fill: rgba(255, 204, 0, 0.35);
}
.fill-warning\/40 {
  fill: rgba(255, 204, 0, 0.4);
}
.fill-warning\/45 {
  fill: rgba(255, 204, 0, 0.45);
}
.fill-warning\/5 {
  fill: rgba(255, 204, 0, 0.05);
}
.fill-warning\/50 {
  fill: rgba(255, 204, 0, 0.5);
}
.fill-warning\/55 {
  fill: rgba(255, 204, 0, 0.55);
}
.fill-warning\/60 {
  fill: rgba(255, 204, 0, 0.6);
}
.fill-warning\/65 {
  fill: rgba(255, 204, 0, 0.65);
}
.fill-warning\/70 {
  fill: rgba(255, 204, 0, 0.7);
}
.fill-warning\/75 {
  fill: rgba(255, 204, 0, 0.75);
}
.fill-warning\/80 {
  fill: rgba(255, 204, 0, 0.8);
}
.fill-warning\/85 {
  fill: rgba(255, 204, 0, 0.85);
}
.fill-warning\/90 {
  fill: rgba(255, 204, 0, 0.9);
}
.fill-warning\/95 {
  fill: rgba(255, 204, 0, 0.95);
}
.fill-white {
  fill: #ffffff;
}
.fill-white\/0 {
  fill: rgba(255, 255, 255, 0);
}
.fill-white\/10 {
  fill: rgba(255, 255, 255, 0.1);
}
.fill-white\/100 {
  fill: rgb(255, 255, 255);
}
.fill-white\/15 {
  fill: rgba(255, 255, 255, 0.15);
}
.fill-white\/20 {
  fill: rgba(255, 255, 255, 0.2);
}
.fill-white\/25 {
  fill: rgba(255, 255, 255, 0.25);
}
.fill-white\/30 {
  fill: rgba(255, 255, 255, 0.3);
}
.fill-white\/35 {
  fill: rgba(255, 255, 255, 0.35);
}
.fill-white\/40 {
  fill: rgba(255, 255, 255, 0.4);
}
.fill-white\/45 {
  fill: rgba(255, 255, 255, 0.45);
}
.fill-white\/5 {
  fill: rgba(255, 255, 255, 0.05);
}
.fill-white\/50 {
  fill: rgba(255, 255, 255, 0.5);
}
.fill-white\/55 {
  fill: rgba(255, 255, 255, 0.55);
}
.fill-white\/60 {
  fill: rgba(255, 255, 255, 0.6);
}
.fill-white\/65 {
  fill: rgba(255, 255, 255, 0.65);
}
.fill-white\/70 {
  fill: rgba(255, 255, 255, 0.7);
}
.fill-white\/75 {
  fill: rgba(255, 255, 255, 0.75);
}
.fill-white\/80 {
  fill: rgba(255, 255, 255, 0.8);
}
.fill-white\/85 {
  fill: rgba(255, 255, 255, 0.85);
}
.fill-white\/90 {
  fill: rgba(255, 255, 255, 0.9);
}
.fill-white\/95 {
  fill: rgba(255, 255, 255, 0.95);
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center {
  -o-object-position: center;
     object-position: center;
}
.p-8 {
  padding: 0.5rem;
}
.\!py-100 {
  padding-top: 6.25rem !important;
  padding-bottom: 6.25rem !important;
}
.px-16 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-4 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-40 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.py-12 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-2 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-20 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-30 {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
.\!pb-0 {
  padding-bottom: 0rem !important;
}
.pb-100 {
  padding-bottom: 6.25rem;
}
.pb-12 {
  padding-bottom: 0.75rem;
}
.pb-40 {
  padding-bottom: 2.5rem;
}
.pt-24 {
  padding-top: 1.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.font-title {
  font-family: 'SuisseIntl', 'Helvetica', sans-serif;
}
.text-12 {
  font-size: 0.75rem;
}
.text-200 {
  font-size: 12.5rem;
}
.text-24 {
  font-size: 1.5rem;
}
.text-30 {
  font-size: 1.875rem;
}
.text-50 {
  font-size: 3.125rem;
}
.text-60 {
  font-size: 3.75rem;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgba(17, 17, 17, 1);
  color: rgba(17, 17, 17, var(--tw-text-opacity, 1));
}
.text-primary-dark {
  --tw-text-opacity: 1;
  color: rgba(150, 177, 49, 1);
  color: rgba(150, 177, 49, var(--tw-text-opacity, 1));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.\!opacity-100 {
  opacity: 1 !important;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-default {
  transition-duration: 300ms;
}
@font-face {
  font-family: "SuisseIntl";
  src: url(../7328f724fa58bdc7a3a7.woff2) format("woff2"), url(../817642b2a06e9f9ff51e.woff) format("woff"), url(../47902d17f845ecb8ae18.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SuisseIntl";
  src: url(../9c7dfd0036f7bd24b053.woff2) format("woff2"), url(../2211c49456cd07331ea9.woff) format("woff"), url(../7f4d2ed2d8a9341748b2.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
*,
*:before,
*:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* values for the styles, weights and sizes are handled by tailwind */
:root {
  font-size: 10px;
}
@media screen and (min-width: 1920px) {
  :root {
    font-size: 10px;
  }
}

body {
  font-family: 'SuisseIntl', 'Helvetica', sans-serif;
  font-weight: 400;
}

h1, .style-h1 {
  font-family: 'SuisseIntl', 'Helvetica', sans-serif;
  font-weight: 400;
}

h2, .style-h2 {
  font-family: 'SuisseIntl', 'Helvetica', sans-serif;
  font-weight: 400;
}

h3, .style-h3 {
  font-family: 'SuisseIntl', 'Helvetica', sans-serif;
  font-weight: 400;
}

h4, .style-h4 {
  font-family: 'SuisseIntl', 'Helvetica', sans-serif;
  font-weight: 400;
}

html {
  box-sizing: border-box;
}

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

/* put footer always at the bottom */
html > body {
  position: relative;
  min-height: 100vh;
}
html > body > footer {
  position: sticky;
  top: 100%;
}

#cmplz-manage-consent .cmplz-btn.cmplz-manage-consent.cmplz-show {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.otgs-development-site-front-end {
  display: none;
}

#footer-infos .wysiwyg a {
  -webkit-text-decoration: none;
  text-decoration: none;
}
#footer-infos .wysiwyg a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.page-seances .slogan .field-slogan {
  line-height: 1.2;
}
.page-seances .main-body .body .wysiwyg img {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
}
.page-seances .main-body .body .wysiwyg a {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.page-seances .main-body .body .wysiwyg a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

body.cmplz-document #cmplz-document,
.legal-page-template .content-page,
body.cmplz-functional #cmplz-document {
  width: 100%;
  max-width: none;
  margin-bottom: 100px;
  /* padding-top: calc(2rem + theme('spacing.header-height-mobile'));

  @media screen and (min-width: theme('screens.sm')) {
      padding-top: calc(3rem + theme('spacing.header-height-desktop'));
  } */
}
body.cmplz-document #cmplz-document > *:not(section),
.legal-page-template .content-page > *:not(section),
body.cmplz-functional #cmplz-document > *:not(section) {
  width: calc(100% - 2 * 1.25rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 77.5rem;
}
@media screen and (min-width: 640px) {
  body.cmplz-document #cmplz-document > *:not(section),
  .legal-page-template .content-page > *:not(section),
  body.cmplz-functional #cmplz-document > *:not(section) {
    width: calc(100% - 2 * 6.25rem);
  }
}
body.cmplz-document #cmplz-document,
.legal-page-template .content-page,
body.cmplz-functional #cmplz-document {
  /* >h1, h2 {
      margin-top: theme('spacing.30');
      margin-bottom: theme('spacing.4');
      font-size: theme('fontSize.20');
  } */
}
body.cmplz-document #cmplz-document .screen-reader-text,
.legal-page-template .content-page .screen-reader-text,
body.cmplz-functional #cmplz-document .screen-reader-text {
  display: none;
}

#cmplz-document p, #cmplz-document li, #cmplz-document td, .editor-styles-wrapper .cmplz-unlinked-mode p, .editor-styles-wrapper .cmplz-unlinked-mode li, .editor-styles-wrapper .cmplz-unlinked-mode td {
  font-size: 16px;
  line-height: 1.5;
}

#cmplz-document p {
  margin-bottom: 10px;
}

#cmplz-document li {
  margin-left: 16px;
}

body.cmplz-functional #cmplz-document > h1, body.cmplz-functional #cmplz-document h2 {
  margin-top: 1.875rem;
  margin-bottom: 6px;
  font-size: 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.header:not(.hidden) {
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 5rem;
  /* @media only screen and (min-width: 48rem) {
     padding: 0 2rem;
     height: 5.5rem;
  } */
}

.brand {
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-black);
}

/* .menu {
   position: fixed;
   top: 0;
   right: -100%;
   width: 100%;
   height: 100vh;
   overflow-y: auto;
   padding-top: 25dvh;
   background-color: theme('colors.white');
   box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
   transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s;

   &.is-active {
      right: 0;
      opacity: 1;
      visibility: visible;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
   }

   &-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      row-gap: 1.5rem;
      list-style: none;
      padding: 0;
      margin: 0;

      > li {
         width: 100%;
         text-align: center;
         position: relative;

         &.has-submenu {
            display: flex;
            flex-direction: row;
            align-items: center;

            > a {
               display: inline-block;
            }
         }
      }
   }

   &-link {
      font-family: inherit;
      font-size: 1.125rem;
      font-weight: 500;
      line-height: 1.5;
      text-transform: uppercase;
      color: theme('colors.black');
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      padding: 0.5rem 1rem;

      &:hover {
         color: theme('colors.primary');
      }
   }

   &-block {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 1rem;
   }

   // Submenu styles for mobile - slide from right
   .submenu,
   .sub-submenu {
      list-style: none;
      padding: 0;
      margin: 0;

      // Mobile styles (will be overridden on desktop)
      @media only screen and (max-width: calc(theme('screens.lg') - 1px)) {
         position: fixed;
         top: 0;
         right: -100%;
         width: 100%;
         height: 100vh;
         background: theme('colors.white');
         overflow-y: auto;
         padding-top: 1rem;
         transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         z-index: 101;

         &.is-active {
            right: 0;
         }
      }

      li {
         width: 100%;
         text-align: left;
         position: relative;

         &.has-submenu {
            display: flex;
            flex-direction: row;
            align-items: center;
         }
      }

      .menu-link {
         font-size: 1rem;
         padding: 0.75rem 1rem;
         color: #374151;
         display: block;
      }
   }

   .sub-submenu {
      .menu-link {
         font-size: 0.95rem;
         color: #4b5563;
      }
   }

   // Back button for mobile submenus
   .submenu-back {
      display: none; // Hidden by default

      @media only screen and (max-width: calc(theme('screens.lg') - 1px)) {
         display: flex;
         align-items: center;
         justify-content: flex-start;
         gap: 0.5rem;
         width: 100%;
         padding: 1rem 1.5rem;
         background: theme('colors.white');
         border: none;
         border-bottom: 1px solid #e5e7eb;
         font-size: 1rem;
         font-weight: 500;
         color: theme('colors.black');
         cursor: pointer;
         transition: background 0.2s ease;
         margin-bottom: 0.5rem;
      }

      &:hover {
         background: #f9fafb;
      }

      svg {
         width: 12px;
         height: 12px;
      }
   }

   .submenu-toggle {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      margin-left: 0.5rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: theme('colors.black');
      position: relative;

      svg {
         width: 12px;
         height: 8px;
         transition: transform 0.3s ease;
         transform: rotate(-90deg);
         @media only screen and (min-width: theme('screens.lg')) {
            transform: rotate(0);
         }
      }
   }

   // Responsive Media breakpoint - Desktop
   @media only screen and (min-width: theme('screens.lg')) {
      position: relative;
      top: initial;
      right: initial;
      width: auto;
      height: auto;
      padding: unset;
      margin-left: auto;
      background: unset;
      box-shadow: unset;
      transition: unset;
      overflow: visible;

      &-inner {
         display: flex;
         flex-direction: row;
         align-items: center;
         column-gap: 0;
         margin-inline: auto;

         > li {
            width: auto;

            &.has-submenu {
               flex-direction: row;

               &:hover > .submenu {
                  opacity: 1;
                  visibility: visible;
                  transform: translateY(0);
                  pointer-events: all;
               }
            }
         }
      }

      &-link {
         font-size: 1rem;
         text-transform: capitalize;
         padding: 0.75rem 1rem;
      }

      // Desktop submenu dropdown (all levels)
      .submenu,
      .sub-submenu {
         position: absolute;
         width: auto;
         height: auto;
         min-width: 220px;
         max-width: 300px;
         background: theme('colors.white');
         box-shadow: 0 4px 12px rgba(0,0,0,0.1);
         border-radius: 0.5rem;
         padding: 0.5rem 0;
         opacity: 0;
         visibility: hidden;
         transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
         pointer-events: none;
         z-index: 1000;

         &.is-active {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
         }

         li {
            width: 100%;
            text-align: left;

            &.has-submenu {
               position: relative;

               &:hover > .sub-submenu {
                  opacity: 1;
                  visibility: visible;
                  transform: translateX(0);
                  pointer-events: all;
               }

               > .submenu-toggle {
                  svg {
                     transform: rotate(-90deg);
                  }
               }
            }
         }

         .menu-link {
            display: block;
            padding: 0.625rem 1.25rem;
            font-size: 0.95rem;
            text-align: left;
            white-space: nowrap;

            &:hover {
               background: #f9fafb;
            }
         }
      }

      // First level submenu (dropdown from main menu)
      > .menu-inner > li.has-submenu > .submenu {
         top: 100%;
         left: 0;
         transform: translateY(-10px);

         &.is-active {
            transform: translateY(0);
         }
      }

      // Second level submenu (nested dropdown)
      .submenu li.has-submenu > .sub-submenu {
         top: 0;
         left: 100%;
         transform: translateX(-10px);
         min-width: 200px;
         max-width: 280px;
         z-index: 1001;

         &.is-active {
            transform: translateX(0);
         }

         .menu-link {
            font-size: 0.9rem;
            padding: 0.5rem 1.25rem;
         }
      }

      .submenu-toggle {
         padding: 0.25rem;
         margin-left: 0.25rem;

         &:hover {
            background: #f3f4f6;
            border-radius: 0.25rem;
         }
      }
   }
} */
.burger {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1rem;
  z-index: 99;
  visibility: visible;
}
@media only screen and (min-width: 1024px) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  right: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  line-height: 1.25;
  background-color: #111111;
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0.25rem;
}
.burger-line:nth-child(2) {
  top: 0.75rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.wysiwyg > * + * {
  margin-top: 1em;
}
.wysiwyg ul {
  padding-left: 1rem;
  list-style-type: disc;
}
.wysiwyg a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.wysiwyg p {
  /* color: theme('colors.black'); */
}
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  color: #111111;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.wysiwyg ul, .wysiwyg ol {
  color: #111111;
  margin-bottom: 1.5rem;
}
.wysiwyg ol {
  list-style-type: decimal;
  padding-left: 1rem;
}
.wysiwyg h2 {
  font-size: 1.875rem;
}
.wysiwyg h3 {
  font-size: 1.5rem;
}
.wysiwyg h4 {
  font-size: 1.25rem;
}
.wysiwyg h5 {
  font-size: 1.125rem;
}
.wysiwyg h6 {
  font-size: 1rem;
}
.wysiwyg img {
  border-radius: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.columns {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.columns--1 {
  grid-template-columns: 1fr;
}

.columns--2 {
  grid-template-columns: 1fr 1fr;
}

.columns--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.columns--4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 768px) {
  .columns--2, .columns--3, .columns--4 {
    grid-template-columns: 1fr;
  }
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 1.875rem;
  height: 1.875rem;
  transition: all 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next {
  right: 20px;
  margin-right: 0 !important;
}

.swiper-button-prev {
  left: 20px;
  margin-left: 0 !important;
}

.swiper-pagination {
  bottom: 30px;
}
.swiper-pagination .swiper-pagination-bullet {
  background: --color-white;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
  border-radius: 0;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: --color-primary;
}

.hero-block {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222 no-repeat center/cover;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 3rem 1.5rem;
}
.hero-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-block .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero-block .hero-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.hero-block .hero-description {
  color: #f9fafb;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
@media (max-width: 900px) {
  .hero-block {
    min-height: 300px;
    padding: 2rem 1rem;
  }
  .hero-block .hero-title {
    font-size: 2rem;
  }
  .hero-block .hero-description {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .hero-block {
    min-height: 180px;
    padding: 1.2rem 0.5rem;
  }
  .hero-block .hero-title {
    font-size: 1.3rem;
  }
  .hero-block .hero-description {
    font-size: 0.95rem;
  }
}

.faq-block {
  margin: 2rem auto;
  padding: 2rem 1rem;
  background: #f9fafb;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
  overflow: hidden;
}

.faq-item.active {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  padding: 1rem 0.5rem;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question:hover {
  color: #0077ff;
}

.faq-answer {
  padding: 0rem 0.5rem 0rem 0.5rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  background: #f6f8fa;
  border-radius: 0 0 1rem 1rem;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0rem 0.5rem 1rem 0.5rem;
}

@media (hover: hover) and (pointer: fine) {
  .hover\:bg-secondary:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(37, 37, 37, 1);
    background-color: rgba(37, 37, 37, var(--tw-bg-opacity, 1));
  }
  .hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
  }
  .hover\:underline:hover {
    text-decoration-line: underline;
  }
  .hover\:opacity-70:hover {
    opacity: 0.7;
  }
  .group:hover .group-hover\:text-techniconcept-color {
    --tw-text-opacity: 1;
    color: rgba(118, 189, 76, 1);
    color: rgba(118, 189, 76, var(--tw-text-opacity, 1));
  }
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:gap-30 {
    gap: 1.875rem;
  }
}

@media (min-width: 768px) {
  .md\:mt-0 {
    margin-top: 0rem;
  }
}

@media (min-width: 1024px) {
  .lg\:\!py-160 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .lg\:pb-60 {
    padding-bottom: 3.75rem;
  }
  .lg\:text-80 {
    font-size: 5rem;
  }
}
