/**
 * Custom Fonts for LexLeg
 */

/* FS Industrie Fonts */
@font-face {
  font-family: 'FS Industrie';
  src: url("fonts/FS%20Industrie%20Book.40dcdf78.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FS Industrie';
  src: url("fonts/FS%20Industrie-Bold.abda7c66.otf") format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FS Industrie';
  src: url("fonts/FS%20Industrie%20Black.a9d5f1ca.otf") format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* FK Screamer Legacy Fonts */
@font-face {
  font-family: 'FK Screamer Legacy';
  src: url(fonts/FKScreamerLegacyTrial-Upright.d8407a18.otf) format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FK Screamer Legacy';
  src: url(fonts/FKScreamerLegacyTrial-Slanted.5f188f07.otf) format('opentype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'FK Screamer Legacy';
  src: url(fonts/FKScreamerLegacyTrial-SemiSlanted.131ebbec.otf) format('opentype');
  font-weight: normal;
  font-style: oblique;
  font-display: swap;
}

@font-face {
  font-family: 'FK Screamer Legacy';
  src: url(fonts/FKScreamerLegacyTrial-Backslanted.5c73aef6.otf) format('opentype');
  font-weight: normal;
  font-style: backslant;
  font-display: swap;
}

@font-face {
  font-family: 'FK Screamer Legacy';
  src: url(fonts/FKScreamerLegacyTrial-SemiBackslanted.187d1226.otf) format('opentype');
  font-weight: normal;
  font-style: semi-backslant;
  font-display: swap;
}

/* FK Screamer Fonts */
@font-face {
  font-family: 'FK Screamer';
  src: url(fonts/FKScreamerTrial-Regular.e8124032.otf) format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FK Screamer';
  src: url(fonts/FKScreamerTrial-Medium.fd1d2c62.otf) format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FK Screamer';
  src: url(fonts/FKScreamerTrial-Bold.f5370d0d.otf) format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FK Screamer';
  src: url(fonts/FKScreamerTrial-Black.30c4313c.otf) format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Haglos Fonts */
@font-face {
  font-family: 'Haglos';
  src: url("fonts/Haglos%20Regular%20OTF.df4dff70.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Haglos';
  src: url("fonts/Haglos%20SemiBold%20OTF.3eb99e6c.otf") format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Haglos';
  src: url("fonts/Haglos%20Bold%20OTF.f716adb3.otf") format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Haglos Extrude Fonts */
@font-face {
  font-family: 'Haglos Extrude';
  src: url("fonts/Haglos%20Regular%20Extrude%20OTF.228d7987.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Haglos Extrude';
  src: url("fonts/Haglos%20SemiBold%20Extrude%20OTF.34e59d36.otf") format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Haglos Extrude';
  src: url("fonts/Haglos%20Bold%20Extrude%20OTF.4793aff6.otf") format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/**
 * Font Utility Classes
 * These classes provide direct access to specific font variants
 * Combines font-family with the appropriate weight/style
 */

/* FK Screamer specific weights */
.text-fk-screamer-regular {
  font-family: "FK Screamer", sans-serif;
  font-weight: 400;
}

.text-fk-screamer-medium {
  font-family: "FK Screamer", sans-serif;
  font-weight: 500;
}
.text-fk-screamer {
  font-family: "FK Screamer", sans-serif;
  font-weight: 700;
}
.text-fk-screamer-bold {
  font-family: "FK Screamer", sans-serif;
  font-weight: 700;
}

.text-fk-screamer-black {
  font-family: "FK Screamer", sans-serif;
  font-weight: 900;
}

/* FK Screamer Legacy specific styles */
.text-fk-legacy-normal {
  font-family: "FK Screamer Legacy", sans-serif;
  font-weight: normal;
  font-style: normal;
}

.text-fk-legacy-slanted {
  font-family: "FK Screamer Legacy", sans-serif;
  font-weight: normal;
  font-style: italic;
}

.text-fk-legacy-semislanted {
  font-family: "FK Screamer Legacy", sans-serif;
  font-weight: normal;
  font-style: oblique;
}

.text-fk-legacy-backslanted {
  font-family: "FK Screamer Legacy", sans-serif;
  font-weight: normal;
  font-style: normal;
  /* Custom property for backslanted variant */
  -webkit-text-decoration: backslant;
  text-decoration: backslant;
}

.text-fk-legacy-semibackslanted {
  font-family: "FK Screamer Legacy", sans-serif;
  font-weight: normal;
  font-style: normal;
  /* Custom property for semi-backslanted variant */
  -webkit-text-decoration: semi-backslant;
  text-decoration: semi-backslant;
}

/* Haglos specific weights */
.text-haglos-regular {
  font-family: "Haglos", serif;
  font-weight: 400;
}

.text-haglos-semibold {
  font-family: "Haglos", serif;
  font-weight: 600;
}

.text-haglos-bold {
  font-family: "Haglos", serif;
  font-weight: 700;
}

/* Haglos Extrude specific weights */
.text-haglos-extrude-regular {
  font-family: "Haglos Extrude", serif;
  font-weight: 400;
}

.text-haglos-extrude-semibold {
  font-family: "Haglos Extrude", serif;
  font-weight: 600;
}

.text-haglos-extrude-bold {
  font-family: "Haglos Extrude", serif;
  font-weight: 700;
}

/* FS Industrie specific weights */
.text-public-sans-book {
  font-family: "FS Industrie", sans-serif;
  font-weight: 400;
}

.text-public-sans-bold {
  font-family: "FS Industrie", sans-serif;
  font-weight: 700;
}

.text-public-sans-black {
  font-family: "FS Industrie", sans-serif;
  font-weight: 900;
}

/**
 * LexLeg Design System
 * CSS Variables and Design Tokens
 */

:root {
  /* Colors */
  --color-light-blue: #0033a1;
  --color-dark-blue: #000a2a;
  --color-green: #009845;
  --color-dark-green: #00672f;
  --color-white: #ffffff;
  --color-offwhite: #f0f0f0;
  --color-light-gray: #d2d2d3;
  --color-gray: #575757;
  --color-black: #111111;

  /* Primary colors for text, backgrounds, etc. */
  --color-primary: var(--color-light-blue);
  --color-primary-dark: var(--color-dark-blue);
  --color-secondary: var(--color-green);
  --color-secondary-dark: var(--color-dark-green);
  --color-text: var(--color-black);
  --color-text-light: var(--color-gray);
  --color-background: var(--color-white);
  --color-background-alt: var(--color-offwhite);

  /* Typography - Desktop */
  --font-size-biggest: 6rem; /* 96px */
  --font-size-big: 3.75rem; /* 60px */
  --font-size-medium: 3rem; /* 48px */
  --font-size-small: 2.25rem; /* 36px */
  --font-size-smaller: 1.5rem; /* 24px */
  --font-size-smallest: 1.25rem; /* 20px */
  --font-size-overline: 0.875rem; /* 14px */
  --font-size-body-big: 1.25rem; /* 20px */
  --font-size-body: 1rem; /* 16px */
  --font-size-body-small: 0.875rem; /* 14px */
  --font-size-caption: 0.75rem; /* 12px */
  --font-size-button: 1rem; /* 16px */

  /* Line Heights */
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.3;
  --line-height-relaxed: 1.4;
  --line-height-loose: 1.5;
  --line-height-body: 1.6;

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Families */
  --font-family-body: 'Public Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* Spacings */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 2.5rem; /* 40px */
  --spacing-3xl: 3rem; /* 48px */

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.125rem; /* 2px */
  --radius-md: 0.25rem; /* 4px */
  --radius-lg: 0.5rem; /* 8px */
  --radius-full: 9999px;

  /* Button sizes */
  --button-padding-small: 0.5rem 1rem;
  --button-padding-medium: 0.75rem 1.5rem;
  --button-padding-large: 1rem 2rem;

  /* Transitions */
  --transition-default: 300ms ease;
  --transition-fast: 150ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Mobile typography overrides */
@media (max-width: 767px) {
  :root {
    --font-size-biggest: 3.75rem; /* 60px */
    --font-size-big: 2.25rem; /* 36px */
    --font-size-medium: 2.25rem; /* 36px */
    --font-size-small: 1.75rem; /* 28px */
    --font-size-small-accent: 1.5rem; /* 24px */
  }
}

/**
 * LexLeg Design System
 * CSS Variables and Design Tokens
 */

:root {
  /* Colors */
  --color-light-blue: #0033a1;
  --color-dark-blue: #000a2a;
  --color-green: #009845;
  --color-dark-green: #00672f;
  --color-white: #ffffff;
  --color-offwhite: #f0f0f0;
  --color-light-gray: #d2d2d3;
  --color-gray: #575757;
  --color-black: #111111;

  /* Primary colors for text, backgrounds, etc. */
  --color-primary: var(--color-light-blue);
  --color-primary-dark: var(--color-dark-blue);
  --color-secondary: var(--color-green);
  --color-secondary-dark: var(--color-dark-green);
  --color-text: var(--color-black);
  --color-text-light: var(--color-gray);
  --color-background: var(--color-white);
  --color-background-alt: var(--color-offwhite);

  /* Typography - Desktop */
  --font-size-biggest: 6rem; /* 96px */
  --font-size-big: 3.75rem; /* 60px */
  --font-size-medium: 3rem; /* 48px */
  --font-size-small: 2.25rem; /* 36px */
  --font-size-smaller: 1.5rem; /* 24px */
  --font-size-smallest: 1.25rem; /* 20px */
  --font-size-overline: 0.875rem; /* 14px */
  --font-size-body-big: 1.25rem; /* 20px */
  --font-size-body: 1rem; /* 16px */
  --font-size-body-small: 0.875rem; /* 14px */
  --font-size-caption: 0.75rem; /* 12px */
  --font-size-button: 1rem; /* 16px */

  /* Line Heights */
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.3;
  --line-height-relaxed: 1.4;
  --line-height-loose: 1.5;
  --line-height-body: 1.6;

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Families */
  --font-family-body: 'Public Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* Spacings */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 2.5rem; /* 40px */
  --spacing-3xl: 3rem; /* 48px */

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.125rem; /* 2px */
  --radius-md: 0.25rem; /* 4px */
  --radius-lg: 0.5rem; /* 8px */
  --radius-full: 9999px;

  /* Button sizes */
  --button-padding-small: 0.5rem 1rem;
  --button-padding-medium: 0.75rem 1.5rem;
  --button-padding-large: 1rem 2rem;

  /* Transitions */
  --transition-default: 300ms ease;
  --transition-fast: 150ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Mobile typography overrides */
@media (max-width: 767px) {
  :root {
    --font-size-biggest: 3.75rem; /* 60px */
    --font-size-big: 2.25rem; /* 36px */
    --font-size-medium: 2.25rem; /* 36px */
    --font-size-small: 1.75rem; /* 28px */
    --font-size-small-accent: 1.5rem; /* 24px */
  }
}

/**
 * LexLeg Design System Components
 * Reusable component styles based on the design system
 */

/* Typography Classes */
.text-biggest {
  font-size: var(--font-size-biggest);
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
  font-weight: var(--font-weight-bold);
}

.text-big {
  font-size: var(--font-size-big);
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
  font-weight: var(--font-weight-bold);
}

.text-big-accent {
  font-size: var(--font-size-big);
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.text-medium {
  font-size: var(--font-size-medium);
  line-height: var(--line-height-snug);
}

.text-small {
  font-size: var(--font-size-small);
  line-height: var(--line-height-normal);
  font-weight: var(--font-weight-semibold);
}

.text-small-accent {
  font-size: var(--font-size-small);
  line-height: var(--line-height-normal);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
}

.text-smaller {
  font-size: var(--font-size-smaller);
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-semibold);
}

.text-smaller-accent {
  font-size: var(--font-size-smaller);
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
}

/* .text-smallest { */
/* font-size: var(--font-size-smallest); */
/* line-height: var(--line-height-loose); */
/* font-weight: var(--font-weight-semibold);
} */

.text-overline {
  font-size: var(--font-size-overline);
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
}

.text-body-big {
  font-size: var(--font-size-body-big);
  line-height: var(--line-height-body);
}

.text-body {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

.text-body-small {
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-loose);
}

.text-caption {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-relaxed);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-button);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-loose);
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  transition: all var(--transition-default);
  cursor: pointer;
  text-decoration: none;
}

/* Button Sizes */
.btn-small {
  padding: var(--button-padding-small);
}

.btn-medium {
  padding: var(--button-padding-medium);
}

.btn-large {
  padding: var(--button-padding-large);
}

/* Button Styles */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-gray);
  color: var(--color-white);
  border: 2px solid var(--color-gray);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #444444;
  border-color: #444444;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: rgba(0, 51, 161, 0.05);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Link Styles */
.link {
  position: relative;
  text-decoration: none;
  transition: all var(--transition-default);
}

/* Default link (on white background) */
.link {
  color: var(--color-primary);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.link:hover,
.link:focus {
  color: var(--color-primary-dark);
  text-decoration-thickness: 2px;
}

/* Link on dark background */
.link-on-dark {
  color: var(--color-white);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.link-on-dark:hover,
.link-on-dark:focus {
  text-decoration-thickness: 2px;
  opacity: 0.9;
}

/* Link on royal blue background */
.link-on-royal {
  color: var(--color-white);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.link-on-royal:hover,
.link-on-royal:focus {
  text-decoration-thickness: 2px;
  opacity: 0.9;
}

/* Link on green background */
.link-on-green {
  color: var(--color-white);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.link-on-green:hover,
.link-on-green:focus {
  text-decoration-thickness: 2px;
  opacity: 0.9;
}

/* Focus styles for accessibility */
.btn:focus,
.link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary:focus,
.link-on-royal:focus {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.link-on-dark:focus,
.link-on-green:focus {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* padding styles  */

.padding-global {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .padding-global {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .padding-global {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.font-public-sans {
  letter-spacing: -0.01rem;
}
.font-fk-screamer {
  letter-spacing: 0.08rem;
}
.font-fk-screamer-bold {
  letter-spacing: 0.08rem;
}

/* Packages WYSIWYG Content Styles */
.packages-wysiwyg-content {
  font-family: var(--font-family-body);
  color: var(--color-dark-blue);
}

.packages-wysiwyg-content h1,
.packages-wysiwyg-content h2,
.packages-wysiwyg-content h3,
.packages-wysiwyg-content h4,
.packages-wysiwyg-content h5,
.packages-wysiwyg-content h6 {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-blue);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.packages-wysiwyg-content h5 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-blue);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.packages-wysiwyg-content p {
  font-family: var(--font-family-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-dark-blue);
  margin-bottom: 0.75rem;
}

.packages-wysiwyg-content ul,
.packages-wysiwyg-content ol {
  font-family: var(--font-family-body);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-dark-blue);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  margin-left: 0.5rem;
}

.packages-wysiwyg-content ul {
  list-style-type: disc;
  list-style-position: inside;
}

.packages-wysiwyg-content ol {
  list-style-type: decimal;
  list-style-position: inside;
}

.packages-wysiwyg-content li {
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.packages-wysiwyg-content li span {
  font-weight: var(--font-weight-medium);
}

.packages-wysiwyg-content strong,
.packages-wysiwyg-content b {
  font-weight: var(--font-weight-bold);
}

.packages-wysiwyg-content em,
.packages-wysiwyg-content i {
  font-style: italic;
}

.packages-wysiwyg-content small {
  font-size: 0.75rem;
  color: #6b7280;
  margin-left: 1rem;
  display: block;
}

/**
 * LexLeg Button Component Styles
 * These styles implement the button design system with hover and focus effects
 */

/* Base button styling */
.lexleg-btn {
  /* Base styles */
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 0.5rem; /* 8px */
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;

  /* Default state */
  background-color: transparent;

  /* Ensure proper text wrapping */
  white-space: normal;
  text-align: center;

  /* Prevent outline from breaking layout */
  outline-offset: 2px;
}

/* Primary Button - Royal Blue */
.lexleg-btn.bg-light-blue {
  background-color: #0033a1;
  color: white;
}

/* Secondary Button - Green */
.lexleg-btn.bg-green {
  background-color: #009845;
  color: white;
}

/* Black Button */
.lexleg-btn.bg-black {
  background-color: #111111;
  color: white;
}

/* Text Only Button */
.lexleg-btn.text-light-blue:not(.bg-light-blue):not(.bg-green):not(.bg-black) {
  color: #0033a1;
  padding: 0;
  background-color: transparent;
}

/* Text Only Button Hover */
.lexleg-btn.text-light-blue:not(.bg-light-blue):not(.bg-green):not(
    .bg-black
  ):hover {
  opacity: 0.8;
}

/* Focus states for all buttons - Double outline effect */
.lexleg-btn:focus-visible {
  /* Double outline effect */
  outline: 1px solid black;
  box-shadow:
    0 0 0 2px white,
    0 0 0 3px black;
  z-index: 10;
}

/* The hover effect for the offset white outline */
.lexleg-btn .absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem; /* 8px */
  pointer-events: none;
}

/* Accessibility - Keyboard focus adjustment */
.lexleg-btn:focus {
  /* Make sure there's always a visible focus state */
  outline: 2px solid transparent;
}

/* Active state effect */
.lexleg-btn:active {
  transform: translateY(1px);
}

/* Group hover effect for the background */
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

/* Adjustments for WordPress editor */
.editor-styles-wrapper .lexleg-btn {
  /* Force display of element in editor */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure our hover/focus effects work in editor environment */
.edit-post-visual-editor .lexleg-btn:focus-visible {
  outline: 1px solid black !important;
  box-shadow:
    0 0 0 2px white,
    0 0 0 3px black !important;
}

/**
 * Ninja Forms Styling for LexLeg
 * Custom styles to match the site's design system
 */

/* Form Container */
.nf-form-cont {
  max-width: 100%;
  font-family: inherit;
}

/* Field Labels */
.nf-form-content .nf-field-label label {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-body);
  color: var(--color-light-blue);
  margin-bottom: var(--spacing-xs);
  font-family: "Public Sans", sans-serif;
}

/* Form Inputs */
.nf-form-content input:not([type="button"]),
.nf-form-content textarea,
.nf-form-content select {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-body);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
  font-family: "Public Sans", sans-serif;
}

.nf-form-content input:not([type="button"]):focus,
.nf-form-content textarea:focus,
.nf-form-content select:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 51, 161, 0.2); /* Royal blue with transparency */
}

/* Submit Button */
.nf-form-content input[type="button"] {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--button-padding-medium);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-button);
  text-transform: uppercase;
  transition: background-color var(--transition-default);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0.03em;
  font-family: "FK Screamer", sans-serif;
}

.nf-form-content input[type="button"]:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Description Text */
.nf-form-content .nf-field-description {
  font-size: var(--font-size-body-small);
  color: var(--color-text-light);
  margin-top: var(--spacing-xs);
}

/* Error Messages */
.nf-error-msg,
.nf-error .nf-error-msg {
  display: flex;
  align-items: center;
  color: #fff; /* White for accessibility */
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-medium);
  margin-top: var(--spacing-xs);
  background: none;
  padding: 0;
}

.nf-error-msg::before,
.nf-error .nf-error-msg::before {
  content: "⚠️"; /* Placeholder icon, replace with SVG if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e80000; /* Error red */
  color: #fff;
  border-radius: 0.25rem;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Success Message */
.nf-response-msg {
  padding: var(--spacing-md);
  background-color: #000a2a; /* Green with transparency */
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
}

.nf-response-msg p {
  color: white;
  font-weight: var(--font-weight-medium);
  margin: 0;
}

/* Checkbox and Radio Styles */
.nf-form-content .checkbox-wrap .nf-field-label label,
.nf-form-content .checkbox-wrap .nf-field-element label,
.nf-form-content .list-checkbox-wrap .nf-field-element li label,
.nf-form-content .list-radio-wrap .nf-field-element li label {
  display: flex;
  align-items: center;
  font-weight: var(--font-weight-regular);
}

/* Spacing between form elements */
.nf-form-content .nf-field-container {
  margin-bottom: var(--spacing-lg);
}

/* Required field asterisk */
.nf-field-label label .ninja-forms-req-symbol {
  color: #e80000; /* Error red */
}

/**
 * Arrow Hover Animation Styles
 */

/* Right arrow hover animation */
.arrow-hover-right svg {
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.arrow-hover-right:hover svg {
  transform: translateX(8px);
}

/* Left arrow hover animation */
.arrow-hover-left svg {
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.arrow-hover-left:hover svg {
  transform: translateX(-8px);
}
/**
 * Slider peek effect styles
 * For showing part of next slide on both desktop and mobile
 */

/* Base slider peek effect for all screen sizes */
.slider-peek-next {
  overflow: visible !important;
}

.slider-peek-next .slick-list {
  margin-left: 0; /* mobile default - no margin */
  overflow: visible !important;
  margin-right: -10% !important;
  padding-right: 38% !important; /* Force next slide to be visible */
}

@media (min-width: 768px) {
  .slider-peek-next .slick-list {
    margin-left: -2.2rem; /* desktop margin */
  }
}

/* Ensure slick slides are properly visible */
.slider-peek-next .slick-slide {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  /* For mobile slider peek effect */
  .slider-peek-next {
    width: calc(100% + 30px) !important;
    margin-right: -30px !important;
  }

  .slider-peek-next .slick-list {
    padding-right: 20% !important; /* Force more of next slide to be visible */
  }

  /* Container padding adjustments */
  .slider-peek-next .slick-track {
    padding-left: var(--container-padding, 15px) !important;
  }

  /* Keep spacing between slides minimal to show peek effect */
  .slider-peek-next .slick-slide {
    padding-right: 8px !important;
  }
}

/**
 * Scrolling Text Banner
 * Custom CSS for scrolling text banner block
 */

/* Container for the scrolling text */
.scrolling-text-container {
  height: 70px;
  display: flex;
  align-items: center;
  width: 100vw;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media (min-width: 768px) {
  .scrolling-text-container {
    height: 90px;
  }
}

/* Wrapper for the scrolling text */
.scrolling-text-wrapper {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  will-change: transform;
  width: 100vw;
}

/* Gradient overlay */
.scrolling-text-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

/* Animation for text scrolling */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Text styling */
.scrolling-text-wrapper span {
  display: inline-flex;
  align-items: center;
  font-size: 3.5rem;
}

@media (min-width: 768px) {
  .scrolling-text-wrapper span {
    font-size: 5rem;
  }
}

/* Text outline style */
.text-stroke-1-white {
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
  color: transparent !important;
}

.text-stroke-1-black {
  -webkit-text-stroke: 1px black;
  text-stroke: 1px black;
  color: transparent !important;
}

/* Banner content section */
.banner-content-wrapper {
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

/* Background image settings */
.banner-content-wrapper .absolute.inset-0 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Gradient overlay for the content section */
.banner-content-wrapper .bg-gradient-to-r {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Content container */
.banner-content-wrapper .container {
  position: relative;
  z-index: 2;
}

/* Logo container */
/* .logo-container {
  margin-bottom: 1.5rem;
} */

.logo-container img {
  max-height: 6rem;
  width: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .scrolling-text-container {
    height: 60px;
  }

  .banner-content-wrapper {
    min-height: 300px;
  }

  .banner-content-wrapper .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/**
 * Tailwind CSS for LexLeg Blocks
 */

*, ::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:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: 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:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}

[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0px;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-shadow: 0 0 #0000;
}

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --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);
    border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #6b7280;
    opacity: 1;
}

input::placeholder,textarea::placeholder {
    color: #6b7280;
    opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

::-webkit-date-and-time-value {
    min-height: 1.5em;
    text-align: inherit;
}

::-webkit-datetime-edit {
    display: inline-flex;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
    padding-top: 0;
    padding-bottom: 0;
}

select {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
}

[multiple],[size]:where(select:not([size="1"])) {
    background-image: initial;
    background-position: initial;
    background-repeat: unset;
    background-size: initial;
    padding-right: 0.75rem;
    -webkit-print-color-adjust: unset;
            print-color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: #2563eb;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
    border-radius: 0px;
}

[type='radio'] {
    border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

[type='checkbox']:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {

    [type='checkbox']:checked {
        -webkit-appearance: auto;
           -moz-appearance: auto;
                appearance: auto;
    }
}

[type='radio']:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {

    [type='radio']:checked {
        -webkit-appearance: auto;
           -moz-appearance: auto;
                appearance: auto;
    }
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
    border-color: transparent;
    background-color: currentColor;
}

[type='checkbox']:indeterminate {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e");
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

@media (forced-colors: active)  {

    [type='checkbox']:indeterminate {
        -webkit-appearance: auto;
           -moz-appearance: auto;
                appearance: auto;
    }
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
    border-color: transparent;
    background-color: currentColor;
}

[type='file'] {
    background: unset;
    border-color: inherit;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-size: unset;
    line-height: inherit;
}

[type='file']:focus {
    outline: 1px solid ButtonText;
    outline: 1px auto -webkit-focus-ring-color;
}
.container {
    width: 100%;
}
@media (min-width: 640px) {

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

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

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

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

    .container {
        max-width: 1536px;
    }
}
.prose {
    color: var(--tw-prose-body);
    max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-lead);
    font-size: 1.25em;
    line-height: 1.6;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-links);
    text-decoration: underline;
    font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-bold);
    font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: decimal;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: disc;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
    font-weight: 400;
    color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
    color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-color: var(--tw-prose-hr);
    border-top-width: 1px;
    margin-top: 3em;
    margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 500;
    font-style: italic;
    color: var(--tw-prose-quotes);
    border-inline-start-width: 0.25rem;
    border-inline-start-color: var(--tw-prose-quote-borders);
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 800;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 900;
    color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 800;
    color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 700;
    color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 700;
    color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    display: block;
    margin-top: 2em;
    margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 500;
    font-family: inherit;
    color: var(--tw-prose-kbd);
    box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
    font-size: 0.875em;
    border-radius: 0.3125rem;
    padding-top: 0.1875em;
    padding-inline-end: 0.375em;
    padding-bottom: 0.1875em;
    padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-code);
    font-weight: 600;
    font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
    font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
    font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-pre-code);
    background-color: var(--tw-prose-pre-bg);
    overflow-x: auto;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding-top: 0.8571429em;
    padding-inline-end: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    width: 100%;
    table-layout: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    vertical-align: bottom;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-top-width: 1px;
    border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-captions);
    font-size: 0.875em;
    line-height: 1.4285714;
    margin-top: 0.8571429em;
}
.prose {
    --tw-prose-body: #374151;
    --tw-prose-headings: #111827;
    --tw-prose-lead: #4b5563;
    --tw-prose-links: #111827;
    --tw-prose-bold: #111827;
    --tw-prose-counters: #6b7280;
    --tw-prose-bullets: #d1d5db;
    --tw-prose-hr: #e5e7eb;
    --tw-prose-quotes: #111827;
    --tw-prose-quote-borders: #e5e7eb;
    --tw-prose-captions: #6b7280;
    --tw-prose-kbd: #111827;
    --tw-prose-kbd-shadows: 17 24 39;
    --tw-prose-code: #111827;
    --tw-prose-pre-code: #e5e7eb;
    --tw-prose-pre-bg: #1f2937;
    --tw-prose-th-borders: #d1d5db;
    --tw-prose-td-borders: #e5e7eb;
    --tw-prose-invert-body: #d1d5db;
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: #9ca3af;
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: #9ca3af;
    --tw-prose-invert-bullets: #4b5563;
    --tw-prose-invert-hr: #374151;
    --tw-prose-invert-quotes: #f3f4f6;
    --tw-prose-invert-quote-borders: #374151;
    --tw-prose-invert-captions: #9ca3af;
    --tw-prose-invert-kbd: #fff;
    --tw-prose-invert-kbd-shadows: 255 255 255;
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: #d1d5db;
    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
    --tw-prose-invert-th-borders: #4b5563;
    --tw-prose-invert-td-borders: #374151;
    font-size: 1rem;
    line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5em;
    padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-top: 0.5714286em;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 0;
}
/* Force editor to respect our button styles */
.wp-block .inline-flex,
  .wp-block .btn {
    display: inline-flex !important;
  }
.wp-block .items-center,
  .wp-block .btn {
    align-items: center !important;
  }
.wp-block .justify-center,
  .wp-block .btn {
    justify-content: center !important;
  }
/* Ensure text colors work properly */
.wp-block .text-white {
    color: white !important;
  }
/* Brand colors */
.wp-block .text-light-blue {
    color: var(--color-light-blue) !important;
  }
.wp-block .bg-light-blue {
    background-color: var(--color-light-blue) !important;
  }
.wp-block .bg-green {
    background-color: var(--color-green) !important;
  }
/* Typography responsive classes */
@media (max-width: 767px) {
    .wp-block .text-biggest {
      font-size: var(--font-size-biggest-mobile) !important;
    }

    .wp-block .text-big,
    .wp-block .text-big-accent {
      font-size: var(--font-size-big-mobile) !important;
    }

    .wp-block .text-medium {
      font-size: var(--font-size-medium-mobile) !important;
    }

    .wp-block .text-small,
    .wp-block .text-small-accent {
      font-size: var(--font-size-small-mobile) !important;
    }
  }
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
}
.pointer-events-none {
    pointer-events: none !important;
}
.visible {
    visibility: visible !important;
}
.invisible {
    visibility: hidden !important;
}
.absolute {
    position: absolute !important;
}
.relative {
    position: relative !important;
}
.inset-0 {
    inset: 0px !important;
}
.inset-x-0 {
    left: 0px !important;
    right: 0px !important;
}
.bottom-0 {
    bottom: 0px !important;
}
.left-0 {
    left: 0px !important;
}
.right-2 {
    right: 0.5rem !important;
}
.right-4 {
    right: 1rem !important;
}
.top-0 {
    top: 0px !important;
}
.top-2 {
    top: 0.5rem !important;
}
.top-4 {
    top: 1rem !important;
}
.-z-10 {
    z-index: -10 !important;
}
.z-0 {
    z-index: 0 !important;
}
.z-10 {
    z-index: 10 !important;
}
.z-20 {
    z-index: 20 !important;
}
.z-30 {
    z-index: 30 !important;
}
.col-span-full {
    grid-column: 1 / -1 !important;
}
.m-0 {
    margin: 0px !important;
}
.mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
}
.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}
.mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.-mb-12 {
    margin-bottom: -3rem !important;
}
.-mb-4 {
    margin-bottom: -1rem !important;
}
.-mt-32 {
    margin-top: -8rem !important;
}
.mb-0 {
    margin-bottom: 0px !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-10 {
    margin-bottom: 2.5rem !important;
}
.mb-12 {
    margin-bottom: 3rem !important;
}
.mb-14 {
    margin-bottom: 3.5rem !important;
}
.mb-16 {
    margin-bottom: 4rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 0.75rem !important;
}
.mb-4 {
    margin-bottom: 1rem !important;
}
.mb-5 {
    margin-bottom: 1.25rem !important;
}
.mb-6 {
    margin-bottom: 1.5rem !important;
}
.mb-8 {
    margin-bottom: 2rem !important;
}
.mb-\[5\.23\%\] {
    margin-bottom: 5.23% !important;
}
.ml-0 {
    margin-left: 0px !important;
}
.ml-1 {
    margin-left: 0.25rem !important;
}
.ml-2 {
    margin-left: 0.5rem !important;
}
.ml-4 {
    margin-left: 1rem !important;
}
.ml-auto {
    margin-left: auto !important;
}
.mr-0 {
    margin-right: 0px !important;
}
.mr-2 {
    margin-right: 0.5rem !important;
}
.mr-4 {
    margin-right: 1rem !important;
}
.mr-6 {
    margin-right: 1.5rem !important;
}
.mr-auto {
    margin-right: auto !important;
}
.mt-0 {
    margin-top: 0px !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mt-24 {
    margin-top: 6rem !important;
}
.mt-3 {
    margin-top: 0.75rem !important;
}
.mt-4 {
    margin-top: 1rem !important;
}
.mt-6 {
    margin-top: 1.5rem !important;
}
.mt-7 {
    margin-top: 1.75rem !important;
}
.mt-8 {
    margin-top: 2rem !important;
}
.block {
    display: block !important;
}
.inline-block {
    display: inline-block !important;
}
.inline {
    display: inline !important;
}
.flex {
    display: flex !important;
}
.inline-flex {
    display: inline-flex !important;
}
.grid {
    display: grid !important;
}
.hidden {
    display: none !important;
}
.aspect-\[1\/1\] {
    aspect-ratio: 1/1 !important;
}
.aspect-\[16\/9\] {
    aspect-ratio: 16/9 !important;
}
.aspect-\[4\/3\] {
    aspect-ratio: 4/3 !important;
}
.aspect-\[4\/5\] {
    aspect-ratio: 4/5 !important;
}
.h-0 {
    height: 0px !important;
}
.h-0\.5 {
    height: 0.125rem !important;
}
.h-16 {
    height: 4rem !important;
}
.h-5 {
    height: 1.25rem !important;
}
.h-6 {
    height: 1.5rem !important;
}
.h-64 {
    height: 16rem !important;
}
.h-96 {
    height: 24rem !important;
}
.h-\[70vh\] {
    height: 70vh !important;
}
.h-auto {
    height: auto !important;
}
.h-fit {
    height: -moz-fit-content !important;
    height: fit-content !important;
}
.h-full {
    height: 100% !important;
}
.h-screen {
    height: 100vh !important;
}
.max-h-0 {
    max-height: 0px !important;
}
.max-h-12 {
    max-height: 3rem !important;
}
.max-h-24 {
    max-height: 6rem !important;
}
.max-h-\[200px\] {
    max-height: 200px !important;
}
.min-h-64 {
    min-height: 16rem !important;
}
.min-h-\[250px\] {
    min-height: 250px !important;
}
.min-h-full {
    min-height: 100% !important;
}
.min-h-screen {
    min-height: 100vh !important;
}
.w-12 {
    width: 3rem !important;
}
.w-16 {
    width: 4rem !important;
}
.w-4 {
    width: 1rem !important;
}
.w-5 {
    width: 1.25rem !important;
}
.w-6 {
    width: 1.5rem !important;
}
.w-auto {
    width: auto !important;
}
.w-fit {
    width: -moz-fit-content !important;
    width: fit-content !important;
}
.w-full {
    width: 100% !important;
}
.w-screen {
    width: 100vw !important;
}
.min-w-0 {
    min-width: 0px !important;
}
.max-w-2xl {
    max-width: 42rem !important;
}
.max-w-4xl {
    max-width: 56rem !important;
}
.max-w-5xl {
    max-width: 64rem !important;
}
.max-w-\[200px\] {
    max-width: 200px !important;
}
.max-w-\[90\%\] {
    max-width: 90% !important;
}
.max-w-full {
    max-width: 100% !important;
}
.max-w-lg {
    max-width: 32rem !important;
}
.max-w-md {
    max-width: 28rem !important;
}
.max-w-none {
    max-width: none !important;
}
.flex-1 {
    flex: 1 1 0% !important;
}
.flex-shrink-0 {
    flex-shrink: 0 !important;
}
.flex-grow {
    flex-grow: 1 !important;
}
.-translate-y-1\.5 {
    --tw-translate-y: -0.375rem !important;
    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)) !important;
}
.-translate-y-12 {
    --tw-translate-y: -3rem !important;
    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)) !important;
}
.translate-x-1\.5 {
    --tw-translate-x: 0.375rem !important;
    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)) !important;
}
.translate-y-0 {
    --tw-translate-y: 0px !important;
    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)) !important;
}
.translate-y-8 {
    --tw-translate-y: 2rem !important;
    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)) !important;
}
.rotate-180 {
    --tw-rotate: 180deg !important;
    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)) !important;
}
.rotate-90 {
    --tw-rotate: 90deg !important;
    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)) !important;
}
.rotate-\[90deg\] {
    --tw-rotate: 90deg !important;
    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)) !important;
}
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.list-inside {
    list-style-position: inside !important;
}
.list-disc {
    list-style-type: disc !important;
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.flex-row {
    flex-direction: row !important;
}
.flex-row-reverse {
    flex-direction: row-reverse !important;
}
.flex-col {
    flex-direction: column !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.items-start {
    align-items: flex-start !important;
}
.items-end {
    align-items: flex-end !important;
}
.items-center {
    align-items: center !important;
}
.justify-start {
    justify-content: flex-start !important;
}
.justify-end {
    justify-content: flex-end !important;
}
.justify-center {
    justify-content: center !important;
}
.justify-between {
    justify-content: space-between !important;
}
.gap-0 {
    gap: 0px !important;
}
.gap-12 {
    gap: 3rem !important;
}
.gap-2 {
    gap: 0.5rem !important;
}
.gap-3 {
    gap: 0.75rem !important;
}
.gap-4 {
    gap: 1rem !important;
}
.gap-6 {
    gap: 1.5rem !important;
}
.gap-8 {
    gap: 2rem !important;
}
.gap-lg {
    gap: 1.5rem !important;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.overflow-visible {
    overflow: visible !important;
}
.overflow-y-auto {
    overflow-y: auto !important;
}
.overflow-x-hidden {
    overflow-x: hidden !important;
}
.overflow-y-scroll {
    overflow-y: scroll !important;
}
.whitespace-nowrap {
    white-space: nowrap !important;
}
.rounded {
    border-radius: 0.25rem !important;
}
.rounded-2xl {
    border-radius: 1rem !important;
}
.rounded-full {
    border-radius: 9999px !important;
}
.rounded-lg {
    border-radius: 0.5rem !important;
}
.rounded-md {
    border-radius: 0.25rem !important;
}
.rounded-sm {
    border-radius: 0.125rem !important;
}
.rounded-xl {
    border-radius: 0.75rem !important;
}
.border {
    border-width: 1px !important;
}
.border-0 {
    border-width: 0px !important;
}
.border-2 {
    border-width: 2px !important;
}
.border-b {
    border-bottom-width: 1px !important;
}
.border-light-blue {
    --tw-border-opacity: 1 !important;
    border-color: rgb(0 51 161 / var(--tw-border-opacity, 1)) !important;
}
.border-medium-blue {
    --tw-border-opacity: 1 !important;
    border-color: rgb(0 37 116 / var(--tw-border-opacity, 1)) !important;
}
.border-white {
    --tw-border-opacity: 1 !important;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1)) !important;
}
.border-opacity-50 {
    --tw-border-opacity: 0.5 !important;
}
.bg-black {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(17 17 17 / var(--tw-bg-opacity, 1)) !important;
}
.bg-dark-blue {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(0 10 42 / var(--tw-bg-opacity, 1)) !important;
}
.bg-green {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(0 152 69 / var(--tw-bg-opacity, 1)) !important;
}
.bg-light-blue {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(0 51 161 / var(--tw-bg-opacity, 1)) !important;
}
.bg-medium-blue {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(0 37 116 / var(--tw-bg-opacity, 1)) !important;
}
.bg-transparent {
    background-color: transparent !important;
}
.bg-white {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
}
.bg-opacity-80 {
    --tw-bg-opacity: 0.8 !important;
}
.bg-custom-gradient {
    background-image: linear-gradient(180deg, #000A2A 0%, #0033A1 46%) !important;
}
.bg-fade-to-black {
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%) !important;
}
.bg-fade-to-black-top {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%) !important;
}
.bg-gradient-to-b-25 {
    background-image: linear-gradient(180deg, rgba(0,10,42,0.5) 0%, rgba(0,51,161,0) 38.94%) !important;
}
.bg-gradient-to-b-25-light {
    background-image: linear-gradient(to bottom, #0033A1 0%, transparent 50%) !important;
}
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
}
.bg-gradient-to-t-25 {
    background-image: linear-gradient(to top, #000A2A 0%, transparent 10%) !important;
}
.bg-gradient-to-t-25-light {
    background-image: linear-gradient(to top, #0033A1 0%, transparent 50%) !important;
}
.bg-packages-gradient {
    background-image: linear-gradient(180deg, #000A2A 0%, #0033A1 99%) !important;
}
.bg-streaming-gradient {
    background-image: linear-gradient(to bottom, #000A2A 0%, #002574 100%) !important;
}
.from-black {
    --tw-gradient-from: #111111 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgb(17 17 17 / 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.from-black\/80 {
    --tw-gradient-from: rgb(17 17 17 / 0.8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgb(17 17 17 / 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.via-black\/40 {
    --tw-gradient-to: rgb(17 17 17 / 0)  var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), rgb(17 17 17 / 0.4) var(--tw-gradient-via-position), var(--tw-gradient-to) !important;
}
.to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position) !important;
}
.bg-cover {
    background-size: cover !important;
}
.bg-center {
    background-position: center !important;
}
.bg-no-repeat {
    background-repeat: no-repeat !important;
}
.object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
}
.object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
}
.object-center {
    -o-object-position: center !important;
       object-position: center !important;
}
.p-0 {
    padding: 0px !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.p-4 {
    padding: 1rem !important;
}
.p-5 {
    padding: 1.25rem !important;
}
.p-6 {
    padding: 1.5rem !important;
}
.p-8 {
    padding: 2rem !important;
}
.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}
.px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}
.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
.px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
.px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}
.px-\[1\%\] {
    padding-left: 1% !important;
    padding-right: 1% !important;
}
.px-global {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}
.py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}
.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
.py-section-lg {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
}
.pb-0 {
    padding-bottom: 0px !important;
}
.pb-10 {
    padding-bottom: 2.5rem !important;
}
.pb-12 {
    padding-bottom: 3rem !important;
}
.pb-2 {
    padding-bottom: 0.5rem !important;
}
.pb-24 {
    padding-bottom: 6rem !important;
}
.pb-3 {
    padding-bottom: 0.75rem !important;
}
.pb-4 {
    padding-bottom: 1rem !important;
}
.pb-6 {
    padding-bottom: 1.5rem !important;
}
.pl-0 {
    padding-left: 0px !important;
}
.pl-2 {
    padding-left: 0.5rem !important;
}
.pr-0 {
    padding-right: 0px !important;
}
.pr-4 {
    padding-right: 1rem !important;
}
.pr-6 {
    padding-right: 1.5rem !important;
}
.pt-0 {
    padding-top: 0px !important;
}
.pt-12 {
    padding-top: 3rem !important;
}
.pt-16 {
    padding-top: 4rem !important;
}
.pt-2 {
    padding-top: 0.5rem !important;
}
.pt-24 {
    padding-top: 6rem !important;
}
.pt-4 {
    padding-top: 1rem !important;
}
.pt-5 {
    padding-top: 1.25rem !important;
}
.pt-6 {
    padding-top: 1.5rem !important;
}
.pt-\[5\%\] {
    padding-top: 5% !important;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.align-baseline {
    vertical-align: baseline !important;
}
.font-fk-legacy {
    font-family: FK Screamer Legacy, sans-serif !important;
}
.font-fk-legacy-backslanted {
    font-family: FK Screamer Legacy, sans-serif !important;
}
.font-fk-legacy-normal {
    font-family: FK Screamer Legacy, sans-serif !important;
}
.font-fk-legacy-semibackslanted {
    font-family: FK Screamer Legacy, sans-serif !important;
}
.font-fk-legacy-semislanted {
    font-family: FK Screamer Legacy, sans-serif !important;
}
.font-fk-legacy-slanted {
    font-family: FK Screamer Legacy, sans-serif !important;
}
.font-fk-screamer {
    font-family: FK Screamer, sans-serif !important;
}
.font-fk-screamer-black {
    font-family: FK Screamer, sans-serif !important;
}
.font-fk-screamer-bold {
    font-family: FK Screamer, sans-serif !important;
}
.font-fk-screamer-medium {
    font-family: FK Screamer, sans-serif !important;
}
.font-fk-screamer-regular {
    font-family: FK Screamer, sans-serif !important;
}
.font-haglos {
    font-family: Haglos, serif !important;
}
.font-haglos-bold {
    font-family: Haglos, serif !important;
}
.font-haglos-extrude {
    font-family: Haglos Extrude, serif !important;
}
.font-haglos-extrude-bold {
    font-family: Haglos Extrude, serif !important;
}
.font-haglos-extrude-regular {
    font-family: Haglos Extrude, serif !important;
}
.font-haglos-extrude-semibold {
    font-family: Haglos Extrude, serif !important;
}
.font-haglos-regular {
    font-family: Haglos, serif !important;
}
.font-haglos-semibold {
    font-family: Haglos, serif !important;
}
.font-public-sans {
    font-family: Public Sans, sans-serif !important;
}
.font-public-sans-black {
    font-family: Public Sans, sans-serif !important;
}
.font-public-sans-bold {
    font-family: Public Sans, sans-serif !important;
}
.text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}
.text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
}
.text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
}
.text-\[13vw\] {
    font-size: 13vw !important;
}
.text-\[225px\] {
    font-size: 225px !important;
}
.text-\[30px\] {
    font-size: 30px !important;
}
.text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}
.text-big {
    font-size: 3.5rem !important;
    line-height: 1 !important;
}
.text-biggest {
    font-size: 6rem !important;
    line-height: 0.95 !important;
    font-weight: 700 !important;
}
.text-biggest-mobile {
    font-size: 3.75rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}
