@charset "UTF-8";
/*!
Theme Name: Integra Elements
Theme URI: http://integra-elements.imco.design/
Author: Chris Javier Oliveros, Jake Oliveros Chico
Author URI: http://imco.design/chrisjavier
Description: Integra Elements is a modern WordPress theme built from the ground up for designers, developers, and agencies who demand flexibility, speed, and visual perfection. Blending years of theme-building experience into a unified system, Integra Elements delivers a refined foundation powered by Elementor’s powerful page builder.
Version: 1.0.3
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: integra-elements
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
/**
 * TEXT UTILITY MIXINS
 * -------------------
 */
/**
 * Multi-line text truncation
 * @param {Number} $lines - Number of lines to show
 * @example @include truncate-multiline(3);
 */
/**
 * BREAKPOINTS
 * -----------
 * Simple responsive breakpoint system with mobile-first approach.
 */
/**
 * Get breakpoint value
 * @param {String} $name - The breakpoint name
 * @return {Number} The breakpoint value in pixels
 * @example width: breakpoint('md'); // Returns 768px
 */
/**
 * Apply styles at a breakpoint and up (mobile-first)
 * @param {String} $size - Breakpoint size name
 * @example @include breakpoint('md') { display: flex; }
 */
/**
 * Apply styles below a breakpoint (max-width)
 * @param {String} $size - Breakpoint size name
 * @example @include breakpoint-down('md') { display: block; }
 */
/**
 * HELPERS INDEX
 * ===============
 * This file forwards all helpers.
 */
.text-center {
  text-align: center;
}

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

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

