/*!
Theme Name: i-es
Theme URI: https://underscoretw.com/
Author: 65 inches
Author URI: https://underscoretw.com/
Description: A custom theme based on _tw
Version: 0.1.0
Tested up to: 6.2
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: i-es
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

i-es is based on _tw https://underscoretw.com/, (C) 2021-2023 Greg Sullivan
_tw is distributed under the terms of the GNU GPL v2 or later.

_tw is based on Underscores https://underscores.me/ and Varia https://github.com/Automattic/themes/tree/master/varia, (C) 2012-2023 Automattic, Inc.
Underscores and Varia are distributed under the terms of the GNU GPL v2 or later.
*/

/**
 * The line above injects the WordPress file header. It needs to be first,
 * before this comment.
 */

/**
 * This injects custom `@font-face` rules.
 */

/**
 * Custom `@font-face` rules
 *
 * These will be added immediately before Tailwind’s `base` layer.
 */

@font-face {
  font-family: "Linear Sans";

  src:
		local("Linear Sans Regular"),
		url("fonts/Linear Sans/linearsans-regular.woff2") format("woff2"),
		url("fonts/Linear Sans/linearsans-regular.woff") format("woff");

  font-weight: 400;
}

@font-face {
  font-family: "Linear Sans";

  src:
		local("Linear Sans Bold"),
		url("fonts/Linear Sans/linearsans-bold.woff2") format("woff2"),
		url("fonts/Linear Sans/linearsans-bold.woff") format("woff");

  font-weight: 700;
}

@font-face {
  font-family: "Linear Sans";

  src:
		local("Linear Sans Semibold"),
		url("fonts/Linear Sans/linearsans-semibold.woff2") format("woff2"),
		url("fonts/Linear Sans/linearsans-semibold.woff") format("woff");

  font-weight: 600;
}

@font-face {
  font-family: "Ies Ico";

  src:
		url("fonts/Ies Ico/ies-ico.woff2") format("woff2"),
		url("fonts/Ies Ico/ies-ico.woff") format("woff");

  font-weight: 400;
}

/**
 * This injects Tailwind's base styles and any base styles registered by
 * plugins, then adds custom base styles.
 */

/*! tailwindcss v3.4.1 | 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: #e5e7eb;
  /* 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: Linear Sans, sans-serif;
  /* 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]) {
  -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 */
  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,
[type='button'],
[type='reset'],
[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] {
  display: none;
}

:root {
  --menu-panel-height: 272px;
  --container-size: 100%;
  --wrapper-size: 100%;
}

@media (min-width: 480px) {
  :root {
    --container-size: 480px;
    --wrapper-size: 480px;
  }
}

@media (min-width: 768px) {
  :root {
    --container-size: 644px;
    --wrapper-size: 644px;
  }
}

@media (min-width: 992px) {
  :root {
    --container-size: 960px;
    --wrapper-size: 960px;
  }
}

@media (min-width: 1280px) {
  :root {
    --container-size: 1200px;
    --wrapper-size: 1100px;
  }
}

@media (min-width: 1600px) {
  :root {
    --container-size: 1290px;
  }
}

*, ::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: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --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:  ;
}

::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: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --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:  ;
}

/**
 * Custom styles to immediately follow Tailwind’s `base` layer
 *
 * “Add things like base typography styles [or] opinionated global resets.”
 *
 * — from https://tailwindcss.com/docs/plugins#adding-base-styles
 */

/**
 * This uses the background and foreground colors declared in the
 * `theme.json` file and is applied both to the frontend and in the block
 * editor.
*/

html {
  scroll-behavior: smooth;
}

:root :where(a:where(:not(.wp-element-button))) {
  text-decoration: none;
}