.text-body {
    font-size: 1rem !important;
    line-height: 1 !important;
}
.text-caption {
    font-size: 0.75rem !important;
    line-height: 1 !important;
}
.text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
}
.text-medium {
    font-size: 3rem !important;
    line-height: 1 !important;
}
.text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}
.text-small {
    font-size: 2.25rem !important;
    line-height: 0.95 !important;
}
.text-smaller {
    font-size: 1.5rem !important;
    line-height: 1 !important;
}
.text-smallest {
    font-size: 1.25rem !important;
    line-height: 1 !important;
}
.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}
.text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
}
.font-black {
    font-weight: 900 !important;
}
.font-bold {
    font-weight: 700 !important;
}
.font-extrabold {
    font-weight: 800 !important;
}
.font-medium {
    font-weight: 500 !important;
}
.font-normal {
    font-weight: 400 !important;
}
.font-semibold {
    font-weight: 600 !important;
}
.font-thin {
    font-weight: 100 !important;
}
.uppercase {
    text-transform: uppercase !important;
}
.capitalize {
    text-transform: capitalize !important;
}
.italic {
    font-style: italic !important;
}
.not-italic {
    font-style: normal !important;
}
.leading-6 {
    line-height: 1.5rem !important;
}
.leading-\[1\.35rem\] {
    line-height: 1.35rem !important;
}
.leading-\[1\] {
    line-height: 1 !important;
}
.leading-none {
    line-height: 1 !important;
}
.leading-tight {
    line-height: 1.25 !important;
}
.text-black {
    --tw-text-opacity: 1 !important;
    color: rgb(17 17 17 / var(--tw-text-opacity, 1)) !important;
}
.text-dark-blue {
    --tw-text-opacity: 1 !important;
    color: rgb(0 10 42 / var(--tw-text-opacity, 1)) !important;
}
.text-inherit {
    color: inherit !important;
}
.text-light-blue {
    --tw-text-opacity: 1 !important;
    color: rgb(0 51 161 / var(--tw-text-opacity, 1)) !important;
}
.text-transparent {
    color: transparent !important;
}
.text-white {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.underline {
    text-decoration-line: underline !important;
}
.no-underline {
    text-decoration-line: none !important;
}
.opacity-0 {
    opacity: 0 !important;
}
.opacity-100 {
    opacity: 1 !important;
}
.opacity-80 {
    opacity: 0.8 !important;
}
.opacity-90 {
    opacity: 0.9 !important;
}
.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1) !important;
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -2px var(--tw-shadow-color) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -1px var(--tw-shadow-color) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.ring {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}
.invert {
    --tw-invert: invert(100%) !important;
    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) !important;
}
.sepia {
    --tw-sepia: sepia(100%) !important;
    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) !important;
}
.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) !important;
}
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 300ms !important;
}
.transition-all {
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 300ms !important;
}
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 300ms !important;
}
.transition-opacity {
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 300ms !important;
}
.transition-transform {
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 300ms !important;
}
.delay-300 {
    transition-delay: 300ms !important;
}
.duration-1000 {
    transition-duration: 1000ms !important;
}
.duration-200 {
    transition-duration: 200ms !important;
}
.duration-300 {
    transition-duration: 300ms !important;
}
.duration-500 {
    transition-duration: 500ms !important;
}
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
}
.\[-webkit-text-stroke\:0\.5px_white\] {
    -webkit-text-stroke: 0.5px white !important;
}
.\[-webkit-text-stroke\:1px_white\] {
    -webkit-text-stroke: 1px white !important;
}