.spacing--top-xs {
  padding-top: var(--spacing-xs-mobile);
}
@media (min-width: 768px) {
  .spacing--top-xs {
    padding-top: var(--spacing-xs-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--top-xs {
    padding-top: var(--spacing-xs-desktop);
  }
}
.spacing--bottom-xs {
  padding-bottom: var(--spacing-xs-mobile);
}
@media (min-width: 768px) {
  .spacing--bottom-xs {
    padding-bottom: var(--spacing-xs-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--bottom-xs {
    padding-bottom: var(--spacing-xs-desktop);
  }
}
.spacing--top-sm {
  padding-top: var(--spacing-sm-mobile);
}
@media (min-width: 768px) {
  .spacing--top-sm {
    padding-top: var(--spacing-sm-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--top-sm {
    padding-top: var(--spacing-sm-desktop);
  }
}
.spacing--bottom-sm {
  padding-bottom: var(--spacing-sm-mobile);
}
@media (min-width: 768px) {
  .spacing--bottom-sm {
    padding-bottom: var(--spacing-sm-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--bottom-sm {
    padding-bottom: var(--spacing-sm-desktop);
  }
}
.spacing--top-md {
  padding-top: var(--spacing-md-mobile);
}
@media (min-width: 768px) {
  .spacing--top-md {
    padding-top: var(--spacing-md-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--top-md {
    padding-top: var(--spacing-md-desktop);
  }
}
.spacing--bottom-md {
  padding-bottom: var(--spacing-md-mobile);
}
@media (min-width: 768px) {
  .spacing--bottom-md {
    padding-bottom: var(--spacing-md-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--bottom-md {
    padding-bottom: var(--spacing-md-desktop);
  }
}
.spacing--top-lg {
  padding-top: var(--spacing-lg-mobile);
}
@media (min-width: 768px) {
  .spacing--top-lg {
    padding-top: var(--spacing-lg-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--top-lg {
    padding-top: var(--spacing-lg-desktop);
  }
}
.spacing--bottom-lg {
  padding-bottom: var(--spacing-lg-mobile);
}
@media (min-width: 768px) {
  .spacing--bottom-lg {
    padding-bottom: var(--spacing-lg-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--bottom-lg {
    padding-bottom: var(--spacing-lg-desktop);
  }
}
.spacing--top-xl {
  padding-top: var(--spacing-xl-mobile);
}
@media (min-width: 768px) {
  .spacing--top-xl {
    padding-top: var(--spacing-xl-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--top-xl {
    padding-top: var(--spacing-xl-desktop);
  }
}
.spacing--bottom-xl {
  padding-bottom: var(--spacing-xl-mobile);
}
@media (min-width: 768px) {
  .spacing--bottom-xl {
    padding-bottom: var(--spacing-xl-tablet);
  }
}
@media (min-width: 992px) {
  .spacing--bottom-xl {
    padding-bottom: var(--spacing-xl-desktop);
  }
}

.theme-light {
  color: var(--color-White);
}

.theme-dark {
  color: var(--color-Black);
}

.text-Primary {
  color: var(--color-Primary);
}
.text-Primary-50 {
  color: var(--color-Primary-50);
}
.text-Primary-100 {
  color: var(--color-Primary-100);
}
.text-Primary-200 {
  color: var(--color-Primary-200);
}
.text-Primary-300 {
  color: var(--color-Primary-300);
}
.text-Primary-400 {
  color: var(--color-Primary-400);
}
.text-Primary-500 {
  color: var(--color-Primary-500);
}
.text-Primary-600 {
  color: var(--color-Primary-600);
}
.text-Primary-700 {
  color: var(--color-Primary-700);
}
.text-Primary-800 {
  color: var(--color-Primary-800);
}
.text-Primary-900 {
  color: var(--color-Primary-900);
}
.text-Primary-950 {
  color: var(--color-Primary-950);
}
.text-Secondary {
  color: var(--color-Secondary);
}
.text-Secondary-50 {
  color: var(--color-Secondary-50);
}
.text-Secondary-100 {
  color: var(--color-Secondary-100);
}
.text-Secondary-200 {
  color: var(--color-Secondary-200);
}
.text-Secondary-300 {
  color: var(--color-Secondary-300);
}
.text-Secondary-400 {
  color: var(--color-Secondary-400);
}
.text-Secondary-500 {
  color: var(--color-Secondary-500);
}
.text-Secondary-600 {
  color: var(--color-Secondary-600);
}
.text-Secondary-700 {
  color: var(--color-Secondary-700);
}
.text-Secondary-800 {
  color: var(--color-Secondary-800);
}
.text-Secondary-900 {
  color: var(--color-Secondary-900);
}
.text-Secondary-950 {
  color: var(--color-Secondary-950);
}
.text-Light-50 {
  color: var(--color-Light-50);
}
.text-Light-100 {
  color: var(--color-Light-100);
}
.text-Light-200 {
  color: var(--color-Light-200);
}
.text-Light-300 {
  color: var(--color-Light-300);
}
.text-Light-400 {
  color: var(--color-Light-400);
}
.text-Light-500 {
  color: var(--color-Light-500);
}
.text-Light-600 {
  color: var(--color-Light-600);
}
.text-Light-700 {
  color: var(--color-Light-700);
}
.text-Light-800 {
  color: var(--color-Light-800);
}
.text-Light-900 {
  color: var(--color-Light-900);
}
.text-Light-950 {
  color: var(--color-Light-950);
}
.text-Dark-50 {
  color: var(--color-Dark-50);
}
.text-Dark-100 {
  color: var(--color-Dark-100);
}
.text-Dark-200 {
  color: var(--color-Dark-200);
}
.text-Dark-300 {
  color: var(--color-Dark-300);
}
.text-Dark-400 {
  color: var(--color-Dark-400);
}
.text-Dark-500 {
  color: var(--color-Dark-500);
}
.text-Dark-600 {
  color: var(--color-Dark-600);
}
.text-Dark-700 {
  color: var(--color-Dark-700);
}
.text-Dark-800 {
  color: var(--color-Dark-800);
}
.text-Dark-900 {
  color: var(--color-Dark-900);
}
.text-Dark-950 {
  color: var(--color-Dark-950);
}

.bg-Primary {
  background-color: var(--color-Primary);
}
.bg-Primary-50 {
  background-color: var(--color-Primary-50);
}
.bg-Primary-100 {
  background-color: var(--color-Primary-100);
}
.bg-Primary-200 {
  background-color: var(--color-Primary-200);
}
.bg-Primary-300 {
  background-color: var(--color-Primary-300);
}
.bg-Primary-400 {
  background-color: var(--color-Primary-400);
}
.bg-Primary-500 {
  background-color: var(--color-Primary-500);
}
.bg-Primary-600 {
  background-color: var(--color-Primary-600);
}
.bg-Primary-700 {
  background-color: var(--color-Primary-700);
}
.bg-Primary-800 {
  background-color: var(--color-Primary-800);
}
.bg-Primary-900 {
  background-color: var(--color-Primary-900);
}
.bg-Primary-950 {
  background-color: var(--color-Primary-950);
}
.bg-Secondary {
  background-color: var(--color-Secondary);
}
.bg-Secondary-50 {
  background-color: var(--color-Secondary-50);
}
.bg-Secondary-100 {
  background-color: var(--color-Secondary-100);
}
.bg-Secondary-200 {
  background-color: var(--color-Secondary-200);
}
.bg-Secondary-300 {
  background-color: var(--color-Secondary-300);
}
.bg-Secondary-400 {
  background-color: var(--color-Secondary-400);
}
.bg-Secondary-500 {
  background-color: var(--color-Secondary-500);
}
.bg-Secondary-600 {
  background-color: var(--color-Secondary-600);
}
.bg-Secondary-700 {
  background-color: var(--color-Secondary-700);
}
.bg-Secondary-800 {
  background-color: var(--color-Secondary-800);
}
.bg-Secondary-900 {
  background-color: var(--color-Secondary-900);
}
.bg-Secondary-950 {
  background-color: var(--color-Secondary-950);
}
.bg-Light-50 {
  background-color: var(--color-Light-50);
}
.bg-Light-100 {
  background-color: var(--color-Light-100);
}
.bg-Light-200 {
  background-color: var(--color-Light-200);
}
.bg-Light-300 {
  background-color: var(--color-Light-300);
}
.bg-Light-400 {
  background-color: var(--color-Light-400);
}
.bg-Light-500 {
  background-color: var(--color-Light-500);
}
.bg-Light-600 {
  background-color: var(--color-Light-600);
}
.bg-Light-700 {
  background-color: var(--color-Light-700);
}
.bg-Light-800 {
  background-color: var(--color-Light-800);
}
.bg-Light-900 {
  background-color: var(--color-Light-900);
}
.bg-Light-950 {
  background-color: var(--color-Light-950);
}
.bg-Dark-50 {
  background-color: var(--color-Dark-50);
}
.bg-Dark-100 {
  background-color: var(--color-Dark-100);
}
.bg-Dark-200 {
  background-color: var(--color-Dark-200);
}
.bg-Dark-300 {
  background-color: var(--color-Dark-300);
}
.bg-Dark-400 {
  background-color: var(--color-Dark-400);
}
.bg-Dark-500 {
  background-color: var(--color-Dark-500);
}
.bg-Dark-600 {
  background-color: var(--color-Dark-600);
}
.bg-Dark-700 {
  background-color: var(--color-Dark-700);
}
.bg-Dark-800 {
  background-color: var(--color-Dark-800);
}
.bg-Dark-900 {
  background-color: var(--color-Dark-900);
}
.bg-Dark-950 {
  background-color: var(--color-Dark-950);
}

.card-style {
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #d6dce4;
  transition: all 240ms ease-out;
}
.card-style .active, .card-style:hover {
  border: 1px solid #b9c3d5;
  box-shadow: 0 4px 8px 0 rgba(122, 129, 140, 0.2);
  transform: translateY(-4px);
  cursor: pointer;
}
.card-style--shadow-1 {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.08);
}
.card-style--shadow-1:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
.card-style--shadow-2 {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.card-style--shadow-2:hover {
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.12);
}
.card-style--shadow-3 {
  box-shadow: 0 7px 14px 0 rgba(0, 0, 0, 0.12);
}
.card-style--shadow-3:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14);
}
.card-style--shadow-4 {
  box-shadow: 0 9px 18px 0 rgba(0, 0, 0, 0.14);
}
.card-style--shadow-4:hover {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.16);
}
.card-style--shadow-5 {
  box-shadow: 0 11px 22px 0 rgba(0, 0, 0, 0.16);
}
.card-style--shadow-5:hover {
  box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.18);
}

.card-content {
  display: flex;
  flex-direction: column;
}
.card-content p {
  margin: 0;
}

/**
 * HOW TO USE DISPLAY UTILITIES
 * ============================
 * 
 * All display utilities now use the .d- prefix for consistency.
 * Includes both basic and responsive variants with mobile-first approach.
 * 
 * BREAKPOINTS (Mobile-First):
 * - xs: 480px+    - sm: 576px+    - md: 768px+
 * - lg: 992px+    - xl: 1200px+   - xxl: 1400px+
 * 
 * BASIC USAGE:
 * 
 * <div class="d-none">Hidden</div>
 * <div class="d-block">Block element</div>
 * <div class="d-flex">Flex container</div>
 * <div class="d-grid">Grid container</div>
 * <div class="d-inline-block">Inline block</div>
 * 
 * RESPONSIVE USAGE:
 * 
 * Hide on mobile, show on tablet:
 * <div class="d-none md:d-block">Content</div>
 * 
 * Flex on mobile, grid on desktop:
 * <div class="d-flex lg:d-grid">Layout</div>
 * 
 * Block on mobile, inline on small screens, flex on large:
 * <div class="d-block sm:d-inline lg:d-flex">Responsive</div>
 * 
 * COMMON PATTERNS:
 * 
 * Mobile menu toggle:
 * <div class="d-block md:d-hidden">Mobile menu</div>
 * <div class="d-none md:d-block">Desktop menu</div>
 * 
 * Responsive grid:
 * <div class="d-block sm:d-flex lg:d-grid">Grid container</div>
 * 
 * Show/hide at different breakpoints:
 * <div class="d-none xs:d-block sm:d-hidden md:d-block">Complex visibility</div>
 * 
 * AVAILABLE DISPLAY VALUES:
 * block, inline, inline-block, flex, inline-flex, grid, inline-grid,
 * table, table-row, table-cell, hidden (none), and more...
 */
/**
 * DISPLAY UTILITIES
 * -----------------
 * Both shorthand (.d-*) and full Tailwind-style responsive display utilities.
 * Mobile-first approach with breakpoint prefixes.
 */
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: flex !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-table-column {
  display: table-column !important;
}
.d-table-column-group {
  display: table-column-group !important;
}
.d-table-footer-group {
  display: table-footer-group !important;
}
.d-table-header-group {
  display: table-header-group !important;
}
.d-table-row-group {
  display: table-row-group !important;
}
.d-table-caption {
  display: table-caption !important;
}
.d-flow-root {
  display: flow-root !important;
}
.d-contents {
  display: contents !important;
}
.d-list-item {
  display: list-item !important;
}

.d-inline-table {
  display: inline-table !important;
}
.d-flow-root {
  display: flow-root !important;
}
.d-contents {
  display: contents !important;
}
.d-list-item {
  display: list-item !important;
}
.d-hidden {
  display: none !important;
}

@media (min-width: 480px) {
  .xs\:d-block {
    display: block !important;
  }
  .xs\:d-inline-block {
    display: inline-block !important;
  }
  .xs\:d-inline {
    display: inline !important;
  }
  .xs\:d-flex {
    display: flex !important;
  }
  .xs\:d-inline-flex {
    display: inline-flex !important;
  }
  .xs\:d-table {
    display: table !important;
  }
  .xs\:d-inline-table {
    display: inline-table !important;
  }
  .xs\:d-table-caption {
    display: table-caption !important;
  }
  .xs\:d-table-cell {
    display: table-cell !important;
  }
  .xs\:d-table-column {
    display: table-column !important;
  }
  .xs\:d-table-column-group {
    display: table-column-group !important;
  }
  .xs\:d-table-footer-group {
    display: table-footer-group !important;
  }
  .xs\:d-table-header-group {
    display: table-header-group !important;
  }
  .xs\:d-table-row-group {
    display: table-row-group !important;
  }
  .xs\:d-table-row {
    display: table-row !important;
  }
  .xs\:d-flow-root {
    display: flow-root !important;
  }
  .xs\:d-grid {
    display: grid !important;
  }
  .xs\:d-inline-grid {
    display: inline-grid !important;
  }
  .xs\:d-contents {
    display: contents !important;
  }
  .xs\:d-list-item {
    display: list-item !important;
  }
  .xs\:d-hidden {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .sm\:d-block {
    display: block !important;
  }
  .sm\:d-inline-block {
    display: inline-block !important;
  }
  .sm\:d-inline {
    display: inline !important;
  }
  .sm\:d-flex {
    display: flex !important;
  }
  .sm\:d-inline-flex {
    display: inline-flex !important;
  }
  .sm\:d-table {
    display: table !important;
  }
  .sm\:d-inline-table {
    display: inline-table !important;
  }
  .sm\:d-table-caption {
    display: table-caption !important;
  }
  .sm\:d-table-cell {
    display: table-cell !important;
  }
  .sm\:d-table-column {
    display: table-column !important;
  }
  .sm\:d-table-column-group {
    display: table-column-group !important;
  }
  .sm\:d-table-footer-group {
    display: table-footer-group !important;
  }
  .sm\:d-table-header-group {
    display: table-header-group !important;
  }
  .sm\:d-table-row-group {
    display: table-row-group !important;
  }
  .sm\:d-table-row {
    display: table-row !important;
  }
  .sm\:d-flow-root {
    display: flow-root !important;
  }
  .sm\:d-grid {
    display: grid !important;
  }
  .sm\:d-inline-grid {
    display: inline-grid !important;
  }
  .sm\:d-contents {
    display: contents !important;
  }
  .sm\:d-list-item {
    display: list-item !important;
  }
  .sm\:d-hidden {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .md\:d-block {
    display: block !important;
  }
  .md\:d-inline-block {
    display: inline-block !important;
  }
  .md\:d-inline {
    display: inline !important;
  }
  .md\:d-flex {
    display: flex !important;
  }
  .md\:d-inline-flex {
    display: inline-flex !important;
  }
  .md\:d-table {
    display: table !important;
  }
  .md\:d-inline-table {
    display: inline-table !important;
  }
  .md\:d-table-caption {
    display: table-caption !important;
  }
  .md\:d-table-cell {
    display: table-cell !important;
  }
  .md\:d-table-column {
    display: table-column !important;
  }
  .md\:d-table-column-group {
    display: table-column-group !important;
  }
  .md\:d-table-footer-group {
    display: table-footer-group !important;
  }
  .md\:d-table-header-group {
    display: table-header-group !important;
  }
  .md\:d-table-row-group {
    display: table-row-group !important;
  }
  .md\:d-table-row {
    display: table-row !important;
  }
  .md\:d-flow-root {
    display: flow-root !important;
  }
  .md\:d-grid {
    display: grid !important;
  }
  .md\:d-inline-grid {
    display: inline-grid !important;
  }
  .md\:d-contents {
    display: contents !important;
  }
  .md\:d-list-item {
    display: list-item !important;
  }
  .md\:d-hidden {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .lg\:d-block {
    display: block !important;
  }
  .lg\:d-inline-block {
    display: inline-block !important;
  }
  .lg\:d-inline {
    display: inline !important;
  }
  .lg\:d-flex {
    display: flex !important;
  }
  .lg\:d-inline-flex {
    display: inline-flex !important;
  }
  .lg\:d-table {
    display: table !important;
  }
  .lg\:d-inline-table {
    display: inline-table !important;
  }
  .lg\:d-table-caption {
    display: table-caption !important;
  }
  .lg\:d-table-cell {
    display: table-cell !important;
  }
  .lg\:d-table-column {
    display: table-column !important;
  }
  .lg\:d-table-column-group {
    display: table-column-group !important;
  }
  .lg\:d-table-footer-group {
    display: table-footer-group !important;
  }
  .lg\:d-table-header-group {
    display: table-header-group !important;
  }
  .lg\:d-table-row-group {
    display: table-row-group !important;
  }
  .lg\:d-table-row {
    display: table-row !important;
  }
  .lg\:d-flow-root {
    display: flow-root !important;
  }
  .lg\:d-grid {
    display: grid !important;
  }
  .lg\:d-inline-grid {
    display: inline-grid !important;
  }
  .lg\:d-contents {
    display: contents !important;
  }
  .lg\:d-list-item {
    display: list-item !important;
  }
  .lg\:d-hidden {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .xl\:d-block {
    display: block !important;
  }
  .xl\:d-inline-block {
    display: inline-block !important;
  }
  .xl\:d-inline {
    display: inline !important;
  }
  .xl\:d-flex {
    display: flex !important;
  }
  .xl\:d-inline-flex {
    display: inline-flex !important;
  }
  .xl\:d-table {
    display: table !important;
  }
  .xl\:d-inline-table {
    display: inline-table !important;
  }
  .xl\:d-table-caption {
    display: table-caption !important;
  }
  .xl\:d-table-cell {
    display: table-cell !important;
  }
  .xl\:d-table-column {
    display: table-column !important;
  }
  .xl\:d-table-column-group {
    display: table-column-group !important;
  }
  .xl\:d-table-footer-group {
    display: table-footer-group !important;
  }
  .xl\:d-table-header-group {
    display: table-header-group !important;
  }
  .xl\:d-table-row-group {
    display: table-row-group !important;
  }
  .xl\:d-table-row {
    display: table-row !important;
  }
  .xl\:d-flow-root {
    display: flow-root !important;
  }
  .xl\:d-grid {
    display: grid !important;
  }
  .xl\:d-inline-grid {
    display: inline-grid !important;
  }
  .xl\:d-contents {
    display: contents !important;
  }
  .xl\:d-list-item {
    display: list-item !important;
  }
  .xl\:d-hidden {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .xxl\:d-block {
    display: block !important;
  }
  .xxl\:d-inline-block {
    display: inline-block !important;
  }
  .xxl\:d-inline {
    display: inline !important;
  }
  .xxl\:d-flex {
    display: flex !important;
  }
  .xxl\:d-inline-flex {
    display: inline-flex !important;
  }
  .xxl\:d-table {
    display: table !important;
  }
  .xxl\:d-inline-table {
    display: inline-table !important;
  }
  .xxl\:d-table-caption {
    display: table-caption !important;
  }
  .xxl\:d-table-cell {
    display: table-cell !important;
  }
  .xxl\:d-table-column {
    display: table-column !important;
  }
  .xxl\:d-table-column-group {
    display: table-column-group !important;
  }
  .xxl\:d-table-footer-group {
    display: table-footer-group !important;
  }
  .xxl\:d-table-header-group {
    display: table-header-group !important;
  }
  .xxl\:d-table-row-group {
    display: table-row-group !important;
  }
  .xxl\:d-table-row {
    display: table-row !important;
  }
  .xxl\:d-flow-root {
    display: flow-root !important;
  }
  .xxl\:d-grid {
    display: grid !important;
  }
  .xxl\:d-inline-grid {
    display: inline-grid !important;
  }
  .xxl\:d-contents {
    display: contents !important;
  }
  .xxl\:d-list-item {
    display: list-item !important;
  }
  .xxl\:d-hidden {
    display: none !important;
  }
}
.block-text {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--color-Light-400);
  background-color: var(--color-Light-100);
  text-align: center;
}

.gradient-underline {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.gradient-underline::after {
  position: absolute;
  content: "";
  left: 0;
  height: 4px;
  bottom: -1px;
  width: 100%;
  background: linear-gradient(to right, var(--color-Primary), var(--color-Primary-600));
}
.gradient-underline--lg::after {
  height: 5px;
  bottom: -3px;
}

.text-highlight {
  background-color: #f8ecec;
  border-radius: 0.25rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  font-weight: 500;
}

/**
 * Base Styles
 */
/**
 * ============================================================================
 * MAINTENANCE GUIDELINES FOR AI AGENTS
 * ============================================================================
 * 
 * IMPORTANT: This is a critical foundation file. Follow these guidelines:
 * 
 * BEFORE MAKING CHANGES:
 * 1. Research current CSS reset best practices and browser support
 * 2. Check latest versions of referenced reset methodologies
 * 3. Consider impact on existing components and layouts
 * 4. Test changes across different browsers and devices
 * 
 * WHAT TO UPDATE:
 * ✅ Browser prefixes (add new, remove obsolete)
 * ✅ New CSS properties and features
 * ✅ Accessibility improvements (WCAG updates)
 * ✅ Performance optimizations
 * ✅ New HTML5 elements and form types
 * ✅ Modern CSS features (container queries, cascade layers, etc.)
 * 
 * WHAT TO AVOID:
 * ❌ Removing established resets without thorough testing
 * ❌ Adding opinionated styling (keep it neutral)
 * ❌ Breaking accessibility features
 * ❌ Removing fallbacks for older browsers
 * ❌ Making changes that affect existing component layouts
 * 
 * REFERENCE SOURCES:
 * - Josh Comeau's CSS Reset: https://www.joshwcomeau.com/css/custom-css-reset/
 * - Andy Bell's Modern CSS Reset: https://piccalil.li/blog/a-modern-css-reset/
 * - MDN CSS Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS
 * - Can I Use: https://caniuse.com/
 * - WCAG Guidelines: https://www.w3.org/WAI/WCAG21/quickref/
 * 
 * TESTING CHECKLIST:
 * □ Test on major browsers (Chrome, Firefox, Safari, Edge)
 * □ Verify mobile responsiveness
 * □ Check accessibility with screen readers
 * □ Validate print styles
 * □ Test dark mode compatibility
 * □ Verify keyboard navigation works
 * □ Check high contrast mode
 * 
 * VERSION HISTORY:
 * v2.0 (2025) - Complete rewrite with modern standards
 * v1.0 (2024) - Initial version
 * 
 * ============================================================================
 */
/**
 * MODERN CSS RESET
 * ================
 * 
 * A comprehensive CSS reset based on modern best practices including:
 * - Josh Comeau's CSS Reset v2
 * - Andy Bell's Modern CSS Reset v2
 * - Normalize.css principles
 * - Enhanced accessibility improvements
 * - Modern HTML5 element support
 * 
 * Updated: 2025
 */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Prevent font size inflation and improve text rendering */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

/* Smooth scrolling for users who don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--color-Black);
  background-color: var(--color-White);
  overflow-x: hidden;
}

/* Remove list styles and reset spacing */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Keep list styles for semantic lists */
/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: bold;
  color: var(--color-heading, inherit);
}

/* Balance text wrapping on headings */
/* Make images and media easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Modern image formats and loading */
img {
  border-style: none;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

/* SVG improvements */
svg {
  fill: currentColor;
}

svg:not([fill]) {
  fill: currentColor;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select,
optgroup {
  font: inherit;
  color: inherit;
  background-color: transparent;
}

/* Form input improvements */
input,
textarea,
select {
  border: 1px solid var(--color-border, #ccc);
  border-radius: 0;
  padding: 0.5rem;
}

/* Remove default button styles */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Button and link focus improvements */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-focus, #2a8de9);
  outline-offset: 2px;
}

/* Improve button accessibility */
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
  resize: vertical;
}

/* Remove default search input styling */
input[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* Modern form input types */
input[type=email],
input[type=url],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=color],
input[type=range] {
  width: 100%;
}

/* File input improvements */
input[type=file] {
  border: none;
  padding: 0;
  background: none;
}

input[type=file]::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
  cursor: pointer;
}

/* Checkbox and radio improvements */
input[type=checkbox],
input[type=radio] {
  width: auto;
  margin-right: 0.5rem;
}

/* Progress and meter elements */
progress,
meter {
  width: 100%;
  height: 1rem;
}

/* Table improvements */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: left;
}

th,
td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--color-border, #eee);
}

th {
  font-weight: bold;
  color: var(--color-heading, inherit);
}

/* Form fieldset and legend */
fieldset {
  border: 1px solid var(--color-border, #ccc);
  margin: 0 0 1rem;
  padding: 1rem;
}

legend {
  padding: 0 0.5rem;
  font-weight: bold;
}

/* Details and summary elements */
details {
  margin-bottom: 1rem;
}

summary {
  cursor: pointer;
  font-weight: bold;
  padding: 0.5rem 0;
}

summary:hover {
  color: var(--color-link, #2a8de9);
}

/* Dialog element */
dialog {
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
  padding: 1rem;
  border: 1px solid var(--color-border, #ccc);
  border-radius: 0.5rem;
  background: var(--color-background, #fff);
  color: var(--color-text, #000);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

/* Modern semantic elements */
main,
section,
article,
aside,
header,
footer,
nav {
  display: block;
}

/* Code elements */
code,
kbd,
samp,
pre {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875em;
  background-color: var(--color-code-bg, #f5f5f5);
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}

pre {
  overflow: auto;
  padding: 1rem;
  background-color: var(--color-code-bg, #f5f5f5);
  border-radius: 0.5rem;
  line-height: 1.4;
}

pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}

/* Typography improvements */
small {
  font-size: 0.875em;
}

mark {
  background-color: var(--color-highlight, #ffff00);
  color: var(--color-text, #000);
  padding: 0.125rem 0.25rem;
}

/* Prevent sub and sup elements from affecting line height */
sub,
sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Link improvements */
a {
  color: var(--color-link, #2a8de9);
  text-decoration-skip-ink: auto;
}

a:hover {
  text-decoration: underline;
}

/* Anchor links */
:target {
  scroll-margin-block: 5ex;
}

/* Focus management */
:focus-visible {
  outline: 2px solid var(--color-focus, #2a8de9);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Hidden elements */
[hidden] {
  display: none !important;
}

/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
}
/* Improve contrast for users who prefer high contrast */
@media (prefers-contrast: high) {
  :focus-visible {
    outline: 3px solid;
    outline-offset: 2px;
  }
}
/* Dark mode support */
@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}
/* Print styles */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    page-break-inside: avoid;
  }
  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
}
/* Accessibility utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-background, #fff);
  color: var(--color-text, #000);
  padding: 8px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

/* Touch target sizing for mobile accessibility */
@media (hover: none) and (pointer: coarse) {
  button,
  input[type=button],
  input[type=submit],
  input[type=reset],
  input[type=file],
  label[for] {
    min-height: 44px;
    min-width: 44px;
  }
}
/* Reduced motion for specific elements */
@media (prefers-reduced-motion: reduce) {
  *::before,
  *::after {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    background-attachment: initial;
    scroll-behavior: auto;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
html,
body {
  font-size: var(--base-font-size);
  font-weight: var(--base-font-weight);
  font-family: var(--font-family-base), sans-serif;
  line-height: var(--base-line-height);
  color: var(--color-Black);
  font-optical-sizing: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--heading-font-weight);
  font-family: var(--font-family-heading), sans-serif;
  line-height: var(--heading-line-height);
  margin: var(--size-0);
}

.display-1 {
  font-size: var(--display-1-sm);
}
@media (min-width: 768px) {
  .display-1 {
    font-size: var(--display-1-md);
  }
}
@media (min-width: 992px) {
  .display-1 {
    font-size: var(--display-1-lg);
  }
}
.display-2 {
  font-size: var(--display-2-sm);
}
@media (min-width: 768px) {
  .display-2 {
    font-size: var(--display-2-md);
  }
}
@media (min-width: 992px) {
  .display-2 {
    font-size: var(--display-2-lg);
  }
}

h1 {
  font-size: var(--h1-sm);
}
@media (min-width: 768px) {
  h1 {
    font-size: var(--h1-md);
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: var(--h1-lg);
  }
}

h2 {
  font-size: var(--h2-sm);
}
@media (min-width: 768px) {
  h2 {
    font-size: var(--h2-md);
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: var(--h2-lg);
  }
}

h3 {
  font-size: var(--h3-sm);
}
@media (min-width: 768px) {
  h3 {
    font-size: var(--h3-md);
  }
}
@media (min-width: 992px) {
  h3 {
    font-size: var(--h3-lg);
  }
}

h4 {
  font-size: var(--h4-sm);
}
@media (min-width: 768px) {
  h4 {
    font-size: var(--h4-md);
  }
}
@media (min-width: 992px) {
  h4 {
    font-size: var(--h4-lg);
  }
}

h5 {
  font-size: var(--h5-sm);
}
@media (min-width: 768px) {
  h5 {
    font-size: var(--h5-md);
  }
}
@media (min-width: 992px) {
  h5 {
    font-size: var(--h5-lg);
  }
}

h6 {
  font-size: var(--h6-sm);
}
@media (min-width: 768px) {
  h6 {
    font-size: var(--h6-md);
  }
}
@media (min-width: 992px) {
  h6 {
    font-size: var(--h6-lg);
  }
}

p {
  margin-bottom: var(--size-4);
}

.lead {
  font-size: var(--lead-font-size);
  font-weight: var(--lead-font-weight);
  line-height: var(--lead-line-height);
}

a {
  color: var(--color-Primary);
  text-decoration: underline;
}
a:hover {
  color: var(--color-Primary-400);
}

strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

mark {
  background-color: var(--color-warning-light, #fff3cd);
  padding: 0.125rem 0.25rem;
}

small {
  font-size: var(--font-size-sm);
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

code,
kbd,
samp {
  font-family: var(--font-family-mono), Consolas, "Liberation Mono", Menlo, Monaco, monospace;
  font-size: 0.875em;
}

code {
  background-color: var(--color-gray-100, #f8f9fa);
  padding: 0.125rem 0.25rem;
  border-radius: var(--border-radius-sm, 0.25rem);
  color: var(--color-gray-800, #343a40);
}

kbd {
  background-color: var(--color-gray-800, #343a40);
  color: var(--color-white, #fff);
  padding: 0.125rem 0.25rem;
  border-radius: var(--border-radius-sm, 0.25rem);
  font-size: 0.75em;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

pre {
  background-color: var(--color-gray-100, #f8f9fa);
  padding: var(--size-4);
  border-radius: var(--border-radius-md, 0.375rem);
  overflow-x: auto;
  margin-bottom: var(--size-4);
}
pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
}

blockquote {
  margin: var(--size-3) 0;
  padding-left: var(--size-3);
  border-left: 2px solid rgba(195, 51, 41, 0.3019607843);
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  margin-top: var(--size-2);
  font-size: var(--font-size-sm);
  font-style: normal;
  color: var(--color-gray-500, #adb5bd);
}
blockquote cite::before {
  content: "— ";
}
blockquote.pl-4 {
  padding-left: var(--size-4);
}
@media (min-width: 768px) {
  blockquote.pl-4 {
    padding-left: var(--size-6);
  }
}
@media (min-width: 992px) {
  blockquote.pl-4 {
    padding-left: var(--size-8);
  }
}

.text-small {
  font-size: var(--font-size-sm);
}

.text-large {
  font-size: var(--font-size-lg);
}

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

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

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

.text-muted {
  color: var(--color-gray-500, #6c757d);
}

.text-primary {
  color: var(--color-primary, #007bff);
}

.text-secondary {
  color: var(--color-secondary, #6c757d);
}

.text-success {
  color: var(--color-success, #28a745);
}

.text-danger {
  color: var(--color-danger, #dc3545);
}

.text-warning {
  color: var(--color-warning, #ffc107);
}

.text-info {
  color: var(--color-info, #17a2b8);
}

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

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

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

.font-weight-light {
  font-weight: var(--font-weight-light, 300);
}

.font-weight-normal {
  font-weight: var(--font-weight-normal, 400);
}

.font-weight-bold {
  font-weight: var(--font-weight-bold, 700);
}

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

.line-height-sm {
  line-height: var(--line-height-tight, 1.25);
}

.line-height-base {
  line-height: var(--line-height-normal, 1.5);
}

.line-height-lg {
  line-height: var(--line-height-loose, 1.75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--btn-transition);
  font-size: var(--btn-md-font-size);
  font-weight: var(--btn-font-weight);
  height: var(--btn-md-height);
  line-height: var(--btn-line-height);
  border-radius: var(--btn-border-radius);
  padding: 0 var(--btn-md-padding-x);
}
.btn .cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn:focus-visible {
  outline: 2px solid var(--color-Primary);
  outline-offset: 2px;
}
.btn:hover {
  text-decoration: none;
  transform: var(--btn-onhover-transform);
}
.btn--sm {
  height: var(--btn-sm-height);
  padding: 0 var(--btn-sm-padding-x);
  font-size: var(--btn-sm-font-size);
}
.btn--lg {
  height: var(--btn-lg-height);
  padding: 0 var(--btn-lg-padding-x);
  font-size: var(--btn-lg-font-size);
}
.btn--block {
  display: block;
  width: 100%;
}
.btn--flat.btn--primary {
  color: var(--color-Primary-Contrast);
  background-color: var(--color-Primary);
  border-color: var(--color-Primary);
}
.btn--flat.btn--primary:hover {
  color: var(--color-Primary-Contrast);
  background-color: var(--color-Primary-Shade);
  border-color: var(--color-Primary-Shade);
}
.btn--flat.btn--primary:active {
  background-color: var(--color-Primary-800);
}
.btn--flat.btn--secondary {
  background-color: var(--color-Secondary);
  color: var(--color-Secondary-Contrast);
  border-color: var(--color-Secondary);
}
.btn--flat.btn--secondary:hover {
  background-color: var(--color-Secondary-Shade);
  color: var(--color-Secondary-Contrast);
  border-color: var(--color-Secondary-700);
}
.btn--flat.btn--secondary:active {
  background-color: var(--color-Secondary-800);
}
.btn--flat.btn--danger {
  background-color: var(--color-Danger);
  color: var(--color-Danger-Contrast);
  border-color: var(--color-Danger);
}
.btn--flat.btn--danger:hover {
  background-color: var(--color-Danger-Tint);
  color: var(--color-Danger-Contrast);
  border-color: var(--color-Danger-Tint);
}
.btn--flat.btn--danger:active {
  background-color: var(--color-Danger-800);
}
.btn--flat.btn--warning {
  background-color: var(--color-Warning);
  color: var(--color-Warning-Contrast);
  border-color: var(--color-Warning);
}
.btn--flat.btn--warning:hover {
  background-color: var(--color-Warning-Tint);
  color: var(--color-Warning-Contrast);
  border-color: var(--color-Warning-Tint);
}
.btn--flat.btn--warning:active {
  background-color: var(--color-Warning-800);
}
.btn--flat.btn--success {
  background-color: var(--color-Success);
  color: var(--color-Success-Contrast);
  border-color: var(--color-Success);
}
.btn--flat.btn--success:hover {
  background-color: var(--color-Success-Tint);
  color: var(--color-Success-Contrast);
  border-color: var(--color-Success-Tint);
}
.btn--flat.btn--success:active {
  background-color: var(--color-Success-800);
}
.btn--flat.btn--info {
  background-color: var(--color-Info);
  color: var(--color-Info-Contrast);
  border-color: var(--color-Info);
}
.btn--flat.btn--info:hover {
  background-color: var(--color-Info-Tint);
  color: var(--color-Info-Contrast);
  border-color: var(--color-Info-Tint);
}
.btn--flat.btn--info:active {
  background-color: var(--color-Info-800);
}
.btn--flat.btn--black {
  background-color: var(--color-Black);
  color: var(--color-White);
  border-color: var(--color-Black);
}
.btn--flat.btn--black:hover {
  background-color: var(--color-Dark-950);
}
.btn--flat.btn--white {
  background-color: var(--color-White);
  color: var(--color-Dark-400);
}
.btn--flat.btn--white:hover {
  background-color: var(--color-Light-200);
  color: var(--color-Dark-500);
}
.btn--flat.btn--light {
  background-color: var(--color-Light-500);
  color: var(--color-Black);
  border-color: var(--color-Light-500);
}
.btn--flat.btn--light:hover {
  background-color: var(--color-Light-200);
  color: var(--color-Dark-500);
  border-color: var(--color-Light-200);
}
.btn--flat.btn--light:active {
  background-color: var(--color-Light-800);
}
.btn--flat.btn--dark {
  background-color: var(--color-Dark-500);
  color: var(--color-White);
  border-color: var(--color-Dark-500);
}
.btn--flat.btn--dark:hover {
  background-color: var(--color-Dark-950);
  color: var(--color-White);
  border-color: var(--color-Dark-950);
}
.btn--flat.btn--dark:active {
  background-color: var(--color-Dark-800);
}
.btn--outline {
  border-width: var(--btn-border-width);
  background-color: var(--btn-outline-bg);
}
.btn--outline.btn--primary {
  border-color: var(--color-Primary);
  color: var(--color-Primary);
}
.btn--outline.btn--primary:hover {
  background-color: var(--color-Primary);
  color: var(--color-Primary-Contrast);
}
.btn--outline.btn--secondary {
  border-color: var(--color-Secondary);
  color: var(--color-Secondary);
}
.btn--outline.btn--secondary:hover {
  background-color: var(--color-Secondary);
  color: var(--color-Secondary-Contrast);
}
.btn--outline.btn--danger {
  border-color: var(--color-Danger);
  color: var(--color-Danger);
}
.btn--outline.btn--danger:hover {
  background-color: var(--color-Danger);
  color: var(--color-Danger-Contrast);
}
.btn--outline.btn--warning {
  border-color: var(--color-Warning);
  color: var(--color-Warning);
}
.btn--outline.btn--warning:hover {
  background-color: var(--color-Warning);
  color: var(--color-Warning-Contrast);
}
.btn--outline.btn--success {
  border-color: var(--color-Success);
  color: var(--color-Success);
}
.btn--outline.btn--success:hover {
  background-color: var(--color-Success);
  color: var(--color-Success-Contrast);
}
.btn--outline.btn--info {
  border-color: var(--color-Info);
  color: var(--color-Info);
}
.btn--outline.btn--info:hover {
  background-color: var(--color-Info);
  color: var(--color-Info-Contrast);
}
.btn--outline.btn--black {
  border-color: var(--color-Black);
  color: var(--color-Black);
}
.btn--outline.btn--black:hover {
  background-color: var(--color-Black);
  color: var(--color-White);
}
.btn--outline.btn--white {
  border-color: var(--color-White);
  color: var(--color-White);
}
.btn--outline.btn--white:hover {
  background-color: var(--color-White);
  color: var(--color-Black);
}
.btn--outline.btn--light {
  border-color: var(--color-Light-500);
  color: var(--color-Dark-400);
}
.btn--outline.btn--light:hover {
  background-color: var(--color-Light-500);
  color: var(--color-Dark-500);
}
.btn--outline.btn--dark {
  border-color: var(--color-Dark-500);
  color: var(--color-Dark-500);
}
.btn--outline.btn--dark:hover {
  background-color: var(--color-Dark-500);
  color: var(--color-White);
}

/**
 * List Elements
 * =============
 * Base styles for ordered lists, unordered lists, and definition lists
 */
ul,
ol {
  padding-left: var(--size-6);
}
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}
ul ul {
  list-style-type: circle;
  margin-bottom: var(--size-2);
}
ul ul ul {
  list-style-type: square;
}

ol {
  list-style-type: decimal;
}
ol ol {
  list-style-type: lower-alpha;
  margin-bottom: var(--size-2);
}
ol ol ol {
  list-style-type: lower-roman;
}

li {
  margin-bottom: var(--size-2);
  line-height: var(--line-height-normal, 1.5);
}
li:last-child {
  margin-bottom: 0;
}
li ul,
li ol {
  margin-top: var(--size-2);
  margin-bottom: var(--size-2);
}

dl {
  margin-bottom: var(--size-4);
}
dl:last-child {
  margin-bottom: 0;
}

dt {
  font-weight: var(--font-weight-bold, 700);
  margin-bottom: var(--size-1);
  color: var(--color-gray-900, #1a202c);
}

dd {
  margin-bottom: var(--size-3);
  margin-left: var(--size-4);
  color: var(--color-gray-700, #374151);
}
dd:last-child {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-unstyled li {
  margin-bottom: var(--size-2);
}

.list-inline {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.list-inline li {
  margin-right: var(--size-4);
  margin-bottom: 0;
}
.list-inline li:last-child {
  margin-right: 0;
}

.list-spaced li {
  margin-bottom: var(--size-4);
}

.list-tight li {
  margin-bottom: var(--size-1);
}

.list-separated {
  padding-left: 0;
  list-style: none;
}
.list-separated li {
  padding: var(--size-3) 0;
  border-bottom: 1px solid var(--color-gray-200, #e5e7eb);
  margin-bottom: 0;
}
.list-separated li:first-child {
  padding-top: 0;
}
.list-separated li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.list-nav {
  padding-left: 0;
  list-style: none;
}
.list-nav li {
  margin-bottom: 0;
}
.list-nav a {
  display: block;
  padding: var(--size-2) var(--size-3);
  text-decoration: none;
  color: var(--color-gray-700, #374151);
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  border-radius: var(--border-radius-sm, 0.25rem);
}
.list-nav a:hover {
  background-color: var(--color-gray-100, #f3f4f6);
  color: var(--color-gray-900, #1a202c);
}
.list-nav a.active {
  background-color: var(--color-primary, #007bff);
  color: var(--color-white, #fff);
}

.list-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: var(--size-4);
  list-style: none;
  background-color: var(--color-gray-100, #f3f4f6);
  border-radius: var(--border-radius-sm, 0.25rem);
  padding: var(--size-2) var(--size-4);
}
.list-breadcrumb li {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.list-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 var(--size-2);
  color: var(--color-gray-500, #6b7280);
}
.list-breadcrumb li a {
  color: var(--color-primary, #007bff);
  text-decoration: none;
}
.list-breadcrumb li a:hover {
  text-decoration: underline;
}
.list-breadcrumb li:last-child {
  color: var(--color-gray-600, #4b5563);
}

.list-checklist {
  padding-left: 0;
  list-style: none;
}
.list-checklist li {
  position: relative;
  padding-left: var(--size-6);
  margin-bottom: var(--size-2);
}
.list-checklist li::before {
  content: "□";
  position: absolute;
  left: 0;
  color: var(--color-gray-400, #9ca3af);
  font-size: 1.2em;
  line-height: 1;
}
.list-checklist li.checked {
  text-decoration: line-through;
  color: var(--color-gray-500, #6b7280);
}
.list-checklist li.checked::before {
  content: "✓";
  color: var(--color-success, #28a745);
}

.list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-2);
  padding: 0;
  list-style: none;
  margin-bottom: var(--size-4);
}
.list-tags li {
  margin-bottom: 0;
}
.list-tags li a,
.list-tags li span {
  display: inline-block;
  padding: var(--size-1) var(--size-3);
  background-color: var(--color-gray-100, #f3f4f6);
  color: var(--color-gray-700, #374151);
  border-radius: var(--border-radius-full, 9999px);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
}
.list-tags li a:hover,
.list-tags li span:hover {
  background-color: var(--color-gray-200, #e5e7eb);
}

.list-social {
  display: flex;
  gap: var(--size-3);
  padding: 0;
  list-style: none;
  margin-bottom: var(--size-4);
}
.list-social li {
  margin-bottom: 0;
}
.list-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-gray-100, #f3f4f6);
  color: var(--color-gray-600, #4b5563);
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.list-social a:hover {
  background-color: var(--color-primary, #007bff);
  color: var(--color-white, #fff);
}

.list-icon {
  padding-left: 0;
  list-style: none;
}
.list-icon li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--size-3);
}
.list-icon li::before {
  content: "•";
  color: var(--color-primary, #007bff);
  margin-right: var(--size-3);
  margin-top: 0.125rem;
  font-size: 1.2em;
  line-height: 1;
}
.list-icon.list-icon--check li::before {
  content: "✓";
  color: var(--color-success, #28a745);
}
.list-icon.list-icon--arrow li::before {
  content: "→";
  color: var(--color-primary, #007bff);
}
.list-icon.list-icon--star li::before {
  content: "★";
  color: var(--color-warning, #ffc107);
}

/* 
    Set default global styles for: 
    Images, Videos, iFrame, SVG assets, Figures 
*/
.video-style {
  position: relative;
  width: 100%;
  height: max-content;
  overflow: hidden;
  border-radius: var(--video-border-radius);
  border: var(--video-border);
  box-shadow: var(--video-box-shadow);
}
.video-style video {
  position: relative;
  max-width: none;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  margin-bottom: -12px;
  display: block;
}
.video-style iframe {
  display: block;
}
.video-style--w-cover .video-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 8px;
  z-index: 2;
  cursor: pointer;
  background-color: var(--color-White);
}
.video-style--w-cover .video-cover img {
  height: 120px !important;
  opacity: 0.9;
}
.video-style--w-cover .video-cover:hover img {
  transition-duration: 220ms;
  transform: scale(1.02);
  opacity: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--size-4);
  padding-right: var(--size-4);
}
@media (min-width: 768px) {
  .container {
    padding-left: var(--size-5);
    padding-right: var(--size-5);
  }
}
@media (min-width: 992px) {
  .container {
    padding-left: var(--size-6);
    padding-right: var(--size-6);
  }
}
.container--slim {
  max-width: 768px;
}
.container--narrow {
  max-width: 992px;
}
.container--wide {
  max-width: 1600px;
}
.container--full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.display-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.display-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.display-section .display-content {
  flex: 1 1 auto;
  order: 1;
}
.display-section .display-preview {
  flex: 0 0 auto;
  order: 2;
}
.display-section .display-preview img {
  display: block;
  width: 100%;
}
.display-section--centered .text-content {
  text-align: center;
  align-items: center;
}
.display-section--centered .inline-cta {
  justify-content: center;
}
@media (min-width: 992px) {
  .display-section .container {
    flex-direction: row;
  }
  .display-section .display-preview {
    order: 2;
  }
  .display-section .display-content {
    order: 1;
  }
  .display-section--preview-left .display-preview {
    order: 1;
  }
  .display-section--preview-left .display-content {
    order: 2;
  }
}

.eyebrow-text {
  text-transform: uppercase;
  display: inline-block;
  font-family: var(--eyebrow-font-family), "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: var(--eyebrow-font-weight);
  font-size: var(--eyebrow-font-size);
  line-height: var(--eyebrow-line-height);
  letter-spacing: var(--eyebrow-letter-spacing);
  padding: var(--eyebrow-padding);
  border-radius: var(--eyebrow-border-radius);
  background-color: var(--eyebrow-background-color);
}

.inline-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 480px) {
  .inline-cta {
    flex-direction: row;
  }
}

.gallery {
  display: grid;
  place-items: center;
}
.gallery .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery .gallery-item img {
  display: block;
  height: 100px;
  width: auto;
  transition: transform 120ms ease-in-out;
}
.gallery .gallery-item:hover img {
  transform: scale(1.03);
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: var(--text-content-gap);
}
.text-content .inner-content {
  display: flex;
  flex-direction: column;
  gap: var(--text-content-gap-inner);
}
.text-content .inner-content p {
  margin: 0;
  font-size: var(--text-content-font-size);
  line-height: var(--text-content-line-height);
}
.text-content .inner-content ul.styled-icons,
.text-content .inner-content ol.styled-icons {
  padding-left: 0;
}
.text-content .inner-content ul.styled-icons li,
.text-content .inner-content ol.styled-icons li {
  position: relative;
  list-style: none;
  padding-left: 1.5rem;
}
.text-content .inner-content ul.styled-icons .fas,
.text-content .inner-content ol.styled-icons .fas {
  position: absolute;
  left: 0;
  top: 0.25rem;
}

.divider-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.divider-section .divider {
  width: 100%;
  height: 1px;
  margin: 0 auto;
}

.expandable-cards-wrapper--layout-3 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}
@media (min-width: 768px) {
  .expandable-cards-wrapper--layout-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .expandable-cards-wrapper--layout-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
}

.expandable-card {
  font-size: 14px;
}
.expandable-card .pill-wrapper {
  justify-content: center;
}
.expandable-card .card-content {
  gap: 12px;
}
.expandable-card .visible-content,
.expandable-card .hidden-content {
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .expandable-card .visible-content,
  .expandable-card .hidden-content {
    padding: 32px 24px;
  }
}
.expandable-card .visible-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  gap: 12px;
}
.expandable-card .visible-content .icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.expandable-card .visible-content .icon-wrapper img {
  display: block;
  height: 100%;
  width: auto;
}
.expandable-card .hidden-content {
  border-top: 1px solid #eff2f5;
  display: none;
}
.expandable-card .card-trigger {
  cursor: pointer;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  text-align: center;
  height: 32px;
  font-weight: 600;
  font-size: 12px;
  border-radius: 4px;
  color: #c33329;
}
.expandable-card .card-trigger:hover {
  background-color: #fdebed;
}
.expandable-card .expandable-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expandable-card .expandable-card-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.expandable-card .expandable-card-list-item .icon-wrapper {
  transform: translateY(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  flex: 0 0 auto;
}
.expandable-card.expanded .visible-content {
  height: auto;
}
.expandable-card.expanded .hidden-content {
  display: block;
}
.expandable-card.expanded .card-trigger i {
  transform: rotate(180deg);
}

.elementor-editor-active .hidden-content {
  display: block;
}
.elementor-editor-active .expandable-card .visible-content {
  height: auto;
}

.pill-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pill-gap);
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--pill-font-weight);
  color: var(--pill-color);
  border-radius: var(--pill-border-radius);
  padding: 0 var(--pill-padding-x);
  height: var(--pill-height);
  font-size: var(--pill-font-size);
  background-color: var(--pill-background-color);
  border: 1px solid var(--pill-border-color);
}

.segment-ui .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .segment-ui .container {
    gap: 12px;
  }
}
@media (min-width: 992px) {
  .segment-ui .container {
    gap: 16px;
  }
}
.segment-ui .segment-ui-list {
  border-radius: 8px;
  padding: 5px;
  display: flex;
  background-color: var(--color-Light-200);
  border: 1px solid var(--color-Light-400);
  width: fit-content;
}
.segment-ui .segment-ui-item {
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 5px;
  color: var(--color-Dark-50);
  cursor: pointer;
}
.segment-ui .segment-ui-item:not(.active):hover {
  color: var(--color-Dark-500);
}
.segment-ui .segment-ui-item.active {
  background-color: var(--color-Primary);
  color: var(--color-Primary-Contrast);
}
@media (min-width: 992px) {
  .segment-ui .segment-ui-item {
    font-size: 14px;
  }
}
.segment-ui .segment-ui-previews .segment-ui-preview {
  display: none;
}
.segment-ui .segment-ui-previews .segment-ui-preview.show {
  display: block;
}

.display-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: var(--display-icon-padding);
}
.display-icon:has(img, svg) {
  padding: 0;
}
.display-icon .display-icon-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: var(--display-icon-base-border-radius);
}

.stat-cards--5 .container {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .stat-cards--5 .container {
    grid-template-columns: repeat(5, 1fr);
  }
}
.stat-cards--4 .container {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 480px) {
  .stat-cards--4 .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .stat-cards--4 .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-cards--3 .container {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .stat-cards--3 .container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-cards .container {
  display: grid;
  gap: 1.5rem;
}
.stat-cards .stat-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
}
.stat-cards .stat-card p {
  margin: 0;
}
.stat-cards .stat-card .icon-wrapper {
  display: flex;
  justify-content: center;
}
.stat-cards .card-content {
  gap: 0.25rem;
}

.simple-quote {
  display: grid;
  place-items: center;
}
.simple-quote .quote-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.simple-quote.theme-light .quote-content {
  color: var(--color-Light-500);
}
.simple-quote.theme-dark .quote-content {
  color: var(--color-Dark-300);
}
.simple-quote .quote-text {
  font-style: italic;
  font-weight: 500;
}
.simple-quote .quote-text p {
  position: relative;
  margin: 0;
}
.simple-quote .quote-text p::before {
  content: "“";
}
.simple-quote .quote-text p::after {
  content: "”";
}
.simple-quote .quote-author {
  font-size: 0.85rem;
  color: var(--color-Secondary-300);
}

.accordion-section .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion-section .accordion-item {
  padding: 24px;
  box-shadow: none;
  overflow: hidden;
}
.accordion-section .accordion-item--active .accordion-item-header i {
  font-size: 16px;
}
.accordion-section .accordion-item--active .accordion-item-header i,
.accordion-section .accordion-item--active .accordion-item-header svg {
  transition: transform 240ms ease-out;
  transform: rotate(180deg);
}
.accordion-section .accordion-item--active .accordion-item-content {
  padding-top: 16px;
  max-height: 500px;
  opacity: 1;
  transition: max-height 170ms ease-in, opacity 175ms ease-in;
}
.accordion-section .accordion-item-header {
  position: relative;
  font-weight: bold;
  padding-right: 32px;
  cursor: pointer;
}
.accordion-section .accordion-item-header .accordion-item-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-Black);
}
.accordion-section .accordion-item-header svg {
  width: 100%;
  height: auto;
}
.accordion-section .accordion-item-content {
  padding-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.vertical-panel {
  /* Tabs */
  /* View */
}
.vertical-panel .vertical-panel-body {
  border-radius: 1rem;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
}
.vertical-panel .vertical-panel-tabs {
  padding: 1.5rem 1.25rem;
  background-color: var(--color-Light-200);
  border: 1px solid var(--color-Light-400);
  border-bottom: none;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.vertical-panel .vertical-panel-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  color: var(--color-Dark-300);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.875rem;
  padding-right: 1.25rem;
  border-radius: 8px;
  border: 1px solid transparent;
  border-left: 4px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
}
.vertical-panel .vertical-panel-tab .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  filter: grayscale(1) opacity(0.7);
}
.vertical-panel .vertical-panel-tab .icon-wrapper svg,
.vertical-panel .vertical-panel-tab .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vertical-panel .vertical-panel-tab:hover {
  background-color: var(--color-Light-300);
  color: var(--color-Dark-500);
}
.vertical-panel .vertical-panel-tab.active {
  color: var(--color-Primary-500);
  background-color: var(--color-White);
  border: 1px solid var(--color-Light-400);
  border-left: 4px solid var(--color-Primary-500);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.vertical-panel .vertical-panel-tab.active .icon-wrapper {
  filter: grayscale(0) opacity(1);
}
.vertical-panel .vertical-panel-view {
  padding: 1.5rem 1.25rem;
  background-color: var(--color-White);
  border: 1px solid var(--color-Light-400);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-top: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vertical-panel .vertical-panel-item {
  position: absolute;
  display: flex;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  opacity: 0;
}
.vertical-panel .vertical-panel-item .text-content {
  gap: 12px;
}
.vertical-panel .vertical-panel-item.active {
  position: relative;
  visibility: visible;
  pointer-events: auto;
  user-select: text;
  opacity: 1;
}
.vertical-panel .vertical-panel-ear {
  display: flex;
  color: var(--color-Primary-500);
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.vertical-panel .sample-integrations {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.vertical-panel .sample-integrations-title {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--color-Light-800);
}
.vertical-panel .sample-integrations-logos-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.25rem;
  opacity: 0.6;
}
@media (min-width: 992px) {
  .vertical-panel .vertical-panel-tabs {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1rem;
    border: 1px solid var(--color-Light-400);
    border-right: none;
    gap: 0.75rem;
  }
  .vertical-panel .vertical-panel-tab {
    padding: 1rem;
    padding-right: 2rem;
  }
  .vertical-panel .vertical-panel-view {
    padding: 2.5rem 48px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 1rem;
    border: 1px solid var(--color-Light-400);
  }
  .vertical-panel .vertical-panel-item .text-content {
    gap: 16px;
  }
  .vertical-panel .vertical-panel-body {
    display: flex;
  }
}

.elementor-editor-active .vertical-panel-item {
  position: relative;
  visibility: visible;
  opacity: 1;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-Light-400);
}

.flip-cards .container {
  display: grid;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .flip-cards .container {
    gap: 2rem;
  }
}
.flip-cards--3 .container {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 576px) {
  .flip-cards--3 .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .flip-cards--3 .container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.flip-cards--4 .container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flip-cards .flip-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--color-White);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-out;
  cursor: pointer;
  user-select: none;
}
.flip-cards .flip-card .flip-card-front,
.flip-cards .flip-card .flip-card-overlay {
  padding: 1.5rem;
  height: 100%;
}
.flip-cards .flip-card .text-content {
  flex: 1 1 auto;
  justify-content: center;
}
.flip-cards .flip-card .icon-wrapper {
  color: var(--color-Primary-500);
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-cards .flip-card .flip-card-front {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 3;
  gap: 0.5rem;
}
.flip-cards .flip-card .flip-card-front span {
  font-size: 0.875rem;
  color: var(--color-Dark-100);
}
.flip-cards .flip-card .pop-indicator, .flip-cards .flip-card::before {
  transition: all 300ms ease-in-out;
}
.flip-cards .flip-card .pop-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: var(--color-Primary-50);
  border: 1px solid var(--color-Primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-Primary-500);
  transform: scale(0.9);
  z-index: 2;
}
.flip-cards .flip-card .pop-indicator i,
.flip-cards .flip-card .pop-indicator svg {
  transform: rotate(-45deg);
}
.flip-cards .flip-card::before {
  position: absolute;
  height: 6px;
  top: 0;
  left: -10px;
  content: "";
  opacity: 0.6;
  width: calc(100% + 20px);
  transform: translateY(-2px);
  background: linear-gradient(90deg, transparent 0%, var(--color-Primary-500) 20%, var(--color-Primary-500) 50%, var(--color-Primary-500) 80%, transparent 100%);
  z-index: 2;
}
.flip-cards .flip-card::after {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  background: linear-gradient(0deg, var(--color-Primary-100) 0%, transparent 90%);
  border-radius: 1.25rem;
  content: "";
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: all 300ms ease-out;
}
.flip-cards .flip-card:hover, .flip-cards .flip-card.active {
  transform: translateY(-6px);
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.08);
  border-color: var(--color-Primary-200);
}
.flip-cards .flip-card:hover::before {
  transform: translateY(0);
  opacity: 1;
}
.flip-cards .flip-card:hover::after {
  opacity: 0.35;
}
.flip-cards .flip-card:hover .pop-indicator {
  transform: scale(1);
  background-color: var(--color-Primary-100);
  border-color: var(--color-Primary-200);
}
.flip-cards .flip-card .flip-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  background-color: var(--color-White);
  transition: all 450ms ease-out;
  border-radius: 1.25rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.flip-cards .flip-card .flip-card-overlay .overlay-title {
  color: var(--color-Primary-500);
  font-size: 0.875rem;
  font-weight: 800;
}
.flip-cards .flip-card .flip-card-overlay::after {
  content: "×";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
  background-color: var(--color-Light-200);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-Dark-300);
  z-index: 4;
  cursor: pointer;
}
.flip-cards .flip-card .flip-card-overlay p {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.flip-cards .flip-card.active .flip-card-front {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.flip-cards .flip-card.active .flip-card-overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.elementor-editor-active .flip-card {
  overflow: visible;
}
.elementor-editor-active .flip-card::before {
  opacity: 0 !important;
}
.elementor-editor-active .flip-card::after {
  opacity: 1 !important;
}
.elementor-editor-active .flip-card .flip-card-front {
  visibility: visible;
  opacity: 1;
  pointer-events: none;
}
.elementor-editor-active .flip-card .flip-card-overlay {
  position: relative;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: 3;
}

.reviews-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.reviews-section .swiper {
  padding-bottom: 8px;
}
.reviews-section .swiper .swiper-wrapper {
  padding-bottom: 8px;
}
.reviews-section .swiper-outer {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  background-color: var(--color-Light-200);
  border: 1px solid var(--color-Light-300);
}
@media (min-width: 768px) {
  .reviews-section .swiper-outer {
    padding: 1.5rem;
  }
}
.reviews-section .review-swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.reviews-section .review-swiper-controls .review-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--color-White);
  border: 1px solid var(--color-Light-400);
  cursor: pointer;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}
.reviews-section .review-swiper-controls .review-button:hover {
  background-color: var(--color-Light-100);
}
.reviews-section .review-swiper-controls .review-button:active {
  background-color: var(--color-Light-200);
}

.review-card {
  background-color: var(--color-White);
  border-radius: 12px;
  border-left: 4px solid var(--color-Primary-100);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08);
  padding: 24px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card .review-card-header {
  display: flex;
  justify-content: space-between;
}
.review-card .review-card-header .review-brand {
  opacity: 0.7;
}
.review-card .review-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card .review-card-body .review-card-stars {
  display: flex;
  gap: 2px;
  font-size: 12px;
  color: #facc14;
}
.review-card .review-card-body p {
  margin: 0;
  position: relative;
}
.review-card .review-card-body .text-content {
  gap: 0.85rem;
}
.review-card .review-card-body .review-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-Dark-900);
}
.review-card .review-card-body .review-card-author {
  position: relative;
  font-size: 14px;
  color: var(--color-Dark-50);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.review-card .review-card-body .review-card-author::before {
  content: "— ";
}

.text-cards-section .card-style {
  background-color: #fff;
  padding: 1rem;
}
.text-cards-section .card-style p {
  font-size: 16px;
}
.text-cards-section .text-content .inner-content .styled-icons li {
  padding-left: 1.25rem;
}
.text-cards-section .text-cards-grid {
  display: grid;
  gap: 1rem;
}
.text-cards-section .text-cards-grid--2 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .text-cards-section .text-cards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.text-cards-section .text-cards-grid--3 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .text-cards-section .text-cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .text-cards-section .text-cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.text-cards-section .text-cards-grid--4 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .text-cards-section .text-cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .text-cards-section .text-cards-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.text-cards-section .text-cards-grid--5 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .text-cards-section .text-cards-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .text-cards-section .text-cards-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.text-cards-section .text-cards-grid--small .card-style,
.text-cards-section .text-cards-grid--small p {
  font-size: 14px;
}
.text-cards-section .text-cards-grid--large .card-style,
.text-cards-section .text-cards-grid--large p {
  font-size: 18px;
}
@media (min-width: 768px) {
  .text-cards-section .text-cards-grid {
    gap: 1.25rem;
  }
}
@media (min-width: 992px) {
  .text-cards-section .text-cards-grid {
    gap: 1.5rem;
  }
}

/* Scroller Gallery */
.scroller-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroller-gallery .gallery-section {
  padding: 2rem 0;
  border-radius: 1rem;
}
.scroller-gallery .gallery-section.grayed-out .scroll-gallery-item img {
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease, transform 0.7s ease-out;
}
.scroller-gallery .gallery-section.grayed-out .scroll-gallery-item:hover img {
  filter: grayscale(0%) opacity(1);
}
.scroller-gallery .gallery-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.scroller-gallery .gallery-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.scroller-gallery .scroll-gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.4s ease-out;
  transform: scale(0.95);
}
.scroller-gallery .scroll-gallery-item:hover {
  transform: scale(1);
}
.scroller-gallery .scroll-gallery-item img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.elementor-widget-text-editor p {
  max-width: 65ch;
}