/**
 * This injects Tailwind's component classes and any component classes
 * registered by plugins, then adds custom component classes.
 *
 * The `@import-glob` line imports all CSS files from the `components`
 * directory (except for `components.css`, which is imported on the following
 * line). This is meant to simplify the process of integrating styles from
 * JavaScript components or WordPress plugins.
 */

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 480px) {
  .container {
    max-width: 480px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 976px) {
  .container {
    max-width: 976px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}

@media (min-width: 2500px) {
  .container {
    max-width: 2500px;
  }
}

.pretitle {
  margin-bottom: 10px;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 20px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(175 198 196 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .pretitle {
    margin-bottom: 15px;
  }
}

@media (min-width: 1280px) {
  .pretitle {
    margin-bottom: 20px;
  }
}

.title-1 {
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -1.2px;
}

@media (min-width: 768px) {
  .title-1 {
    font-size: 60px;
  }
}

@media (min-width: 1280px) {
  .title-1 {
    margin-bottom: 60px;
    font-size: 75px;
  }
}

.title-2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.8px;
}

@media (min-width: 768px) {
  .title-2 {
    font-size: 50px;
    letter-spacing: -1px;
  }
}

@media (min-width: 1280px) {
  .title-2 {
    font-size: 60px;
  }
}

.title-3 {
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.7px;
}

@media (min-width: 768px) {
  .title-3 {
    font-size: 48px;
    letter-spacing: -0.8px;
  }
}

@media (min-width: 1280px) {
  .title-3 {
    font-size: 50px;
    letter-spacing: -1px;
  }
}

.title-4 {
  margin-bottom: 30px;
  text-wrap: balance;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.6px;
}

@media (min-width: 768px) {
  .title-4 {
    font-size: 35px;
    letter-spacing: -0.7px;
  }
}

@media (min-width: 1280px) {
  .title-4 {
    margin-bottom: 2.5rem;
    font-size: 40px;
    letter-spacing: -0.8px;
  }
}

.title-5 {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.5px;
}

@media (min-width: 1280px) {
  .title-5 {
    font-size: 30px;
    letter-spacing: -0.6px;
  }
}

.title-6 {
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: -0.5px;
}

@media (min-width: 1280px) {
  .title-6 {
    margin-bottom: 2.5rem;
  }
}

.large {
  font-size: 22px;
  line-height: 1.75rem;
  letter-spacing: -0.44px;
}

@media (min-width: 1280px) {
  .large {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -0.52px;
  }
}

.footer-headline {
  position: relative;
}

@media (min-width: 1280px) {
  .footer-headline::after {
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 75%;
    border-bottom-width: 1px;
    content: var(--tw-content);
    --tw-border-opacity: 1;
    border-color: rgb(211 233 231 / var(--tw-border-opacity));
  }
}

.event-date {
  width: 105px;
  height: 70px;
  padding-left: 20px;
  padding-top: 22px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 105 70'%3E%3Cpath fill='%23F40F3D' d='M105 11.06 0 0l10.32 70L105 56.58V11.06Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.event-date--two {
  width: 115px;
  height: 80px;
  background-size: 115px 80px;
  padding-left: 20px;
  padding-top: 17px;
}

.program-label {
  width: 135px;
  height: 70px;
  padding: 16px 10px 21px 20px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 135 70'%3E%3Cpath fill='%23F40F3D' d='m135 9.481-135-9 10.27 69.52L128 56.581l7-47.1Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.header-nav {
  max-width: calc(100% - 20px);
}

@media (min-width: 480px) {
  .header-nav {
    max-width: calc(var(--container-size) + 40px);
  }
}

.testimonial {
  position: relative;
}

.testimonial::before,
	.testimonial::after {
  aspect-ratio: 740/80;
  content: "";
  display: block;
  width: 100%;
  background-repeat: no-repeat;
}

.testimonial::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 740 80'%3E%3Cpath fill='%23D3E9E7' d='M700 64.135c0-15.939-12.464-29.095-28.379-29.956L55.811.856C47.22.39 40 7.23 40 15.834V80h660V64.135Z'/%3E%3Cpath fill='%23004C47' d='M0 68.607c0-8.014 6.3-14.613 14.306-14.984l710-32.896C732.853 20.331 740 27.154 740 35.711V80H0V68.607Z'/%3E%3C/svg%3E");
}

.testimonial::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 740 80'%3E%3Cpath fill='%23D3E9E7' d='M700 15.865c0 15.939-12.464 29.095-28.379 29.956L55.811 79.144C47.22 79.61 40 72.77 40 64.166V0h660v15.865Z'/%3E%3Cpath fill='%23004C47' d='M0 11.393c0 8.014 6.3 14.613 14.306 14.984l710 32.896c8.547.396 15.694-6.427 15.694-14.984V-.001L0 0v11.393Z'/%3E%3C/svg%3E");
}

.testimonial-inner::before {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  display: block;
  height: 47px;
  width: 66px;
  background-size: 66px 47px;
  background-repeat: no-repeat;
  --tw-content: "";
  content: var(--tw-content);
}

@media (min-width: 1280px) {
  .testimonial-inner::before {
    margin-bottom: 30px;
  }
}

.testimonial-inner::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 66 47'%3E%3Cpath fill='%23AFC6C4' d='M29.446 4.488C28.1 2.405 25.812 1.156 22.644.791 18.8.34 15.915.166 12.359.166c-.448 0-1.02-.035-1.68-.07C7.739-.05 3.295-.284 1.272 1.599a3.25 3.25 0 0 0-1.056 2.44C-.12 6.223.005 8.35.128 10.415c.07 1.155.14 2.353.123 3.533 0 .65-.044 1.284-.07 1.918-.115 2.17-.23 4.41.721 6.683 2.015 4.809 6.538 4.34 10.524 3.923l.713-.078c.686 0 2.226-.4 2.27-.442.167-.044.554.034 1.17.234-.379 3.341-1.452 5.832-3.44 8.02-.608.668-1.55 1.354-2.535 2.083-1.935 1.423-4.135 3.029-4.628 5.172-.3 1.294.202 2.57 1.4 3.568 1.442 1.215 3.87 1.97 5.806 1.97.678 0 1.303-.096 1.795-.286 1.312-.322 3.775-1.129 5.544-2.865 7.558-7.89 11.227-17.584 11.227-29.64v-2.395c.3-3.03-.14-5.494-1.32-7.317l.018-.009ZM64.598 4.488c-1.346-2.083-3.634-3.332-6.802-3.697C53.951.348 51.066.175 47.52.175c-.449 0-1.02-.035-1.68-.07-2.94-.156-7.383-.39-9.407 1.493a3.25 3.25 0 0 0-1.056 2.44c-.334 2.178-.21 4.313-.087 6.378.07 1.155.14 2.353.123 3.533 0 .65-.044 1.284-.07 1.918-.115 2.17-.23 4.41.72 6.683 2.016 4.809 6.538 4.34 10.524 3.923l.713-.078c.686 0 2.226-.4 2.27-.442.167-.044.555.034 1.17.234-.378 3.341-1.451 5.832-3.44 8.02-.607.668-1.548 1.354-2.534 2.083-1.936 1.423-4.136 3.029-4.628 5.172-.3 1.294.202 2.57 1.399 3.568 1.443 1.215 3.871 1.97 5.807 1.97.678 0 1.302-.096 1.795-.286 1.311-.322 3.775-1.129 5.544-2.865 7.558-7.89 11.227-17.584 11.227-29.64v-2.395c.3-3.03-.14-5.494-1.32-7.317l.009-.009Z'/%3E%3C/svg%3E");
}

.testimonial p {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 24px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(246 246 246 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .testimonial p {
    margin-bottom: 30px;
  }
}

@media (min-width: 1280px) {
  .testimonial p {
    font-size: 22px;
    line-height: 1.75rem;
    letter-spacing: -0.44px;
  }
}

.disabled {
  cursor: not-allowed;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  opacity: 0.3;
}

.pagination .active {
  position: relative;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.pagination .active::after {
  position: absolute;
  bottom: -5px;
  left: 0px;
  right: 0px;
  margin: auto;
  height: 0.25rem;
  width: 0.25rem;
  border-radius: 9999px;
  content: var(--tw-content);
  background-color: currentColor;
}

.swiper-footer {
  margin-top: 50px;
  display: flex;
  max-width: 1170px;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.modal {
  position: fixed;
  inset: 0px;
  z-index: 10;
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.sidePanel.modal {
  position: relative;
  transform: none;
  overflow: auto;
}

@media (min-width: 1280px) {
  .modal {
    padding-left: 155px;
  }
}

.modal {
  --swiper-scrollbar-bg-color: #6c6b6b;
  --swiper-scrollbar-drag-bg-color: #ffffff;
  --swiper-scrollbar-size: 4px;
}

.modal.modal-video {
  padding-left: 0px;
}

.modal-content {
  width: 100%;
}

.modal img {
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
}

@media (min-width: 1280px) {
  .modal img {
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .modal .swiper-slide {
    width: auto;
  }
}

.modal .swiper-slide-next {
  opacity: 0.6;
}

.close-modal {
  border-radius: 44px;
  --tw-bg-opacity: 1;
  background-color: rgb(253 207 216 / var(--tw-bg-opacity));
  padding: 1px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 600ms;
  position: relative;
  overflow: hidden;
}

.close-modal:hover {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

@keyframes resize {
  0% {
    content: var(--tw-content);
    width: 0;
    height: 0;
  }

  33% {
    content: var(--tw-content);
    width: 80%;
    height: 0;
  }

  100% {
    content: var(--tw-content);
    width: 80%;
    height: 110%;
  }
}

.close-modal:hover::before {
  content: var(--tw-content);
  animation: resize 0.5s forwards;
}

@keyframes resize {
  0% {
    content: var(--tw-content);
    width: 0;
    height: 0;
  }

  33% {
    content: var(--tw-content);
    width: 80%;
    height: 0;
  }

  100% {
    content: var(--tw-content);
    width: 80%;
    height: 110%;
  }
}

.close-modal:hover::after {
  content: var(--tw-content);
  animation: resize 0.5s forwards;
}

.close-modal span {
  position: relative;
  z-index: 10;
  display: block;
  border-radius: 44px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 21px;
  padding-bottom: 21px;
}

.close-modal:after,.close-modal:before {
  position: absolute;
  height: 0px;
  width: 0px;
  background-color: currentColor;
  --tw-content: "";
  content: var(--tw-content);
}

.close-modal:after {
  top: -0.125rem;
  left: 23%;
}

.close-modal:before {
  bottom: -0.125rem;
  right: 23%;
}

.close-modal {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
}

.close-modal span {
  position: relative;
  z-index: 10;
  display: block;
  border-radius: 44px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 21px;
  padding-bottom: 21px;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.cursor {
  display: flex;
  width: 60px;
  height: 60px;
  background: rgba(255, 230, 236, 0.8);
  position: fixed;
  left: -5px;
  top: -5px;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 10000000;
  pointer-events: none;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
}

.cursor::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background-position: center center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 37.428 21.214'%3E%3Cpath fill='none' stroke='%23f40f3d' stroke-width='2' d='m11.314 20.507-9.9-9.9 9.9-9.9m14.8 0 9.9 9.9-9.9 9.9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.cursor.cursor-slide::after {
  background-image: none;
}

@media (pointer: coarse) {
  .cursor {
    display: none !important;
  }
}

.gform_heading {
  margin-top: 10px;
}

.gform_heading .gform_required_legend{
  text-align: right;
}

.gform_heading .gform_title {
  display: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gform_wrapper .gform_fields {
  display: grid;
  width: 100%;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
  grid-template-columns: repeat(12, 1fr);
}

.gform_wrapper .gfield {
  -ms-grid-column-span: 12;
  grid-column: span 12;
}

.gform_wrapper .gfield input,
.gform_wrapper .gfield textarea {
  font-size: 16px;
  font-weight: 400;
}

.gform_wrapper .gfield.gfield--width-half {
  -ms-grid-column-span: 12;
  grid-column: span 12;
}

@media (min-width: 992px) {
  .gform_wrapper .gfield.gfield--width-half {
    -ms-grid-column-span: 6;
    grid-column: span 6
  }
}

.gform_wrapper {
  display: flex;
  flex-direction: column-reverse;
}

.gform_footer {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.gfield_label,
.gform-field-label {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.32px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.gfield_label a,
.gform-field-label a {
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

.gform_wrapper label.gfield_label,
.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
  margin-bottom: 0.5rem;
  display: block;
}

.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
  letter-spacing: 0em;
}

.ginput_container_consent {
  display: flex;
}

.gfield--type-consent legend {
  display: none;
}

.ginput_container_consent .gform-field-label {
  font-weight: 400;
}

.ginput_container_consent input:checked,
.gchoice .gfield-choice-input:checked,
.form-check-input:checked {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  box-shadow: 0 0 0 1px #004C47;
}

.ginput_container_consent input,
.gfield-choice-input,
.form-check-input {
  margin-right: 1rem;
  margin-top: 6px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 9999px;
  border-width: 4px;
  border-color: transparent;
  vertical-align: top;
  box-shadow: 0 0 0 1px #AFC6C4;
}

.gfield_description {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

.gform_wrapper textarea {
  display: block;
  height: 150px;
  width: 100%;
  resize: none;
  border-radius: 15px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(211 233 231 / var(--tw-border-opacity));
  padding: 1.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

@media (min-width: 976px) {
  .gform_wrapper textarea {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.gform_wrapper textarea {
  transition: all 200ms ease-in-out;
}

.gform_wrapper textarea:focus-visible {
  outline-color: #AFC6C4;
}

.gform_wrapper .gfield_required {
  margin-left: 2px;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

.gform_wrapper .validation_error {
  padding: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* prettier-ignore */

.gform_wrapper .validation_message {
  width: 100%;
}

.gform_validation_container {
  display: none !important;
}

#field_1_3 .gfield_description.charleft {
  display: none;
}

.gform_required_legend {
  pointer-events: none;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .gform_required_legend {
    margin: 0px;
    margin-left: auto;
    --tw-translate-y: -40px;
    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));
    text-align: right;
  }
}

.hidden_label legend {
  display: none;
}

.gform_wrapper .gfield--type-phone,
.gform_wrapper .gfield--type-email,
.gform_wrapper .gfield--type-text,
.gform_wrapper .gfield--type-textarea,
.gform_wrapper .input-group {
  position: relative;
  margin-bottom: 20px;
}

.gform_wrapper .gfield--type-phone input,
	.gform_wrapper .gfield--type-phone textarea,
	.gform_wrapper .gfield--type-phone .form-control,
	.gform_wrapper .gfield--type-email input,
	.gform_wrapper .gfield--type-email textarea,
	.gform_wrapper .gfield--type-email .form-control,
	.gform_wrapper .gfield--type-text input,
	.gform_wrapper .gfield--type-text textarea,
	.gform_wrapper .gfield--type-text .form-control,
	.gform_wrapper .gfield--type-textarea input,
	.gform_wrapper .gfield--type-textarea textarea,
	.gform_wrapper .gfield--type-textarea .form-control,
	.gform_wrapper .input-group input,
	.gform_wrapper .input-group textarea,
	.gform_wrapper .input-group .form-control {
  display: block;
  height: 68px;
  width: 100%;
  border-radius: 10px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(211 233 231 / var(--tw-border-opacity));
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
  transition: all 200ms ease-in-out;
}

.gform_wrapper .gfield--type-phone input:focus-visible, .gform_wrapper .gfield--type-phone textarea:focus-visible, .gform_wrapper .gfield--type-phone .form-control:focus-visible, .gform_wrapper .gfield--type-email input:focus-visible, .gform_wrapper .gfield--type-email textarea:focus-visible, .gform_wrapper .gfield--type-email .form-control:focus-visible, .gform_wrapper .gfield--type-text input:focus-visible, .gform_wrapper .gfield--type-text textarea:focus-visible, .gform_wrapper .gfield--type-text .form-control:focus-visible, .gform_wrapper .gfield--type-textarea input:focus-visible, .gform_wrapper .gfield--type-textarea textarea:focus-visible, .gform_wrapper .gfield--type-textarea .form-control:focus-visible, .gform_wrapper .input-group input:focus-visible, .gform_wrapper .input-group textarea:focus-visible, .gform_wrapper .input-group .form-control:focus-visible {
  outline-color: #AFC6C4;
}

.gform_wrapper .gfield--type-phone textarea, .gform_wrapper .gfield--type-email textarea, .gform_wrapper .gfield--type-text textarea, .gform_wrapper .gfield--type-textarea textarea, .gform_wrapper .input-group textarea {
  height: 234px;
}

.gform_wrapper .gfield--type-phone.gfield_error input,
		.gform_wrapper .gfield--type-phone.gfield_error textarea,
		.gform_wrapper .gfield--type-phone.gfield_error .form-control,
		.gform_wrapper .gfield--type-email.gfield_error input,
		.gform_wrapper .gfield--type-email.gfield_error textarea,
		.gform_wrapper .gfield--type-email.gfield_error .form-control,
		.gform_wrapper .gfield--type-text.gfield_error input,
		.gform_wrapper .gfield--type-text.gfield_error textarea,
		.gform_wrapper .gfield--type-text.gfield_error .form-control,
		.gform_wrapper .gfield--type-textarea.gfield_error input,
		.gform_wrapper .gfield--type-textarea.gfield_error textarea,
		.gform_wrapper .gfield--type-textarea.gfield_error .form-control,
		.gform_wrapper .input-group.gfield_error input,
		.gform_wrapper .input-group.gfield_error textarea,
		.gform_wrapper .input-group.gfield_error .form-control {
  --tw-border-opacity: 1;
  border-color: rgb(244 15 61 / var(--tw-border-opacity));
}

.gform_wrapper .gfield--type-choice{
  margin-top: -8px;
  margin-bottom: 20px;
}

.gform_wrapper .gfield--type-choice > .gform-field-label{
  margin-bottom: 10px;
}

.gform_wrapper .gfield--type-choice .gchoice{
  display: flex
}

.gfield--type-phone label,
.gfield--type-email label,
.gfield--type-text label,
.gfield--type-textarea label,
.gfield--input-type-fileupload .label,
.input-group label {
  position: absolute;
  top: -11px;
  left: 10px;
  z-index: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.gform_validation_errors {
  display: none;
}

.ginput_counter {
  font-size: 14px;
}

.gfield--input-type-fileupload {
  border-radius: 15px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(211 233 231 / var(--tw-border-opacity));
  background: 0 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.gfield--input-type-fileupload > div {
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 22px;
  letter-spacing: -0.32px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.gfield--input-type-fileupload > div .gform_drop_instructions {
  display: none;
}

.gfield--input-type-fileupload > div.gfield_description {
  margin-bottom: 0;
}

.gfield--input-type-fileupload .ginput_container_fileupload {
  display: flex;
  flex-direction: column-reverse;
}

.gfield--input-type-fileupload .upload {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.gfield--input-type-fileupload .ginput_container_fileupload ul {
  display: none;
}

.gfield--input-type-fileupload .upload-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 44px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(253 207 216 / var(--tw-border-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.gfield--input-type-fileupload .upload-button:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 76 71 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.gfield--input-type-fileupload .upload-button {
  margin: 10px auto 0;
}

.gfield--input-type-fileupload .ginput_preview {
  display: flex;
  gap: 10px;
}

.gfield--input-type-fileupload .ginput_preview .gform_delete_file {
  border-radius: 4px;
  display: inline-block;
  font-weight: 350;
  font-size: 11px;
  line-height: 2;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(29, 29, 27, 0.15);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
}

.gfield--input-type-fileupload .ginput_preview .gfield_fileupload_filename {
  font-weight: 600;
}

.facetwp-facet-operator_type.facetwp-type-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.facetwp-facet-operator_type.facetwp-type-radio .facetwp-radio {
  background-image: none !important;
  margin-bottom: 0;
  border-radius: 44px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(211 233 231 / var(--tw-border-opacity));
  background-color: transparent;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.3px;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.facetwp-facet-operator_type.facetwp-type-radio .facetwp-radio:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.facetwp-facet-operator_type.facetwp-type-radio .facetwp-radio.checked {
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.facetwp-facet-organisateur.facetwp-type-radio {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 44px;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
  padding: 5px;
}

.facetwp-facet-organisateur.facetwp-type-radio .facetwp-radio{
  background-image: none !important;
  margin-bottom: 0;
  width: 100%;
  border-radius: 44px;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 17px;
  padding-bottom: 17px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.3px;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.facetwp-facet-organisateur.facetwp-type-radio .facetwp-radio:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.facetwp-facet-organisateur.facetwp-type-radio .facetwp-radio.checked {
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.facetwp-facet-organisateur.facetwp-type-radio .facetwp-radio .facetwp-counter {
  display: none;
}

.facetwp-search {
  height: 48px !important;
  width: 100% !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  border-style: none !important;
  background-color: transparent !important;
  padding-right: 5px !important;
  line-height: 1 !important;
  letter-spacing: -0.32px !important;
  --tw-text-opacity: 1 !important;
  color: rgb(0 76 71 / var(--tw-text-opacity)) !important;
}

.facetwp-search::-moz-placeholder {
  --tw-placeholder-opacity: 1 !important;
  color: rgb(0 76 71 / var(--tw-placeholder-opacity)) !important;
}

.facetwp-search::placeholder {
  --tw-placeholder-opacity: 1 !important;
  color: rgb(0 76 71 / var(--tw-placeholder-opacity)) !important;
}

.facetwp-search:focus {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}

@media (min-width: 1280px) {
  .facetwp-search {
    height: 62px !important;
  }
}

.facetwp-icon {
  display: none;
}

.gform_button_select_files {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 44px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(253 207 216 / var(--tw-border-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.gform_button_select_files:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 76 71 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.gform_button_select_files{
  margin: 10px auto 0;
}

.gfield--type-fileupload{
  margin-bottom: 25px;
}

.gfield--type-fileupload .ginput_preview_list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gfield--type-fileupload .gfield_validation_message{
  display: none;
}

.gform_confirmation_message {
  margin-bottom: 1rem;
  display: inline;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 76 71 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(211 233 231 / var(--tw-bg-opacity));
  padding: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

/* .menu-open {
	border-radius: 25px;

	display: flex;
	align-items: center;
	justify-content: center;
	padding: 19px 27px;
	background: theme("colors.green");
	color: white;
} */

.menu-close {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(253 207 216 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

.menu-togglesearch {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

.menu-togglesearch.active {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.search__input {
  width: 100%;
  border-radius: 70px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(211 233 231 / var(--tw-border-opacity));
  padding: 18px;
  padding-left: 55px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.search__input::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.search__input::placeholder {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.search__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath fill='%23004C47' d='m19.547 17.368-3.754-3.742a8.616 8.616 0 0 0 1.555-4.953C17.348 3.887 13.45 0 8.674 0S0 3.887 0 8.673s3.887 8.673 8.674 8.673a8.528 8.528 0 0 0 4.943-1.555l3.753 3.754c.29.288.69.455 1.089.455a1.549 1.549 0 0 0 1.1-2.632h-.012Zm-5.275-8.695a5.602 5.602 0 0 1-5.598 5.597 5.602 5.602 0 0 1-5.598-5.597 5.602 5.602 0 0 1 5.598-5.597 5.602 5.602 0 0 1 5.598 5.597Z'/%3E%3C/svg%3E");
  background-position: 25px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

#nav-mobile {
  display: block;
}

@media (min-width: 1280px) {
  #nav-mobile {
    display: none;
  }
}

.drawer {
  --transition: cubic-bezier(0.19, 1, 0.22, 1);
  --drawer-padding: 30px;
  width: 100%;
  height: 100vh;
  z-index: 55;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overscroll-behavior: none;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  transform: translateX(-100%);
  transition: all 800ms var(--transition);
}

.menu--open {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--drawer-padding);
  padding-top: 25px;
  padding-bottom: 25px;
}

.menu-right {
  display: flex;
  gap: 15px;
}

.menu-navbar {
  border-bottom: 1px solid var(--ultra-light);
  background: var(--ultra-light);
}

.menu-hidden {
  display: none;
}

.menu-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.menu-listitem {
  position: relative;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  border-top-width: 2px;
  --tw-border-opacity: 1;
  border-top-color: rgb(246 246 246 / var(--tw-border-opacity));
  padding: 0px;
}

@media (min-width: 480px) and (max-width: 1199px) {
  .menu-listitem {
    padding-left: calc((100vw - var(--wrapper-size)) / 2);
    padding-right: calc((100vw - var(--wrapper-size)) / 2);
  }
}

.menu-listitem__text {
  position: relative;
  display: block;
  flex-grow: 1;
  flex-basis: 10%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  text-decoration-line: none;
}

.menu-listitem__text.animation-btn::before {
  content: var(--tw-content) !important;
  z-index: -10 !important;
}

.menu-listitem__title {
  display: none;
}

.menu-listitem__btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: var(--drawer-padding);
  width: 7px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 11'%3E%3Cpath stroke='%23F40F3D' stroke-linecap='round' stroke-width='2' d='m1 9.5 4.024-3.22a1 1 0 0 0 0-1.56L1 1.5'/%3E%3C/svg%3E");
}

.menu-listitem--prev {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
}

.menu-btn--prev {
  display: block;
  padding: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
  position: relative;
  padding-left: 51px;
}

.subitem {
  position: relative;
}

.menu-btn--prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: var(--drawer-padding);
  width: 7px;
  height: 11px;
  background-size: 7px 11px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 11'%3E%3Cpath stroke='%23F40F3D' stroke-linecap='round' stroke-width='2' d='M6 1.5 1.976 4.72a1 1 0 0 0 0 1.56L6 9.5'/%3E%3C/svg%3E");
}

.menu-panels {
  flex-grow: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
  color: black;
}

.menu-panel {
  --menu-panel-child-offset: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  transform: translate3d(var(--menu-panel-child-offset), 0, 0);
  transition: transform 800ms var(--transition);
  transition-property: transform, inset-inline-start;
  padding-bottom: 150px;
}

.menu-panel--opened {
  z-index: 2;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.drawer .search__wrapper {
  padding: var(--drawer-padding);
  padding-top: 0;
  padding-bottom: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .drawer .search__wrapper {
    width: 100%
  }
}

@media (max-width: 1199px) {
  .menu-search--active .submenu__block.inspire-submenu__block--magazine {
    padding-bottom: 160px
  }
}

.menu__backdrop {
  inset: 0;
  height: 100%;
  position: fixed;
  z-index: 3;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 250ms 0ms ease-in-out;
  background: rgba(239, 236, 230, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.menu__backdrop.active {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transition: all 250ms ease-in-out;
}

.site-header:hover + .menu__backdrop {
  pointer-events: all;
  opacity: 0.4;
  visibility: visible;
  transition: all 250ms ease-in-out;
}

.facetwp-facet{
  margin-bottom: 0 !important;
}

.select,
.facetwp-type-fselect .fs-wrap {
  background: transparent;
  border: 1px solid #D3E9E7;
  border-radius: 44px;
  height: 58px;
  width: 100%;
  min-width: 200px;
  position: relative;
}

.select::before,
.facetwp-type-fselect .fs-wrap::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 28px;
  z-index: 2;
  width: 9px;
  height: 6px;
  border-style: solid;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 9 6'%3E%3Cpath stroke='%23F40F3D' stroke-linecap='round' stroke-width='2' d='m1 1.5 2.747 3.14a1 1 0 0 0 1.506 0L8 1.5'/%3E%3C/svg%3E");
  pointer-events: none;
  background-size: 9px 6px;
  background-repeat: no-repeat;
  transition: all 0.3s linear;
}

.facetwp-type-fselect .fs-label-wrap {
  border: none;
  background: none;
  height: 58px;
  line-height: 48px;
}

.facetwp-type-fselect .fs-label-wrap .fs-arrow {
  display: none;
}

.select input,
.facetwp-type-fselect .fs-label-wrap .fs-label {
  width: 100%;
  height: 100%;
  background: transparent;
  padding-left: 25px;
  padding-right: 55px;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 16px;
  color: #F40F3D;
  font-weight: 400;
  letter-spacing: -0.36px;
  overflow: visible;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.select input::-moz-placeholder, .facetwp-type-fselect .fs-label-wrap .fs-label::-moz-placeholder {
  color: #F40F3D;
}

.select input::placeholder, .facetwp-type-fselect .fs-label-wrap .fs-label::placeholder {
  color: #F40F3D;
}

.fs-dropdown .fs-search{
  display: none;
}

.fs-dropdown,
.select .options {
  width: calc(100% + 2px);
  padding: 0;
  list-style: none;
  cursor: pointer;
  background: #FFFFFF;
  left: -1px;
  outline: none;
  overflow: hidden;
  position: absolute;
  top: 56px;
  transition: all 0.5s var(--transition);
  z-index: 3;
  border: 1px solid #D3E9E7 !important;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: inherit;
  pointer-events: none;
  max-height: 300px;
  overflow: auto;
  padding-bottom: 12px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.fs-dropdown{
}

.select .options {
  opacity: 0;
  border-top: inherit;
}

.fs-dropdown .fs-option,
.select .options .option {
  padding: 10px 25px;
  transition: all 0.25s ease-in-out;
  color: #F40F3D;
  border-top: 1px solid #D3E9E7;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
}

.fs-dropdown .fs-option:first-of-type, .select .options .option:first-of-type {
  border-top: 0;
}

.fs-dropdown .fs-option:hover,
.select .options .option.selected,
.select .options .option:hover {
  color: #004C47;
}

.select.opened input::-moz-placeholder {
  color: #004C47;
}

.facetwp-type-fselect .fs-wrap.fs-open  .fs-label,
.select.opened input::placeholder {
  color: #004C47;
}

.facetwp-type-fselect .fs-wrap.fs-open,
.select.opened,
.select.opened input {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select.opened .options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.facetwp-type-fselect .fs-wrap.fs-open::before,
.select.opened::before {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 9 6'%3E%3Cpath stroke='%23004C47' stroke-linecap='round' stroke-width='2' d='m1 1.5 2.747 3.14a1 1 0 0 0 1.506 0L8 1.5'/%3E%3C/svg%3E");
}

.select.select-form {
  border-radius: 15px;
  height: 68px;
}

.select.select-form::-moz-placeholder {
  color: #004C47;
}

.select.select-form::placeholder {
  color: #004C47;
}

.select.select-form::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 9 6'%3E%3Cpath stroke='%23004C47' stroke-linecap='round' stroke-width='2' d='m1 1.5 2.747 3.14a1 1 0 0 0 1.506 0L8 1.5'/%3E%3C/svg%3E");
}

.select.select-form input {
  color: #004C47;
}

.select.select-form input::-moz-placeholder {
  color: #004C47;
}

.select.select-form input::placeholder {
  color: #004C47;
}

.select.select-form::before {
  top: 33px;
}

.select.select-form.opened,
.select.select-form.opened input {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select.select-form .options {
  top: 66px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-bottom: 0;
}

.select.select-form .options .option {
  padding: 15px 25px;
  font-size: 16px;
  line-height: 22px;
}

.fs-wrap.single .fs-option.selected,
.select.select-form .options .option.selected,
.select.select-form .options .option:hover {
  color: #004C47;
  background: #F0F7F7 !important;
}

.sidePanel-backdrop {
  inset: 0;
  height: 100%;
  position: fixed;
  z-index: 5;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 250ms 0ms ease-in-out;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding-bottom: 60px;
}

.sidePanel-backdrop.show {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transition: all 250ms ease-in-out;
}

.sidePanel {
  right: 0px;
  top: 0px;
  z-index: 11;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  overflow-y: scroll;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-top: 1.25rem;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

@media (min-width: 768px) {
  .sidePanel {
    padding: 30px;
    padding-top: 45px;
  }
}

@media (min-width: 976px) {
  .sidePanel {
    width: 980px;
    padding-right: 60px;
    padding-left: 30px;
  }
}

@media (min-width: 1280px) {
  .sidePanel {
    width: 1270px;
    padding-bottom: 60px;
  }
}

.sidePanel {
  transform: translateX(100%);
  position: fixed;
  background-size: 290px 232px;
  background-position: top left;
  background-repeat: no-repeat;
  background-attachment: local;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 600 480'%3E%3Cpath fill='%23D3E9E7' d='M0 .002h600l-70 440-530 40v-480Z'/%3E%3C/svg%3E");
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (min-width: 1440px) {
  .sidePanel--large {
    width: 1280px;
  }
}

@media (min-width: 768px) {
  .sidePanel {
    background-size: 400px 320px;
  }
}

@media (min-width: 1200px) {
  .sidePanel {
    background-size: 600px 480px;
  }
}

.sidePanel.fixed {
  position: relative;
  transform: none;
  overflow: auto;
}

.sidePanel.show {
  transform: translateX(0);
}

.sidePanel__header {
  display: flex;
  gap: 10px;
  z-index: 9;
}

@media (min-width: 992px) {
  .sidePanel__header {
    position: sticky;
    top: 0;
    padding-bottom: 20px;
  }
}

.sidePanel-close {
  /* @apply border-red-medium text-red ml-auto flex size-[62px] items-center justify-center rounded-full border; */
}

.sidePanel__content {
  opacity: 0;
  transition: opacity 300ms;
}

@media (min-width: 768px) {
  @media not all and (min-width: 1280px) {
    .sidePanel__content {
      padding-left: 62px;
      padding-right: 62px;
    }
  }
}

#swiperAgendaSidepanel {
  /*opacity: 0;
	transition: opacity 300ms;*/
}

.incubated-project-template-default main .content > blockquote,
.sidePanel__content .content > blockquote {
  margin-bottom: 35px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 24px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

@media (min-width: 1280px) {
  .incubated-project-template-default main .content > blockquote,
.sidePanel__content .content > blockquote {
    font-size: 22px;
    line-height: 1.75rem;
    letter-spacing: -0.44px;
  }
}

.incubated-project-template-default main .content > p,
.sidePanel__content .content > p {
  margin-bottom: 35px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 24px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.incubated-project-template-default main .content > figure img,
.sidePanel__content .content > figure img {
  margin-bottom: 35px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
}

@media (min-width: 1280px) {
  .incubated-project-template-default main .content > figure img,
.sidePanel__content .content > figure img {
    margin-bottom: 55px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}

.incubated-project-template-default main .content > h4,
.sidePanel__content .content > h4 {
  margin-bottom: 30px;
  text-wrap: balance;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.6px;
}

@media (min-width: 768px) {
  .incubated-project-template-default main .content > h4,
.sidePanel__content .content > h4 {
    font-size: 35px;
    letter-spacing: -0.7px;
  }
}

@media (min-width: 1280px) {
  .incubated-project-template-default main .content > h4,
.sidePanel__content .content > h4 {
    margin-bottom: 2.5rem;
    font-size: 40px;
    letter-spacing: -0.8px;
  }
}

.incubated-project-template-default main .content > h4,
.sidePanel__content .content > h4 {
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

#swiperAgendaSidepanel.show,
.sidePanel__content.show {
  opacity: 1;
}

.sidePanel__content::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  @media not all and (min-width: 1280px) {
    .sidePanel__footer {
      padding-left: 62px;
      padding-right: 62px;
    }
  }
}

@media (min-width: 1280px) {
  .sidePanel__footer {
    margin-left: 30px;
  }
}

.slider {
  position: relative;
  display: flex;
  flex: 1;
  margin-top: 50px;
  height: 420px;
  padding-left: 90px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .slider {
    margin-top: 60px;
    height: 325px;
  }
}

@media (min-width: 1200px) {
  .slider {
    height: 485px;
    padding-left: 220px;
    margin-top: -140px;
    margin-bottom: 80px;
  }
}

.slides-inner {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  color: var(--black);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  flex-direction: column-reverse;
}

.slide.next .slide__content {
  /*align-items: flex-end;*/
}

.slide h4 {
  opacity: 0;
  /* transform: translateY(150%); */
  /* transform: translate(0%, 150%); */
}

@media (min-width: 768px) {
  .slide {
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .slide {
    gap: 110px;
    align-items: flex-start;
  }
}

.slide__content {
  width: 100%;
  min-height: 60px;
}

@media (min-width: 1200px) {
  .slide__content {
    min-height: auto;
    padding-top: 205px;
  }
}

.slide__title {
  margin-bottom: 30px;
  text-wrap: balance;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.6px;
}

@media (min-width: 768px) {
  .slide__title {
    font-size: 35px;
    letter-spacing: -0.7px;
  }
}

@media (min-width: 1280px) {
  .slide__title {
    margin-bottom: 2.5rem;
    font-size: 40px;
    letter-spacing: -0.8px;
  }
}

.slide__title {
  display: block;
}

.slide.next .slide__title {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.5px;
}

@media (min-width: 1280px) {
  .slide.next .slide__title {
    font-size: 30px;
    letter-spacing: -0.6px;
  }
}

.slide.next .slide__title {
  display: block;
}

.slide__image {
  overflow: hidden;
  pointer-events: none;
  flex-shrink: 0;
  max-width: 160px;
}

@media (min-width: 768px) {
  .slide__image {
    max-width: 165px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .slide__image {
    max-width: 410px;
  }

  .slide__title {
    height: 150px;
  }
}

.slide__image img {
  margin: 0 auto;
  width: 100%;
  transition: -webkit-clip-path 1sec ease-in-out;
  transition: clip-path 1sec ease-in-out;
  transition: clip-path 1sec ease-in-out, -webkit-clip-path 1sec ease-in-out;
}

.slide.current h4,
.slide.next h4 {
  opacity: 100%;
}

.slide.current {
  z-index: 2;
}

.controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 60px;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
}

@media (min-width: 768px) {
  .controls {
    /* top: 560px;
		width: 70%; */
  }
}

@media (min-width: 1200px) {
  .controls {
    /* top: initial;
		bottom: 39px;
		width: 30%; */
    left: 64px;
    top: 205px;
  }
}

.slider .btn-prev,
.slider .btn-next {
  width: 62px;
  height: 62px;
  position: relative;
  border: 1px solid #AFC6C4;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider .btn-next .circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 62px;
  transform: rotateZ(-90deg);
}

.slider .btn-next .circle circle {
  stroke-dasharray: 213px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 3px;
  stroke: white;
  fill: none;
  animation: countdown var(--animation-duration) linear infinite forwards;
  transition: stroke 250ms ease-in;
}

@keyframes countdown {
  from {
    stroke-dashoffset: 213px;
  }

  to {
    stroke-dashoffset: 0px;
  }
}

/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */

: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;
}

/* Slide styles start */

.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-lazy-preloader,
.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);
  }
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-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: #d3e9e7;
  --swiper-scrollbar-drag-bg-color: #004c47;
  --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,
	.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
	.swiper-scrollbar.swiper-scrollbar-horizontal {
  z-index: 3;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
	.swiper-scrollbar.swiper-scrollbar-vertical {
  z-index: 3;
  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;
}

/* --swiper-scrollbar-bg-color: rgba(255, 255, 255, 0.1);
		--swiper-scrollbar-drag-bg-color: rgba(255, 255, 255, 0.5); */

.swiper-fade.swiper-free-mode .swiper-slide{
  transition-timing-function:ease-out
}

.swiper-fade .swiper-slide{
  pointer-events:none;
  transition-property:opacity
}

.swiper-fade .swiper-slide .swiper-slide{
  pointer-events:none
}

.swiper-fade .swiper-slide-active{
  pointer-events:auto
}

.swiper-fade .swiper-slide-active .swiper-slide-active{
  pointer-events:auto
}

/* @import "./custom/components/components.css"; */

/**
* This injects Tailwind's utility classes and any utility classes registered
* by plugins, then adds custom utility classes.
*/

.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;
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.inset-x-1\/2 {
  left: 50%;
  right: 50%;
}

.inset-x-2\/4 {
  left: 50%;
  right: 50%;
}

.-top-5 {
  top: -1.25rem;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-\[-10px\] {
  bottom: -10px;
}

.bottom-\[-50px\] {
  bottom: -50px;
}

.bottom-\[-5px\] {
  bottom: -5px;
}

.bottom-\[0\] {
  bottom: 0;
}

.bottom-\[130px\] {
  bottom: 130px;
}

.bottom-\[30px\] {
  bottom: 30px;
}

.bottom-\[calc\(100\%-1px\)\] {
  bottom: calc(100% - 1px);
}

.bottom-full {
  bottom: 100%;
}

.left-0 {
  left: 0px;
}

.left-2\/4 {
  left: 50%;
}

.left-\[-205px\] {
  left: -205px;
}

.left-\[-95px\] {
  left: -95px;
}

.left-\[0\] {
  left: 0;
}

.left-\[17px\] {
  left: 17px;
}

.left-\[244px\] {
  left: 244px;
}

.left-\[245px\] {
  left: 245px;
}

.left-\[30px\] {
  left: 30px;
}

.left-\[calc\(100\%\+20px\)\] {
  left: calc(100% + 20px);
}

.left-full {
  left: 100%;
}

.right-0 {
  right: 0px;
}

.right-10 {
  right: 2.5rem;
}

.right-\[-18px\] {
  right: -18px;
}

.right-\[-205px\] {
  right: -205px;
}

.right-\[-25px\] {
  right: -25px;
}

.right-\[-40px\] {
  right: -40px;
}

.right-\[-47px\] {
  right: -47px;
}

.right-\[-70px\] {
  right: -70px;
}

.right-\[-75px\] {
  right: -75px;
}

.right-\[30px\] {
  right: 30px;
}

.right-\[60px\] {
  right: 60px;
}

.right-full {
  right: 100%;
}

.top-0 {
  top: 0px;
}

.top-2\/4 {
  top: 50%;
}

.top-\[-10px\] {
  top: -10px;
}

.top-\[-20px\] {
  top: -20px;
}

.top-\[-3px\] {
  top: -3px;
}

.top-\[-60px\] {
  top: -60px;
}

.top-\[-6px\] {
  top: -6px;
}

.top-\[-7px\] {
  top: -7px;
}

.top-\[30px\] {
  top: 30px;
}

.top-\[40px\] {
  top: 40px;
}

.top-\[45px\] {
  top: 45px;
}

.top-\[4px\] {
  top: 4px;
}

.top-\[9px\] {
  top: 9px;
}

.top-full {
  top: 100%;
}

.z-10 {
  z-index: 10;
}

.z-\[-1\] {
  z-index: -1;
}

.z-\[1\] {
  z-index: 1;
}

.z-\[2\] {
  z-index: 2;
}

.z-\[5\] {
  z-index: 5;
}

.col-start-1 {
  grid-column-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.col-start-5 {
  grid-column-start: 5;
}

.col-start-7 {
  grid-column-start: 7;
}

.col-end-12 {
  grid-column-end: 12;
}

.col-end-2 {
  grid-column-end: 2;
}

.col-end-3 {
  grid-column-end: 3;
}

.col-end-4 {
  grid-column-end: 4;
}

.row-start-1 {
  grid-row-start: 1;
}

.row-start-2 {
  grid-row-start: 2;
}

.row-start-3 {
  grid-row-start: 3;
}

.row-end-2 {
  grid-row-end: 2;
}

.row-end-3 {
  grid-row-end: 3;
}

.row-end-4 {
  grid-row-end: 4;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-auto {
  margin: auto;
}

.mx-\[-105px\] {
  margin-left: -105px;
  margin-right: -105px;
}

.mx-\[-1250px\] {
  margin-left: -1250px;
  margin-right: -1250px;
}

.mx-\[-2px\] {
  margin-left: -2px;
  margin-right: -2px;
}

.mx-\[140px\] {
  margin-left: 140px;
  margin-right: 140px;
}

.mx-\[7px\] {
  margin-left: 7px;
  margin-right: 7px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-\[200px\] {
  margin-top: 200px;
  margin-bottom: 200px;
}

.my-\[40px\] {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-\[80px\] {
  margin-top: 80px;
  margin-bottom: 80px;
}

.my-\[90px\] {
  margin-top: 90px;
  margin-bottom: 90px;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.-mt-1\.5 {
  margin-top: -0.375rem;
}

.-mt-\[60px\] {
  margin-top: -60px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-\[100px\] {
  margin-bottom: 100px;
}

.mb-\[10px\] {
  margin-bottom: 10px;
}

.mb-\[15px\] {
  margin-bottom: 15px;
}

.mb-\[20px\] {
  margin-bottom: 20px;
}

.mb-\[25px\] {
  margin-bottom: 25px;
}

.mb-\[28px\] {
  margin-bottom: 28px;
}

.mb-\[30px\] {
  margin-bottom: 30px;
}

.mb-\[35px\] {
  margin-bottom: 35px;
}

.mb-\[40px\] {
  margin-bottom: 40px;
}

.mb-\[50px\] {
  margin-bottom: 50px;
}

.mb-\[55px\] {
  margin-bottom: 55px;
}

.mb-\[5px\] {
  margin-bottom: 5px;
}

.mb-\[60px\] {
  margin-bottom: 60px;
}

.mb-\[70px\] {
  margin-bottom: 70px;
}

.mb-\[80px\] {
  margin-bottom: 80px;
}

.mb-\[90px\] {
  margin-bottom: 90px;
}

.me-2 {
  margin-inline-end: 0.5rem;
}

.me-2\.5 {
  margin-inline-end: 0.625rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-\[-50vw\] {
  margin-left: -50vw;
}

.ml-\[2px\] {
  margin-left: 2px;
}

.ml-auto {
  margin-left: auto;
}

.mr-\[-50vw\] {
  margin-right: -50vw;
}

.mr-auto {
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-\[-10px\] {
  margin-top: -10px;
}

.mt-\[-2px\] {
  margin-top: -2px;
}

.mt-\[-40px\] {
  margin-top: -40px;
}

.mt-\[-50px\] {
  margin-top: -50px;
}

.mt-\[-70px\] {
  margin-top: -70px;
}

.mt-\[10px\] {
  margin-top: 10px;
}

.mt-\[135px\] {
  margin-top: 135px;
}

.mt-\[15px\] {
  margin-top: 15px;
}

.mt-\[2px\] {
  margin-top: 2px;
}

.mt-\[30px\] {
  margin-top: 30px;
}

.mt-\[40px\] {
  margin-top: 40px;
}

.mt-\[5px\] {
  margin-top: 5px;
}

.mt-\[60px\] {
  margin-top: 60px;
}

.mt-\[6px\] {
  margin-top: 6px;
}

.mt-\[70px\] {
  margin-top: 70px;
}

.mt-\[90px\] {
  margin-top: 90px;
}

.mt-auto {
  margin-top: auto;
}

.mt-px {
  margin-top: 1px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.size-\[20px\] {
  width: 20px;
  height: 20px;
}

.size-\[256px\] {
  width: 256px;
  height: 256px;
}

.size-\[50px\] {
  width: 50px;
  height: 50px;
}

.size-\[52px\] {
  width: 52px;
  height: 52px;
}

.size-\[62px\] {
  width: 62px;
  height: 62px;
}

.h-0 {
  height: 0px;
}

.h-1 {
  height: 0.25rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.h-1\/2 {
  height: 50%;
}

.h-1\/3 {
  height: 33.333333%;
}

.h-10 {
  height: 2.5rem;
}

.h-2\/3 {
  height: 66.666667%;
}

.h-3 {
  height: 0.75rem;
}

.h-3\.5 {
  height: 0.875rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-\[14px\] {
  height: 14px;
}

.h-\[150px\] {
  height: 150px;
}

.h-\[18px\] {
  height: 18px;
}

.h-\[200\] {
  height: 200;
}

.h-\[200px\] {
  height: 200px;
}

.h-\[20px\] {
  height: 20px;
}

.h-\[230px\] {
  height: 230px;
}

.h-\[26px\] {
  height: 26px;
}

.h-\[32px\] {
  height: 32px;
}

.h-\[35px\] {
  height: 35px;
}

.h-\[3px\] {
  height: 3px;
}

.h-\[45px\] {
  height: 45px;
}

.h-\[48px\] {
  height: 48px;
}

.h-\[52px\] {
  height: 52px;
}

.h-\[60px\] {
  height: 60px;
}

.h-\[95px\] {
  height: 95px;
}

.h-\[var\(--menu-panel-height\)\] {
  height: var(--menu-panel-height);
}

.h-auto {
  height: auto;
}

.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.h-full {
  height: 100%;
}

.max-h-\[150px\] {
  max-height: 150px;
}

.max-h-full {
  max-height: 100%;
}

.min-h-\[210px\] {
  min-height: 210px;
}

.min-h-\[300px\] {
  min-height: 300px;
}

.w-0 {
  width: 0px;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-2 {
  width: 0.5rem;
}

.w-2\.5 {
  width: 0.625rem;
}

.w-3 {
  width: 0.75rem;
}

.w-3\.5 {
  width: 0.875rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-\[117px\] {
  width: 117px;
}

.w-\[12px\] {
  width: 12px;
}

.w-\[13px\] {
  width: 13px;
}

.w-\[14px\] {
  width: 14px;
}

.w-\[154px\] {
  width: 154px;
}

.w-\[165px\] {
  width: 165px;
}

.w-\[16px\] {
  width: 16px;
}

.w-\[177px\] {
  width: 177px;
}

.w-\[17px\] {
  width: 17px;
}

.w-\[18px\] {
  width: 18px;
}

.w-\[19px\] {
  width: 19px;
}

.w-\[20px\] {
  width: 20px;
}

.w-\[210px\] {
  width: 210px;
}

.w-\[21px\] {
  width: 21px;
}

.w-\[235px\] {
  width: 235px;
}

.w-\[24px\] {
  width: 24px;
}

.w-\[2500px\] {
  width: 2500px;
}

.w-\[270px\] {
  width: 270px;
}

.w-\[2px\] {
  width: 2px;
}

.w-\[35px\] {
  width: 35px;
}

.w-\[363px\] {
  width: 363px;
}

.w-\[3px\] {
  width: 3px;
}

.w-\[43px\] {
  width: 43px;
}

.w-\[45px\] {
  width: 45px;
}

.w-\[460px\] {
  width: 460px;
}

.w-\[50px\] {
  width: 50px;
}

.w-\[52px\] {
  width: 52px;
}

.w-\[55px\] {
  width: 55px;
}

.w-\[66px\] {
  width: 66px;
}

.w-\[70px\] {
  width: 70px;
}

.w-\[77px\] {
  width: 77px;
}

.w-\[88px\] {
  width: 88px;
}

.w-\[8px\] {
  width: 8px;
}

.w-\[920px\] {
  width: 920px;
}

.w-\[calc\(100\%\+4px\)\] {
  width: calc(100% + 4px);
}

.w-\[calc\(100\%-30px\)\] {
  width: calc(100% - 30px);
}

.w-auto {
  width: auto;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.min-w-\[14px\] {
  min-width: 14px;
}

.max-w-\[10ch\] {
  max-width: 10ch;
}

.max-w-\[235px\] {
  max-width: 235px;
}

.max-w-\[32px\] {
  max-width: 32px;
}

.max-w-\[80\%\] {
  max-width: 80%;
}

.max-w-\[initial\] {
  max-width: initial;
}

.max-w-none {
  max-width: none;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.shrink-0 {
  flex-shrink: 0;
}

.basis-1\/2 {
  flex-basis: 50%;
}

.basis-\[315px\] {
  flex-basis: 315px;
}

.-translate-x-2\/4 {
  --tw-translate-x: -50%;
  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));
}

.-translate-y-2\/4 {
  --tw-translate-y: -50%;
  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));
}

.translate-x-\[10px\] {
  --tw-translate-x: 10px;
  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));
}

.translate-y-\[-50px\] {
  --tw-translate-y: -50px;
  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));
}

.translate-y-\[-8px\] {
  --tw-translate-y: -8px;
  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));
}

.translate-y-\[5px\] {
  --tw-translate-y: 5px;
  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));
}

.rotate-\[-3deg\] {
  --tw-rotate: -3deg;
  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));
}

.rotate-\[4deg\] {
  --tw-rotate: 4deg;
  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));
}

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

.animate-spin {
  animation: spin 1s linear infinite;
}

.cursor-pointer {
  cursor: pointer;
}

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.resize {
  resize: both;
}

.snap-x {
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-0 {
  gap: 0px;
}

.gap-0\.5 {
  gap: 0.125rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-2\.5 {
  gap: 0.625rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-\[10px\] {
  gap: 10px;
}

.gap-\[11\.5px\] {
  gap: 11.5px;
}

.gap-\[13px\] {
  gap: 13px;
}

.gap-\[15px\] {
  gap: 15px;
}

.gap-\[20px\] {
  gap: 20px;
}

.gap-\[30px\] {
  gap: 30px;
}

.gap-\[40px\] {
  gap: 40px;
}

.gap-\[50px\] {
  gap: 50px;
}

.gap-\[5px\] {
  gap: 5px;
}

.gap-\[60px\] {
  gap: 60px;
}

.gap-\[6px\] {
  gap: 6px;
}

.gap-x-\[30px\] {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.gap-y-\[120px\] {
  row-gap: 120px;
}

.gap-y-\[2px\] {
  row-gap: 2px;
}

.gap-y-\[70px\] {
  row-gap: 70px;
}

.divide-x > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-gray-light > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-divide-opacity));
}

.divide-green-light > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(211 233 231 / var(--tw-divide-opacity));
}

.divide-green-medium > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(175 198 196 / var(--tw-divide-opacity));
}

.self-end {
  align-self: flex-end;
}

.overflow-clip {
  overflow: clip;
}

.overflow-x-clip {
  overflow-x: clip;
}

.overflow-y-clip {
  overflow-y: clip;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.text-nowrap {
  text-wrap: nowrap;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.break-all {
  word-break: break-all;
}

.rounded-3xl {
  border-radius: 1.25rem;
}

.rounded-\[10px\] {
  border-radius: 10px;
}

.rounded-\[20px\] {
  border-radius: 20px;
}

.rounded-\[30px\] {
  border-radius: 30px;
}

.rounded-\[44px\] {
  border-radius: 44px;
}

.rounded-\[80px\] {
  border-radius: 80px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-b-\[10px\] {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.rounded-b-\[30px\] {
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.rounded-bl-\[10px\] {
  border-bottom-left-radius: 10px;
}

.rounded-bl-\[30px\] {
  border-bottom-left-radius: 30px;
}

.rounded-br-\[30px\] {
  border-bottom-right-radius: 30px;
}

.rounded-br-\[50px\] {
  border-bottom-right-radius: 50px;
}

.rounded-tl-\[26px\] {
  border-top-left-radius: 26px;
}

.rounded-tl-\[30px\] {
  border-top-left-radius: 30px;
}

.rounded-tl-\[50px\] {
  border-top-left-radius: 50px;
}

.rounded-tr-\[10px\] {
  border-top-right-radius: 10px;
}

.rounded-tr-\[30px\] {
  border-top-right-radius: 30px;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-\[2px\] {
  border-width: 2px;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-\[5px\] {
  border-bottom-width: 5px;
}

.border-l-\[5px\] {
  border-left-width: 5px;
}

.border-r-\[5px\] {
  border-right-width: 5px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-0 {
  border-top-width: 0px;
}

.border-t-\[5px\] {
  border-top-width: 5px;
}

.border-none {
  border-style: none;
}

.border-gray-light {
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity));
}

.border-green-light {
  --tw-border-opacity: 1;
  border-color: rgb(211 233 231 / var(--tw-border-opacity));
}

.border-green-medium {
  --tw-border-opacity: 1;
  border-color: rgb(175 198 196 / var(--tw-border-opacity));
}

.border-red-medium {
  --tw-border-opacity: 1;
  border-color: rgb(253 207 216 / var(--tw-border-opacity));
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.border-b-transparent {
  border-bottom-color: transparent;
}

.bg-gray-light {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
}

.bg-green {
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
}

.bg-green-light {
  --tw-bg-opacity: 1;
  background-color: rgb(211 233 231 / var(--tw-bg-opacity));
}

.bg-green-ultra-light {
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 247 / var(--tw-bg-opacity));
}

.bg-red {
  --tw-bg-opacity: 1;
  background-color: rgb(244 15 61 / var(--tw-bg-opacity));
}

.bg-red-medium {
  --tw-bg-opacity: 1;
  background-color: rgb(253 207 216 / var(--tw-bg-opacity));
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-none {
  background-image: none;
}

.fill-red {
  fill: #F40F3D;
}

.fill-red-medium {
  fill: #FDCFD8;
}

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

.p-2 {
  padding: 0.5rem;
}

.p-2\.5 {
  padding: 0.625rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-\[20px\] {
  padding: 20px;
}

.p-\[30px\] {
  padding: 30px;
}

.p-\[40px\] {
  padding: 40px;
}

.p-\[42px\] {
  padding: 42px;
}

.p-\[5px\] {
  padding: 5px;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}

.px-\[13px\] {
  padding-left: 13px;
  padding-right: 13px;
}

.px-\[14px\] {
  padding-left: 14px;
  padding-right: 14px;
}

.px-\[20px\] {
  padding-left: 20px;
  padding-right: 20px;
}

.px-\[25px\] {
  padding-left: 25px;
  padding-right: 25px;
}

.px-\[30px\] {
  padding-left: 30px;
  padding-right: 30px;
}

.px-\[40px\] {
  padding-left: 40px;
  padding-right: 40px;
}

.px-\[5px\] {
  padding-left: 5px;
  padding-right: 5px;
}

.px-\[7\.5px\] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-\[15px\] {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-\[17px\] {
  padding-top: 17px;
  padding-bottom: 17px;
}

.py-\[18px\] {
  padding-top: 18px;
  padding-bottom: 18px;
}

.py-\[20px\] {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-\[25px\] {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-\[27px\] {
  padding-top: 27px;
  padding-bottom: 27px;
}

.py-\[30px\] {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-\[3px\] {
  padding-top: 3px;
  padding-bottom: 3px;
}

.py-\[40px\] {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-\[5px\] {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-\[60px\] {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-\[80px\] {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px;
}

.pb-\[0\] {
  padding-bottom: 0;
}

.pb-\[120px\] {
  padding-bottom: 120px;
}

.pb-\[15px\] {
  padding-bottom: 15px;
}

.pb-\[22px\] {
  padding-bottom: 22px;
}

.pb-\[25px\] {
  padding-bottom: 25px;
}

.pb-\[30px\] {
  padding-bottom: 30px;
}

.pb-\[40px\] {
  padding-bottom: 40px;
}

.pb-\[45px\] {
  padding-bottom: 45px;
}

.pb-\[50px\] {
  padding-bottom: 50px;
}

.pb-\[60px\] {
  padding-bottom: 60px;
}

.pb-\[75px\] {
  padding-bottom: 75px;
}

.pb-\[80px\] {
  padding-bottom: 80px;
}

.pb-\[90px\] {
  padding-bottom: 90px;
}

.pl-\[30px\] {
  padding-left: 30px;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-3\.5 {
  padding-right: 0.875rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-\[5px\] {
  padding-right: 5px;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-\[10px\] {
  padding-top: 10px;
}

.pt-\[117px\] {
  padding-top: 117px;
}

.pt-\[15px\] {
  padding-top: 15px;
}

.pt-\[20px\] {
  padding-top: 20px;
}

.pt-\[25px\] {
  padding-top: 25px;
}

.pt-\[30px\] {
  padding-top: 30px;
}

.pt-\[50px\] {
  padding-top: 50px;
}

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

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

.font-ico {
  font-family: Ies Ico;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[17px\] {
  font-size: 17px;
}

.text-\[18px\] {
  font-size: 18px;
}

.text-\[20px\] {
  font-size: 20px;
}

.text-\[22px\] {
  font-size: 22px;
}

.text-\[25px\] {
  font-size: 25px;
}

.text-\[26px\] {
  font-size: 26px;
}

.text-\[40px\] {
  font-size: 40px;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-nav {
  font-size: 0.9375rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.not-italic {
  font-style: normal;
}

.ordinal {
  --tw-ordinal: ordinal;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}

.leading-3 {
  line-height: .75rem;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-7 {
  line-height: 1.75rem;
}

.leading-\[11px\] {
  line-height: 11px;
}

.leading-\[14px\] {
  line-height: 14px;
}

.leading-\[15px\] {
  line-height: 15px;
}

.leading-\[17px\] {
  line-height: 17px;
}

.leading-\[18px\] {
  line-height: 18px;
}

.leading-\[20px\] {
  line-height: 20px;
}

.leading-\[22px\] {
  line-height: 22px;
}

.leading-\[24px\] {
  line-height: 24px;
}

.leading-\[25px\] {
  line-height: 25px;
}

.leading-\[28px\] {
  line-height: 28px;
}

.leading-\[30px\] {
  line-height: 30px;
}

.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

.leading-snug {
  line-height: 1.375;
}

.-tracking-\[0\.12px\] {
  letter-spacing: -0.12px;
}

.-tracking-\[0\.44px\] {
  letter-spacing: -0.44px;
}

.tracking-\[-0\.12px\] {
  letter-spacing: -0.12px;
}

.tracking-\[-0\.28px\] {
  letter-spacing: -0.28px;
}

.tracking-\[-0\.32px\] {
  letter-spacing: -0.32px;
}

.tracking-\[-0\.34px\] {
  letter-spacing: -0.34px;
}

.tracking-\[-0\.36px\] {
  letter-spacing: -0.36px;
}

.tracking-\[-0\.3px\] {
  letter-spacing: -0.3px;
}

.tracking-\[-0\.44px\] {
  letter-spacing: -0.44px;
}

.tracking-\[-0\.4px\] {
  letter-spacing: -0.4px;
}

.tracking-\[-0\.52px\] {
  letter-spacing: -0.52px;
}

.tracking-\[-0\.5px\] {
  letter-spacing: -0.5px;
}

.tracking-\[-0\.6px\] {
  letter-spacing: -0.6px;
}

.tracking-\[-0\.8px\] {
  letter-spacing: -0.8px;
}

.tracking-\[-2px\] {
  letter-spacing: -2px;
}

.tracking-tight {
  letter-spacing: -0.02em;
}

.text-green {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.text-green-light {
  --tw-text-opacity: 1;
  color: rgb(211 233 231 / var(--tw-text-opacity));
}

.text-green-medium {
  --tw-text-opacity: 1;
  color: rgb(175 198 196 / var(--tw-text-opacity));
}

.text-red {
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

.text-red-medium {
  --tw-text-opacity: 1;
  color: rgb(253 207 216 / var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.placeholder-green::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(0 76 71 / var(--tw-placeholder-opacity));
}

.placeholder-green::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(0 76 71 / var(--tw-placeholder-opacity));
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-75 {
  opacity: 0.75;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(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: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[-10px_0_15px_-5px_rgba\(0\2c 0\2c 0\2c 0\.1\)\] {
  --tw-shadow: -10px 0 15px -5px rgba(0,0,0,0.1);
  --tw-shadow-colored: -10px 0 15px -5px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-menu {
  --tw-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.10);
  --tw-shadow-colored: 0px 20px 20px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline {
  outline-style: solid;
}

.outline-1 {
  outline-width: 1px;
}

.outline-\[8px\] {
  outline-width: 8px;
}

.outline-transparent {
  outline-color: transparent;
}

.outline-white {
  outline-color: #FFFFFF;
}

.brightness-\[0\.85\] {
  --tw-brightness: brightness(0.85);
  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);
}

.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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-\[all\] {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-\[fill\] {
  transition-property: fill;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.delay-\[150ms\] {
  transition-delay: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-\[400ms\] {
  transition-duration: 400ms;
}

.duration-\[600ms\] {
  transition-duration: 600ms;
}

@media not all and (min-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 480px) {
  .container {
    max-width: 480px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 644px;
  }
}

@media (min-width: 976px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1290px;
  }
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 480px) {
  .wrapper {
    max-width: 480px;
  }
}

@media (min-width: 768px) {
  .wrapper {
    max-width: 644px;
  }
}

@media (min-width: 976px) {
  .wrapper {
    max-width: 960px;
  }
}

@media (min-width: 1280px) {
  .wrapper {
    max-width: 1100px;
  }
}

.clip-image-1 {
  -webkit-clip-path: url(#image-clip-1);
          clip-path: url(#image-clip-1);
}

.clip-image-2 {
  -webkit-clip-path: url(#image-clip-2);
          clip-path: url(#image-clip-2);
}

.clip-image-3 {
  -webkit-clip-path: url(#image-clip-3);
          clip-path: url(#image-clip-3);
}

.clip-image-4 {
  -webkit-clip-path: url(#image-clip-4);
          clip-path: url(#image-clip-4);
}

.clip-image-5 {
  -webkit-clip-path: url(#image-clip-5);
          clip-path: url(#image-clip-5);
}

.clip-image-6 {
  -webkit-clip-path: url(#image-clip-6);
          clip-path: url(#image-clip-6);
}

.clip-image-7 {
  -webkit-clip-path: url(#image-clip-7);
          clip-path: url(#image-clip-7);
}

.clip-image-8 {
  -webkit-clip-path: url(#image-clip-8);
          clip-path: url(#image-clip-8);
}

.clip-image-full-1 {
  -webkit-clip-path: url(#image-full-clip-1);
          clip-path: url(#image-full-clip-1);
}

.clip-image-full-2 {
  -webkit-clip-path: url(#image-full-clip-2);
          clip-path: url(#image-full-clip-2);
}

.text-large {
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.44px;
}

@media (min-width: 1280px) {
  .text-large {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -0.52px;
  }
}

.text-medium {
  font-size: 22px;
  line-height: 1.75rem;
  letter-spacing: -0.44px;
}

.text-regular {
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
}

.text-small {
  line-height: 22px;
  letter-spacing: -0.32px;
}

.input-search {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath fill='%23004C47' d='m19.547 17.37-3.754-3.743a8.615 8.615 0 0 0 1.555-4.953c0-4.786-3.898-8.673-8.674-8.673S0 3.888 0 8.674c0 4.787 3.887 8.673 8.674 8.673a8.529 8.529 0 0 0 4.943-1.554l3.753 3.753c.29.289.69.456 1.089.456a1.549 1.549 0 0 0 1.1-2.632h-.012Zm-5.275-8.696a5.602 5.602 0 0 1-5.598 5.597 5.602 5.602 0 0 1-5.598-5.597 5.602 5.602 0 0 1 5.598-5.596 5.602 5.602 0 0 1 5.598 5.596Z'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 17px 25px;
}

@media (min-width: 1280px) {
  .input-search {
    background-image: none;
  }
}

.btn-border {
  border-radius: 44px;
  --tw-bg-opacity: 1;
  background-color: rgb(253 207 216 / var(--tw-bg-opacity));
  padding: 1px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 600ms;
  position: relative;
  overflow: hidden;
}

.btn-border:hover {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

@keyframes resize {
  0% {
    content: var(--tw-content);
    width: 0;
    height: 0;
  }

  33% {
    content: var(--tw-content);
    width: 80%;
    height: 0;
  }

  100% {
    content: var(--tw-content);
    width: 80%;
    height: 110%;
  }
}

.btn-border:hover::before {
  content: var(--tw-content);
  animation: resize 0.5s forwards;
}

@keyframes resize {
  0% {
    content: var(--tw-content);
    width: 0;
    height: 0;
  }

  33% {
    content: var(--tw-content);
    width: 80%;
    height: 0;
  }

  100% {
    content: var(--tw-content);
    width: 80%;
    height: 110%;
  }
}

.btn-border:hover::after {
  content: var(--tw-content);
  animation: resize 0.5s forwards;
}

.btn-border span {
  position: relative;
  z-index: 10;
  display: block;
  border-radius: 44px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 21px;
  padding-bottom: 21px;
}

.btn-border:after,.btn-border:before {
  position: absolute;
  height: 0px;
  width: 0px;
  background-color: currentColor;
  --tw-content: "";
  content: var(--tw-content);
}

.btn-border:after {
  top: -0.125rem;
  left: 23%;
}

.btn-border:before {
  bottom: -0.125rem;
  right: 23%;
}

.btn-border-gray span {
  position: relative;
  z-index: 10;
  display: block;
  border-radius: 44px;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 21px;
  padding-bottom: 21px;
}

.btn-border-icon {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
}

.btn-border-icon-black span {
  position: relative;
  z-index: 10;
  display: block;
  border-radius: 44px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 21px;
  padding-bottom: 21px;
}

.btn-border-icon span {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.wp-element-button,
	.btn-primary {
  display: inline-block;
  white-space: nowrap;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(244 15 61 / var(--tw-bg-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  position: relative;
  z-index: 10;
  overflow: clip;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 600ms;
}

.wp-element-button::before,
	.btn-primary::before {
  position: absolute;
  inset: 0px;
  z-index: -10;
  height: calc(100% + 2px);
  width: 100%;
  --tw-translate-y: calc(100% + 1px);
  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));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 600ms;
  content: var(--tw-content);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-element-button:hover,
	.btn-primary:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.wp-element-button:hover::before,
	.btn-primary:hover::before {
  content: var(--tw-content);
  --tw-translate-y: 0px;
  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));
}

.wp-element-button > *:not(.sr-only),
	.btn-primary > *:not(.sr-only) {
  position: relative;
  z-index: 1;
}

.menu-listitem__text.wp-element-button::before,.menu-listitem__text
	.btn-primary::before {
  content: var(--tw-content) !important;
  z-index: -10 !important;
}

.wp-element-button:hover,
	.btn-primary:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.wp-element-button:focus-visible,
	.btn-primary:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.btn-primary-icon {
  display: flex;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(244 15 61 / var(--tw-bg-opacity));
  padding: 0px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  position: relative;
  z-index: 10;
  overflow: clip;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 600ms;
}

.btn-primary-icon::before {
  position: absolute;
  inset: 0px;
  z-index: -10;
  height: calc(100% + 2px);
  width: 100%;
  --tw-translate-y: calc(100% + 1px);
  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));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 600ms;
  content: var(--tw-content);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-icon:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-primary-icon:hover::before {
  content: var(--tw-content);
  --tw-translate-y: 0px;
  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));
}

.btn-primary-icon > *:not(.sr-only) {
  position: relative;
  z-index: 1;
}

.menu-listitem__text.btn-primary-icon::before {
  content: var(--tw-content) !important;
  z-index: -10 !important;
}

.btn-primary-icon:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-primary-icon:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.btn-primary-icon--off {
  display: flex;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(244 15 61 / var(--tw-bg-opacity));
  padding: 0px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.btn-primary-icon--off:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-primary-icon--off:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.btn-towhite {
  position: relative;
  z-index: 10;
  overflow: clip;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 600ms;
}

.btn-towhite::before {
  position: absolute;
  inset: 0px;
  z-index: -10;
  height: calc(100% + 2px);
  width: 100%;
  --tw-translate-y: calc(100% + 1px);
  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));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 600ms;
  content: var(--tw-content);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-towhite:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-towhite:hover::before {
  content: var(--tw-content);
  --tw-translate-y: 0px;
  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));
}

.btn-towhite > *:not(.sr-only) {
  position: relative;
  z-index: 1;
}

.menu-listitem__text.btn-towhite::before {
  content: var(--tw-content) !important;
  z-index: -10 !important;
}

.btn-towhite::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.btn-towhite:hover {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.btn-white {
  display: inline-block;
  white-space: nowrap;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  position: relative;
  z-index: 10;
  overflow: clip;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 600ms;
}

.btn-white::before {
  position: absolute;
  inset: 0px;
  z-index: -10;
  height: calc(100% + 2px);
  width: 100%;
  --tw-translate-y: calc(100% + 1px);
  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));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 600ms;
  content: var(--tw-content);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-white:hover::before {
  content: var(--tw-content);
  --tw-translate-y: 0px;
  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));
}

.btn-white > *:not(.sr-only) {
  position: relative;
  z-index: 1;
}

.menu-listitem__text.btn-white::before {
  content: var(--tw-content) !important;
  z-index: -10 !important;
}

.btn-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-white:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.animation-btn {
  position: relative;
  z-index: 10;
  overflow: clip;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 600ms;
}

.animation-btn::before {
  position: absolute;
  inset: 0px;
  z-index: -10;
  height: calc(100% + 2px);
  width: 100%;
  --tw-translate-y: calc(100% + 1px);
  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));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 600ms;
  content: var(--tw-content);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.animation-btn:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.animation-btn:hover::before {
  content: var(--tw-content);
  --tw-translate-y: 0px;
  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));
}

.animation-btn-search > *,
	.animation-btn > *:not(.sr-only),
	.animation-btn-group > *:not(.sr-only) {
  position: relative;
  z-index: 1;
}

.link {
  position: relative;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  text-decoration-line: none;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.link::before {
  transform-origin: left;
  content: var(--tw-content);
  --tw-scale-x: 0;
  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));
}

.link::after {
  transform-origin: right;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.link:hover {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.link:hover::before {
  --tw-scale-x: 1;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.link:hover::after {
  --tw-scale-x: 0;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0s;
}

.link::before,
	.link::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  height: 1px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  opacity: 0;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-content: "";
  content: var(--tw-content);
}

.link-white {
  position: relative;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-decoration-line: none;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.link-white::before {
  transform-origin: left;
  content: var(--tw-content);
  --tw-scale-x: 0;
  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));
}

.link-white::after {
  transform-origin: right;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.link-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.link-white:hover::before {
  --tw-scale-x: 1;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.link-white:hover::after {
  --tw-scale-x: 0;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0s;
}

.link-white::before,
	.link-white::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  height: 1px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  opacity: 0;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-content: "";
  content: var(--tw-content);
}

.flip-card {
  position: relative;
}

.flip-card:hover {
  transform: rotateY(180deg);
}

.flip-card .back {
  position: absolute;
  inset: 0px;
  z-index: 1;
  width: 100%;
  opacity: 0;
}

.flip-card:hover .back {
  opacity: 1;
  transform: rotateY(180deg);
}

.with-shape {
  position: relative;
}

.with-shape::before {
  pointer-events: none;
  position: absolute;
  bottom: -39px;
  left: -235px;
  z-index: -1;
  display: block;
  height: 220px;
  width: 397px;
  --tw-content: "";
  content: var(--tw-content);
}

@media (min-width: 768px) {
  .with-shape::before {
    bottom: -48px;
    left: -358px;
    height: 359px;
    width: 645px;
  }
}

@media (min-width: 1280px) {
  .with-shape::before {
    bottom: -5rem;
    left: -682px;
    height: 690px;
    width: 1240px;
  }
}

.with-shape::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1240 690'%3E%3Cpath fill='%23D3E9E7' d='m0 617.627 1179.17 72.378L1240 435.061 0 .005v617.622Z'/%3E%3C/svg%3E");
}

/**
 * Custom styles to immediately follow Tailwind’s `utilities` layer
 *
 * Add your own utility classes to this theme. Complex utility classes should
 * be added using Tailwind’s plugin system:
 *
 * https://tailwindcss.com/docs/plugins#adding-utilities
 */

.o-container {
  padding-left: calc((100vw - var(--container-size)) / 2);
  overflow: hidden;
}

@media not all and (min-width: 768px) {
  .o-container {
    padding-left: 30px;
  }
}

.incubated-project-template-default main, .operator-template-default main {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 480px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 480px;
  }
}

@media (min-width: 768px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 768px;
  }
}

@media (min-width: 976px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 976px;
  }
}

@media (min-width: 1280px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 1280px;
  }
}

@media (min-width: 1440px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 1440px;
  }
}

@media (min-width: 1920px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 1920px;
  }
}

@media (min-width: 2500px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 2500px;
  }
}

.incubated-project-template-default main, .operator-template-default main {
  position: relative;
}

@media not all and (min-width: 768px) {
  .incubated-project-template-default main, .operator-template-default main {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 480px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 480px;
  }
}

@media (min-width: 768px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 644px;
  }
}

@media (min-width: 976px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 960px;
  }
}

@media (min-width: 1280px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 1200px;
  }
}

@media (min-width: 1440px) {
  .incubated-project-template-default main, .operator-template-default main {
    max-width: 1290px;
  }
}

.cycle-cta .incubated-project-template-default main::before,.cycle-cta  .operator-template-default main::before {
  pointer-events: none;
  position: absolute;
  bottom: -39px;
  left: -235px;
  z-index: -1;
  display: block;
  height: 220px;
  width: 397px;
  --tw-content: "";
  content: var(--tw-content);
}

@media (min-width: 768px) {
  .cycle-cta .incubated-project-template-default main::before,.cycle-cta  .operator-template-default main::before {
    bottom: -48px;
    left: -358px;
    height: 359px;
    width: 645px;
  }
}

@media (min-width: 1280px) {
  .cycle-cta .incubated-project-template-default main::before,.cycle-cta  .operator-template-default main::before {
    bottom: -5rem;
    left: -605px;
    height: 690px;
    width: 1240px;
  }
}

.cycle-cta .incubated-project-template-default main::before,.cycle-cta  .operator-template-default main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1240 690'%3E%3Cpath fill='%23F6F6F6' d='m0 617.627 1179.17 72.378L1240 435.061 0 .005v617.622Z'/%3E%3C/svg%3E");
}

@media (min-width: 1280px) {
  .cycle-cta-r .incubated-project-template-default main::before,.cycle-cta-r  .operator-template-default main::before {
    left: auto;
    right: -625px;
    --tw-scale-x: -1;
    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));
  }

  .incubated-project-template-default main, .operator-template-default main {
    padding-top: 180px;
  }
}

.hero {
  position: relative;
}

.hero::before {
  pointer-events: none;
  position: absolute;
  top: 0px;
  z-index: -1;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(244 15 61 / var(--tw-bg-opacity));
  --tw-content: "";
  content: var(--tw-content);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 78%, 0% 92%);
          clip-path: polygon(0 0, 100% 0, 100% 78%, 0% 92%);
}

@media (min-width: 768px) {
  .hero::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 75%);
            clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 75%)
  }
}

@media (min-width: 1200px) {
  .hero::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 40%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 40%, 0% 100%)
  }
}

.hero-tertiary {
  position: relative;
}

.hero-tertiary::before {
  pointer-events: none;
  position: absolute;
  top: 0px;
  z-index: -1;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(244 15 61 / var(--tw-bg-opacity));
  --tw-content: "";
  content: var(--tw-content);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 93%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 93%);
}

@media (min-width: 768px) {
  .hero-tertiary::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 95%);
            clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 95%)
  }
}

@media (min-width: 1200px) {
  .hero-tertiary::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 84%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 84%, 0% 100%)
  }
}

.cycle-cta {
  position: relative;
}

.cycle-cta .container::before {
  pointer-events: none;
  position: absolute;
  bottom: -39px;
  left: -235px;
  z-index: -1;
  display: block;
  height: 220px;
  width: 397px;
  --tw-content: "";
  content: var(--tw-content);
}

@media (min-width: 768px) {
  .cycle-cta .container::before {
    bottom: -48px;
    left: -358px;
    height: 359px;
    width: 645px;
  }
}

@media (min-width: 1280px) {
  .cycle-cta .container::before {
    bottom: -5rem;
    left: -605px;
    height: 690px;
    width: 1240px;
  }
}

.cycle-cta .container::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1240 690'%3E%3Cpath fill='%23F6F6F6' d='m0 617.627 1179.17 72.378L1240 435.061 0 .005v617.622Z'/%3E%3C/svg%3E");
}

@media (min-width: 1280px) {
  .cycle-cta-r .container::before {
    left: auto;
    right: -625px;
    --tw-scale-x: -1;
    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));
  }
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: 0;
}

.infographic {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 1200px) {
  .infographic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  }
}

.infographic::after {
  position: absolute;
  left: 0px;
  right: 0px;
  z-index: -1;
  display: block;
  height: 100%;
  width: 3px;
  --tw-bg-opacity: 1;
  background-color: rgb(175 198 196 / var(--tw-bg-opacity));
  --tw-content: "";
  content: var(--tw-content);
}

@media not all and (min-width: 1280px) {
  .infographic::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1280px) {
  .infographic::after {
    height: 3px;
    width: 100%;
  }
}

.infographic-input {
  min-height: 40px;
}

.infographic-marker {
  width: 64px;
  height: 22px;
  position: relative;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 12'%3E%3Ccircle cx='31.967' cy='6' r='5' fill='%23fff' stroke='%23AFC6C4' stroke-width='2' transform='rotate(90 31.967 6)'/%3E%3Cpath stroke='%23AFC6C4' stroke-linecap='round' d='M62.967 6h-25'/%3E%3C/svg%3E");
  background-size: 64px 22px;
  background-position: center;
  z-index: 2;
}

.infographic-input:nth-child(even) .infographic-marker {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 12'%3E%3Cpath stroke='%23AFC6C4' stroke-linecap='round' d='M25.967 6h-25'/%3E%3Ccircle cx='31.967' cy='6' r='5' fill='%23fff' stroke='%23AFC6C4' stroke-width='2' transform='rotate(90 31.967 6)'/%3E%3C/svg%3E");
}

.infographic-input--highlight .infographic-marker {
  outline: 2px white solid;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 22'%3E%3Ccircle cx='32.033' cy='11' r='11' fill='%23fff' transform='rotate(90 32.033 11)'/%3E%3Ccircle cx='31.967' cy='11' r='6' fill='%23F40F3D' transform='rotate(90 31.967 11)'/%3E%3Cpath stroke='%23F40F3D' stroke-linecap='round' d='M62.967 11h-25'/%3E%3C/svg%3E");
}

.infographic-input:nth-child(even).infographic-input--highlight
	.infographic-marker {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 22'%3E%3Ccircle cx='32.033' cy='11' r='11' fill='%23fff' transform='rotate(90 32.033 11)'/%3E%3Cpath stroke='%23F40F3D' stroke-linecap='round' d='M25.967 11h-25'/%3E%3Ccircle cx='31.967' cy='11' r='6' fill='%23F40F3D' transform='rotate(90 31.967 11)'/%3E%3C/svg%3E");
}

@media (min-width: 1200px) {
  .infographic-marker {
    width: 12px;
    height: 64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 64'%3E%3Ccircle cx='6' cy='32.033' r='5' fill='%23fff' stroke='%23AFC6C4' stroke-width='2'/%3E%3Cpath stroke='%23AFC6C4' stroke-linecap='round' d='M6 1.033v25'/%3E%3C/svg%3E");
    background-size: 22px 64px;
  }

  .infographic-input:nth-child(even) .infographic-marker {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 13 64'%3E%3Cpath stroke='%23AFC6C4' stroke-linecap='round' d='M6.5 38.033v25'/%3E%3Ccircle cx='6.5' cy='32.033' r='5' fill='%23fff' stroke='%23AFC6C4' stroke-width='2'/%3E%3C/svg%3E");
  }

  .infographic-input--highlight .infographic-marker {
    outline: 5px white solid;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 22 64'%3E%3Ccircle cx='11' cy='31.967' r='11' fill='%23fff'/%3E%3Ccircle cx='11' cy='32.033' r='6' fill='%23F40F3D'/%3E%3Cpath stroke='%23F40F3D' stroke-linecap='round' d='M11 1.033v25'/%3E%3C/svg%3E");
  }

  .infographic-input:nth-child(even).infographic-input--highlight
		.infographic-marker {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 23 64'%3E%3Ccircle cx='11.5' cy='31.967' r='11' fill='%23fff'/%3E%3Cpath stroke='%23F40F3D' stroke-linecap='round' d='M11.5 38.033v25'/%3E%3Ccircle cx='11.5' cy='32.033' r='6' fill='%23F40F3D'/%3E%3C/svg%3E");
  }
}

@media (min-width: 768px) {
  .infographic-marker span {
    width: 85px;
  }
}

.infographic-marker span {
  position: absolute;
  left: calc(100% + 10px);
  margin: auto;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  min-height: 30px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: -0.28px;
  color: #AFC6C4;
}

.infographic-marker--highlight span {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.infographic-input:nth-child(even) .infographic-marker span {
  left: auto;
  right: calc(100% + 10px);
  text-align: right;
}

@media (min-width: 1200px) {
  .infographic-marker span {
    position: absolute;
    justify-content: flex-end;
    left: auto;
    top: -36px;
  }

  .infographic-input:nth-child(even) .infographic-marker span {
    justify-content: flex-start;
    top: 66px;
    right: auto;
    text-align: left;
  }
}

.deadline {
  width: 176px;
  height: 176px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.deadline:before {
  content: "";
  position: absolute;
  width: 176px;
  height: 176px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 176 176'%3E%3Cpath fill='%23FFE6EC' d='M97.062 2.589c9.075-4.65 20.213-1.675 25.75 6.9A19.913 19.913 0 0 0 138.5 18.55c10.187.513 18.337 8.663 18.85 18.85a19.84 19.84 0 0 0 9.062 15.687c8.575 5.538 11.55 16.663 6.9 25.75a19.894 19.894 0 0 0 0 18.125c4.65 9.075 1.675 20.212-6.9 25.75a19.912 19.912 0 0 0-9.062 15.687c-.513 10.188-8.663 18.338-18.85 18.85a19.843 19.843 0 0 0-15.688 9.063c-5.537 8.575-16.662 11.55-25.75 6.9a19.888 19.888 0 0 0-18.124 0c-9.075 4.65-20.213 1.675-25.75-6.9A19.912 19.912 0 0 0 37.5 157.25c-10.187-.512-18.337-8.662-18.85-18.85a19.84 19.84 0 0 0-9.062-15.687c-8.575-5.538-11.55-16.662-6.9-25.75a19.891 19.891 0 0 0 0-18.125c-4.65-9.075-1.675-20.212 6.9-25.75a19.912 19.912 0 0 0 9.062-15.687c.513-10.188 8.663-18.338 18.85-18.85a19.841 19.841 0 0 0 15.688-9.062c5.55-8.575 16.675-11.55 25.762-6.9a19.891 19.891 0 0 0 18.125 0h-.013Z' /%3E%3Cpath stroke='%23fff' stroke-miterlimit='10' d='M96.475 8.214c8.487-4.35 18.875-1.563 24.05 6.45a18.57 18.57 0 0 0 14.662 8.462c9.513.475 17.125 8.087 17.6 17.6a18.59 18.59 0 0 0 8.462 14.662c8 5.175 10.788 15.563 6.45 24.05a18.542 18.542 0 0 0 0 16.925c4.35 8.487 1.563 18.875-6.45 24.05a18.57 18.57 0 0 0-8.462 14.662c-.475 9.513-8.087 17.125-17.6 17.6a18.588 18.588 0 0 0-14.662 8.463c-5.175 8-15.563 10.787-24.05 6.45a18.542 18.542 0 0 0-16.925 0c-8.487 4.35-18.875 1.562-24.05-6.45a18.57 18.57 0 0 0-14.662-8.463c-9.513-.475-17.125-8.087-17.6-17.6a18.59 18.59 0 0 0-8.463-14.662c-8-5.175-10.787-15.563-6.45-24.05a18.542 18.542 0 0 0 0-16.925c-4.35-8.487-1.562-18.875 6.45-24.05a18.57 18.57 0 0 0 8.463-14.662c.475-9.513 8.087-17.125 17.6-17.6A18.59 18.59 0 0 0 55.5 14.663c5.175-8 15.563-10.787 24.05-6.45a18.542 18.542 0 0 0 16.925 0Z' /%3E%3C/svg%3E");
  -webkit-animation-name: spin;
  -webkit-animation-duration: 10000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 10000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 10000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 10000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

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

.two-shapes .shapes-inner {
  position: relative;
}

.two-shapes .shapes-inner::before,
.two-shapes .shapes-inner::after {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  background-repeat: no-repeat;
}

.two-shapes .shapes-inner::before {
  bottom: -40px;
  left: -225px;
  height: 297px;
  width: 430px;
}

@media (min-width: 768px) {
  .two-shapes .shapes-inner::before {
    bottom: -50px;
    left: -418px;
    height: 483px;
    width: 698px;
  }
}

@media (min-width: 1280px) {
  .two-shapes .shapes-inner::before {
    bottom: -80px;
    left: -603px;
    height: 931px;
    width: 1344px;
  }
}

.two-shapes .shapes-inner::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1344 931'%3E%3Cpath fill='%23FFE6EC' d='m0 887.954 1263.5 42.138c31.05-138.14 49.01-215.464 80.5-353.5L0 0v887.954Z'/%3E%3C/svg%3E");
}

.two-shapes .shapes-inner::after {
  right: -235px;
  top: -150px;
  height: 289px;
  width: 314px;
}

@media (min-width: 768px) {
  .two-shapes .shapes-inner::after {
    right: -418px;
    top: -68px;
    height: 340px;
    width: 510px;
  }
}

@media (min-width: 1280px) {
  .two-shapes .shapes-inner::after {
    right: -605px;
    top: -52px;
    height: 655px;
    width: 982px;
  }
}

.two-shapes .shapes-inner::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 982 655'%3E%3Cpath fill='%23D3E9E7' d='M982 0 27.45 94.094.202 249.358 982 654.09V0Z'/%3E%3C/svg%3E");
}

.two-shapes-r .shapes-inner::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1344 931'%3E%3Cpath fill='%23D3E9E7' d='m0 887.954 1263.5 42.138c31.05-138.14 49.01-215.464 80.5-353.5L0 0v887.954Z'/%3E%3C/svg%3E");
}

.two-shapes-r .shapes-inner::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 982 655'%3E%3Cpath fill='%23FFE6EC' d='M982 0 27.45 94.094.202 249.358 982 654.09V0Z'/%3E%3C/svg%3E");
}

.video {
  position: relative;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.video::after {
  pointer-events: none;
  position: absolute;
  inset: 0px;
  margin: auto;
  height: 76px;
  width: 76px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  --tw-content: "";
  content: var(--tw-content);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 76 76'%3E%3Crect width='62' height='62' x='7' y='7' fill='%23F40F3D' rx='31'/%3E%3Crect width='69' height='69' x='3.5' y='3.5' stroke='%23fff' stroke-opacity='.3' stroke-width='7' rx='34.5'/%3E%3Cpath fill='%23fff' d='M31 44.287v-12.57c0-2.843 3.144-4.63 5.682-3.23l11.388 6.285a3.666 3.666 0 0 1 0 6.457l-11.388 6.285c-2.538 1.4-5.682-.387-5.682-3.23v.003Z'/%3E%3C/svg%3E");
}

.playpause {
  position: absolute;
  inset: 0px;
  margin: auto;
  height: 134px;
  width: 134px;
  cursor: pointer;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTM0IiBoZWlnaHQ9IjEzNCIgdmlld0JveD0iMCAwIDEzNCAxMzQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHg9IjciIHk9IjciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiByeD0iNjAiIGZpbGw9IiNGNDBGM0QiLz4KPHJlY3QgeD0iMy41IiB5PSIzLjUiIHdpZHRoPSIxMjciIGhlaWdodD0iMTI3IiByeD0iNjMuNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLW9wYWNpdHk9IjAuMyIgc3Ryb2tlLXdpZHRoPSI3Ii8+CjxwYXRoIGQ9Ik02MCA3My4yODY3VjYwLjcxNzFDNjAgNTcuODczNyA2My4xNDQgNTYuMDg3MiA2NS42ODI0IDU3LjQ4NjNMNzcuMDcwMiA2My43NzExQzc5LjY0MzMgNjUuMTkyOCA3OS42NDMzIDY4LjgwNzIgNzcuMDcwMiA3MC4yMjg5TDY1LjY4MjQgNzYuNTEzN0M2My4xNDQgNzcuOTEyOCA2MCA3Ni4xMjYzIDYwIDczLjI4MjlWNzMuMjg2N1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
}

.video:hover {
  --tw-translate-y: -15px;
  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));
}

.video:hover img {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  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));
}

.video:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 76 76'%3E%3Crect width='62' height='62' x='7' y='7' fill='%23004C47' rx='31'/%3E%3Crect width='69' height='69' x='3.5' y='3.5' stroke='%23fff' stroke-opacity='.3' stroke-width='7' rx='34.5'/%3E%3Cpath fill='%23fff' d='M31 44.287v-12.57c0-2.843 3.144-4.63 5.682-3.23l11.388 6.285a3.666 3.666 0 0 1 0 6.457l-11.388 6.285c-2.538 1.4-5.682-.387-5.682-3.23v.003Z'/%3E%3C/svg%3E");
}

video[poster] {
  width: 100vw;
}

/*
video[poster]::after {
	@apply absolute inset-0 m-auto h-[76px] w-[76px] transition duration-300 content-[""];
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 76 76'%3E%3Crect width='62' height='62' x='7' y='7' fill='%23F40F3D' rx='31'/%3E%3Crect width='69' height='69' x='3.5' y='3.5' stroke='%23fff' stroke-opacity='.3' stroke-width='7' rx='34.5'/%3E%3Cpath fill='%23fff' d='M31 44.287v-12.57c0-2.843 3.144-4.63 5.682-3.23l11.388 6.285a3.666 3.666 0 0 1 0 6.457l-11.388 6.285c-2.538 1.4-5.682-.387-5.682-3.23v.003Z'/%3E%3C/svg%3E");
}
*/

ul.checklist {
  list-style: none;
  padding-left: 0;
}

ul.checklist li {
  position: relative;
  padding-left: 38px;
}

@media (min-width: 1280px) {
  ul.checklist li {
    padding-left: 0px;
  }
}

ul.checklist li + li {
  margin-top: 20px;
}

ul.checklist li::before {
  position: absolute;
  left: 0px;
  top: 5px;
  display: block;
  height: 18px;
  width: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  --tw-content: "";
  content: var(--tw-content);
}

@media (min-width: 1280px) {
  ul.checklist li::before {
    left: -48px;
  }
}

ul.checklist li::before {
  background-image: url("img/check.png");
}

.tooltip {
  width: 245.012px;
  height: 204.91px;
  padding: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 245.012 204.912'%3E%3Cpath fill='%23004c47' d='M245.003 16.737v-8.7s.3-3.8-3.8-4.1c-36.7-2.4-74.8-2.9-111.5-2.2-42.6.7-80.8 1.4-123.3-1.7-6.4-.5-6.4 4.3-6.4 4.3v171.2s-.3 5.8 5.4 5.9c15.2.1 31.9-.8 46.3-5.8.4 9.3.9 18.6 4 27.4.9 2.4 4.3 2.6 5.1 0 2.8-9.2 5.3-18.5 7.7-27.8l17.3.5c26.1 1.4 52.3 2.7 78.4 3.4 26.1.7 52.2-2.3 78.2-2.3 2.9 0 2.6-2.8 2.6-2.8v-157.3z'/%3E%3C/svg%3E");
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 15px;
  line-height: 18px;
  letter-spacing: -0.32px;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  @media not all and (min-width: 1280px) {
    .footer-menu {
      margin-left: auto;
      margin-right: auto;
      max-width: 80%;
    }
  }
}

@media (min-width: 1280px) {
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.wp-block-table table {
  margin-bottom: 35px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.wp-block-table table th,
.wp-block-table table td {
  margin-bottom: 35px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(211 233 231 / var(--tw-border-opacity));
  padding: 0.75rem;
  text-align: justify;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

@media (min-width: 1280px) {
  .wp-block-table table th,
.wp-block-table table td {
    margin-bottom: 35px;
  }
}

header .current-menu-ancestor > a,
header li.active > a {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.loader {
  width: 150vw;
  height: 100vh;
  left: -25vw;
  position: fixed;
  background-color: #ffe6ec;
  z-index: 50;
  animation-duration: 300ms;
  animation-name: slideOut;
  animation-timing-function: ease-out;
  transform: translateY(-100%);
}

.loading .loader {
  animation-duration: 600ms;
  animation-name: slideIn;
  transform: translateY(0%);
  animation-timing-function: ease-in;
}

@keyframes slideOut {
  from {
    transform: translateY(0%);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    border-radius: 100%;
  }

  to {
    transform: translateY(0%);
    border-radius: 0%;
  }
}

.bannerTop{
  min-height: 50px;
  padding: 15px 0;
  height: auto;
  transition: background-color 400ms linear;
}

.bannerTop .swiper-slide{
  backface-visibility: hidden;
}

.bannerTop .swiper-slide p{
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .bannerTop p{
    font-size: 13px;
  }
}

.swiper-simple-init .swiper-slide{
  padding: 0 45px;
  text-align: center;
}

.swiper-simple-init .swiper-button{
  position: absolute;
  top: calc(50% - 10px);
  z-index: 9;
  cursor: pointer;
}

.swiper-simple-init .swiper-button-next{
  right: 0;
}

/**
 * Custom styles to immediately follow Tailwind’s `components` layer
 *
 * “Add more opinionated, complex classes like buttons, form controls, alerts,
 * etc; the sort of pre-built components you often see in other frameworks that
 * you might need to override with utility classes.”
 *
 */

/**
 * Post title styles
 *
 * These will be applied to all headings with a `page-title` or `entry-title`
 * class on the frontend and to the post title in the block editor.
 *
 * The supplied styles are meant to match the default `h1` classes from
 * Tailwind Typography.
 */

.page-title,
.entry-title {
  /* @apply max-w-content mx-auto mb-6 text-3xl font-extrabold text-neutral-900; */
}

/**
 * Layout styles for centered content areas
 *
 * If you are controlling the width of your content area with styles applied
 * to its container, you can delete the following styles whose selectors begin
 * with `.page-content >` and `.entry-content >`. For more details, please see
 * the following:
 *
 * https://make.wordpress.org/core/2021/06/29/on-layout-and-content-width-in-wordpress-5-8/
 */

.entry-content .is-layout-flow > .alignleft {
  float: left;
  margin-right: 2rem;
}

.entry-content .is-layout-flow > .alignright {
  float: right;
  margin-left: 2rem;
}

.entry-content p {
  margin-bottom: 35px;
  text-align: justify;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

@media (min-width: 1280px) {
  .entry-content p {
    margin-bottom: 35px;
  }
}

.entry-content p.is-style-lead,
.entry-content p.medium {
  font-size: 22px;
  line-height: 1.75rem;
  letter-spacing: -0.44px;
}

/* .entry-content blockquote {
	@apply my-10 border-l-2 pl-[30px]  text-[25px] font-medium leading-[30px] md:my-[32px] md:pl-[50px];
}
.entry-content blockquote p {
	@apply mb-0 leading-[30px];
} */

.entry-content > *:last-child {
  margin-bottom: 0px;
}

.entry-content .is-style-address {
  border-left-width: 2px;
  padding-left: 30px;
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
}

@media (min-width: 768px) {
  .entry-content .is-style-address {
    padding-left: 50px;
  }
}

/* main strong,
.entry-content .is-style-address strong {
	@apply font-semibold !important;
} */

.entry-content a:not([class]) {
  position: relative;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  text-decoration-line: none;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.entry-content a:not([class])::before {
  transform-origin: left;
  content: var(--tw-content);
  --tw-scale-x: 0;
  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));
}

.entry-content a:not([class])::after {
  transform-origin: right;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.entry-content a:not([class]):hover {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.entry-content a:not([class]):hover::before {
  --tw-scale-x: 1;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.entry-content a:not([class]):hover::after {
  --tw-scale-x: 0;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0s;
}

.entry-content a:not([class])::before,.entry-content a:not([class])::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  height: 1px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  opacity: 0;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-content: "";
  content: var(--tw-content);
}

.entry-content a.ek-link {
  position: relative;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  text-decoration-line: none;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.entry-content a.ek-link::before {
  transform-origin: left;
  content: var(--tw-content);
  --tw-scale-x: 0;
  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));
}

.entry-content a.ek-link::after {
  transform-origin: right;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.entry-content a.ek-link:hover {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.entry-content a.ek-link:hover::before {
  --tw-scale-x: 1;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.entry-content a.ek-link:hover::after {
  --tw-scale-x: 0;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0s;
}

.entry-content a.ek-link::before,.entry-content a.ek-link::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  height: 1px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  opacity: 0;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-content: "";
  content: var(--tw-content);
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

.entry-content h2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.8px;
}

@media (min-width: 768px) {
  .entry-content h2 {
    font-size: 50px;
    letter-spacing: -1px;
  }
}

@media (min-width: 1280px) {
  .entry-content h2 {
    font-size: 60px;
  }
}

.entry-content h3 {
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.7px;
}

@media (min-width: 768px) {
  .entry-content h3 {
    font-size: 48px;
    letter-spacing: -0.8px;
  }
}

@media (min-width: 1280px) {
  .entry-content h3 {
    font-size: 50px;
    letter-spacing: -1px;
  }
}

.entry-content h4 {
  margin-bottom: 30px;
  text-wrap: balance;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.6px;
}

@media (min-width: 768px) {
  .entry-content h4 {
    font-size: 35px;
    letter-spacing: -0.7px;
  }
}

@media (min-width: 1280px) {
  .entry-content h4 {
    margin-bottom: 2.5rem;
    font-size: 40px;
    letter-spacing: -0.8px;
  }
}

.entry-content h4 {
  margin-bottom: 30px;
}

@media (min-width: 1280px) {
  .entry-content h4 {
    margin-bottom: 35px;
  }
}

.entry-content h5 {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.5px;
}

@media (min-width: 1280px) {
  .entry-content h5 {
    font-size: 30px;
    letter-spacing: -0.6px;
  }
}

.entry-content h5 {
  margin-bottom: 30px;
}

@media (min-width: 1280px) {
  .entry-content h5 {
    margin-bottom: 35px;
  }
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 30px;
  margin-left: 1.5rem;
  list-style-position: outside;
  list-style-type: disc;
  text-wrap: pretty;
  text-align: left;
  line-height: 2;
}

.entry-content ul *::marker,
.entry-content ol *::marker {
  color: rgb(244 15 61 );
}

.entry-content ul::marker,
.entry-content ol::marker {
  color: rgb(244 15 61 );
}

.entry-content ul li, .entry-content ol li {
  padding-inline-start: 7px;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.entry-content ul ul,
	.entry-content ul ol,
	.entry-content ol ul,
	.entry-content ol ol {
  margin-bottom: 0px;
  margin-top: 0px;
}

@media (min-width: 768px) {
  .entry-content ul ul,
	.entry-content ul ol,
	.entry-content ol ul,
	.entry-content ol ol {
    margin-top: 5px;
  }
}

.entry-content ul ol > li::marker, .entry-content ol ol > li::marker {
  content: counters(list-item, ".") ". ";
}

.entry-content p + ul,
.entry-content p + ol {
  margin-top: -1.25rem;
}

.entry-content ol {
  list-style-type: decimal;
}

.entry-content figure {
  position: relative;
  margin-bottom: 10px;
  height: auto;
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 976px) {
  .entry-content figure {
    width: auto;
  }
}

/* .entry-content figure + figure {
	@apply mt-[-10px];
} */

.entry-content .wp-block-media-text {
  margin-bottom: 30px;
  gap: 2rem;
}

@media (min-width: 976px) {
  .entry-content .wp-block-media-text {
    display: grid;
  }
}

.entry-content figure img {
  display: block;
  height: auto;
  width: 100%;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
}

@media (min-width: 1280px) {
  .entry-content figure img {
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}

.entry-content .wp-block-media-text figure img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.entry-content figure.is-style-with-shape {
  position: relative;
  margin-bottom: 55px;
}

@media (min-width: 768px) {
  .entry-content figure.is-style-with-shape {
    margin-bottom: 65px;
  }
}

@media (min-width: 1280px) {
  .entry-content figure.is-style-with-shape {
    margin-bottom: 55px;
  }
}

.entry-content figure.is-style-with-shape::before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  display: block;
  --tw-content: "";
  content: var(--tw-content);
}

@media (min-width: 768px) {
  .entry-content figure.is-style-with-shape::before {
    bottom: -40px;
    right: -143px;
    height: 330px;
    width: 560px;
  }
}

@media (min-width: 1280px) {
  .entry-content figure.is-style-with-shape::before {
    bottom: -50px;
    right: -110px;
  }
}

.entry-content figure.is-style-with-shape::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 560 330'%3E%3Cpath fill='%23D3E9E7' d='M520.142 330.001 42.6 305.369 0 84.734 560 .001l-39.858 330Z'/%3E%3C/svg%3E");
}

.entry-content figure.alignleft,
.entry-content figure.alignright {
  margin-bottom: 20px;
}

.entry-content figure.alignleft img,
.entry-content figure.alignright img {
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
}

.entry-content figure:has(figcaption) img {
  margin-bottom: 15px;
}

.entry-content figure figcaption {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 18px;
  letter-spacing: -0.28px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.entry-content figure.with-shape {
  margin-bottom: 50px;
}

.entry-content figure.with-shape::after {
  pointer-events: none;
  position: absolute;
  bottom: -30px;
  right: -110px;
  z-index: -1;
  height: 210px;
  width: 356px;
}

@media (min-width: 768px) {
  .entry-content figure.with-shape::after {
    bottom: -50px;
    height: 330px;
    width: 560px;
  }
}

.entry-content figure.with-shape::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 560 330'%3E%3Cpath fill='%23D3E9E7' d='M520.142 330.001 42.6 305.369 0 84.734 560 .001l-39.858 330Z'/%3E%3C/svg%3E");
}

.entry-content .wp-block-image {
  /*max-width: 50%;*/
}

.entry-content iframe {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
  border-width: 0px;
  border-style: none;
}

.entry-content .iframe {
  position: relative;
  margin-bottom: 80px;
}

.entry-content .iframe::after {
  pointer-events: none;
  position: absolute;
  bottom: -30px;
  right: -110px;
  z-index: -1;
  height: 210px;
  width: 356px;
}

@media (min-width: 768px) {
  .entry-content .iframe::after {
    bottom: -50px;
    height: 330px;
    width: 560px;
  }
}

.entry-content .iframe::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 560 330'%3E%3Cpath fill='%23D3E9E7' d='M520.142 330.001 42.6 305.369 0 84.734 560 .001l-39.858 330Z'/%3E%3C/svg%3E");
}

.entry-content .wp-block-gallery {
  margin-bottom: 30px;
  display: grid;
  cursor: pointer;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 1280px) {
  .entry-content .wp-block-gallery {
    margin-bottom: 55px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
}

.entry-content .wp-block-gallery figure {
  margin-bottom: 0px;
}

@media not all and (min-width: 1280px) {
  .entry-content .wp-block-gallery figure {
    grid-column: span 2 / span 2;
  }
}

.entry-content .wp-block-gallery figure:first-child {
  grid-column: span 4 / span 4;
}

@media (min-width: 1280px) {
  .entry-content .wp-block-gallery figure:first-child {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
  }
}

.entry-content .wp-block-gallery figure img {
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
}

.entry-content .wp-block-gallery figure:nth-child(3)::after {
  pointer-events: none;
  position: absolute;
  inset: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -1px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  content: "+" attr(data-elements);
  background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.6) 0%,
		rgba(0, 0, 0, 0.6) 100%
	);
}

.entry-content .wp-block-gallery figure:nth-child(1n + 4) {
  display: none;
}

.entry-content .schedule h4 {
  margin-bottom: 0px;
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

@media not all and (min-width: 1280px) {
  .max-xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .max-xl\:container {
      max-width: 480px;
    }
  }

  .max-xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .max-xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .max-xl\:container {
      max-width: 768px;
    }
  }

  .max-xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .max-xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .max-xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 976px) {
    .max-xl\:container {
      max-width: 976px;
    }
  }

  .max-xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .max-xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .max-xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 976px) {
    .max-xl\:container {
      max-width: 976px;
    }
  }

  @media (min-width: 1280px) {
    .max-xl\:container {
      max-width: 1280px;
    }
  }

  .max-xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .max-xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .max-xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 976px) {
    .max-xl\:container {
      max-width: 976px;
    }
  }

  @media (min-width: 1280px) {
    .max-xl\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1440px) {
    .max-xl\:container {
      max-width: 1440px;
    }
  }

  .max-xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .max-xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .max-xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 976px) {
    .max-xl\:container {
      max-width: 976px;
    }
  }

  @media (min-width: 1280px) {
    .max-xl\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1440px) {
    .max-xl\:container {
      max-width: 1440px;
    }
  }

  @media (min-width: 1920px) {
    .max-xl\:container {
      max-width: 1920px;
    }
  }

  .max-xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .max-xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .max-xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 976px) {
    .max-xl\:container {
      max-width: 976px;
    }
  }

  @media (min-width: 1280px) {
    .max-xl\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1440px) {
    .max-xl\:container {
      max-width: 1440px;
    }
  }

  @media (min-width: 1920px) {
    .max-xl\:container {
      max-width: 1920px;
    }
  }

  @media (min-width: 2500px) {
    .max-xl\:container {
      max-width: 2500px;
    }
  }
}

@media (min-width: 768px) {
  .md\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .md\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .md\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 976px) {
    .md\:container {
      max-width: 976px;
    }
  }

  @media (min-width: 1280px) {
    .md\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1440px) {
    .md\:container {
      max-width: 1440px;
    }
  }

  @media (min-width: 1920px) {
    .md\:container {
      max-width: 1920px;
    }
  }

  @media (min-width: 2500px) {
    .md\:container {
      max-width: 2500px;
    }
  }
}

@media (min-width: 1280px) {
  .xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 976px) {
    .xl\:container {
      max-width: 976px;
    }
  }

  @media (min-width: 1280px) {
    .xl\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1440px) {
    .xl\:container {
      max-width: 1440px;
    }
  }

  @media (min-width: 1920px) {
    .xl\:container {
      max-width: 1920px;
    }
  }

  @media (min-width: 2500px) {
    .xl\:container {
      max-width: 2500px;
    }
  }
}

.placeholder\:text-green::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.placeholder\:text-green::placeholder {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.before\:bg-green-light::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(211 233 231 / var(--tw-bg-opacity));
}

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:bottom-\[-1px\]::after {
  content: var(--tw-content);
  bottom: -1px;
}

.after\:w-full::after {
  content: var(--tw-content);
  width: 100%;
}

.after\:border-b-\[3px\]::after {
  content: var(--tw-content);
  border-bottom-width: 3px;
}

.after\:border-transparent::after {
  content: var(--tw-content);
  border-color: transparent;
}

.after\:transition::after {
  content: var(--tw-content);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.after\:duration-300::after {
  content: var(--tw-content);
  transition-duration: 300ms;
}

.first\:pt-0:first-child {
  padding-top: 0px;
}

.last\:pb-0:last-child {
  padding-bottom: 0px;
}

.checked\:border-primary:checked {
  --tw-border-opacity: 1;
  border-color: rgb(244 15 61 / var(--tw-border-opacity));
}

.checked\:bg-red:checked {
  --tw-bg-opacity: 1;
  background-color: rgb(244 15 61 / var(--tw-bg-opacity));
}

.checked\:before\:bg-red:checked::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(244 15 61 / var(--tw-bg-opacity));
}

.focus-within\:z-10:focus-within {
  z-index: 10;
}

.hover\:z-\[1\]:hover {
  z-index: 1;
}

.hover\:translate-y-\[-15px\]:hover {
  --tw-translate-y: -15px;
  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));
}

.hover\:border-green-ultra-light:hover {
  --tw-border-opacity: 1;
  border-color: rgb(240 247 247 / var(--tw-border-opacity));
}

.hover\:bg-green:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
}

.hover\:bg-green-light:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(211 233 231 / var(--tw-bg-opacity));
}

.hover\:bg-green-ultra-light:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 247 / var(--tw-bg-opacity));
}

.hover\:text-green:hover {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.hover\:text-primary:hover {
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
}

.hover\:outline-green:hover {
  outline-color: #004C47;
}

.hover\:after\:border-green:hover::after {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(0 76 71 / var(--tw-border-opacity));
}

.focus\:text-green:focus {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:after\:border-green:focus::after {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(0 76 71 / var(--tw-border-opacity));
}

.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus-visible\:ring-1:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.group:hover .group-hover\:pointer-events-auto {
  pointer-events: auto;
}

.group:hover .group-hover\:visible {
  visibility: visible;
}

.group:hover .group-hover\:invisible {
  visibility: hidden;
}

.group:hover .group-hover\:block {
  display: block;
}

.group:hover .group-hover\:hidden {
  display: none;
}

.group:hover .group-hover\:-rotate-90 {
  --tw-rotate: -90deg;
  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));
}

.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  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));
}

.group:hover .group-hover\:border-current {
  border-color: currentColor;
}

.group:hover .group-hover\:border-green {
  --tw-border-opacity: 1;
  border-color: rgb(0 76 71 / var(--tw-border-opacity));
}

.group:hover .group-hover\:bg-green {
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-ultra-light {
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 247 / var(--tw-bg-opacity));
}

.group:hover .group-hover\:fill-green-medium {
  fill: #AFC6C4;
}

.group:hover .group-hover\:text-green {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.group:hover .group-hover\:opacity-0 {
  opacity: 0;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group.is-active .group-\[\&\.is-active\]\:pointer-events-auto {
  pointer-events: auto;
}

.group.is-active .group-\[\.is-active\]\:block {
  display: block;
}

.group.is-active .group-\[\.is-active\]\:hidden {
  display: none;
}

.group.is-active .group-\[\&\.is-active\]\:rotate-180 {
  --tw-rotate: 180deg;
  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));
}

.group.is-active .group-\[\&\.is-active\]\:rounded-b-none {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.group.is-active .group-\[\&\.is-active\]\:opacity-100 {
  opacity: 1;
}

.group.visible .group-\[\.visible\]\:opacity-100 {
  opacity: 1;
}

.peer:checked ~ .peer-checked\:opacity-100 {
  opacity: 1;
}

@media not all and (min-width: 1280px) {
  .max-xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .max-xl\:mb-\[-45px\] {
    margin-bottom: -45px;
  }

  .max-xl\:mb-\[30px\] {
    margin-bottom: 30px;
  }

  .max-xl\:mt-10 {
    margin-top: 2.5rem;
  }

  .max-xl\:mt-\[-45px\] {
    margin-top: -45px;
  }

  .max-xl\:mt-\[15px\] {
    margin-top: 15px;
  }

  .max-xl\:mt-\[20px\] {
    margin-top: 20px;
  }

  .max-xl\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }

  .max-xl\:w-full {
    width: 100%;
  }

  .max-xl\:max-w-\[250px\] {
    max-width: 250px;
  }

  .max-xl\:basis-1\/2 {
    flex-basis: 50%;
  }

  .max-xl\:basis-\[330px\] {
    flex-basis: 330px;
  }

  .max-xl\:translate-y-\[50px\] {
    --tw-translate-y: 50px;
    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));
  }

  .max-xl\:items-center {
    align-items: center;
  }

  .max-xl\:gap-\[10px\] {
    gap: 10px;
  }

  .max-xl\:divide-y > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  }

  .max-xl\:self-end {
    align-self: flex-end;
  }

  .max-xl\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .max-xl\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .max-xl\:border {
    border-width: 1px;
  }

  .max-xl\:border-y-2 {
    border-top-width: 2px;
    border-bottom-width: 2px;
  }

  .max-xl\:border-t {
    border-top-width: 1px;
  }

  .max-xl\:border-green-light {
    --tw-border-opacity: 1;
    border-color: rgb(211 233 231 / var(--tw-border-opacity));
  }

  .max-xl\:border-green-medium {
    --tw-border-opacity: 1;
    border-color: rgb(175 198 196 / var(--tw-border-opacity));
  }

  .max-xl\:pb-\[30px\] {
    padding-bottom: 30px;
  }

  .max-xl\:pl-\[65px\] {
    padding-left: 65px;
  }

  .max-xl\:pt-\[100px\] {
    padding-top: 100px;
  }

  .max-xl\:pt-\[25px\] {
    padding-top: 25px;
  }

  .max-xl\:text-center {
    text-align: center;
  }

  .max-xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 480px) {
    .max-xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .max-xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 976px) {
    .max-xl\:container {
      max-width: 976px;
    }
  }

  @media (min-width: 1280px) {
    .max-xl\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1440px) {
    .max-xl\:container {
      max-width: 1440px;
    }
  }

  @media (min-width: 1920px) {
    .max-xl\:container {
      max-width: 1920px;
    }
  }

  @media (min-width: 2500px) {
    .max-xl\:container {
      max-width: 2500px;
    }
  }

  @media not all and (min-width: 768px) {
    .max-xl\:container {
      padding-left: 30px;
      padding-right: 30px;
    }
  }

  @media (min-width: 480px) {
    .max-xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .max-xl\:container {
      max-width: 644px;
    }
  }

  @media (min-width: 976px) {
    .max-xl\:container {
      max-width: 960px;
    }
  }

  @media (min-width: 1280px) {
    .max-xl\:container {
      max-width: 1200px;
    }
  }

  @media (min-width: 1440px) {
    .max-xl\:container {
      max-width: 1290px;
    }
  }

  .max-xl\:hero-secondary {
    --tw-bg-opacity: 1;
    background-color: rgb(244 15 61 / var(--tw-bg-opacity));
  }

  @media not all and (min-width: 1280px) {
    .max-xl\:hero-secondary {
      margin-top: 60px;
    }
  }

  .max-xl\:hero-secondary {
    --tw-bg-opacity: 1;
    background-color: rgb(244 15 61 / var(--tw-bg-opacity));
  }

  @media not all and (min-width: 1280px) {
    .max-xl\:hero-secondary {
      margin-top: 60px;
    }
  }

  .max-xl\:hero-secondary {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2500 200'%3E%3Cpath fill='%23fff' d='m0 0 2500 197.5V0z'/%3E%3C/svg%3E"),
			url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2500 260'%3E%3Cpath fill='%23fff' d='M2500 260V62.5L0 260z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position:
			top center,
			bottom center;
    background-size:
			2500px 100px,
			2500px 260px;
  }
}

@media not all and (min-width: 976px) {
  .max-lg\:mt-\[-50px\] {
    margin-top: -50px;
  }

  .max-lg\:mt-\[-75px\] {
    margin-top: -75px;
  }
}

@media not all and (min-width: 768px) {
  .max-md\:mx-\[30px\] {
    margin-left: 30px;
    margin-right: 30px;
  }

  .max-md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .max-md\:my-\[20px\] {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .max-md\:mt-\[-20px\] {
    margin-top: -20px;
  }

  .max-md\:mt-\[-40px\] {
    margin-top: -40px;
  }

  .max-md\:mt-\[30px\] {
    margin-top: 30px;
  }

  .max-md\:max-w-\[10ch\] {
    max-width: 10ch;
  }

  .max-md\:max-w-\[18ch\] {
    max-width: 18ch;
  }

  .max-md\:basis-\[315px\] {
    flex-basis: 315px;
  }

  .max-md\:snap-x {
    scroll-snap-type: x var(--tw-scroll-snap-strictness);
  }

  .max-md\:items-center {
    align-items: center;
  }

  .max-md\:divide-y > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  }

  .max-md\:self-end {
    align-self: flex-end;
  }

  .max-md\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .max-md\:px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px;
  }

  .max-md\:px-\[33px\] {
    padding-left: 33px;
    padding-right: 33px;
  }

  .max-md\:pb-\[30px\] {
    padding-bottom: 30px;
  }

  .max-md\:pt-\[30px\] {
    padding-top: 30px;
  }

  .max-md\:text-center {
    text-align: center;
  }
}

@media (max-width: 450px) {
  .max-\[450px\]\:flex-wrap {
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }

  .md\:bottom-\[-70px\] {
    bottom: -70px;
  }

  .md\:left-\[-20px\] {
    left: -20px;
  }

  .md\:left-\[-328px\] {
    left: -328px;
  }

  .md\:left-\[-32px\] {
    left: -32px;
  }

  .md\:right-0 {
    right: 0px;
  }

  .md\:right-\[-328px\] {
    right: -328px;
  }

  .md\:right-\[-40px\] {
    right: -40px;
  }

  .md\:right-\[-58px\] {
    right: -58px;
  }

  .md\:right-\[-73px\] {
    right: -73px;
  }

  .md\:right-\[-93px\] {
    right: -93px;
  }

  .md\:top-0 {
    top: 0px;
  }

  .md\:top-\[-10px\] {
    top: -10px;
  }

  .md\:top-\[-20px\] {
    top: -20px;
  }

  .md\:top-\[-70px\] {
    top: -70px;
  }

  .md\:top-\[40px\] {
    top: 40px;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:my-\[110px\] {
    margin-top: 110px;
    margin-bottom: 110px;
  }

  .md\:my-\[30px\] {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .md\:-mt-\[100px\] {
    margin-top: -100px;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:mb-\[10px\] {
    margin-bottom: 10px;
  }

  .md\:mb-\[110px\] {
    margin-bottom: 110px;
  }

  .md\:mb-\[120px\] {
    margin-bottom: 120px;
  }

  .md\:mb-\[20px\] {
    margin-bottom: 20px;
  }

  .md\:mb-\[30px\] {
    margin-bottom: 30px;
  }

  .md\:mb-\[40px\] {
    margin-bottom: 40px;
  }

  .md\:mb-\[50px\] {
    margin-bottom: 50px;
  }

  .md\:mb-\[60px\] {
    margin-bottom: 60px;
  }

  .md\:mb-\[80px\] {
    margin-bottom: 80px;
  }

  .md\:mb-\[90px\] {
    margin-bottom: 90px;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:mt-10 {
    margin-top: 2.5rem;
  }

  .md\:mt-\[110px\] {
    margin-top: 110px;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:min-h-\[250px\] {
    min-height: 250px;
  }

  .md\:w-\[127px\] {
    width: 127px;
  }

  .md\:w-\[147px\] {
    width: 147px;
  }

  .md\:w-\[206px\] {
    width: 206px;
  }

  .md\:w-\[241px\] {
    width: 241px;
  }

  .md\:w-\[280px\] {
    width: 280px;
  }

  .md\:w-\[50px\] {
    width: 50px;
  }

  .md\:w-\[591px\] {
    width: 591px;
  }

  .md\:w-\[60px\] {
    width: 60px;
  }

  .md\:w-\[749px\] {
    width: 749px;
  }

  .md\:w-\[86px\] {
    width: 86px;
  }

  .md\:max-w-\[18ch\] {
    max-width: 18ch;
  }

  .md\:basis-\[315px\] {
    flex-basis: 315px;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-\[30px\] {
    gap: 30px;
  }

  .md\:gap-\[50px\] {
    gap: 50px;
  }

  .md\:gap-\[60px\] {
    gap: 60px;
  }

  .md\:gap-y-\[105px\] {
    row-gap: 105px;
  }

  .md\:divide-x > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-\[40px\] {
    padding: 40px;
  }

  .md\:p-\[50px\] {
    padding: 50px;
  }

  .md\:px-\[50px\] {
    padding-left: 50px;
    padding-right: 50px;
  }

  .md\:px-\[60px\] {
    padding-left: 60px;
    padding-right: 60px;
  }

  .md\:px-\[62px\] {
    padding-left: 62px;
    padding-right: 62px;
  }

  .md\:py-\[25px\] {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .md\:py-\[50px\] {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .md\:pb-\[40px\] {
    padding-bottom: 40px;
  }

  .md\:pb-\[50px\] {
    padding-bottom: 50px;
  }

  .md\:pt-\[127px\] {
    padding-top: 127px;
  }

  .md\:pt-\[30px\] {
    padding-top: 30px;
  }

  .md\:pt-\[5px\] {
    padding-top: 5px;
  }

  .md\:text-\[22px\] {
    font-size: 22px;
  }

  .md\:text-\[25px\] {
    font-size: 25px;
  }

  @media not all and (min-width: 768px) {
    .md\:container {
      padding-left: 30px;
      padding-right: 30px;
    }
  }

  @media (min-width: 480px) {
    .md\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .md\:container {
      max-width: 644px;
    }
  }

  @media (min-width: 976px) {
    .md\:container {
      max-width: 960px;
    }
  }

  @media (min-width: 1280px) {
    .md\:container {
      max-width: 1200px;
    }
  }

  @media (min-width: 1440px) {
    .md\:container {
      max-width: 1290px;
    }
  }

  .md\:wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  @media (min-width: 480px) {
    .md\:wrapper {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .md\:wrapper {
      max-width: 644px;
    }
  }

  @media (min-width: 976px) {
    .md\:wrapper {
      max-width: 960px;
    }
  }

  @media (min-width: 1280px) {
    .md\:wrapper {
      max-width: 1100px;
    }
  }

  @media not all and (min-width: 1280px) {
    .md\:max-xl\:col-span-2 {
      grid-column: span 2 / span 2;
    }

    .md\:max-xl\:col-start-1 {
      grid-column-start: 1;
    }

    .md\:max-xl\:col-start-2 {
      grid-column-start: 2;
    }

    .md\:max-xl\:col-start-3 {
      grid-column-start: 3;
    }

    .md\:max-xl\:mx-\[62px\] {
      margin-left: 62px;
      margin-right: 62px;
    }

    .md\:max-xl\:mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .md\:max-xl\:flex {
      display: flex;
    }

    .md\:max-xl\:w-\[462px\] {
      width: 462px;
    }

    .md\:max-xl\:w-\[calc\(50\%-15px\)\] {
      width: calc(50% - 15px);
    }

    .md\:max-xl\:w-full {
      width: 100%;
    }

    .md\:max-xl\:max-w-\[227px\] {
      max-width: 227px;
    }

    .md\:max-xl\:max-w-\[414px\] {
      max-width: 414px;
    }

    .md\:max-xl\:max-w-\[424px\] {
      max-width: 424px;
    }

    .md\:max-xl\:max-w-\[460px\] {
      max-width: 460px;
    }

    .md\:max-xl\:max-w-\[462px\] {
      max-width: 462px;
    }

    .md\:max-xl\:basis-full {
      flex-basis: 100%;
    }

    .md\:max-xl\:flex-row {
      flex-direction: row;
    }

    .md\:max-xl\:flex-wrap {
      flex-wrap: wrap;
    }

    .md\:max-xl\:justify-center {
      justify-content: center;
    }

    .md\:max-xl\:px-\[32px\] {
      padding-left: 32px;
      padding-right: 32px;
    }

    .md\:max-xl\:px-\[62px\] {
      padding-left: 62px;
      padding-right: 62px;
    }

    .md\:max-xl\:pl-\[20px\] {
      padding-left: 20px;
    }

    .md\:max-xl\:pr-\[20px\] {
      padding-right: 20px;
    }

    .md\:max-xl\:text-center {
      text-align: center;
    }

    .md\:max-xl\:odd\:flex-row-reverse:nth-child(odd) {
      flex-direction: row-reverse;
    }
  }

  @media not all and (min-width: 976px) {
    .md\:max-lg\:max-w-\[423px\] {
      max-width: 423px;
    }
  }
}

@media (min-width: 976px) {
  .lg\:bottom-\[-10px\] {
    bottom: -10px;
  }

  .lg\:bottom-\[-9px\] {
    bottom: -9px;
  }

  .lg\:mx-\[-175px\] {
    margin-left: -175px;
    margin-right: -175px;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-5\/12 {
    width: 41.666667%;
  }

  .lg\:w-6\/12 {
    width: 50%;
  }

  .lg\:w-\[350px\] {
    width: 350px;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-\[80px\] {
    gap: 80px;
  }

  .lg\:pl-\[90px\] {
    padding-left: 90px;
  }

  .group:hover .lg\:group-hover\:block {
    display: block;
  }
}

@media (min-width: 1280px) {
  @media (min-width: 768px) {
    .xl\:md\:mb-\[10px\] {
      margin-bottom: 10px;
    }

    .xl\:md\:mb-\[70px\] {
      margin-bottom: 70px;
    }
  }

  .xl\:absolute {
    position: absolute;
  }

  .xl\:-left-\[45px\] {
    left: -45px;
  }

  .xl\:-right-\[26px\] {
    right: -26px;
  }

  .xl\:-right-\[45px\] {
    right: -45px;
  }

  .xl\:bottom-\[-120px\] {
    bottom: -120px;
  }

  .xl\:bottom-\[-5px\] {
    bottom: -5px;
  }

  .xl\:bottom-\[50px\] {
    bottom: 50px;
  }

  .xl\:left-\[-12px\] {
    left: -12px;
  }

  .xl\:left-\[-30px\] {
    left: -30px;
  }

  .xl\:left-\[-605px\] {
    left: -605px;
  }

  .xl\:right-0 {
    right: 0px;
  }

  .xl\:right-\[-120px\] {
    right: -120px;
  }

  .xl\:right-\[-121px\] {
    right: -121px;
  }

  .xl\:right-\[-605px\] {
    right: -605px;
  }

  .xl\:right-\[-70px\] {
    right: -70px;
  }

  .xl\:right-\[-88px\] {
    right: -88px;
  }

  .xl\:right-\[50px\] {
    right: 50px;
  }

  .xl\:right-ic {
    right: calc((100vw - var(--container-size)) / 2);
  }

  .xl\:top-0 {
    top: 0px;
  }

  .xl\:top-5 {
    top: 1.25rem;
  }

  .xl\:top-\[-11px\] {
    top: -11px;
  }

  .xl\:top-\[-120px\] {
    top: -120px;
  }

  .xl\:top-\[-14px\] {
    top: -14px;
  }

  .xl\:top-\[-70px\] {
    top: -70px;
  }

  .xl\:top-\[-7px\] {
    top: -7px;
  }

  .xl\:top-\[26px\] {
    top: 26px;
  }

  .xl\:top-\[50px\] {
    top: 50px;
  }

  .xl\:top-\[70px\] {
    top: 70px;
  }

  .xl\:top-\[84px\] {
    top: 84px;
  }

  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xl\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .xl\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .xl\:col-start-1 {
    grid-column-start: 1;
  }

  .xl\:col-start-11 {
    grid-column-start: 11;
  }

  .xl\:col-start-2 {
    grid-column-start: 2;
  }

  .xl\:col-start-3 {
    grid-column-start: 3;
  }

  .xl\:col-start-5 {
    grid-column-start: 5;
  }

  .xl\:col-start-7 {
    grid-column-start: 7;
  }

  .xl\:col-start-8 {
    grid-column-start: 8;
  }

  .xl\:col-start-9 {
    grid-column-start: 9;
  }

  .xl\:col-end-11 {
    grid-column-end: 11;
  }

  .xl\:col-end-12 {
    grid-column-end: 12;
  }

  .xl\:col-end-13 {
    grid-column-end: 13;
  }

  .xl\:col-end-5 {
    grid-column-end: 5;
  }

  .xl\:col-end-6 {
    grid-column-end: 6;
  }

  .xl\:col-end-7 {
    grid-column-end: 7;
  }

  .xl\:col-end-8 {
    grid-column-end: 8;
  }

  .xl\:col-end-9 {
    grid-column-end: 9;
  }

  .xl\:row-start-1 {
    grid-row-start: 1;
  }

  .xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xl\:my-\[50px\] {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .xl\:my-\[80px\] {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .xl\:-mb-\[20px\] {
    margin-bottom: -20px;
  }

  .xl\:-ml-\[28px\] {
    margin-left: -28px;
  }

  .xl\:-mt-\[110px\] {
    margin-top: -110px;
  }

  .xl\:-mt-\[30px\] {
    margin-top: -30px;
  }

  .xl\:mb-0 {
    margin-bottom: 0px;
  }

  .xl\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .xl\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .xl\:mb-\[100px\] {
    margin-bottom: 100px;
  }

  .xl\:mb-\[10px\] {
    margin-bottom: 10px;
  }

  .xl\:mb-\[110px\] {
    margin-bottom: 110px;
  }

  .xl\:mb-\[120px\] {
    margin-bottom: 120px;
  }

  .xl\:mb-\[140px\] {
    margin-bottom: 140px;
  }

  .xl\:mb-\[15px\] {
    margin-bottom: 15px;
  }

  .xl\:mb-\[160px\] {
    margin-bottom: 160px;
  }

  .xl\:mb-\[180px\] {
    margin-bottom: 180px;
  }

  .xl\:mb-\[200px\] {
    margin-bottom: 200px;
  }

  .xl\:mb-\[20px\] {
    margin-bottom: 20px;
  }

  .xl\:mb-\[220px\] {
    margin-bottom: 220px;
  }

  .xl\:mb-\[30px\] {
    margin-bottom: 30px;
  }

  .xl\:mb-\[40px\] {
    margin-bottom: 40px;
  }

  .xl\:mb-\[50px\] {
    margin-bottom: 50px;
  }

  .xl\:mb-\[60px\] {
    margin-bottom: 60px;
  }

  .xl\:mb-\[70px\] {
    margin-bottom: 70px;
  }

  .xl\:mb-\[80px\] {
    margin-bottom: 80px;
  }

  .xl\:ml-1\/12 {
    margin-left: 8.33333333%;
  }

  .xl\:ml-auto {
    margin-left: auto;
  }

  .xl\:mr-\[10px\] {
    margin-right: 10px;
  }

  .xl\:mr-\[20px\] {
    margin-right: 20px;
  }

  .xl\:mr-\[30px\] {
    margin-right: 30px;
  }

  .xl\:mt-0 {
    margin-top: 0px;
  }

  .xl\:mt-\[-40px\] {
    margin-top: -40px;
  }

  .xl\:mt-\[120px\] {
    margin-top: 120px;
  }

  .xl\:mt-\[160px\] {
    margin-top: 160px;
  }

  .xl\:mt-\[180px\] {
    margin-top: 180px;
  }

  .xl\:mt-\[200px\] {
    margin-top: 200px;
  }

  .xl\:mt-\[60px\] {
    margin-top: 60px;
  }

  .xl\:mt-\[80px\] {
    margin-top: 80px;
  }

  .xl\:mt-auto {
    margin-top: auto;
  }

  .xl\:block {
    display: block;
  }

  .xl\:inline {
    display: inline;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:inline-flex {
    display: inline-flex;
  }

  .xl\:grid {
    display: grid;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:h-\[30px\] {
    height: 30px;
  }

  .xl\:h-\[460px\] {
    height: 460px;
  }

  .xl\:w-1\/2 {
    width: 50%;
  }

  .xl\:w-10\/12 {
    width: 83.333333%;
  }

  .xl\:w-4\/12 {
    width: 33.333333%;
  }

  .xl\:w-6\/12 {
    width: 50%;
  }

  .xl\:w-8\/12 {
    width: 66.666667%;
  }

  .xl\:w-9\/12 {
    width: 75%;
  }

  .xl\:w-\[108px\] {
    width: 108px;
  }

  .xl\:w-\[111px\] {
    width: 111px;
  }

  .xl\:w-\[1137px\] {
    width: 1137px;
  }

  .xl\:w-\[1442px\] {
    width: 1442px;
  }

  .xl\:w-\[196px\] {
    width: 196px;
  }

  .xl\:w-\[200px\] {
    width: 200px;
  }

  .xl\:w-\[258px\] {
    width: 258px;
  }

  .xl\:w-\[276px\] {
    width: 276px;
  }

  .xl\:w-\[350px\] {
    width: 350px;
  }

  .xl\:w-\[390px\] {
    width: 390px;
  }

  .xl\:w-\[630px\] {
    width: 630px;
  }

  .xl\:w-\[659px\] {
    width: 659px;
  }

  .xl\:w-\[76px\] {
    width: 76px;
  }

  .xl\:w-\[calc\(100\%-50px\)\] {
    width: calc(100% - 50px);
  }

  .xl\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }

  .xl\:max-w-\[11ch\] {
    max-width: 11ch;
  }

  .xl\:max-w-\[12ch\] {
    max-width: 12ch;
  }

  .xl\:max-w-\[170px\] {
    max-width: 170px;
  }

  .xl\:max-w-\[20ch\] {
    max-width: 20ch;
  }

  .xl\:max-w-\[600px\] {
    max-width: 600px;
  }

  .xl\:basis-1\/2 {
    flex-basis: 50%;
  }

  .xl\:basis-\[40\%\] {
    flex-basis: 40%;
  }

  .xl\:basis-\[calc\(50\%-25px\)\] {
    flex-basis: calc(50% - 25px);
  }

  .xl\:translate-y-\[20px\] {
    --tw-translate-y: 20px;
    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));
  }

  .xl\:translate-y-\[80px\] {
    --tw-translate-y: 80px;
    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));
  }

  .xl\:scale-x-\[-1\] {
    --tw-scale-x: -1;
    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));
  }

  .xl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-rows-\[270px_auto\] {
    grid-template-rows: 270px auto;
  }

  .xl\:flex-row {
    flex-direction: row;
  }

  .xl\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .xl\:flex-wrap {
    flex-wrap: wrap;
  }

  .xl\:items-start {
    align-items: flex-start;
  }

  .xl\:items-end {
    align-items: flex-end;
  }

  .xl\:items-center {
    align-items: center;
  }

  .xl\:justify-start {
    justify-content: flex-start;
  }

  .xl\:justify-between {
    justify-content: space-between;
  }

  .xl\:gap-\[10px\] {
    gap: 10px;
  }

  .xl\:gap-\[110px\] {
    gap: 110px;
  }

  .xl\:gap-\[20px\] {
    gap: 20px;
  }

  .xl\:gap-\[21px\] {
    gap: 21px;
  }

  .xl\:gap-\[25px\] {
    gap: 25px;
  }

  .xl\:gap-\[30px\] {
    gap: 30px;
  }

  .xl\:gap-\[40px\] {
    gap: 40px;
  }

  .xl\:gap-\[50px\] {
    gap: 50px;
  }

  .xl\:gap-\[5px\] {
    gap: 5px;
  }

  .xl\:gap-\[60px\] {
    gap: 60px;
  }

  .xl\:gap-\[65px\] {
    gap: 65px;
  }

  .xl\:divide-x > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .xl\:rounded-3xl {
    border-radius: 1.25rem;
  }

  .xl\:rounded-\[20px\] {
    border-radius: 20px;
  }

  .xl\:rounded-\[50px\] {
    border-radius: 50px;
  }

  .xl\:rounded-none {
    border-radius: 0px;
  }

  .xl\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .xl\:rounded-bl-\[50px\] {
    border-bottom-left-radius: 50px;
  }

  .xl\:rounded-br-\[50px\] {
    border-bottom-right-radius: 50px;
  }

  .xl\:rounded-tl-\[47px\] {
    border-top-left-radius: 47px;
  }

  .xl\:rounded-tl-\[50px\] {
    border-top-left-radius: 50px;
  }

  .xl\:rounded-tr-\[50px\] {
    border-top-right-radius: 50px;
  }

  .xl\:border {
    border-width: 1px;
  }

  .xl\:border-x-2 {
    border-left-width: 2px;
    border-right-width: 2px;
  }

  .xl\:p-10 {
    padding: 2.5rem;
  }

  .xl\:p-\[50px\] {
    padding: 50px;
  }

  .xl\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xl\:px-\[170px\] {
    padding-left: 170px;
    padding-right: 170px;
  }

  .xl\:px-\[20px\] {
    padding-left: 20px;
    padding-right: 20px;
  }

  .xl\:px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px;
  }

  .xl\:px-\[60px\] {
    padding-left: 60px;
    padding-right: 60px;
  }

  .xl\:px-\[80px\] {
    padding-left: 80px;
    padding-right: 80px;
  }

  .xl\:px-\[90px\] {
    padding-left: 90px;
    padding-right: 90px;
  }

  .xl\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .xl\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xl\:py-\[24px\] {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .xl\:py-\[25px\] {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .xl\:py-\[30px\] {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .xl\:py-\[55px\] {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .xl\:py-\[60px\] {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .xl\:py-\[80px\] {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .xl\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .xl\:pb-\[100px\] {
    padding-bottom: 100px;
  }

  .xl\:pb-\[120px\] {
    padding-bottom: 120px;
  }

  .xl\:pb-\[40px\] {
    padding-bottom: 40px;
  }

  .xl\:pb-\[80px\] {
    padding-bottom: 80px;
  }

  .xl\:pb-\[90px\] {
    padding-bottom: 90px;
  }

  .xl\:pl-10 {
    padding-left: 2.5rem;
  }

  .xl\:pl-\[220px\] {
    padding-left: 220px;
  }

  .xl\:pl-\[28px\] {
    padding-left: 28px;
  }

  .xl\:pl-\[30px\] {
    padding-left: 30px;
  }

  .xl\:pl-\[40px\] {
    padding-left: 40px;
  }

  .xl\:pr-\[30px\] {
    padding-right: 30px;
  }

  .xl\:pt-0 {
    padding-top: 0px;
  }

  .xl\:pt-\[120px\] {
    padding-top: 120px;
  }

  .xl\:pt-\[156px\] {
    padding-top: 156px;
  }

  .xl\:pt-\[185px\] {
    padding-top: 185px;
  }

  .xl\:pt-\[30px\] {
    padding-top: 30px;
  }

  .xl\:pt-\[40px\] {
    padding-top: 40px;
  }

  .xl\:pt-\[80px\] {
    padding-top: 80px;
  }

  .xl\:text-left {
    text-align: left;
  }

  .xl\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .xl\:text-\[25px\] {
    font-size: 25px;
  }

  .xl\:text-\[26px\] {
    font-size: 26px;
  }

  .xl\:text-\[40px\] {
    font-size: 40px;
  }

  .xl\:text-\[60px\] {
    font-size: 60px;
  }

  .xl\:leading-10 {
    line-height: 2.5rem;
  }

  .xl\:leading-\[26px\] {
    line-height: 26px;
  }

  .xl\:leading-\[30px\] {
    line-height: 30px;
  }

  .xl\:tracking-\[-0\.52px\] {
    letter-spacing: -0.52px;
  }

  .xl\:tracking-\[-0\.5px\] {
    letter-spacing: -0.5px;
  }

  .xl\:tracking-\[-1\.2px\] {
    letter-spacing: -1.2px;
  }

  @media not all and (min-width: 768px) {
    .xl\:container {
      padding-left: 30px;
      padding-right: 30px;
    }
  }

  @media (min-width: 480px) {
    .xl\:container {
      max-width: 480px;
    }
  }

  @media (min-width: 768px) {
    .xl\:container {
      max-width: 644px;
    }
  }

  @media (min-width: 976px) {
    .xl\:container {
      max-width: 960px;
    }
  }

  @media (min-width: 1280px) {
    .xl\:container {
      max-width: 1200px;
    }
  }

  @media (min-width: 1440px) {
    .xl\:container {
      max-width: 1290px;
    }
  }

  .xl\:l-container {
    margin-left: calc(((100vw - var(--container-size)) / 2) - 95px);
  }

  .xl\:first\:pt-0:first-child {
    padding-top: 0px;
  }

  .xl\:last\:pb-0:last-child {
    padding-bottom: 0px;
  }

  .xl\:last-of-type\:justify-center:last-of-type {
    justify-content: center;
  }
}

@media (min-width: 1440px) {
  .\32xl\:px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 2500px) {
  .\34xl\:mx-\[-50\%\] {
    margin-left: -50%;
    margin-right: -50%;
  }

  .\34xl\:w-full {
    width: 100%;
  }
}

.\[\&\.active\]\:text-green.active {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.\[\&\.active\]\:after\:border-green.active::after {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(0 76 71 / var(--tw-border-opacity));
}

@media (min-width: 1280px) {
  .xl\:\[\&\:nth-child\(1\)\]\:flex-row-reverse:nth-child(1) {
    flex-direction: row-reverse;
  }

  .xl\:\[\&\:nth-child\(2\)\]\:flex-row-reverse:nth-child(2) {
    flex-direction: row-reverse;
  }

  .xl\:\[\&\:nth-child\(2\)\]\:justify-end:nth-child(2) {
    justify-content: flex-end;
  }

  .xl\:\[\&\:nth-child\(3\)\]\:justify-end:nth-child(3) {
    justify-content: flex-end;
  }

  .xl\:\[\&\:nth-of-type\(3\)\]\:translate-y-\[40px\]:nth-of-type(3) {
    --tw-translate-y: 40px;
    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));
  }

  .xl\:\[\&\:nth-of-type\(3n\+2\)\]\:translate-y-\[-40px\]:nth-of-type(3n+2) {
    --tw-translate-y: -40px;
    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));
  }

  .xl\:\[\&\:nth-of-type\(3n\+2\)\]\:translate-y-\[40px\]:nth-of-type(3n+2) {
    --tw-translate-y: 40px;
    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));
  }

  .xl\:hover\:\[\&\:nth-of-type\(3n\+2\)\]\:translate-y-\[25px\]:nth-of-type(3n+2):hover {
    --tw-translate-y: 25px;
    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));
  }
}

.\[\&\>a\]\:link>a {
  position: relative;
  --tw-text-opacity: 1;
  color: rgb(244 15 61 / var(--tw-text-opacity));
  text-decoration-line: none;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.\[\&\>a\]\:link>a::before {
  transform-origin: left;
  content: var(--tw-content);
  --tw-scale-x: 0;
  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));
}

.\[\&\>a\]\:link>a::after {
  transform-origin: right;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.\[\&\>a\]\:link>a:hover {
  --tw-text-opacity: 1;
  color: rgb(0 76 71 / var(--tw-text-opacity));
}

.\[\&\>a\]\:link>a:hover::before {
  --tw-scale-x: 1;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0.25s;
}

.\[\&\>a\]\:link>a:hover::after {
  --tw-scale-x: 0;
  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));
  opacity: 1;
  content: var(--tw-content);
  transition-delay: 0s;
}

.\[\&\>a\]\:link>a::before,.\[\&\>a\]\:link>a::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  height: 1px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 71 / var(--tw-bg-opacity));
  opacity: 0;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-content: "";
  content: var(--tw-content);
}

@media not all and (min-width: 1280px) {
  .max-xl\:\[\&\>article\]\:w-\[330px\]>article {
    width: 330px;
  }

  .max-xl\:\[\&\>article\]\:shrink-0>article {
    flex-shrink: 0;
  }
}

@media not all and (min-width: 768px) {
  .max-md\:\[\&\>article\]\:w-\[calc\(100\%_-_40px\)\]>article {
    width: calc(100% - 40px);
  }
}

.\[\&\>p\]\:mb-\[28px\]>p {
  margin-bottom: 28px;
}


@media (min-width: 1200px) {
  .swiper-smaller article {
    max-height: 480px;
  }
}

.swiper-smaller .title-6 {
  font-size: 15px !important;
  line-height: 19px !important;
  margin-bottom: 10px !important;
}

@media (min-width: 768px) {
  .swiper-smaller .title-6 {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}

@media (min-width: 1200px) {
  .swiper-smaller .title-6 {
    font-size: 14px !important;
    line-height: 18px !important;
  }
}

.swiper-smaller span,
.swiper-smaller .leading-\[22px\] {
  font-size: 15px !important;
  line-height: 19px !important;
}

.swiper-smaller .text-\[11px\] {
  font-size: 10px !important;
}

.swiper-smaller .event-date {
  transform: scale(1);
  transform-origin: top left;
}

.swiper-smaller picture img {
  height: 180px;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .swiper-smaller picture img {
    height: 220px;
  }
}

.swiper-smaller .px-\[30px\].pb-\[30px\],
.swiper-smaller .xl\:px-10.xl\:pb-10 {
  padding-bottom: 15px;
}

@media (min-width: 1200px) {
  .swiper-smaller .px-\[30px\].pb-\[30px\],
  .swiper-smaller .xl\:px-10.xl\:pb-10 {
    padding-bottom: 20px;
  }
}
/* Slider agenda home page - reduced size */
.swiper-smaller article {
  max-height: 420px;
}

@media (min-width: 1200px) {
  .swiper-smaller article {
    max-height: 480px;
  }
}

.swiper-smaller .title-6 {
  font-size: 15px !important;
  line-height: 19px !important;
  margin-bottom: 10px !important;
}

@media (min-width: 768px) {
  .swiper-smaller .title-6 {
    font-size: 16px !important;
    line-height: 20px !important;
  }
}

@media (min-width: 1200px) {
  .swiper-smaller .title-6 {
    font-size: 17px !important;
    line-height: 21px !important;
  }
}

.swiper-smaller span,
.swiper-smaller .leading-\[22px\] {
  font-size: 12px !important;
  line-height: 16px !important;
}

.swiper-smaller .text-\[11px\] {
  font-size: 10px !important;
}

.swiper-smaller .event-date {
  transform: scale(1);
  transform-origin: top left;
}

.swiper-smaller picture img {
  height: 180px;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .swiper-smaller picture img {
    height: 220px;
  }
}

.swiper-smaller .px-\[30px\].pb-\[30px\],
.swiper-smaller .xl\:px-10.xl\:pb-10 {
  padding-bottom: 15px;
}

@media (min-width: 1200px) {
  .swiper-smaller .px-\[30px\].pb-\[30px\],
  .swiper-smaller .xl\:px-10.xl\:pb-10 {
    padding-bottom: 20px;
  }
}

/* Réduire le cercle du curseur sur le slider agenda */
.swiper-smaller .cursor {
  width: 60px !important;
  height: 60px !important;
}

.swiper-smaller .cursor::after {
  background-size: 20px 20px !important;
}

.swiper-smaller .px-\[30px\] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

@media (min-width: 1200px) {
  .swiper-smaller .xl\:px-10 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Centrer les slides du swiper-smaller uniquement sur la home */
.home .swiper-smaller .swiper-wrapper {
  justify-content: flex-start;
}

@media (min-width: 1440px) {
  .home .swiper-smaller .swiper {
    overflow: visible;
  }

  .home .swiper-smaller .swiper-wrapper {
    justify-content: center;
  }
}

/* Augmenter la taille de la date dans swiper-smaller */
.swiper-smaller .event-date span {
  font-size: 16px !important;
}