/* Import custom fonts first */

/* Import design system variables and components */

/* Container to scope Tailwind styles */
.lexleg-blocks {
  /* Custom classes can be added here */
}

/* 
 * Editor compatibility - ensure editor classes match frontend 
 * These classes help styles properly show up in the block editor
 */

.wp-block .hover\:text-light-blue:hover {
    color: var(--color-light-blue) !important;
  }

.wp-block .hover\:bg-light-blue:hover {
    background-color: var(--color-light-blue) !important;
  }

@media (min-width: 768px) {
  .wp-block .md\:inline-flex {
    display: inline-flex !important;
  }

  .wp-block .md\:items-center {
    align-items: center !important;
  }
  @media (max-width: 767px) {
    .wp-block .md\:text-biggest {
      font-size: var(--font-size-biggest-mobile) !important;
    }

    .wp-block .md\:text-big {
      font-size: var(--font-size-big-mobile) !important;
    }

    .wp-block .md\:text-medium {
      font-size: var(--font-size-medium-mobile) !important;
    }
  }
}

@media (min-width: 1024px) {
  @media (max-width: 767px) {
    .wp-block .lg\:text-biggest {
      font-size: var(--font-size-biggest-mobile) !important;
    }
  }
}

.hover\:-translate-y-1:hover {
    --tw-translate-y: -0.25rem !important;
    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)) !important;
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
    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)) !important;
}

.hover\:cursor-pointer:hover {
    cursor: pointer !important;
}

.hover\:bg-light-blue:hover {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(0 51 161 / var(--tw-bg-opacity, 1)) !important;
}

.hover\:bg-white:hover {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
}

.hover\:text-light-blue:hover {
    --tw-text-opacity: 1 !important;
    color: rgb(0 51 161 / var(--tw-text-opacity, 1)) !important;
}

.hover\:underline:hover {
    text-decoration-line: underline !important;
}

.hover\:no-underline:hover {
    text-decoration-line: none !important;
}

.hover\:opacity-90:hover {
    opacity: 0.9 !important;
}

.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -2px var(--tw-shadow-color) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:underline:focus {
    text-decoration-line: underline !important;
}

.focus\:no-underline:focus {
    text-decoration-line: none !important;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
}

.focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus\:ring-4:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus\:ring-white:focus {
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1)) !important;
}

.focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px !important;
}

.group:hover .group-hover\:mb-1 {
    margin-bottom: 0.25rem !important;
}

.group:hover .group-hover\:max-h-72 {
    max-height: 18rem !important;
}

.group\/link:hover .group-hover\/link\:translate-x-1 {
    --tw-translate-x: 0.25rem !important;
    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)) !important;
}

.group:hover .group-hover\:-translate-y-1 {
    --tw-translate-y: -0.25rem !important;
    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)) !important;
}

.group:hover .group-hover\:translate-y-0 {
    --tw-translate-y: 0px !important;
    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)) !important;
}

.group:hover .group-hover\:scale-105 {
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
    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)) !important;
}

.group:hover .group-hover\:from-black\/90 {
    --tw-gradient-from: rgb(17 17 17 / 0.9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgb(17 17 17 / 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.group:hover .group-hover\:via-black\/70 {
    --tw-gradient-to: rgb(17 17 17 / 0)  var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), rgb(17 17 17 / 0.7) var(--tw-gradient-via-position), var(--tw-gradient-to) !important;
}

.group:hover .group-hover\:pb-8 {
    padding-bottom: 2rem !important;
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1 !important;
}

.group:hover .group-hover\:opacity-90 {
    opacity: 0.9 !important;
}

@media (min-width: 640px) {

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .sm\:pt-16 {
        padding-top: 4rem !important;
    }
}

@media (min-width: 768px) {

    .md\:absolute {
        position: absolute !important;
    }

    .md\:inset-0 {
        inset: 0px !important;
    }

    .md\:-top-16 {
        top: -4rem !important;
    }

    .md\:my-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .md\:mb-0 {
        margin-bottom: 0px !important;
    }

    .md\:mb-12 {
        margin-bottom: 3rem !important;
    }

    .md\:mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .md\:mb-8 {
        margin-bottom: 2rem !important;
    }

    .md\:ml-3 {
        margin-left: 0.75rem !important;
    }

    .md\:mt-0 {
        margin-top: 0px !important;
    }

    .md\:mt-8 {
        margin-top: 2rem !important;
    }

    .md\:block {
        display: block !important;
    }

    .md\:flex {
        display: flex !important;
    }

    .md\:inline-flex {
        display: inline-flex !important;
    }

    .md\:hidden {
        display: none !important;
    }

    .md\:aspect-\[1\/1\] {
        aspect-ratio: 1/1 !important;
    }

    .md\:h-\[90vh\] {
        height: 90vh !important;
    }

    .md\:max-h-\[300px\] {
        max-height: 300px !important;
    }

    .md\:max-h-\[600px\] {
        max-height: 600px !important;
    }

    .md\:w-1\/2 {
        width: 50% !important;
    }

    .md\:w-1\/3 {
        width: 33.333333% !important;
    }

    .md\:w-1\/4 {
        width: 25% !important;
    }

    .md\:w-2\/3 {
        width: 66.666667% !important;
    }

    .md\:w-3\/4 {
        width: 75% !important;
    }

    .md\:w-\[65\%\] {
        width: 65% !important;
    }

    .md\:w-auto {
        width: auto !important;
    }

    .md\:max-w-sm {
        max-width: 24rem !important;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .md\:grid-cols-\[repeat\(auto-fit\2c minmax\(300px\2c 1fr\)\)\] {
        grid-template-columns: repeat(auto-fit,minmax(300px,1fr)) !important;
    }

    .md\:flex-row {
        flex-direction: row !important;
    }

    .md\:items-start {
        align-items: flex-start !important;
    }

    .md\:items-end {
        align-items: flex-end !important;
    }

    .md\:items-center {
        align-items: center !important;
    }

    .md\:justify-end {
        justify-content: flex-end !important;
    }

    .md\:gap-0 {
        gap: 0px !important;
    }

    .md\:gap-32 {
        gap: 8rem !important;
    }

    .md\:gap-4 {
        gap: 1rem !important;
    }

    .md\:gap-8 {
        gap: 2rem !important;
    }

    .md\:overflow-visible {
        overflow: visible !important;
    }

    .md\:bg-transparent {
        background-color: transparent !important;
    }

    .md\:px-3 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .md\:py-24 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .md\:py-48 {
        padding-top: 12rem !important;
        padding-bottom: 12rem !important;
    }

    .md\:pb-0 {
        padding-bottom: 0px !important;
    }

    .md\:pl-24 {
        padding-left: 6rem !important;
    }

    .md\:pl-6 {
        padding-left: 1.5rem !important;
    }

    .md\:pl-8 {
        padding-left: 2rem !important;
    }

    .md\:pr-48 {
        padding-right: 12rem !important;
    }

    .md\:pt-0 {
        padding-top: 0px !important;
    }

    .md\:pt-12 {
        padding-top: 3rem !important;
    }

    .md\:pt-24 {
        padding-top: 6rem !important;
    }

    .md\:pt-4 {
        padding-top: 1rem !important;
    }

    .md\:pt-\[5\%\] {
        padding-top: 5% !important;
    }

    .md\:text-left {
        text-align: left !important;
    }

    .md\:align-bottom {
        vertical-align: bottom !important;
    }

    .md\:text-6xl {
        font-size: 3.75rem !important;
        line-height: 1 !important;
    }

    .md\:text-\[225px\] {
        font-size: 225px !important;
    }

    .md\:text-\[30px\] {
        font-size: 30px !important;
    }

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

    .md\:text-base {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }

    .md\:text-big {
        font-size: 3.5rem !important;
        line-height: 1 !important;
    }

    .md\:text-biggest {
        font-size: 6rem !important;
        line-height: 0.95 !important;
        font-weight: 700 !important;
    }

    .md\:text-medium {
        font-size: 3rem !important;
        line-height: 1 !important;
    }

    .md\:text-smaller {
        font-size: 1.5rem !important;
        line-height: 1 !important;
    }

    .md\:text-smallest {
        font-size: 1.25rem !important;
        line-height: 1 !important;
    }

    .group:hover .md\:group-hover\:max-h-72 {
        max-height: 18rem !important;
    }

    .group:hover .md\:group-hover\:pb-8 {
        padding-bottom: 2rem !important;
    }
}

@media (min-width: 1024px) {

    .lg\:mb-0 {
        margin-bottom: 0px !important;
    }

    .lg\:mb-6 {
        margin-bottom: 1.5rem !important;
    }

    .lg\:mt-0 {
        margin-top: 0px !important;
    }

    .lg\:h-\[600px\] {
        height: 600px !important;
    }

    .lg\:w-1\/2 {
        width: 50% !important;
    }

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

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }

    .lg\:flex-row {
        flex-direction: row !important;
    }

    .lg\:items-end {
        align-items: flex-end !important;
    }

    .lg\:gap-0 {
        gap: 0px !important;
    }

    .lg\:gap-12 {
        gap: 3rem !important;
    }

    .lg\:gap-8 {
        gap: 2rem !important;
    }

    .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0 !important;
        margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
        margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
    }

    .lg\:pl-24 {
        padding-left: 6rem !important;
    }

    .lg\:pt-8 {
        padding-top: 2rem !important;
    }

    .lg\:text-biggest {
        font-size: 6rem !important;
        line-height: 0.95 !important;
        font-weight: 700 !important;
    }
}

@media (min-width: 1280px) {

    .xl\:max-w-lg {
        max-width: 32rem !important;
    }

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

    .xl\:flex-row {
        flex-direction: row !important;
    }

    .xl\:items-end {
        align-items: flex-end !important;
    }

    .xl\:gap-lg {
        gap: 1.5rem !important;
    }
}

