/**
 * ============================================================================
 * CountWize Design System
 * Version: 3.0.0
 * Last Updated: January 2026
 * 
 * Enterprise-Grade FinTech Design System
 * Inspired by Swiss Watch precision and J.P. Morgan professionalism
 * ============================================================================
 * 
 * Table of Contents:
 * 
 * PART 1: DESIGN SYSTEM FOUNDATION
 *   1.1  Color Architecture (Phases 1-12)
 *   1.2  Typography Architecture (Phases 13-26)
 *   1.3  Spacing Architecture (Phases 27-38)
 *   1.4  Elevation & Depth (Phases 39-50)
 * 
 * PART 2: COMPONENT SYSTEM
 *   2.1  Button System (Phases 51-65)
 *   2.2  Form Input System (Phases 66-85)
 *   2.3  Card System (Phases 86-98)
 *   2.4  Navigation System (Phases 99-110)
 * 
 * PART 3: MICRO-INTERACTIONS
 *   3.1  Loading States (Phases 111-120)
 *   3.2  Feedback States (Phases 121-135)
 * 
 * PART 4: USER JOURNEY ELEMENTS
 * PART 5: PAGE-LEVEL STYLES
 * PART 6: PERFORMANCE OPTIMIZATIONS
 * PART 7: SEO & ACCESSIBILITY
 * PART 8: SECURITY STYLES
 * PART 9: RESPONSIVE BREAKPOINTS
 * PART 10: UTILITIES & HELPERS
 * 
 * ============================================================================
 */

/* ==========================================================================
   PART 1: DESIGN SYSTEM FOUNDATION
   ========================================================================== */

/* --------------------------------------------------------------------------
   1.1 COLOR ARCHITECTURE (Phases 1-12)
   --------------------------------------------------------------------------
   
   Phase 1: Primary Colors - Brand Green Palette
   Phase 2: Secondary Colors - Neutral Grays
   Phase 3: Accent Colors - Semantic States
   Phase 4: Background Layers - Surface Elevation
   Phase 5: Text Colors - Hierarchy
   Phase 6: Border Colors - Variants
   Phase 7: Interactive States - Hover/Active/Focus
   Phase 8: Gradients - Hero/Card/Button
   Phase 9: Overlays - Modal/Tooltip/Dropdown
   Phase 10: Contrast Validation - WCAG AAA Compliant
   Phase 11: Dark Mode - Complete Theme
   Phase 12: Documentation - Color Tokens
   -------------------------------------------------------------------------- */

:root {
  /* ========================================
     PRIMARY COLORS - Brand Green (#07B96A)
     ======================================== */
  --color-primary-50: #e8faf1;
  --color-primary-100: #d2ffda;
  --color-primary-200: #b2ddb9;
  --color-primary-300: #a3dcad;
  --color-primary-400: #6b9071;
  --color-primary-500: #07B96A;  /* Main Brand Color */
  --color-primary-600: #375534;
  --color-primary-700: #0f2a1d;
  --color-primary-800: #0d2f27;
  --color-primary-900: #050b0c;
  
  /* Legacy Brand Variables (Backward Compatibility) */
  --brand--brand-color-5: #e3eed4;
  --brand--brand-color-4: #aec3b0;
  --brand-color-3-5: #b2ddb9;
  --brand--brand-color-third: #6b9071;
  --brand--brand-color-second: #375534;
  --brand--brand-color-fast: #375534;
  --brand--brand-color-first: #0f2a1d;
  
  /* ========================================
     SECONDARY COLORS - Neutral Palette
     ======================================== */
  --color-neutral-0: #ffffff;
  --color-neutral-50: #fcfcfc;
  --color-neutral-100: #f5f5f5;
  --color-neutral-200: #b4b8c2;
  --color-neutral-300: #61616b;
  --color-neutral-400: #45454f;
  --color-neutral-500: #272731;
  --color-neutral-600: #1a1a22;
  --color-neutral-700: #121218;
  --color-neutral-800: #0d0d12;
  --color-neutral-900: #090910;
  --color-neutral-950: #050505;
  
  /* Legacy Neutral Variables (Backward Compatibility) */
  --neutral--white-0: #fcfcfc;
  --neutral--white-100: #fffc;
  --neutral--white-200: #b4b8c2;
  --neutral--white-300: #61616b;
  --neutral--white-600: #b5aba4;
  --neutral--black-700: #272731;
  --neutral--black-800: #121218;
  --neutral--black-900: #090910;
  --neutral--gray-600: #45454f;
  --stock-color: #0d2f27;
  
  /* ========================================
     ACCENT COLORS - Semantic States
     ======================================== */
  /* Success - Green (inherits from primary) */
  --color-success-50: #e8faf1;
  --color-success-100: #c6f6d5;
  --color-success-500: #07B96A;
  --color-success-600: #059855;
  --color-success-700: #047342;
  
  /* Warning - Amber */
  --color-warning-50: #fffbeb;
  --color-warning-100: #fef3c7;
  --color-warning-500: #f59e0b;
  --color-warning-600: #d97706;
  --color-warning-700: #b45309;
  
  /* Error - Red */
  --color-error-50: #fef2f2;
  --color-error-100: #fee2e2;
  --color-error-500: #ef4444;
  --color-error-600: #dc2626;
  --color-error-700: #b91c1c;
  
  /* Info - Blue */
  --color-info-50: #eff6ff;
  --color-info-100: #dbeafe;
  --color-info-500: #3b82f6;
  --color-info-600: #2563eb;
  --color-info-700: #1d4ed8;
  
  /* ========================================
     BACKGROUND COLORS - Surface Elevation
     ======================================== */
  --surface-0: var(--color-neutral-950);  /* Base background */
  --surface-1: var(--color-neutral-900);  /* Card background */
  --surface-2: var(--color-neutral-800);  /* Elevated elements */
  --surface-3: var(--color-neutral-700);  /* Modal background */
  --surface-4: var(--color-neutral-600);  /* Highest elevation */
  
  /* ========================================
     TEXT COLORS - Hierarchy
     ======================================== */
  --text-primary: var(--color-neutral-50);
  --text-secondary: var(--color-neutral-200);
  --text-tertiary: var(--color-neutral-300);
  --text-disabled: var(--color-neutral-400);
  --text-inverse: var(--color-neutral-900);
  --text-brand: var(--color-primary-500);
  --text-success: var(--color-success-500);
  --text-warning: var(--color-warning-500);
  --text-error: var(--color-error-500);
  --text-info: var(--color-info-500);
  
  /* ========================================
     BORDER COLORS - Variants
     ======================================== */
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --border-brand: var(--color-primary-500);
  --border-success: var(--color-success-500);
  --border-warning: var(--color-warning-500);
  --border-error: var(--color-error-500);
  --border-focus: var(--color-primary-400);
  
  /* ========================================
     INTERACTIVE STATE COLORS
     ======================================== */
  /* Hover: +10% lighter */
  --color-primary-hover: #08d478;
  --color-neutral-hover: rgba(255, 255, 255, 0.05);
  
  /* Active: +20% darker */
  --color-primary-active: #069556;
  --color-neutral-active: rgba(255, 255, 255, 0.1);
  
  /* Focus: Ring */
  --focus-ring-color: rgba(7, 185, 106, 0.5);
  --focus-ring-width: 3px;
  --focus-ring-offset: 2px;
  
  /* ========================================
     GRADIENT DEFINITIONS
     ======================================== */
  /* Hero Gradient */
  --gradient-hero: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-neutral-900) 100%);
  
  /* Card Gradient */
  --gradient-card: linear-gradient(180deg, rgba(4, 255, 102, 0.3) 0%, rgba(2, 54, 23, 0) 100%);
  --card-color--linear-0: #04ff664d;
  --card-color--linear-100: #02361700;
  
  /* Button Gradient */
  --gradient-button: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
  --gradient-button-hover: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary-500) 100%);
  
  /* Text Gradient */
  --gradient-text: linear-gradient(180deg, var(--color-neutral-50) 0%, rgba(255, 255, 255, 0.8) 100%);
  --gradient-text-brand: linear-gradient(180deg, var(--color-primary-100) 0%, var(--color-primary-300) 100%);
  
  /* ========================================
     OVERLAY COLORS
     ======================================== */
  --overlay-modal: rgba(0, 0, 0, 0.75);
  --overlay-tooltip: rgba(18, 18, 24, 0.95);
  --overlay-dropdown: rgba(18, 18, 24, 0.98);
  --overlay-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  
  /* ========================================
     REDESIGN STYLE VARIABLES (Legacy)
     ======================================== */
  --_redesign-style---green: #a3dcad;
  --_redesign-style---green-light: #d2ffda;
  --_redesign-style---white: white;
  --_redesign-style---black: #050505;
  --_redesign-style---black-green: #050b0c;

  /* --------------------------------------------------------------------------
     1.2 TYPOGRAPHY ARCHITECTURE (Phases 13-26)
     --------------------------------------------------------------------------
     
     Phase 13: Font Stack - Be Vietnam Pro + Poppins
     Phase 14: Type Scale - 12-80px
     Phase 15: Display Typography - 64-80px
     Phase 16: Heading Typography - H1-H6
     Phase 17: Body Typography - Large/Default/Small/Caption
     Phase 18: Line Height System - Tight/Normal/Relaxed
     Phase 19: Font Weight Mapping - 300-700
     Phase 20: Letter Spacing - Tight to Wide
     Phase 21: Text Transform Rules
     Phase 22: Truncation Patterns
     Phase 23: Link Typography
     Phase 24: Code/Monospace
     Phase 25: Responsive Typography
     Phase 26: Documentation
     -------------------------------------------------------------------------- */
  
  /* ========================================
     FONT STACKS
     ======================================== */
  --font-family-body: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "SF Mono", "Fira Code", "Fira Mono", Menlo, Monaco, Consolas, monospace;
  
  /* Legacy Font Variable */
  --font--global-font: "Be Vietnam Pro", sans-serif;
  
  /* ========================================
     TYPE SCALE (4px base, 1.25 ratio)
     ======================================== */
  --font-size-2xs: 0.625rem;   /* 10px */
  --font-size-xs: 0.75rem;     /* 12px */
  --font-size-sm: 0.875rem;    /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-lg: 1.125rem;    /* 18px */
  --font-size-xl: 1.25rem;     /* 20px */
  --font-size-2xl: 1.5rem;     /* 24px */
  --font-size-3xl: 2rem;       /* 32px */
  --font-size-4xl: 2.5rem;     /* 40px */
  --font-size-5xl: 3rem;       /* 48px */
  --font-size-6xl: 3.875rem;   /* 62px */
  --font-size-7xl: 4rem;       /* 64px */
  --font-size-8xl: 5rem;       /* 80px */
  
  /* ========================================
     LINE HEIGHT SYSTEM
     ======================================== */
  --line-height-none: 1;
  --line-height-tight: 1.2;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 1.75;
  --line-height-extra: 2;
  
  /* ========================================
     FONT WEIGHTS
     ======================================== */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* ========================================
     LETTER SPACING
     ======================================== */
  --letter-spacing-tighter: -0.05em;
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
  --letter-spacing-wider: 0.05em;
  --letter-spacing-widest: 0.1em;

  /* --------------------------------------------------------------------------
     1.3 SPACING ARCHITECTURE (Phases 27-38)
     --------------------------------------------------------------------------
     
     Phase 27: Base Unit - 4px
     Phase 28: Spacing Scale - 0-128px
     Phase 29: Component Internal Spacing
     Phase 30: Component External Spacing
     Phase 31: Section Spacing
     Phase 32: Grid Gutter System
     Phase 33: Container Max-widths
     Phase 34: Container Padding
     Phase 35: Stack Spacing
     Phase 36: Inline Spacing
     Phase 37: Negative Space
     Phase 38: Documentation
     -------------------------------------------------------------------------- */
  
  /* ========================================
     BASE UNIT & SPACING SCALE
     ======================================== */
  --space-unit: 4px;
  
  --space-0: 0;
  --space-px: 1px;
  --space-0-5: 0.125rem;  /* 2px */
  --space-1: 0.25rem;     /* 4px */
  --space-2: 0.5rem;      /* 8px */
  --space-3: 0.75rem;     /* 12px */
  --space-4: 1rem;        /* 16px */
  --space-5: 1.25rem;     /* 20px */
  --space-6: 1.5rem;      /* 24px */
  --space-8: 2rem;        /* 32px */
  --space-10: 2.5rem;     /* 40px */
  --space-12: 3rem;       /* 48px */
  --space-16: 4rem;       /* 64px */
  --space-20: 5rem;       /* 80px */
  --space-24: 6rem;       /* 96px */
  --space-32: 8rem;       /* 128px */
  
  /* ========================================
     COMPONENT SPACING
     ======================================== */
  --padding-button-sm: var(--space-2) var(--space-3);
  --padding-button-md: var(--space-3) var(--space-4);
  --padding-button-lg: var(--space-4) var(--space-6);
  --padding-button-xl: var(--space-5) var(--space-8);
  
  --padding-input: var(--space-3) var(--space-4);
  --padding-card: var(--space-6);
  --padding-modal: var(--space-8);
  
  /* ========================================
     SECTION SPACING
     ======================================== */
  --section-padding-sm: var(--space-12);
  --section-padding-md: var(--space-16);
  --section-padding-lg: var(--space-20);
  --section-padding-xl: var(--space-24);
  
  /* ========================================
     GRID & CONTAINER
     ======================================== */
  --gutter-sm: var(--space-4);   /* 16px - Mobile */
  --gutter-md: var(--space-6);   /* 24px - Tablet */
  --gutter-lg: var(--space-8);   /* 32px - Desktop */
  
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;
  --container-max: 1600px;
  
  --container-padding-sm: var(--space-4);
  --container-padding-md: var(--space-6);
  --container-padding-lg: var(--space-10);

  /* --------------------------------------------------------------------------
     1.4 ELEVATION & DEPTH (Phases 39-50)
     --------------------------------------------------------------------------
     
     Phase 39: Shadow Scale - xs/sm/md/lg/xl/2xl
     Phase 40: Shadow Color - Brand-tinted
     Phase 41-45: Elevation Levels 0-4
     Phase 46: Border Radius Scale
     Phase 47: Interactive Elevation
     Phase 48: Focus Ring System
     Phase 49: Glass Morphism
     Phase 50: Documentation
     -------------------------------------------------------------------------- */
  
  /* ========================================
     SHADOW SCALE (Green-tinted)
     ======================================== */
  --shadow-color: 152 78% 15%;
  
  --shadow-xs: 0 1px 2px 0 hsl(var(--shadow-color) / 0.05);
  --shadow-sm: 0 1px 3px 0 hsl(var(--shadow-color) / 0.1), 
               0 1px 2px -1px hsl(var(--shadow-color) / 0.1);
  --shadow-md: 0 4px 6px -1px hsl(var(--shadow-color) / 0.1), 
               0 2px 4px -2px hsl(var(--shadow-color) / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(var(--shadow-color) / 0.1), 
               0 4px 6px -4px hsl(var(--shadow-color) / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(var(--shadow-color) / 0.1), 
               0 8px 10px -6px hsl(var(--shadow-color) / 0.1);
  --shadow-2xl: 0 25px 50px -12px hsl(var(--shadow-color) / 0.25);
  
  /* Brand Shadow (Green glow) */
  --shadow-brand-sm: 0 0 10px 2px rgba(7, 185, 106, 0.15);
  --shadow-brand-md: 0 0 15px 5px rgba(7, 185, 106, 0.2);
  --shadow-brand-lg: 0 0 19px 13px rgba(7, 185, 106, 0.19);
  --shadow-brand-xl: 0 0 25px 15px rgba(7, 185, 106, 0.25);
  
  /* Inner Shadow */
  --shadow-inner: inset 0 2px 4px 0 hsl(var(--shadow-color) / 0.1);
  
  /* ========================================
     ELEVATION LEVELS
     ======================================== */
  --elevation-0: none;
  --elevation-1: var(--shadow-sm);
  --elevation-2: var(--shadow-md);
  --elevation-3: var(--shadow-lg);
  --elevation-4: var(--shadow-xl);
  
  /* ========================================
     BORDER RADIUS SCALE
     ======================================== */
  --radius-none: 0;
  --radius-sm: 0.25rem;   /* 4px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */
  --radius-2xl: 1.5rem;   /* 24px */
  --radius-3xl: 2rem;     /* 32px */
  --radius-full: 9999px;
  
  /* Component-specific radii */
  --radius-button: var(--radius-full);
  --radius-input: var(--radius-md);
  --radius-card: var(--radius-lg);
  --radius-modal: var(--radius-xl);
  
  /* ========================================
     FOCUS RING SYSTEM
     ======================================== */
  --focus-ring: 0 0 0 var(--focus-ring-width) var(--focus-ring-color);
  --focus-ring-inset: inset 0 0 0 2px var(--color-primary-500);
  
  /* ========================================
     GLASS MORPHISM
     ======================================== */
  --glass-bg: rgba(18, 18, 24, 0.8);
  --glass-blur: blur(12px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);

  /* ========================================
     TRANSITIONS & ANIMATIONS
     ======================================== */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  --transition-slower: 400ms ease;
  
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* ========================================
     Z-INDEX SCALE
     ======================================== */
  --z-below: -1;
  --z-base: 0;
  --z-above: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-toast: 800;
  --z-max: 9999;
}

/* ==========================================================================
   PART 2: COMPONENT SYSTEM (Phases 51-110)
   ========================================================================== */

/* --------------------------------------------------------------------------
   2.1 BUTTON SYSTEM (Phases 51-65)
   -------------------------------------------------------------------------- */

/* Base Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-button);
  transition: all var(--transition-base);
  outline: none;
}

/* Button Sizes */
.btn-sm {
  height: 32px;
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-sm);
}

.btn-md {
  height: 40px;
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-base);
}

.btn-lg {
  height: 48px;
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-lg);
}

.btn-xl {
  height: 56px;
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-xl);
}

/* Primary Button */
.btn-primary {
  background-color: var(--color-primary-500);
  color: var(--color-neutral-900);
  border-color: var(--color-primary-500);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-sm);
}

.btn-primary:active {
  background-color: var(--color-primary-active);
  border-color: var(--color-primary-active);
  transform: translateY(0);
}

.btn-primary:focus-visible {
  box-shadow: var(--focus-ring);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--color-primary-500);
  border-color: var(--color-primary-500);
}

.btn-secondary:hover {
  background-color: rgba(7, 185, 106, 0.1);
  color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn-secondary:active {
  background-color: rgba(7, 185, 106, 0.2);
}

/* Ghost Button */
.btn-ghost {
  background-color: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}

.btn-ghost:hover {
  background-color: var(--color-neutral-hover);
  color: var(--text-primary);
}

/* Danger Button */
.btn-danger {
  background-color: var(--color-error-600);
  color: var(--color-neutral-0);
  border-color: var(--color-error-600);
}

.btn-danger:hover {
  background-color: var(--color-error-700);
  border-color: var(--color-error-700);
}

/* Icon Button */
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
}

.btn-icon.btn-sm { width: 32px; height: 32px; }
.btn-icon.btn-lg { width: 48px; height: 48px; }
.btn-icon.btn-xl { width: 56px; height: 56px; }

/* Button States */
.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Button Loading State */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btn-spinner 0.6s linear infinite;
}

@keyframes btn-spinner {
  to { transform: rotate(360deg); }
}

/* Button Group */
.btn-group {
  display: inline-flex;
}

.btn-group .btn {
  border-radius: 0;
}

.btn-group .btn:first-child {
  border-radius: var(--radius-button) 0 0 var(--radius-button);
}

.btn-group .btn:last-child {
  border-radius: 0 var(--radius-button) var(--radius-button) 0;
}

.btn-group .btn:not(:last-child) {
  border-right-width: 1px;
}

/* --------------------------------------------------------------------------
   2.2 FORM INPUT SYSTEM (Phases 66-85)
   -------------------------------------------------------------------------- */

/* Base Input Styles */
.input {
  width: 100%;
  height: 44px;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-family-body);
  font-size: var(--font-size-base);
  color: var(--text-primary);
  background-color: var(--surface-2);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-input);
  transition: all var(--transition-fast);
  outline: none;
}

.input::placeholder {
  color: var(--text-tertiary);
}

/* Input States */
.input:hover {
  border-color: var(--border-strong);
}

.input:focus {
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px rgba(7, 185, 106, 0.15);
}

.input.filled {
  background-color: var(--surface-3);
}

.input.error {
  border-color: var(--color-error-500);
  background-color: rgba(239, 68, 68, 0.05);
}

.input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.input.success {
  border-color: var(--color-success-500);
}

.input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--surface-1);
}

/* Input with Icon */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group .input {
  padding-left: var(--space-10);
}

.input-group .input-icon {
  position: absolute;
  left: var(--space-3);
  width: 20px;
  height: 20px;
  color: var(--text-tertiary);
  pointer-events: none;
}

.input-group.icon-right .input {
  padding-left: var(--space-4);
  padding-right: var(--space-10);
}

.input-group.icon-right .input-icon {
  left: auto;
  right: var(--space-3);
}

/* Textarea */
.textarea {
  min-height: 120px;
  resize: vertical;
  line-height: var(--line-height-normal);
}

/* Select */
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b4b8c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 16px;
  padding-right: var(--space-10);
  cursor: pointer;
}

/* Checkbox & Radio Base */
.checkbox,
.radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
}

.checkbox input,
.radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox .checkmark,
.radio .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-strong);
  background-color: var(--surface-2);
  transition: all var(--transition-fast);
}

.checkbox .checkmark {
  border-radius: var(--radius-sm);
}

.radio .checkmark {
  border-radius: 50%;
}

.checkbox input:checked + .checkmark,
.radio input:checked + .checkmark {
  background-color: var(--color-primary-500);
  border-color: var(--color-primary-500);
}

.checkbox input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid var(--color-neutral-900);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.radio input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  background-color: var(--color-neutral-900);
  border-radius: 50%;
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  background-color: var(--surface-3);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: var(--color-neutral-0);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.toggle.active {
  background-color: var(--color-primary-500);
}

.toggle.active::after {
  transform: translateX(22px);
}

/* Form Helper Text */
.form-helper {
  margin-top: var(--space-1);
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
}

.form-helper.error {
  color: var(--color-error-500);
}

.form-helper.success {
  color: var(--color-success-500);
}

/* Form Label */
.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
}

.form-label.required::after {
  content: ' *';
  color: var(--color-error-500);
}

/* --------------------------------------------------------------------------
   2.3 CARD SYSTEM (Phases 86-98)
   -------------------------------------------------------------------------- */

/* Base Card */
.card {
  background-color: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* Elevated Card */
.card-elevated {
  box-shadow: var(--elevation-2);
}

/* Outlined Card */
.card-outlined {
  background-color: transparent;
  border-color: var(--border-default);
}

/* Interactive Card */
.card-interactive {
  cursor: pointer;
  transition: all var(--transition-base);
}

.card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand-md);
}

/* Selected Card */
.card-selected {
  border-color: var(--color-primary-500);
  box-shadow: var(--shadow-brand-sm);
}

/* Card Parts */
.card-header {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--border-subtle);
  background-color: var(--surface-0);
}

.card-media {
  position: relative;
  overflow: hidden;
}

.card-media img,
.card-media video {
  width: 100%;
  height: auto;
  display: block;
}

/* Card Skeleton */
.card-skeleton {
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* --------------------------------------------------------------------------
   2.4 NAVIGATION SYSTEM (Phases 99-110)
   -------------------------------------------------------------------------- */

/* Navigation Variables */
.nav-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--surface-1);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background-color: var(--color-neutral-hover);
}

.nav-link.active {
  color: var(--color-primary-500);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: var(--space-2);
  background-color: var(--surface-2);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: var(--space-2) var(--space-3);
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-dropdown-item:hover {
  color: var(--text-primary);
  background-color: var(--color-neutral-hover);
}

/* Mobile Nav */
.nav-mobile-toggle {
  display: none;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: all var(--transition-base);
}

@media screen and (max-width: 991px) {
  .nav-mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-20) var(--space-6);
    background-color: var(--surface-1);
    transition: right var(--transition-slow);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-lg);
  }
}

/* ==========================================================================
   PART 3: MICRO-INTERACTIONS (Phases 111-135)
   ========================================================================== */

/* --------------------------------------------------------------------------
   3.1 LOADING STATES (Phases 111-120)
   -------------------------------------------------------------------------- */

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-0);
  z-index: var(--z-max);
}

.page-loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-default);
  border-top-color: var(--color-primary-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Skeleton Loader */
.skeleton {
  position: relative;
  overflow: hidden;
  background-color: var(--surface-2);
  border-radius: var(--radius-md);
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.skeleton-text {
  height: 1em;
  margin-bottom: var(--space-2);
}

.skeleton-text:last-child {
  width: 60%;
}

.skeleton-circle {
  border-radius: 50%;
}

.skeleton-rect {
  border-radius: var(--radius-md);
}

/* Progress Bar */
.progress {
  width: 100%;
  height: 8px;
  background-color: var(--surface-2);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--color-primary-500);
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

.progress-bar.animated {
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%
  );
  background-size: 1rem 1rem;
  animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
  0% { background-position: 1rem 0; }
  100% { background-position: 0 0; }
}

/* --------------------------------------------------------------------------
   3.2 FEEDBACK STATES (Phases 121-135)
   -------------------------------------------------------------------------- */

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: var(--space-4);
  right: var(--space-4);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 300px;
  padding: var(--space-4);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: toast-slide-in var(--transition-base) ease-out;
}

@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast.toast-out {
  animation: toast-slide-out var(--transition-base) ease-in forwards;
}

@keyframes toast-slide-out {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.toast-success {
  border-left: 4px solid var(--color-success-500);
}

.toast-error {
  border-left: 4px solid var(--color-error-500);
}

.toast-warning {
  border-left: 4px solid var(--color-warning-500);
}

.toast-info {
  border-left: 4px solid var(--color-info-500);
}

.toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

.toast-message {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.toast-close {
  padding: var(--space-1);
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.toast-close:hover {
  color: var(--text-primary);
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip-content {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-2) var(--space-3);
  background-color: var(--overlay-tooltip);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  white-space: nowrap;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: var(--z-tooltip);
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--overlay-tooltip);
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-12);
  text-align: center;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-4);
  color: var(--text-tertiary);
}

.empty-state-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.empty-state-description {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  max-width: 400px;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Typography Utilities */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }

.font-light { font-weight: var(--font-weight-light); }
.font-regular { font-weight: var(--font-weight-regular); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

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

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-brand { color: var(--text-brand); }
.text-success { color: var(--text-success); }
.text-warning { color: var(--text-warning); }
.text-error { color: var(--text-error); }

.leading-tight { line-height: var(--line-height-tight); }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }

.tracking-tight { letter-spacing: var(--letter-spacing-tight); }
.tracking-normal { letter-spacing: var(--letter-spacing-normal); }
.tracking-wide { letter-spacing: var(--letter-spacing-wide); }

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

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Spacing Utilities */
.m-0 { margin: 0; }
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* Display Utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-none { flex: none; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

/* Width & Height Utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-sm { max-width: var(--container-sm); }
.max-w-md { max-width: var(--container-md); }
.max-w-lg { max-width: var(--container-lg); }
.max-w-xl { max-width: var(--container-xl); }
.max-w-2xl { max-width: var(--container-2xl); }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }

/* Border Radius Utilities */
.rounded-none { border-radius: var(--radius-none); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow Utilities */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-brand { box-shadow: var(--shadow-brand-md); }

/* Visibility Utilities */
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* Position Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }

/* Z-Index Utilities */
.z-0 { z-index: var(--z-base); }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-100 { z-index: var(--z-dropdown); }

/* Transition Utilities */
.transition { transition: all var(--transition-base); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }

/* Cursor Utilities */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-default { cursor: default; }

/* Overflow Utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-visible { overflow: visible; }
.overflow-clip { overflow: clip; }

/* Screen Reader Only */
.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;
}

/* Focus Visible Utility */
.focus-ring:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* ==========================================================================
   WEBFLOW BASE STYLES (Preserved)
   ========================================================================== */

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--neutral--black-900);
  font-family: var(--font--global-font);
  color: var(--neutral--white-200);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

h1 {
  background-image: linear-gradient(180deg, var(--neutral--white-0), var(--neutral--white-100));
  color: var(--neutral--black-900);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.875rem;
  font-weight: 700;
  line-height: 4.375rem;
}

h2 {
  background-image: linear-gradient(180deg, var(--neutral--white-0), var(--neutral--white-100));
  font-family: var(--font--global-font);
  color: var(--neutral--black-900);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 3.125rem;
}

h3 {
  background-image: linear-gradient(180deg, var(--neutral--white-0), var(--neutral--white-100));
  color: var(--neutral--black-900);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}

h4 {
  background-image: linear-gradient(180deg, var(--neutral--white-0), var(--neutral--white-100));
  color: var(--neutral--black-900);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
}

h5 {
  background-image: linear-gradient(180deg, var(--neutral--white-0), var(--neutral--white-100));
  color: var(--neutral--black-900);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

h6 {
  background-image: linear-gradient(180deg, var(--neutral--white-0), var(--neutral--white-100));
  color: var(--neutral--black-900);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.625rem;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 20px;
  line-height: 1.875rem;
}

label {
  background-image: linear-gradient(180deg, var(--neutral--white-0), var(--neutral--white-100));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1rem;
  display: block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.utility-page-content {
  border: 1px solid var(--stock-color);
  background-color: var(--neutral--black-800);
  text-align: center;
  border-radius: .75rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 49.375rem;
  margin-bottom: 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-style-h2 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  color: var(--stock-color);
  text-align: center;
  width: 100%;
  font-weight: 600;
  line-height: 3.8rem;
}

.container-large {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.heading-style-h1 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  color: var(--brand--brand-color-5);
  -webkit-text-stroke-color: var(--brand--brand-color-5);
}

.text-size-regular {
  font-family: var(--font--global-font);
  color: var(--brand--brand-color-third);
  text-align: left;
  white-space: normal;
  width: 100%;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding-top: .5rem;
  padding-left: 0;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}

.text-size-regular.is-white {
  color: var(--brand--brand-color-third);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.text-size-regular.is-linear {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-size-small {
  background-image: linear-gradient(180deg, var(--neutral--white-0), var(--neutral--white-100));
  color: var(--neutral--black-800);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0;
  margin-left: 0;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.375rem;
}

.text-size-small.text-color-white-200 {
  color: var(--neutral--white-200);
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-bottom: 17px;
}

.text-size-small.text-color-green {
  -webkit-text-fill-color: transparent;
  background-image: none;
  -webkit-background-clip: text;
  background-clip: text;
}

.heading-style-h5 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
}

.button {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--brand--brand-color-third);
  color: var(--brand--brand-color-first);
  text-align: center;
  border-radius: 3.75rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: .8125rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: .875rem;
  text-decoration: none;
  transition: transform .4s;
  display: block;
}

.button:hover {
  background-color: var(--brand--brand-color-fast);
  color: var(--neutral--white-0);
  transform: scale(1.1)translate(0, -5px);
}

.button.is-secondary {
  background-color: var(--neutral--black-900);
  justify-content: center;
  align-items: center;
}

.padding-section-medium {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 4rem 0 0;
  display: block;
}

.padding-section-medium.is-header {
  margin-bottom: 6rem;
  padding-top: 6.25rem;
}

.padding-section-medium.padding-bottom-large {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.padding-global {
  width: 100%;
}

.padding-section-large {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.padding-section-large.is-header {
  padding-top: 5rem;
}

.padding-section-large.padding-top-medium {
  padding-top: 3.75rem;
}

.margin-bottom {
  margin: 0;
}

.margin-bottom.margin-top {
  margin-top: .75rem;
}

.heading-style-h6 {
  color: var(--brand--brand-color-5);
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  text-decoration: none;
}

.padding-bottom {
  width: 100%;
  padding: 0;
}

.padding-bottom.padding-large {
  padding-bottom: 3.125rem;
}

.padding-bottom.padding-small {
  width: 100%;
  height: 18px;
  padding-bottom: .5rem;
}

.padding-bottom.padding-medium {
  padding-bottom: 2rem;
}

.padding-bottom.padding-xlarge {
  padding-bottom: 3.75rem;
}

.padding-bottom.padding-large {
  width: auto;
  height: auto;
  padding-bottom: 3.125rem;
}

.utility-page-wrapper {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

._404-component {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  border: 1px solid var(--stock-color);
  background-color: var(--neutral--black-800);
  border-radius: .75rem;
  flex-direction: column;
  align-items: center;
  max-width: 49.4375rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  display: flex;
}

.field-label {
  display: none;
}

.password-field {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.password-input {
  background-color: var(--neutral--black-900);
  color: var(--neutral--white-300);
  border: 1px solid #0000;
  border-radius: .5rem;
  width: 19rem;
  height: 2.75rem;
  margin-bottom: 0;
  padding: .6875rem 1.25rem;
  font-size: .875rem;
  line-height: 1.375rem;
}

.password-input::placeholder {
  color: var(--neutral--white-300);
}

.error-message {
  color: var(--neutral--white-0);
  background-color: #e62231;
  margin-top: 1.25rem;
  padding: 1.25rem;
}

.page-wrapper {
  opacity: 1;
  mix-blend-mode: normal;
  background-color: #0000;
  background-image: linear-gradient(#08140e3d, #08140e3d), url('../images/All-Bg.svg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border: 1px solid #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 80px;
  display: flex;
  overflow: hidden;
}

.main-wrapper {
  flex-flow: column;
  align-items: center;
  padding-left: 20%;
  padding-right: 20%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar {
  background-color: #0000;
  padding: 1.25rem 1.5rem;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0%;
  padding-right: 0%;
  display: flex;
}

.nav-brand-logo-wrapper {
  width: 15%;
  height: auto;
}

.nav-brand-logo {
  width: 90%;
}

.nav-menu {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  justify-content: flex-start;
  align-items: center;
  margin-right: 5%;
  display: flex;
}

.nav-link {
  color: var(--neutral--white-200);
  border-radius: .375rem;
  padding: .5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: .875rem;
  text-decoration: none;
}

.nav-link.w--current {
  color: var(--brand--brand-color-third);
}

.section-hero {
  width: 100%;
  padding-top: 5rem;
  padding-left: 0%;
  position: relative;
  overflow: visible;
}

.hero-component {
  grid-column-gap: 6.25rem;
  grid-row-gap: 6.25rem;
  justify-content: space-around;
  width: 100%;
  max-height: none;
  padding-bottom: 0;
  display: flex;
}

.hero-left-content-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 35rem;
  display: flex;
}

.text-color-green {
  background-color: var(--brand--brand-color-third);
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: var(--brand--brand-color-4);
  overflow-wrap: normal;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-image-wrapper {
  width: 39.5rem;
  height: 29.125rem;
  position: relative;
}

.hero-image-wrapper._02 {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: 1;
  mix-blend-mode: normal;
  background-image: none;
  background-size: auto;
  border-radius: 0;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 38rem;
  height: 52.3rem;
  display: flex;
  position: absolute;
  inset: 2.6rem auto 0%;
}

.hero-image-wrapper._01 {
  position: absolute;
  inset: 50rem auto auto 23.7rem;
}

.section-about {
  width: 1240px;
}

.section-about.is-about {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 80px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.about-component.is-about {
  z-index: 2;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 40rem;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  display: flex;
  position: relative;
}

.about-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 70%;
  display: inline-flex;
  position: static;
}

.about-image-wrapper {
  border-radius: .75rem;
  flex-flow: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 35.4375rem;
  height: auto;
  display: flex;
  overflow: hidden;
}

.about-image-wrapper.is-about {
  justify-content: center;
  align-items: center;
  width: 64.5625rem;
}

.value-component {
  flex: 1;
  width: 100%;
  padding-bottom: 0;
}

.service-top-content-wrapper {
  text-align: center;
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.service-collection-list-wrapper {
  max-width: 110vw;
}

.service-collection-list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-collection-list-item {
  display: flex;
}

.value-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 2px solid var(--brand--brand-color-first);
  background-image: linear-gradient(#24493785, #24493785), url('../images/Service-Bg-Image.svg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 355.9px;
  height: auto;
  padding: 1.875rem 1rem;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 0 20px -1px #aec3b033;
}

.value-card:hover {
  transform: translate(0, -10px);
}

.value-icon {
  border: 1px solid var(--brand--brand-color-third);
  background-color: var(--neutral--black-900);
  border-radius: .5rem;
  justify-content: center;
  width: 60.1333px;
  height: 62.1333px;
  padding: .625rem;
  display: flex;
}

.value-card-content-wapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  display: flex;
}

.project-card {
  text-decoration: none;
}

.section-cta {
  width: 100%;
  padding-bottom: 0;
}

.section-footer {
  aspect-ratio: auto;
  border-top: 1px solid var(--stock-color);
  background-color: var(--neutral--black-900);
  padding-top: 6.25rem;
  position: static;
}

.section-team {
  margin-top: 40px;
}

.team-top-content-wrapper {
  text-align: center;
  width: 635rem;
  max-width: 40.6875rem;
  margin-left: auto;
  margin-right: auto;
}

.team-collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.team-collection-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 3.125rem;
  grid-template: ". . ."
                 ". . Area"
                 / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.team-collection-list.team-collection-list-3 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 3.125rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-card {
  object-fit: fill;
  margin-top: 30px;
  margin-bottom: -16px;
  text-decoration: none;
}

.team-image {
  border-radius: 12px;
}

.team-card-content-wrapper {
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.team-card-content {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-flow: column;
  display: flex;
}

.team-social-icon-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-faq {
  justify-content: center;
  display: flex;
}

.cta-component {
  background-image: linear-gradient(#081b114a, #081b114a), url('../images/Cta-bg.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: .75rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 3.875rem;
  padding-bottom: 3.875rem;
  display: flex;
}

.cta-content-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 37rem;
  display: flex;
}

.faq-top-content-wrapper {
  text-align: center;
  max-width: 42.375rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  border: 1px solid var(--stock-color);
  border-radius: .75rem;
  width: 100%;
  max-width: 47.875rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.faq-accordion {
  border-bottom: 1px solid var(--stock-color);
  cursor: pointer;
  width: 100%;
  padding: 1.5rem 2rem;
}

.faq-accordion._02 {
  border-bottom-style: none;
}

.faq-question-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.faq-answer-wrapper {
  overflow: hidden;
}

.blog-component {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  width: 100%;
  padding-left: 10rem;
  padding-right: 10rem;
  display: flex;
}

.blog-top-content-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-top-content-wrapper.is-blog {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 38.4375rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-top-left-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 38.4375rem;
  display: flex;
}

.blog-collection-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-image: url('../images/Blog-Bg-Image.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  padding: 1.25rem;
  display: flex;
}

.blog-image {
  object-fit: cover;
}

.blog-image-wrapper {
  border-radius: .75rem;
  flex: none;
  width: 13.75rem;
  height: 9.375rem;
  overflow: hidden;
}

.blog-card-content-wrapper {
  grid-row-gap: 1.25rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.blog-card-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-category {
  background-color: var(--stock-color);
  border-radius: .75rem;
  padding: .3125rem .625rem;
}

.blog-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--brand--brand-color-third);
  justify-content: flex-start;
  align-items: center;
  font-size: .8rem;
  text-decoration: none;
  display: flex;
}

.footer-grid {
  grid-column-gap: 6.0625rem;
  grid-row-gap: 6.0625rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr;
  padding-bottom: 1.125rem;
}

.footer-left-content-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blog-category-collection-list {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-category-collection-list-item {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

.blog-category-button {
  background-color: var(--stock-color);
  color: var(--neutral--white-100);
  border-radius: 3.75rem;
  padding: .5rem 1.5rem;
  font-size: .875rem;
  line-height: 1.375rem;
  text-decoration: none;
}

.blog-category-button.w--current {
  background-color: var(--brand--brand-color-fast);
}

.faq-tabs {
  margin-bottom: 80px;
}

.faq-list-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.contact-component {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  display: flex;
}

.contact-left-content-wrapper {
  width: 100%;
}

.contact-social-icon-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-form-block {
  text-align: left;
  border-radius: .75rem;
  flex-flow: column;
  justify-content: center;
  align-self: auto;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 0 0;
  display: flex;
}

.contact-form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: row;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  margin-left: 0;
  display: inline-grid;
}

.success-message {
  background-color: var(--brand--brand-color-fast);
  color: var(--neutral--white-0);
  padding: 1.25rem;
}

.input {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: var(--brand--brand-color-5);
  -webkit-text-stroke-color: var(--brand--brand-color-5);
  background-color: #fff3;
  border: 0 solid gray;
  border-radius: 8px;
  align-items: center;
  width: 100%;
  height: 3.5rem;
  margin-bottom: 0;
  padding: .6875rem 1rem;
  font-size: .875rem;
  line-height: 1.375rem;
  display: flex;
}

.input:focus {
  border-color: var(--brand--brand-color-fast);
}

.input::placeholder {
  color: var(--neutral--white-200);
}

.input.is-message {
  height: 7.5rem;
}

.project-details-component {
  max-width: 62.25rem;
  margin-left: auto;
  margin-right: auto;
}

.project-details-top-content-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  text-align: center;
  flex-flow: column;
  max-width: 36.9375rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.project-details-image-wrapper {
  border-radius: .75rem;
}

.project-details-bottom-content-wrapper {
  border: 1px solid var(--stock-color);
  background-image: url('../images/Project-Details-Image.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  padding: 2.5rem;
}

.project-details-top-bottom-content {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  display: flex;
}

.project-details-top-content {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border: 1px solid var(--stock-color);
  background-color: var(--neutral--black-900);
  text-align: center;
  border-radius: .75rem;
  flex-flow: column;
  width: 100%;
  padding: 1.875rem;
  display: flex;
}

.project-details h5 {
  margin-bottom: 1.25rem;
}

.project-details ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 20px;
  line-height: 2rem;
}

.service-details-component {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  max-width: 62.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.service-details-top-content-wrapper {
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
  background-image: url('../images/Service-Details-Image.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  padding: 1.875rem;
  display: flex;
}

.service-details-left-content-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.service-details-left-content {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.service-list ul {
  margin-top: 0;
  padding-left: 20px;
  line-height: 2rem;
}

.service-details-right-content-wrapper {
  border: 1px solid var(--stock-color);
  background-image: url('../images/Services-details.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  width: 100%;
  max-width: 26.625rem;
  padding: 1.875rem;
  overflow: hidden;
}

.service-details-right-content {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.service-form-block {
  margin-bottom: 0;
}

.service-form {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex-flow: column;
  display: flex;
}

.service-field-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.service-details-bottom-content-wrapper {
  border: 1px solid var(--stock-color);
  background-image: linear-gradient(90deg, #02361700, #04ff664d);
  border-radius: .75rem;
  padding: 2.5rem;
}

.service-details h5 {
  margin-bottom: 1.25rem;
}

.team-details-component {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  max-width: 59.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.team-details-top-content-wrapper {
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
  border: 1px solid var(--stock-color);
  background-image: url('../images/Blog-Details-Top-Bg.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  padding: 1.25rem;
  display: flex;
  overflow: hidden;
}

.team-details-image {
  object-fit: cover;
  width: 100%;
}

.team-details-wrapper {
  border-radius: .75rem;
  flex: none;
  width: 20.6875rem;
  height: 27.26rem;
  overflow: hidden;
}

.team-details-top-right-content-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.team-details-right-top-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.team-details-right-top-content {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-flow: column;
  display: flex;
}

.team-details-bottom-content-wrapper {
  background-image: url('../images/Team-Details-Bg.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  padding: 2.5rem;
}

.team-details h5 {
  color: var(--neutral--white-0);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-bottom: .5rem;
}

.team-details p {
  margin-top: 1rem;
}

.team-details ul {
  margin-bottom: 0;
}

.blog-details-top-content-wrapper {
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
  background-image: url('../images/Blog-Details-Top-Bg.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  padding: 1.875rem;
  display: flex;
}

.blog-details-left-bottom-content-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: row;
  display: flex;
}

.blog-details-left-bottom-content {
  background-color: var(--stock-color);
  border-radius: .75rem;
  padding: .3125rem 1rem;
}

.blog-details-image-wrapper {
  border-radius: .75rem;
  flex: none;
  width: 37.75rem;
  height: 25.25rem;
  overflow: hidden;
}

.blog-details-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-details-bottom-content-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
}

.blog-details-bottom-left-content {
  background-image: url('../images/Blog-Details--Bg.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  padding: 2rem;
}

.blog-details h5 {
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.blog-details ul {
  margin-bottom: 0;
}

.blog-details h4 {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.blog-details blockquote {
  background-color: var(--stock-color);
  color: var(--neutral--white-100);
  border-left-style: none;
  border-radius: .75rem;
  margin-top: 2.5rem;
  padding: 2.5rem;
  font-weight: 500;
  line-height: 1.625rem;
}

.blog-details h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}

.blog-details h1 {
  font-size: 3.5rem;
}

.blog-details h3 {
  font-size: 1.6rem;
}

.blog-details p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.blog-details a {
  color: var(--brand--brand-color-fast);
  text-decoration: none;
}

.blog-details-bottom-right-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-image: url('../images/Blog-Details--Bg.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  flex-flow: column;
  flex: none;
  padding: 1.25rem 1rem;
  display: flex;
  position: sticky;
  top: 0;
}

.blog-details-social-icon-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.footer-link-list-wrapper {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 400;
  display: flex;
}

.footer-link {
  color: var(--neutral--white-200);
  font-size: .875rem;
  font-weight: 500;
  line-height: .875rem;
  text-decoration: none;
}

.footer-bottom-content-wrapper {
  background-color: var(--neutral--black-800);
  padding: 1.25rem 1.5rem;
}

.footer-bottom-content {
  justify-content: space-between;
  align-items: center;
  max-width: 67.3125rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.website-link {
  color: var(--brand--brand-color-third);
  text-decoration: none;
}

.footer-social-icon-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.about-header-bg-wrapper {
  background-image: url('../images/About-Bg.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
}

.section-mission {
  margin-left: 5%;
  margin-right: 5%;
}

.mission-top-content-wrapper {
  text-align: center;
  max-width: 36.75rem;
  margin-left: auto;
  margin-right: auto;
}

.mission-bottom-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.mission-card {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  border: 1px solid var(--stock-color);
  text-align: center;
  background-image: linear-gradient(#24493785, #24493785), url('../images/Mission-Bg.svg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.875rem;
  display: flex;
}

.mission-icon {
  border: 1px solid var(--brand--brand-color-third);
  border-radius: .75rem;
  padding: .625rem;
}

.mission-header {
  background-color: var(--brand--brand-color-first);
  text-align: center;
  border-radius: .75rem;
  padding: .5625rem 1.625rem;
}

.nav-bottom-content.hide-dekstop {
  display: none;
}

.value-top-content-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  text-align: center;
  flex-flow: column;
  max-width: none;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.value-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
  justify-items: center;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}

.blog-details-link {
  text-decoration: none;
}

.header-left-top-content {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-size-regular-2 {
  color: #b4b8c2;
  margin-bottom: 0;
  font-family: Be Vietnam Pro, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.text-size-regular-2.is-linear {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#fcfcfc, #fffc);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-link-2 {
  color: #b4b8c2;
  font-size: .875rem;
  font-weight: 500;
  line-height: .875rem;
  text-decoration: none;
}

.button-2 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: #fcfcfc;
  text-align: center;
  background-color: #079c41;
  border-radius: 3.75rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: .8125rem 1.5rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: .875rem;
  text-decoration: none;
  transition: transform .4s;
  display: block;
}

.button-2:hover {
  color: #fcfcfc;
  background-color: #079c41;
  transform: scale(1.1)translate(0, -5px);
}

.section-footer-2 {
  background-color: #090910;
  border-top: 1px solid #0d2f27;
  padding-top: 6.25rem;
}

.footer-grid-2 {
  grid-column-gap: 6.0625rem;
  grid-row-gap: 6.0625rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr .25fr;
  padding-bottom: 1.125rem;
}

.footer-bottom-content-wrapper-2 {
  background-color: #121218;
  padding: 1.25rem 1.5rem;
}

.footer-link-list-wrapper-2 {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

.website-link-2 {
  color: var(--brand--brand-color-third);
  text-decoration: none;
}

.footer-link-3 {
  color: var(--brand--brand-color-4);
  font-size: .875rem;
  font-weight: 500;
  line-height: .875rem;
  text-decoration: none;
}

.footer-link-3.w--current {
  color: var(--brand--brand-color-4);
}

.hero-right-content-wrapper-2 {
  align-items: stretch;
  width: 900px;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0;
  display: block;
  position: static;
  inset: 0% 0% auto auto;
  overflow: visible;
}

.hero-right-content-2 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.hero-effect-wrapper-2 {
  z-index: 0;
  background-color: var(--brand--brand-color-third);
  opacity: .41;
  filter: blur(90px);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50rem;
  height: 40rem;
  margin-top: 0;
  margin-right: 0;
  display: block;
  position: absolute;
  inset: -2% -10% auto auto;
  overflow: hidden;
}

.hero-image-2 {
  object-fit: cover;
  width: 100%;
  display: inline-block;
  overflow: clip;
}

.hero-image-2._02 {
  z-index: 5;
  aspect-ratio: auto;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  object-fit: cover;
  background-clip: border-box;
  width: 196px;
  display: block;
  position: absolute;
  top: 16px;
  left: 132px;
  overflow: visible;
}

.hero-image-2._03 {
  aspect-ratio: auto;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  object-fit: cover;
  margin-top: 0;
  margin-left: 0;
}

.grid-3 {
  grid-row-gap: 23px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

.footer-bottom-content-wrapper-13 {
  background-color: #040a07;
  margin-left: 0%;
  margin-right: 0%;
  padding: 1.25rem 1.5rem;
}

.section-footer-3 {
  background-color: #040d09;
  border-top: 1px solid #0d2f27;
  margin-left: 0%;
  margin-right: 0%;
  padding-top: 1.7rem;
  padding-left: 5%;
  padding-right: 5%;
}

.grid-2 {
  grid-template-rows: auto 102px auto auto;
  grid-template-columns: 1fr;
}

.sitelinks-title {
  color: var(--brand--brand-color-5);
  font-size: 24px;
  line-height: 30px;
}

.grid {
  grid-row-gap: 34px;
  border-bottom: 0 solid #fff;
  flex: 0 auto;
  grid-template-rows: 21px auto auto;
  grid-template-columns: .75fr 8.25fr;
  align-self: auto;
  text-decoration: none;
}

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

.regular-font-8 {
  color: #b4b8c2;
  margin-bottom: 0;
  font-family: Be Vietnam Pro, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.footer-brand-logo-2 {
  float: none;
  clear: none;
  text-align: left;
  width: 15%;
  padding-bottom: 55px;
  padding-left: 0;
  text-decoration: none;
  position: static;
  inset: 0% 0% auto 41%;
}

.footer-link-list-wrapper-3 {
  box-sizing: border-box;
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

.footer-grid-3 {
  grid-column-gap: 4.7625rem;
  grid-row-gap: 6.0625rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1.25fr 1fr 1fr 1fr;
  padding-bottom: 1.125rem;
}

.text-block {
  color: var(--brand--brand-color-4);
  letter-spacing: normal;
  overflow-wrap: normal;
  margin-top: 20px;
  line-height: 25px;
}

.team-collection-list-item-2 {
  width: 90%;
}

.text-color-green-2 {
  background-color: var(--brand--brand-color-third);
  -webkit-text-fill-color: transparent;
  mix-blend-mode: normal;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-size-regular-9 {
  color: #b4b8c2;
  text-align: left;
  margin-bottom: 0;
  font-family: Be Vietnam Pro, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.text-size-regular-9.is-white {
  color: #fcfcfc;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 1.5rem;
  line-height: 2rem;
}

.heading-style-h2-2 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: center;
  -webkit-text-stroke-color: #fff;
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 4rem;
  display: block;
}

.team-collection-list-3 {
  float: none;
  clear: none;
  grid-column-gap: 1.5rem;
  grid-row-gap: 3.125rem;
  text-align: left;
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  text-decoration: none;
  display: grid;
}

.toggle-slider {
  background-color: #079c41;
  border-radius: 3.7rem;
  width: 160px;
  height: 45px;
  position: absolute;
  left: 116px;
}

.toggle-slider.active {
  border: 2px solid var(--brand--brand-color-first);
  background-color: var(--brand--brand-color-third);
  color: var(--neutral--black-800);
  width: 55%;
  height: 3rem;
  font-weight: 600;
  display: flex;
  position: absolute;
  left: -2%;
}

.toggle-switch-contact {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  aspect-ratio: auto;
  text-align: center;
  background-color: #090910ad;
  border: 1px solid #0d2f27;
  border-radius: .7rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 2.75rem;
  margin-left: 0;
  margin-right: 0;
  display: none;
  position: relative;
  left: 0;
}

.name-field, .email-field, .phone-field, .message-subject-field {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
  position: relative;
}

.investment-field, .specialist-field {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: none;
  position: relative;
}

.country-field, .town-field, .message-field {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
  position: relative;
}

.text-field {
  display: none;
}

.source-info {
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: .25fr 2.25fr .5fr;
  justify-content: start;
  place-items: center start;
  height: 30px;
  position: relative;
}

.title-link {
  color: var(--brand--brand-color-5);
  max-width: 583.983px;
  max-height: 50px;
  margin-top: 24px;
  margin-left: 10%;
  margin-right: 20px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

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

.social-news-items {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: 1;
  border-radius: 15px;
  grid-template-rows: 115px 115px 115px 115px;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 20px;
  display: grid;
}

.news-2 {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-rows: 83px auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  padding: 30px 0;
  display: flex;
}

.grid-4 {
  background-color: #0000005e;
  border-radius: 13px;
  grid-template-rows: 121px;
  grid-template-columns: 121px 1fr;
  width: 100%;
}

.source-name-web {
  height: 37.1%;
  margin-top: 12px;
}

.item1-web, .item2-web {
  width: 100%;
  display: inline;
}

.title-link-web {
  color: var(--brand--brand-color-third);
  text-overflow: ellipsis;
  max-width: 93.9237%;
  max-height: 50px;
  margin-top: 24px;
  margin-left: 0;
  margin-right: 20px;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.item4-web {
  width: 100%;
}

.news-image {
  -webkit-text-fill-color: inherit;
  object-fit: cover;
  background-clip: border-box;
  border-radius: 13px 0% 0% 13px;
  width: 121px;
  height: 121px;
  display: block;
  overflow: hidden;
}

.web-comtainer {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 20px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 0 10px;
  display: flex;
}

.item3-web {
  width: 100%;
}

.web-news-items-2 {
  grid-row-gap: 24px;
  aspect-ratio: auto;
  opacity: 1;
  object-fit: contain;
  border-radius: 15px;
  flex-flow: column;
  grid-template-rows: 115px 115px 115px 115px;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 80%;
  padding: 20px 0;
  display: flex;
}

.pagination-2 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  place-items: center;
  margin-bottom: 24px;
  margin-left: 140px;
  margin-right: 140px;
  display: flex;
}

.grid-6 {
  grid-row-gap: 2px;
  grid-template-rows: 23px 70px;
  grid-template-columns: 1fr;
}

.pagbuttonprev-3 {
  color: var(--brand--brand-color-5);
  text-align: left;
  cursor: pointer;
  background-color: #0000;
  background-image: url('../images/arrow2.png');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  justify-content: flex-end;
  align-items: center;
  width: 100px;
  height: 20px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.25rem;
  display: flex;
}

.source-logo-3 {
  border-radius: 100%;
  width: 50px;
  height: 50px;
}

.pagbuttonnext-3 {
  color: var(--brand--brand-color-5);
  text-align: left;
  cursor: pointer;
  background-color: #0000;
  background-image: url('../images/arrow1.png');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-start;
  align-items: center;
  width: 100px;
  height: 20px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.25rem;
  display: flex;
}

.social-container-3 {
  box-sizing: border-box;
  -webkit-text-fill-color: inherit;
  vertical-align: middle;
  object-fit: fill;
  background-image: linear-gradient(#08140e3d, #08140e3d), url('../images/Service-Details-Image.svg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-clip: border-box;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  margin-right: 0;
  padding: 10px;
  display: inline-block;
  position: sticky;
}

.container1, .container2 {
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.field-label-2, .field-label-3, .field-label-4, .field-label-5, .field-label-6, .field-label-7, .field-label-8, .field-label-9, .field-label-10 {
  color: var(--brand--brand-color-5);
}

.toggle-option-contact {
  aspect-ratio: auto;
  color: var(--neutral--white-300);
  text-align: center;
  overflow-wrap: normal;
  cursor: pointer;
  object-fit: fill;
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 50%;
  text-decoration: none;
  display: flex;
  position: relative;
  left: auto;
  right: auto;
}

.toggle-option-contact.active {
  color: var(--brand--brand-color-first);
  -webkit-text-stroke-color: var(--neutral--white-200);
  cursor: pointer;
  font-weight: 700;
}

.text-block-4 {
  color: var(--brand--brand-color-4);
  margin-top: 20px;
}

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

.image-10, .image-11, .image-12 {
  width: 38px;
  height: 40px;
}

.team-collection-list-wrapper-main {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.team-collection-list-wrapper-main.team-collection-list-wrapper-2-main {
  box-sizing: border-box;
  float: none;
  text-align: left;
  text-decoration: none;
  display: none;
}

.team-collection-list-wrapper-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.team-collection-list-wrapper-copy.team-collection-list-wrapper-2-main {
  box-sizing: border-box;
  float: none;
  text-align: left;
  text-decoration: none;
}

.body {
  object-fit: fill;
  max-width: none;
  overflow: visible;
}

.modal-wrapper {
  z-index: 9999;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: 0;
  background-image: linear-gradient(48deg, #000000e6, #014c1fe6);
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.container {
  box-sizing: border-box;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  object-fit: contain;
  background-color: #000000d4;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 70%;
  padding: 0 5% 56px;
  display: flex;
  overflow: hidden;
}

.pop-up-heading {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: center;
  margin-top: 10%;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 2rem;
  line-height: 3rem;
}

.pop-up-litle-heading {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-4), var(--brand--brand-color-4));
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.crypto-tax-pop-up {
  background-image: linear-gradient(#08140e3d, #08140e3d), url('../images/Team-Details-Bg.svg');
  background-position: 0 0, 2% 2%;
  background-size: auto, cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 20px 32px;
  display: flex;
  position: static;
}

.image-13 {
  width: 3rem;
  height: 3rem;
}

.column-2 {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.p1-tax {
  aspect-ratio: auto;
  text-align: left;
  width: 100%;
  margin-left: 24px;
  padding-right: 0;
  font-size: 1em;
  font-weight: 400;
}

.cryptp-rec-pop-up {
  background-image: linear-gradient(#08140e3d, #08140e3d), url('../images/Team-Details-Bg.svg');
  background-position: 0 0, 2% 2%;
  background-size: auto, cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 20px 32px;
  display: flex;
}

.image-14, .image-15, .image-16, .image-18 {
  width: 100%;
}

.button-pop-up {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--brand--brand-color-fast);
  color: var(--neutral--white-0);
  text-align: center;
  cursor: pointer;
  border-radius: 3.75rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 50px;
  margin-top: 27px;
  margin-bottom: 33px;
  padding: .8125rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: .875rem;
  text-decoration: none;
  transition: transform .4s;
  display: flex;
  position: static;
  inset: 50rem auto 5%;
}

.button-pop-up:hover {
  background-color: var(--brand--brand-color-fast);
  color: var(--neutral--white-0);
  transform: scale(1.1)translate(0, -5px);
}

.cookies {
  z-index: 999;
  opacity: 0;
  text-align: center;
  background-color: #000;
  border-radius: 20px 20px 0 0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 200px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: fixed;
  inset: auto auto 0% 0%;
}

.paragraph-3 {
  flex-flow: column;
  align-items: center;
  width: 70%;
  font-size: .82rem;
  line-height: 1rem;
  display: flex;
}

.heading-3 {
  flex-flow: row;
  width: 100%;
  font-size: 2rem;
  display: block;
}

.button-accept {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--brand--brand-color-fast);
  color: var(--neutral--white-0);
  text-align: center;
  cursor: pointer;
  border-radius: 3.75rem;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 45px;
  margin-top: 15px;
  margin-bottom: 9px;
  padding: .8125rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: .875rem;
  text-decoration: none;
  transition: transform .4s;
  display: flex;
}

.button-accept:hover {
  background-color: var(--brand--brand-color-fast);
  color: var(--neutral--white-0);
  transform: scale(1.1)translate(0, -5px);
}

.image-20 {
  width: 50px;
  height: 50px;
}

.columns-2 {
  justify-content: center;
  align-items: center;
  width: 300px;
  display: flex;
}

.button-decline {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--stock-color);
  color: var(--neutral--white-0);
  text-align: center;
  cursor: pointer;
  border-radius: 3.75rem;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 45px;
  margin-top: 15px;
  margin-bottom: 9px;
  padding: .8125rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: .875rem;
  text-decoration: none;
  transition: transform .4s;
  display: flex;
}

.button-decline:hover {
  background-color: var(--brand--brand-color-fast);
  color: var(--neutral--white-0);
  transform: scale(1.1)translate(0, -5px);
}

.button-contact {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--brand--brand-color-third);
  color: var(--brand--brand-color-first);
  text-align: center;
  cursor: pointer;
  border-radius: 3.75rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: .8125rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: .875rem;
  text-decoration: none;
  transition: transform .4s;
  display: block;
  box-shadow: 0 0 20px 5px #aec3b036;
}

.button-contact:hover {
  background-color: var(--brand--brand-color-fast);
  color: var(--neutral--white-0);
  transform: scale(1.1)translate(0, -5px);
}

.section-news {
  flex-flow: column;
  align-items: center;
  width: 70vw;
  max-width: 100vw;
  display: flex;
}

.extended-news {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 445px;
  display: flex;
}

.image-news-block {
  background-color: #00000054;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 100%;
  padding-top: 0;
  display: flex;
}

.title-link-image-block {
  color: var(--brand--brand-color-5);
  text-align: center;
  cursor: pointer;
  text-overflow: ellipsis;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 85%;
  height: auto;
  max-height: none;
  margin: 36px 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2rem;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.columns-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  height: 100%;
  display: flex;
}

.image-news {
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  width: 508px;
  height: 300px;
}

.list-news {
  flex-flow: column;
  align-items: center;
  width: 60%;
  display: flex;
}

.item-list-news {
  flex-flow: column;
  width: 905.6px;
  height: auto;
  display: flex;
}

.grid-list-news {
  background-color: #0000005e;
  border-radius: 13px;
  grid-template-rows: 121px;
  grid-template-columns: 121px 1fr;
  height: 150px;
}

.image-list-news {
  -webkit-text-fill-color: inherit;
  object-fit: cover;
  background-clip: border-box;
  border-radius: 13px 0% 0% 13px;
  width: 300px;
  max-width: none;
  height: 149px;
  display: block;
  overflow: hidden;
}

.grid-text-list-news {
  grid-row-gap: 2px;
  flex-flow: column;
  grid-template-rows: 23px 70px;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  margin-top: 6px;
  margin-left: 191px;
  display: flex;
}

.source-list-news {
  height: auto;
  margin-top: 21px;
  padding-bottom: 10px;
}

.title-link-list-news {
  color: var(--brand--brand-color-third);
  text-overflow: ellipsis;
  flex-flow: column;
  max-width: 93.9237%;
  max-height: 100px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 20px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.65rem;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.heading-5 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  font-size: 2.5rem;
}

.heading-style-h2-news {
  text-align: center;
  width: 60%;
  font-size: 3rem;
  line-height: 3.8rem;
}

.big-announcement {
  justify-content: center;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.blog-top-container-wrapper {
  text-align: center;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

.announc-container {
  width: 75%;
}

.image-22 {
  outline-offset: 0px;
  mix-blend-mode: normal;
  border-radius: 20px;
  outline: 3px #b4b8c2;
  width: 100%;
  max-height: 546px;
  box-shadow: 0 0 19px 6px #07b96a4d;
}

.announc-title-container {
  text-align: center;
  max-width: 100%;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
}

.columns-6 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.announc-title {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: center;
  -webkit-text-stroke-color: #fcfcfc;
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.announc-text {
  color: #b4b8c2;
  text-align: left;
  margin-bottom: 0;
  font-family: Be Vietnam Pro, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.announc-text.is-white {
  color: var(--brand--brand-color-4);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 1.3rem;
  line-height: 2rem;
}

.list-announcement {
  justify-content: center;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.list-container {
  width: 75%;
}

.list-title {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: left;
  -webkit-text-stroke-color: #fcfcfc;
  margin-bottom: 18px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.list-text {
  color: var(--brand--brand-color-4);
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.list-ann-item {
  border-bottom: 1px solid var(--brand--brand-color-third);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 10px;
  display: flex;
}

.product-updates {
  justify-content: center;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.updates-container {
  flex-flow: column;
  width: 75%;
  display: flex;
}

.image-23 {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 300px;
  max-height: 100%;
  margin-bottom: 20px;
  box-shadow: 0 0 20px 4px #07b96a4a;
}

.updates-title {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-4), var(--brand--brand-color-4));
  color: var(--brand--brand-color-fast);
  text-align: left;
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 2rem;
}

.blog-after-title {
  color: #b4b8c2;
  text-align: left;
  margin-bottom: 0;
  font-family: Be Vietnam Pro, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.blog-after-title.is-white {
  color: var(--brand--brand-color-5);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 1.5rem;
  line-height: 2rem;
}

.video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 13px;
  width: 100%;
  height: auto;
  box-shadow: 0 0 19px 13px #07b96a30;
}

.video-container {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 75%;
  max-width: 75vw;
  display: flex;
}

.heading-6 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: center;
  width: 80%;
  margin-bottom: 60px;
  font-size: 3rem;
  line-height: 4rem;
}

.image-25 {
  width: 90%;
  height: 90%;
}

.heading-style-h2-contact {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: left;
  width: auto;
  font-size: 3rem;
  line-height: 3.8rem;
}

.paragraph-4, .paragraph-5, .paragraph-6 {
  color: var(--brand--brand-color-third);
}

.education-top-container-wrapper {
  text-align: center;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

.education-after-title {
  color: #b4b8c2;
  text-align: left;
  margin-bottom: 0;
  font-family: Be Vietnam Pro, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.education-after-title.is-white {
  color: var(--brand--brand-color-5);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 1.5rem;
  line-height: 2rem;
}

.books {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  margin-top: 0;
  margin-bottom: 4rem;
  display: grid;
}

.trade-heading {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-4), var(--brand--brand-color-4));
  text-align: center;
  font-size: 2.3rem;
  font-weight: 600;
  display: none;
}

.image-tr {
  aspect-ratio: 210 / 315;
  object-fit: cover;
  border-radius: 20px;
  width: auto;
  height: auto;
  max-height: 100%;
  margin-bottom: 20px;
}

.tr-title {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-4), var(--brand--brand-color-4));
  color: var(--brand--brand-color-fast);
  text-align: left;
  height: auto;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4rem;
  text-decoration: none;
}

.download-text-1 {
  color: var(--brand--brand-color-third);
  margin-right: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}

.download-container {
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  display: flex;
}

.tr-slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: visible;
}

.mask {
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.slide {
  border: 1px solid var(--brand--brand-color-4);
  border-radius: 20px;
  width: 20%;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px 10px;
  overflow: visible;
}

.slide-2, .slide-3, .slide-4 {
  border: 1px solid var(--brand--brand-color-4);
  border-radius: 20px;
  width: 20%;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px 10px;
}

.slide-5 {
  border: 1px solid var(--brand--brand-color-5);
  border-radius: 20px;
  width: 20%;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px 10px;
}

.slide-6 {
  border: 1px solid var(--brand--brand-color-4);
  border-radius: 20px;
  width: 20%;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px 10px;
}

.crypto-books {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.crypto-heading {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-4), var(--brand--brand-color-4));
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.3rem;
  font-weight: 600;
  display: block;
}

.link {
  height: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
}

.iso {
  margin-top: 0%;
  text-decoration: none;
}

.heading-7 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-4), var(--brand--brand-color-4));
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.3rem;
}

.doc-title {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-4), var(--brand--brand-color-4));
  color: var(--brand--brand-color-fast);
  text-align: left;
  margin-bottom: 40px;
  padding-left: 20px;
  font-size: 1.5rem;
  line-height: 2rem;
}

.link-doc {
  box-sizing: border-box;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--brand--brand-color-third);
  text-align: left;
  word-break: normal;
  cursor: pointer;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 40px;
  text-decoration: none;
  display: flex;
}

.trade-docs {
  width: 85%;
}

.doc-link-text {
  box-sizing: border-box;
  clear: none;
  direction: ltr;
  color: var(--brand--brand-color-third);
  text-align: left;
  column-count: auto;
  column-rule-width: 0px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  object-fit: fill;
  object-position: 50% 50%;
  flex-flow: row;
  flex: 0 auto;
  align-self: auto;
  max-width: 80%;
  display: block;
  position: static;
}

.bold-text {
  outline-offset: 0px;
  color: var(--brand--brand-color-4);
  vertical-align: baseline;
  outline: 3px #aec3b0;
  flex-flow: row;
  display: flex;
}

.upd-column {
  border: 1px none var(--brand--brand-color-4);
  border-radius: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
}

.columns-9 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  display: flex;
}

.doc-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-flow: row;
  height: auto;
  display: flex;
}

.doc-column {
  border: 1px solid var(--brand--brand-color-4);
  background-image: linear-gradient(#24493785, #24493785), url('../images/Service-Bg-Image.svg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 20px;
  flex-flow: column;
  height: auto;
  padding: 30px 20px 40px;
  display: block;
  position: relative;
}

.other-docs {
  width: 85%;
}

.heading-other-docs {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-4), var(--brand--brand-color-4));
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.7rem;
  font-weight: 500;
}

.other-doc-title {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-4), var(--brand--brand-color-4));
  color: var(--brand--brand-color-fast);
  text-align: left;
  margin-bottom: 40px;
  padding-left: 20px;
  font-size: 1.2rem;
  line-height: 1.7rem;
}

.image-27 {
  vertical-align: baseline;
}

.html-embed {
  margin-bottom: .125rem;
  font-size: .85rem;
}

.div-block-5 {
  height: 0;
}

.link-2 {
  color: #6b9071;
  text-decoration: none;
}

.text-block-5 {
  color: var(--neutral--white-200);
  font-size: 1rem;
  line-height: .87rem;
}

.dropdown-list {
  background-color: #000;
  border-radius: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: none;
}

.dropdown-link {
  color: var(--neutral--white-200);
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: .82rem;
  line-height: .87rem;
}

.dropdown-link.w--current {
  color: var(--brand--brand-color-third);
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 1rem;
}

.dropdown-link-3 {
  color: var(--neutral--white-200);
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: .82rem;
  line-height: .87rem;
}

.dropdown-link-3.w--current {
  color: var(--brand--brand-color-third);
}

.dropdown-link-4 {
  color: var(--neutral--white-200);
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: .82rem;
  line-height: .87rem;
}

.dropdown-link-4.w--current {
  color: var(--brand--brand-color-third);
}

.icon {
  color: var(--neutral--white-200);
}

.text-block-6 {
  color: var(--brand--brand-color-5);
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.container-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: flex;
}

.container-3 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.bold-text-2 {
  color: var(--brand--brand-color-4);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.5rem;
  line-height: 2rem;
  display: flex;
}

.bold-text-3 {
  color: var(--brand--brand-color-5);
  text-align: left;
  -webkit-text-stroke-color: var(--brand--brand-color-4);
  width: 100%;
  font-size: 2rem;
  font-weight: 600;
  line-height: 3rem;
}

.bold-text-5 {
  text-align: center;
  -webkit-text-stroke-color: var(--brand--brand-color-5);
}

.div-block-6, .bold-text-6 {
  text-align: left;
}

.bold-text-7 {
  color: var(--brand--brand-color-4);
  font-size: 1rem;
}

.div-block-7 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 20px 0 140px;
  display: grid;
}

.container-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.bold-text-8 {
  color: var(--brand--brand-color-5);
  line-height: 2rem;
}

.container-5 {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.container-6 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.paragraph-7 {
  color: var(--brand--brand-color-third);
  margin-bottom: 16px;
  font-size: 1.2rem;
  line-height: 1.7rem;
  text-decoration: none;
}

.text-block-7 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-9 {
  justify-content: space-between;
  align-items: flex-start;
  width: 1240px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.container-9, .container-10 {
  max-width: 600px;
}

.div-block-10 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: #1b3b2b;
  border-radius: 20px;
  flex-flow: column;
  margin-top: 9rem;
  margin-bottom: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.paragraph-8 {
  color: var(--brand--brand-color-third);
  -webkit-text-stroke-color: var(--brand--brand-color-third);
}

.text-block-8 {
  line-height: 2rem;
}

.paragraph-9 {
  color: var(--brand--brand-color-third);
}

.heading-9 {
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 3rem;
  line-height: 3.5rem;
}

.container-11 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1000px;
  display: flex;
}

.div-block-14 {
  padding-bottom: 80px;
  padding-left: 20%;
  padding-right: 20%;
}

.bold-text-15 {
  width: 600px;
  max-width: 820px;
}

.container-13 {
  max-width: 1200px;
  height: 650px;
  display: flex;
}

.heading-10 {
  color: var(--brand--brand-color-4);
  text-align: left;
  -webkit-text-stroke-color: var(--brand--brand-color-third);
  font-size: 1.5rem;
  line-height: 2rem;
}

.paragraph-10 {
  color: var(--brand--brand-color-third);
  text-align: left;
  margin-bottom: 20px;
}

.container-14 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.container-15 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  max-width: 1200px;
  padding-top: 40px;
  padding-right: 0;
  display: flex;
}

.image-28 {
  border-radius: 20px;
  width: 500px;
  margin-right: 60px;
}

.container-16 {
  flex-flow: column;
  max-width: 800px;
  margin-top: 16px;
  margin-left: 0;
  margin-right: 60px;
  display: flex;
}

.image-29 {
  border-radius: 20px;
  width: 560px;
  height: 400px;
}

.container-17 {
  max-width: 1200px;
  margin-top: 68px;
  margin-bottom: 40px;
  display: flex;
}

.paragraph-11 {
  color: var(--brand--brand-color-third);
  text-align: left;
  margin-bottom: 32px;
}

.bold-text-20 {
  -webkit-text-stroke-color: var(--brand--brand-color-third);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-span {
  -webkit-text-stroke-color: var(--brand--brand-color-third);
  -webkit-text-fill-color: transparent;
  background-color: #6b9070;
  -webkit-background-clip: text;
  background-clip: text;
}

.container-18 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  max-width: 1000px;
  padding: 140px 120px 40px;
  display: flex;
}

.div-block-15 {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex-flow: column;
  margin-bottom: 80px;
  display: flex;
}

.container-19 {
  width: 100%;
  max-width: 1300px;
  margin-bottom: 80px;
  display: flex;
}

.paragraph-12 {
  color: var(--brand--brand-color-third);
  margin-bottom: 0;
  padding-bottom: 24px;
}

.paragraph-13 {
  color: var(--brand--brand-color-third);
  padding-bottom: 24px;
}

.paragraph-14 {
  color: var(--brand--brand-color-third);
}

.image-30 {
  aspect-ratio: 2;
  object-fit: cover;
  border-radius: 20px;
  width: 560px;
  height: auto;
  margin-right: 60px;
  overflow: clip;
}

.container-20 {
  padding-top: 16px;
}

.image-31 {
  object-fit: cover;
  width: 100%;
  height: 500px;
  margin-bottom: 24px;
}

.image-32, .image-33 {
  object-fit: cover;
  width: 100%;
  height: 500px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.div-block-16 {
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
  margin-bottom: 4rem;
  display: flex;
}

.link-block {
  text-decoration: none;
}

.link-block-2 {
  margin-bottom: 0;
  text-decoration: none;
}

.link-block-3 {
  text-decoration: none;
}

.container-21 {
  padding-bottom: 32px;
  display: flex;
}

.column-14 {
  height: 100%;
}

.main-form-heading {
  z-index: 2;
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: center;
  margin-top: 15px;
  font-size: 2rem;
  line-height: 3rem;
  position: absolute;
  inset: 2.7rem 0% auto;
}

.main-form-subheading {
  z-index: 2;
  color: var(--brand--brand-color-4);
  text-align: center;
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  position: absolute;
  inset: 5.5rem 0% auto;
}

.form-block-2 {
  z-index: 2;
  width: 85%;
  margin-top: 15px;
  position: absolute;
  inset: 9rem auto auto;
}

.name-fields {
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  justify-content: flex-start;
  margin-bottom: 1rem;
  display: flex;
}

.first-name, .last-name {
  width: 47%;
}

.label-name {
  font-family: var(--font--global-font);
  color: var(--brand--brand-color-4);
  margin-bottom: .6rem;
  padding-left: .125rem;
  font-weight: 600;
  display: none;
}

.input-name {
  color: var(--brand--brand-color-5);
  background-color: #fff3;
  border: 0 solid gray;
  border-radius: 8px;
  height: 2.7rem;
}

.input-name.input.only-text {
  height: 3.5rem;
}

.other-fields {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.phone {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: .5rem;
  display: flex;
  position: relative;
}

.input-with-icon {
  color: var(--brand--brand-color-5);
  -webkit-text-stroke-color: var(--brand--brand-color-5);
  background-color: #0000;
  border: 0 solid gray;
  border-radius: 8px;
  width: 100%;
  height: 2.7rem;
  max-height: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: .6875rem 1rem;
  font-size: .875rem;
  line-height: 1.375rem;
}

.input-with-icon:focus {
  border-color: var(--brand--brand-color-fast);
}

.input-with-icon::placeholder {
  color: var(--neutral--white-200);
}

.input-icon {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: var(--brand--brand-color-5);
  -webkit-text-stroke-color: var(--brand--brand-color-5);
  background-color: #fff3;
  border: 0 solid gray;
  border-radius: 8px;
  align-items: center;
  width: 100%;
  height: 3.5rem;
  margin-bottom: 1rem;
  padding: .6875rem 1rem;
  font-size: .875rem;
  line-height: 1.375rem;
  display: flex;
}

.input-icon:focus {
  border-color: var(--brand--brand-color-fast);
}

.input-icon::placeholder {
  color: var(--neutral--white-200);
}

.image-34 {
  width: 21px;
  height: 21px;
}

.image-35 {
  object-fit: contain;
  width: 21px;
  height: 21px;
  margin-top: 0;
}

.input-icon-text {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: var(--brand--brand-color-5);
  -webkit-text-stroke-color: var(--brand--brand-color-5);
  background-color: #fff3;
  border: 0 solid gray;
  border-radius: 8px;
  align-items: flex-start;
  width: 100%;
  height: 8rem;
  margin-bottom: 1rem;
  padding: .25rem 1rem .6875rem;
  font-size: .875rem;
  line-height: 1.375rem;
  display: flex;
}

.input-icon-text:focus {
  border-color: var(--brand--brand-color-fast);
}

.input-icon-text::placeholder {
  color: var(--neutral--white-200);
}

.input-container {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: var(--brand--brand-color-5);
  -webkit-text-stroke-color: var(--brand--brand-color-5);
  background-color: #0000;
  border: 0 solid gray;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 7rem;
  margin-bottom: 0;
  padding: 0;
  font-size: .875rem;
  line-height: 1.375rem;
  display: flex;
}

.input-container:focus {
  border-color: var(--brand--brand-color-fast);
}

.input-container::placeholder {
  color: var(--neutral--white-200);
}

.input-with-icon-text {
  aspect-ratio: 16 / 4.5;
  color: var(--brand--brand-color-5);
  -webkit-text-stroke-color: var(--brand--brand-color-5);
  background-color: #0000;
  border: 0 solid gray;
  border-radius: 8px;
  width: 100%;
  height: 5rem;
  max-height: none;
  margin-top: 0;
  padding: .6875rem 1rem 2rem;
  font-size: .875rem;
  line-height: 1.375rem;
  display: block;
}

.input-with-icon-text:focus {
  border-color: var(--brand--brand-color-fast);
}

.input-with-icon-text::placeholder {
  color: var(--neutral--white-200);
}

.image-text-icon {
  object-fit: contain;
  width: 21px;
  height: 21px;
  margin-top: .7rem;
}

.submit-button {
  color: var(--brand--brand-color-first);
  background-color: #a3dcad;
  border-radius: 20rem;
  width: 100%;
  height: 3.5rem;
  margin-top: 8px;
}

.platforms {
  width: 100%;
}

.platforms-heading {
  color: var(--brand--brand-color-5);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.icons {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.image-41 {
  height: 70px;
}

.icons-row-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.icons-row-2 {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  display: flex;
}

.code-embed {
  margin-top: -.7rem;
}

.success-message-2 {
  color: var(--brand--brand-color-5);
  background-color: #fff3;
  border-radius: 8px;
}

.error-message-2 {
  color: var(--brand--brand-color-5);
  background-color: #ffdede33;
  border-radius: 8px;
}

.videos {
  width: 100%;
  max-width: 1600px;
}

.lessons-for-you-1 {
  flex-flow: column;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
}

.videos-heading {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  margin-top: .5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 2.5rem;
}

.video-item {
  box-sizing: border-box;
  object-fit: fill;
  background-image: linear-gradient(#37553442, #37553442);
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: auto;
  min-width: auto;
  max-width: none;
  height: auto;
  display: flex;
  position: static;
}

.play-button {
  z-index: 5;
  opacity: 0;
  width: 40px;
  height: 40px;
  display: none;
  position: absolute;
  inset: 47% auto auto 47%;
}

.video-preview {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  width: 100%;
}

.lightbox-link {
  z-index: 1;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  min-width: 100%;
  position: relative;
}

.item-content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 111.994px;
  min-height: 80px;
  max-height: 300px;
  margin: .5rem 1rem;
  display: flex;
}

.text-block-9 {
  vertical-align: top;
  flex-flow: row;
  height: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: .25rem;
  font-size: 1.5rem;
  line-height: 2rem;
  display: flex;
}

.videos-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.big-video-item {
  width: 100%;
  height: 500px;
  display: block;
  position: relative;
}

.gradient {
  z-index: 10;
  background-image: linear-gradient(90deg, var(--brand--brand-color-second), var(--brand--brand-color-second) 21%, transparent 81%);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.lightbox-link-big {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.video-preview-big {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.big-video-content {
  z-index: 15;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 70%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: .5rem;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.big-video-heading {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  width: 100%;
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 3.5rem;
}

.big-video-description {
  color: var(--brand--brand-color-4);
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  line-height: 2rem;
}

.play-button-big {
  background-color: var(--brand--brand-color-5);
  border-radius: 5px;
  padding: 12px 8px;
  text-decoration: none;
  display: flex;
}

.text-block-10 {
  color: var(--brand--brand-color-first);
  margin-left: 8px;
  padding-right: 14px;
  font-size: 1.5rem;
  font-weight: 700;
}

.image-42 {
  padding-top: 4px;
  padding-left: 14px;
}

.video-item-copy {
  background-image: linear-gradient(#37553442, #37553442);
  border-radius: 10px;
  width: 49%;
  min-width: auto;
  max-width: 49%;
  position: static;
}

.small-video-item {
  background-image: linear-gradient(#37553442, #37553442);
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  width: auto;
  min-width: auto;
  max-width: 24%;
  display: flex;
  position: static;
}

.pricing {
  grid-column-gap: 2.2rem;
  grid-row-gap: 2.2rem;
  justify-content: center;
  width: 100%;
  display: flex;
}

.price {
  text-align: left;
  background-color: #aec3b02e;
  border-radius: 10px;
  flex-flow: column;
  align-items: center;
  width: 22.5%;
  max-width: 22.5%;
  padding: 3rem .8rem 9rem;
  display: flex;
  position: relative;
}

.price-heading {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.7rem;
}

.text-block-11 {
  border-bottom: 1px solid var(--brand--brand-color-4);
  color: var(--brand--brand-color-4);
  text-align: center;
  width: 100%;
  padding-bottom: 2rem;
}

.heading-12 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: center;
  width: 100%;
  margin-bottom: .5rem;
}

.heading-13 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.text-block-12 {
  color: var(--brand--brand-color-4);
  margin-top: .25rem;
  margin-bottom: 1rem;
  margin-left: 0;
}

.order-now-button {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: center;
  border-radius: 8px;
  margin-top: 0;
  padding: .7rem 2rem;
  text-decoration: none;
  position: absolute;
  inset: auto auto 3rem;
}

.heading-14 {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-second), var(--brand--brand-color-second));
}

.image-43 {
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  min-height: 30px;
}

.services-grid-1 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: .25fr 3fr;
  justify-content: start;
  justify-items: stretch;
}

.services-grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: .25fr 1fr;
  justify-content: stretch;
}

.services-grid-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: .25fr 1fr;
  justify-content: stretch;
}

.price-header-container {
  flex-flow: column;
  justify-content: flex-start;
  width: auto;
  height: auto;
  display: flex;
}

.image-44 {
  width: 30px;
  max-width: 30px;
  height: 30px;
}

.image-45 {
  width: 25px;
  max-width: 25px;
  height: 25px;
}

.checkmark-icon {
  margin-right: .5rem;
}

.faq-icon-copy {
  margin-left: .5rem;
}

.dropdown {
  border-bottom: 0px solid var(--stock-color);
  cursor: pointer;
  width: 100%;
  padding: 0;
}

.dropdown-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0;
  display: flex;
}

.dropdown-answer {
  overflow: hidden;
}

.dropdown-heading {
  color: var(--brand--brand-color-4);
}

.basic-service {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  width: 100%;
  margin-bottom: -1rem;
  display: flex;
}

.image-iso, .image-trademark {
  width: 90px;
  margin-bottom: 10px;
}

.team-collection-list-wrapper-tax {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.team-collection-list-wrapper-recovery {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.team-sphere-heading-tax {
  background-image: linear-gradient(to bottom, var(--brand--brand-color-5), var(--brand--brand-color-5));
  text-align: center;
  -webkit-text-stroke-color: #fcfcfc;
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 600;
  display: none;
}

.bold-text-3-copy {
  color: var(--brand--brand-color-5);
  text-align: left;
  -webkit-text-stroke-color: var(--brand--brand-color-4);
  width: 100%;
  font-size: 3rem;
  font-weight: 600;
  line-height: 2rem;
}

.text-size-regular-copy {
  font-family: var(--font--global-font);
  color: var(--brand--brand-color-third);
  text-align: left;
  white-space: normal;
  width: 100%;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding-top: .5rem;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
}

.books-tax {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 87%;
  display: none;
}

.custom-heading-h3 {
  text-align: center;
  flex: 0 auto;
  align-self: auto;
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.div-block-18 {
  align-self: center;
  width: 100%;
  max-width: 28rem;
}

.custom-h3 {
  font-size: 1.5rem;
  line-height: 2rem;
}

.heading-style-h3-core {
  color: var(--brand--brand-color-5);
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  text-decoration: none;
}

.heading-styles-h3 {
  color: var(--brand--brand-color-5);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  text-decoration: none;
}

.heading-style-sh4 {
  color: var(--brand--brand-color-5);
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  text-decoration: none;
}

.section-legal {
  flex-flow: column;
  align-items: center;
  width: 70vw;
  display: flex;
}

.text-block-email {
  color: var(--brand--brand-color-4);
  margin-top: 0;
}

.mask-2 {
  width: 100%;
  height: auto;
}

.slide-8 {
  width: 33.3%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.slide-nav {
  display: none;
}

.slider {
  background-color: #0000;
  height: auto;
}

.books-copy {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 87%;
  margin-top: 0;
  margin-bottom: 4rem;
  display: none;
}

.bold-text-27 {
  font-size: 1.25rem;
  line-height: 1.4rem;
}

.recovery-button {
  color: var(--brand--brand-color-first);
  background-color: #a3dcad;
  border-radius: 20rem;
  flex-flow: column;
  justify-content: center;
  width: 70%;
  height: 4rem;
  margin-top: 0;
  padding: 1.25rem 50px;
  text-decoration: none;
  display: flex;
}

.recovery-button-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.recovery-button-text {
  color: var(--brand--brand-color-first);
  font-weight: 600;
}

.recovery-button-image {
  margin-right: -8px;
}

.video-container-phone {
  display: none;
}

.progress-bar {
  background-color: #e3eed40f;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  height: 15px;
  margin-bottom: 2rem;
}

.progress-bar.active {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  width: 4.76%;
}

.test-content {
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 99.9%;
  margin-left: 25%;
  margin-right: 25%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.image-46 {
  max-width: 300px;
  margin-bottom: 27px;
  display: none;
}

.preview-test-item {
  z-index: 1;
  aspect-ratio: auto;
  border: 1px solid var(--_redesign-style---green);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #050b0c80;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 800px;
  max-height: 700px;
  padding: 3rem 4rem;
  display: flex;
  position: relative;
}

.heading-16 {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  text-align: center;
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 3.5rem;
}

.test-item-divider {
  border: 1px solid var(--_redesign-style---green);
  width: 20%;
  height: 0;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.test-item-intro-text {
  color: var(--_redesign-style---white);
  text-align: center;
  width: 70%;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-block-13 {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--brand-color-3-5);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.5rem;
}

.text-span-2 {
  color: var(--_redesign-style---white);
}

.button-start {
  background-color: var(--brand-color-3-5);
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  cursor: pointer;
  border-radius: 20px;
  flex-flow: row;
  justify-content: center;
  width: 15rem;
  height: 4rem;
  margin-top: 2rem;
  padding-top: .5rem;
  display: flex;
}

.text-block-14 {
  color: var(--neutral--black-900);
  font-size: 1.7rem;
  line-height: 3rem;
}

.image-47 {
  z-index: 0;
  perspective: none;
  transform-origin: 50%;
  border-radius: 0;
  width: 35%;
  max-width: 100%;
  position: absolute;
  top: -7%;
  left: 85%;
  transform: none;
}

.image-48 {
  width: 38%;
  position: absolute;
  top: 55%;
  left: -25%;
}

.preview-test {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  max-height: 700px;
  position: relative;
}

.test-item-1 {
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-left: 25%;
  margin-right: 25%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.heading-test {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  text-align: center;
  max-width: 80%;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 2.5rem;
}

.description-test {
  color: var(--_redesign-style---white);
  text-align: center;
  width: 95%;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
}

.answers {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.answer {
  border: 1px solid var(--_redesign-style---green);
  cursor: pointer;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 68px;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.circle-empty {
  width: 27px;
}

.text-block-15 {
  margin-left: 17px;
  font-size: 1.25rem;
}

.number-test {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  margin-top: -1rem;
  margin-bottom: 1rem;
  display: flex;
}

.number-test-text {
  color: var(--neutral--black-900);
  font-size: 1.5rem;
  font-weight: 600;
}

.text-span-3 {
  font-style: italic;
}

.test-item-2 {
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-left: 25%;
  margin-right: 25%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.image-50 {
  border: 1px none var(--brand-color-3-5);
  border-radius: 7px;
  width: 45px;
  height: 45px;
}

.button-back {
  border: 1px solid var(--_redesign-style---green);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: absolute;
  inset: 4% auto auto 4%;
}

.test-container {
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.main-wrapper-test {
  flex-flow: column;
  align-items: center;
  padding-bottom: 0;
  padding-left: 20%;
  padding-right: 20%;
  display: flex;
  position: relative;
  overflow: visible;
}

.page-wrapper-2-test {
  opacity: 1;
  mix-blend-mode: normal;
  background-color: #0000;
  background-image: linear-gradient(#08140e3d, #08140e3d), url('../images/All-Bg.svg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border: 1px solid #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  margin-bottom: 0;
  display: flex;
  overflow: hidden;
}

.camera {
  width: 100vw;
}

.frame {
  height: 100%;
  display: flex;
}

.test-item-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.link-book-6-1 {
  height: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
  display: block;
}

.link-book-6-2 {
  height: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
}

.test-item-3 {
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-left: 25%;
  margin-right: 25%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.text-span-4 {
  font-style: italic;
}

.test-item-4, .test-item-5, .test-item-6, .test-item-7, .test-item-8, .test-item-9, .test-item-10, .test-item-11, .test-item-12, .test-item-13, .test-item-14, .test-item-15 {
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 99.9vh;
  margin-left: 25%;
  margin-right: 25%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.rate-answer {
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: 5rem;
  padding-top: 2rem;
  display: flex;
}

.rate-line {
  background-color: #b2ddb93d;
  width: 80%;
  height: 5px;
  position: relative;
}

.circle {
  background-color: #65876b;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  margin-bottom: 10px;
  position: static;
  inset: -.5rem auto auto 0%;
}

.test-item-16, .test-item-17, .test-item-18, .test-item-19 {
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 99.9vh;
  margin-left: 25%;
  margin-right: 25%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.description-test-adittional {
  color: var(--neutral--white-100);
  text-align: center;
  width: 95%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
}

.test-item-20 {
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 99.9vh;
  margin-left: 25%;
  margin-right: 25%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.case-id {
  border: .5px solid var(--brand-color-3-5);
  background-color: #6d95741c;
  border-radius: 15px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 3.5rem;
  margin-bottom: 2rem;
  display: flex;
}

.case-id-text {
  color: var(--neutral--white-100);
  text-align: center;
  width: 95%;
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 2rem;
}

.next-steps-text {
  color: var(--neutral--white-100);
  text-align: left;
  width: 70%;
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 2rem;
}

.button-schedule-call {
  border: 1px solid var(--brand-color-3-5);
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 17rem;
  height: 4rem;
  display: flex;
}

.button-text-test {
  color: var(--neutral--white-100);
  text-align: center;
  width: 95%;
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 2rem;
}

.button-read-guide {
  border: 1px solid var(--brand-color-3-5);
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 17rem;
  height: 4rem;
  display: flex;
}

.grid-next-steps {
  grid-template-columns: 1fr .5fr;
  place-content: stretch space-between;
  margin-bottom: 4rem;
}

.bottom-green-block {
  background-color: var(--brand-color-3-5);
  border-radius: 15px 15px 0 0;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 4rem;
  display: flex;
  position: absolute;
  inset: auto auto 0%;
}

.bottom-text {
  color: var(--neutral--black-800);
  text-align: center;
  width: 95%;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2rem;
}

.button-forward {
  border: 1px solid var(--_redesign-style---green);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: absolute;
  inset: 4% 4% auto auto;
}

.rate-1 {
  cursor: pointer;
  width: 15px;
  height: 3.5rem;
  position: absolute;
  top: -.35rem;
  bottom: 0;
  left: 0;
}

.rate-number {
  text-align: center;
  font-size: 1.25rem;
}

.rate-2 {
  cursor: pointer;
  width: 15px;
  height: 3.5rem;
  position: absolute;
  inset: -.35rem 75% 0 25%;
}

.rate-3 {
  cursor: pointer;
  width: 15px;
  height: 3.5rem;
  position: absolute;
  inset: -.35rem 50% 0;
}

.rate-4 {
  cursor: pointer;
  width: 15px;
  height: 3.5rem;
  position: absolute;
  inset: -.35rem 25% 0 75%;
}

.rate-5 {
  cursor: pointer;
  width: 15px;
  height: 3.5rem;
  position: absolute;
  inset: -.35rem 0 0 auto;
}

.div-block-19 {
  width: 350px;
}

.div-block-21 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.blog-image-post {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px;
  display: flex;
}

.link-block-6 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border: 1px solid var(--brand--brand-color-second);
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  text-decoration: none;
  display: grid;
}

.blog-post-details {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  padding: 10px;
  text-decoration: none;
  display: flex;
}

.h3-custome-heading {
  background-image: linear-gradient(180deg, var(--neutral--white-0), var(--neutral--white-100));
  color: var(--neutral--black-900);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.text-block-16 {
  color: var(--brand--brand-color-5);
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
}

.collection-item-2 {
  grid-column-gap: 47px;
  grid-row-gap: 47px;
  flex-flow: column;
}

.collection-list-2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  display: flex;
}

.headings-style-h2 {
  font-size: 2rem;
  line-height: 3rem;
}

.circle-checked {
  width: 28px;
}

.body-3 {
  height: 100%;
}

.form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.subtitle {
  color: var(--brand--brand-color-5);
  text-align: left;
  -webkit-text-stroke-color: var(--brand--brand-color-4);
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

.text-span-5, .text-span-6, .text-span-7, .text-span-8 {
  color: var(--brand--brand-color-5);
}

.link-3, .link-4, .link-5, .link-6 {
  text-decoration: none;
}

.text-span-9 {
  color: var(--brand--brand-color-4);
  font-weight: 500;
}

.link-7 {
  text-decoration: none;
}

.text-span-10 {
  color: var(--brand--brand-color-4);
  font-weight: 500;
}

.link-8 {
  text-decoration: none;
}

.body-4 {
  background-color: var(--_redesign-style---black);
  color: var(--_redesign-style---white);
  background-image: url('../images/Ellipse-12.webp'), url('../images/Ellipse-13.webp');
  background-position: 0%, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 120%;
  display: flex;
}

.wrapper-page {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
}

.navbar-2 {
  background-color: #ddd0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 120px;
  padding-right: 120px;
  position: relative;
}

.section.gray {
  background-color: #111;
  border-top: 1px solid #bbeec44d;
  border-bottom: 1px solid #bbeec44d;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.section.gray.etr-2 {
  background-image: url('../images/ethereum-1.webp');
  background-position: -50px;
  background-repeat: no-repeat;
  background-size: auto 90%;
}

.section.gray.etr-1 {
  background-image: url('../images/ethereum-2_1.webp');
  background-position: 110% -400px;
  background-repeat: no-repeat;
  background-size: auto 90%;
}

.section.gray.etr-3 {
  background-image: url('../images/ethereum_1.webp');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.section.gray.etr-4 {
  background-image: url('../images/ethereum_2.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.section.gray.etr-5 {
  background-image: url('../images/ethereum.png');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.navbar-cta-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-contact-button {
  color: #fff;
  border: 1px solid #a3dcad;
  border-radius: 30px;
  padding: 16px 42px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, background-color .2s;
}

.navbar-contact-button:hover {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
}

.social-link {
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  display: flex;
}

.social-icons {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.navbar-link {
  color: #fff;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  line-height: 130%;
}

.navbar-link:hover {
  color: var(--_redesign-style---green);
}

.navbar-link.w--current {
  color: var(--_redesign-style---green);
  text-decoration: underline;
}

.navbar-dropdown-toggle {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 0;
  line-height: 130%;
  display: flex;
}

.navbar-dropdown-toggle:hover {
  color: var(--_redesign-style---green);
}

.navbar-dropdown-list {
  background-color: var(--_redesign-style---black);
  padding-top: 20px;
}

.navbar-dropdown-list.w--open {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0505051a;
  border: 1px solid #fff3;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.code-icon {
  display: flex;
}

.line {
  background-image: linear-gradient(90deg, #05050500, #fff 50%, #05050500);
  width: 100%;
  height: 1px;
}

.copyright-legal-wrapper {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  display: flex;
}

.copyright-text-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
}

.copyright-link-legal-page {
  color: #050b0c;
  font-size: 14px;
  line-height: 144%;
  text-decoration: none;
}

.copyright-link-legal-page:hover {
  text-decoration: underline;
}

.copyright-text {
  color: #050b0c;
  font-size: 14px;
  line-height: 120%;
}

.copyright-link {
  color: #050b0c;
}

.footer-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 50px;
  display: flex;
}

.footer-top-wrapper {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-nav-link {
  color: var(--_redesign-style---white);
  font-size: 17px;
  text-decoration: none;
}

.footer-nav-link:hover {
  text-decoration: underline;
}

.footer-navigation-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-title-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.footer-logo-wrapper {
  height: 40px;
}

.footer-contacts-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.footer-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.footer-title.gradient-text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#a3dcad, #d2ffda 50%, #a3dcad);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-contact-groups-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: space-between;
  display: flex;
}

.footer-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  font-size: 17px;
  line-height: 140%;
  display: flex;
}

.footer-contact-link {
  color: var(--_redesign-style---white);
  font-size: 15px;
  text-decoration: none;
}

.footer-contact-link:hover {
  text-decoration: underline;
}

.footer-label {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
}

.footer-hours-days-wrapper {
  grid-column-gap: 45px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 42% auto 31%;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.footer-hours-groups-wrapper {
  justify-content: space-between;
  display: flex;
}

.footer-social-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-certificates-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-certificate-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--_redesign-style---white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-certificate-item:hover {
  text-decoration: underline;
}

.footer-certificate-text {
  font-size: 13px;
  line-height: 120%;
}

.footer-hours-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.footer-hours-day-group {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container-23 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.cta-wrapper {
  background-image: url('../images/ethereum-1.svg'), url('../images/ethereum.svg'), linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  background-position: 0%, 100%, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto 100%, auto 100%, auto;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.cta-heading {
  color: var(--_redesign-style---black-green);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 110%;
}

.div-block-46 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--_redesign-style---black-green);
  color: var(--_redesign-style---white);
  border: 1px solid #000;
  border-radius: 50px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 16px 115px;
  font-size: 17px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.cta-button:hover {
  color: var(--_redesign-style---black-green);
  background-color: #050b0c00;
}

.footer-section {
  padding-left: 120px;
  padding-right: 120px;
}

.image-51 {
  transform-style: preserve-3d;
  position: absolute;
  inset: auto -5% 10% auto;
  overflow: hidden;
}

.crypto-easy-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
}

.container-24 {
  flex-flow: column;
  width: 100%;
  max-width: 1440px;
  margin-left: 0;
  margin-right: 0;
  padding: 60px 120px;
  display: flex;
  position: relative;
}

.image-53 {
  position: absolute;
  inset: 40px -6% auto auto;
  overflow: hidden;
}

.crypto-easy-image {
  object-fit: cover;
  border-radius: 10px;
  min-width: 100%;
  min-height: 100%;
  max-height: 500px;
}

.crypto-easy-content-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.crypto-easy-heading-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.overview-text-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.section-heading {
  color: var(--_redesign-style---white);
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 130%;
}

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

.section-heading.no-wrap {
  white-space: nowrap;
}

.highlighted-word {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.subheading {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
}

.overview-description-paragraph {
  color: #c2c2c2;
  text-align: left;
  font-size: 17px;
  line-height: 140%;
}

.overview-description-paragraph.center, .overview-description-paragraph.center-center {
  text-align: center;
}

.highlighted-description {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  text-align: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 17px;
  font-weight: 600;
  line-height: 140%;
}

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

.crypto-easy-button-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--_redesign-style---green);
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
  white-space: nowrap;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 16px 100px;
  font-size: 17px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.crypto-easy-button-wrapper:hover {
  color: var(--_redesign-style---green);
  background-image: none;
}

.crypto-easy-button-wrapper.pad-left-30 {
  white-space: nowrap;
  padding-left: 30px;
  padding-right: 30px;
}

.services-overview-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.services-overview-heading-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1000px;
  display: flex;
}

.services-overview-content-wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.services-overview-image {
  object-fit: cover;
  border-radius: 10px;
  min-width: 100%;
  min-height: 100%;
  max-height: 680px;
}

.services-overview-cards-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.services-overview-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.services-overview-card-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.card-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 130%;
}

.card-description {
  color: #c2c2c2;
  font-size: 15px;
  line-height: 140%;
}

.services-overview-card-icon-container {
  background-color: #ffffff1a;
  border: 1px solid #bbeec44d;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  display: flex;
}

.services-overview-card-icon-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.crypto-asset-recovery-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.section-heading-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  max-width: 900px;
  display: flex;
}

.crypto-asset-recovery-cards-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c80;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  flex-flow: column;
  padding: 30px 30px 60px;
  display: flex;
}

.card.pad-bott-30 {
  padding-bottom: 30px;
}

.card-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.card-icon-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.card-icon-container {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  display: flex;
  box-shadow: 0 0 14px #bbeec4cc;
}

.card-icon-container._70 {
  width: 70px;
  min-width: 70px;
  height: 70px;
  min-height: 70px;
}

.crypto-asset-recovery-card-label {
  text-align: right;
  font-size: 15px;
  line-height: 130%;
}

.circle-block {
  z-index: -1;
  background-color: var(--_redesign-style---white);
  opacity: .4;
  filter: blur(100px);
  border-radius: 300px;
  width: 300px;
  height: 300px;
}

.circle-block._200 {
  width: 200px;
  height: 200px;
}

.circle-wrapper {
  z-index: -1;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 100px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.circle-wrapper._220 {
  padding-bottom: 220px;
}

.image-56 {
  transform-style: preserve-3d;
  position: absolute;
  inset: 30px auto auto -5%;
}

.video-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  padding-bottom: 0;
}

.video-2 {
  border-radius: 10px;
  overflow: hidden;
}

.experts-team-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.experts-intro-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.experts-intro-heading-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.experts-intro-icon {
  min-width: 180px;
}

.team-section-wrapper {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  flex-flow: column;
  display: flex;
}

.team-members-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-member-card {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c80;
  background-image: url('../images/Vector-2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  height: 370px;
  display: flex;
  position: relative;
}

.team-member-info {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  background-color: #bbeec4;
  border-radius: 10px;
  flex-flow: column;
  padding: 16px 20px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.team-member-name {
  color: var(--_redesign-style---black-green);
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.team-member-position {
  color: var(--_redesign-style---black-green);
  font-size: 15px;
  line-height: 130%;
}

.crypto-recovery-cards-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.crypto-recovery-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.image-58 {
  transform-style: preserve-3d;
  position: absolute;
  inset: auto auto 10% -4%;
}

.supported-platforms-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.supported-platforms-logos-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.supported-platforms-logo-item {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c99;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 60px;
  padding: 10px;
  display: flex;
}

.supported-platforms-logos-line {
  background-color: #bbeec44d;
  border-radius: 100px;
  width: 28px;
  height: 2px;
}

.supported-platforms-heading {
  text-align: left;
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
}

.services-overview-card-line {
  min-width: 80%;
}

.hero-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.hero-wrapper.center {
  justify-content: flex-start;
  align-items: center;
}

.hero-header-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-heading {
  text-align: center;
  background-image: linear-gradient(90deg, #d0d0d0, #fff 20%, #d0d0d0 40%, #fff 60%, #d0d0d0 80%, #fff);
  font-size: 62px;
  font-weight: 500;
  line-height: 130%;
}

.hero-heading.highlighted-word {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
}

.hero-content-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 20px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.hero-form-wrapper {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c99;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  padding: 36px 24px 40px;
  position: relative;
  overflow: visible;
}

.hero-or-text {
  color: #ade3b6;
  font-size: 17px;
  font-weight: 500;
  line-height: 130%;
}

.hero-or-divider-wrapper {
  z-index: 2;
  background-color: #b5eabf1a;
  border: 1px solid #ade3b6;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-width: 78px;
  min-height: 78px;
  display: flex;
  position: relative;
}

.hero-alternative-heading-wrapper {
  z-index: 3;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-flow: column;
  justify-content: space-between;
  width: 55%;
  height: 100%;
  display: flex;
  position: relative;
}

.hero-alternative-heading {
  text-align: left;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
}

.hero-alternative-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--_redesign-style---green);
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.hero-alternative-button:hover {
  color: var(--_redesign-style---green);
  background-image: none;
}

.hero-eth-icons-wrapper {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-eth-icon-2 {
  opacity: .25;
  height: 170px;
}

.hero-eth-icon-1 {
  opacity: .05;
  height: 100px;
}

.hero-form-field-wrapper {
  background-color: #ffffff08;
  border: 1px solid #bbeec433;
  border-radius: 50px;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  display: flex;
}

.hero-form-field-wrapper.rad-20 {
  border-radius: 20px;
}

.hero-form-field-wrapper.rel-3 {
  z-index: 10;
  position: relative;
}

.hero-input {
  color: var(--_redesign-style---white);
  background-color: #fff0;
  border: 1px #000;
  margin-bottom: 0;
  padding: 10px;
  font-size: 14px;
  line-height: 130%;
}

.hero-input::placeholder {
  color: var(--_redesign-style---white);
  font-size: 14px;
}

.hero-input-icon {
  min-width: 24px;
  min-height: 24px;
}

.hero-form-row {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.hero-form-fields-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.submit-button-2 {
  border: 1px solid var(--_redesign-style---green);
  background-color: #3898ec00;
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
  border-radius: 50px;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
  line-height: 130%;
  transition: background-color .2s, color .2s;
}

.submit-button-2:hover {
  color: var(--_redesign-style---green);
  background-image: none;
}

.hero-input-invest-icon {
  min-height: 24px;
  max-height: 24px;
}

.image-64 {
  transform-style: preserve-3d;
  position: absolute;
  inset: 70px auto auto -5%;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.image-65 {
  transform-style: preserve-3d;
  position: absolute;
  inset: auto -4% -5px auto;
}

.hero-form-container, .hero-form-block, .hero-form {
  height: 100%;
}

.hero-background-img {
  z-index: -1;
  object-fit: none;
  object-position: 50% 0%;
  min-width: 100%;
  max-height: 100%;
  overflow: visible;
}

.hero-background-img._180deg {
  transform-style: preserve-3d;
  max-height: 900px;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.hero-background-wrapper {
  z-index: -1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 400px 0% 0%;
  overflow: hidden;
}

.hero-background-wrapper._140 {
  top: 140px;
}

.hero-background-blur {
  background-image: linear-gradient(180deg, #0000, var(--_redesign-style---black) 50%);
  position: absolute;
  inset: 0%;
}

.hero-background-blur._180deg {
  z-index: 1;
  background-image: linear-gradient(180deg, var(--_redesign-style---black) 40%, #0000);
}

.social-news-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.social-news-head-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.news-navigation-button {
  cursor: pointer;
  border: 1px solid #fff3;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 48px;
  min-height: 48px;
  transition: background-color .2s, color .2s;
  display: flex;
}

.news-navigation-button:hover {
  background-color: var(--_redesign-style---green);
  color: var(--_redesign-style---black-green);
}

.news-navigation-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.news-navigation-wrapper.list {
  display: none;
}

.social-news-items-new {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.item-new {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c80;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  flex-flow: column;
  padding: 20px;
  display: flex;
}

.grid-7 {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.social-news-source-wrapper {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.source-logo-new {
  object-fit: cover;
  border-radius: 40px;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
}

.source-name-new {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.time-since-new {
  color: #c2c2c2;
  font-size: 15px;
  line-height: 140%;
}

.title-link-new {
  font-size: 15px;
  line-height: 140%;
}

.social-news-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.web-news-items-new {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.news-image-new {
  object-fit: cover;
  border-radius: 10px;
  min-width: 120px;
  max-width: 120px;
  min-height: 120px;
  max-height: 120px;
}

.item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.handpicked-news-info-wrapper {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  flex-flow: column;
  display: flex;
}

.source-name-web-new {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.title-link-web-new {
  font-size: 15px;
  line-height: 130%;
}

.image-69 {
  position: absolute;
  inset: auto auto 0% -5%;
}

.mindmap-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr 1fr auto 1fr 1fr;
  grid-template-columns: 1fr 20px 50px 170px 50px 20px 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 140px;
  display: grid;
}

.mindmap-cards-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c80;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  flex-flow: column;
  padding: 20px 25px;
  display: flex;
}

.mindmap-card-description {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.mindmap-card-paragraph-top {
  color: #c2c2c2;
  font-size: 15px;
  line-height: 140%;
}

.mindmap-card {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.mindmap-card-subheading {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.mindmap-card-heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
}

.mindmap-center-wrapper {
  z-index: 1;
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  border: 1px solid #bbeec44d;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 74px;
  padding: 17px 25px;
  display: flex;
  position: relative;
  box-shadow: 0 0 24px #b1e6ba;
}

.mindmap-line-top-right {
  border-top: 1px solid #445347;
  border-right: 1px solid #445347;
}

.mindmap-line-top-left {
  border-top: 1px solid #445347;
  border-left: 1px solid #445347;
}

.mindmap-line-bottom-right {
  border-bottom: 1px solid #445347;
  border-right: 1px solid #445347;
}

.mindmap-line-bottom-left {
  border-bottom: 1px solid #445347;
  border-left: 1px solid #445347;
}

.div-block-123 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.div-block-124 {
  z-index: -1;
  position: absolute;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.image-70 {
  transform-style: preserve-3d;
  position: absolute;
  inset: 5% auto auto -5%;
}

.hero-form-headings {
  display: none;
}

.supported-platforms-logos-row {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.supported-platforms-logos-line-wrapper {
  display: block;
}

.supported-platforms-logo-image {
  object-fit: contain;
}

.footer-contact-group {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 42% auto 31%;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.footer-additional-group {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.navbar-logo-link {
  display: none;
}

.navbar-logo-link.quiz {
  margin-right: 30px;
  display: block;
}

.navbar-logo-link.quiz.w--current {
  margin-right: 20px;
  display: block;
}

.navbar-links-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar-code {
  display: none;
}

.image-73 {
  position: absolute;
  inset: 80px -5% auto auto;
}

.hero-heading-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-button-wrapper {
  color: var(--_redesign-style---white);
  border: 1px solid #a3dcad;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 60px;
  padding: 12px 30px;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .4s, color .4s;
  display: flex;
  position: static;
  inset: auto -360px 10px auto;
}

.hero-button-wrapper:hover {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
}

.supported-and-recovery-wrapper {
  width: 100%;
}

.recovery-hero-description-wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.recovery-hero-description-text {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.crypto-recovery-paragraph {
  font-size: 17px;
  line-height: 140%;
}

.div-block-128 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.pricing-cards-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-card {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  background-color: #111;
  border: 1px solid #bbeec44d;
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.div-block-132 {
  width: 70px;
}

.pricing-card-icon-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing-card-type {
  font-size: 30px;
  font-weight: 500;
  line-height: 120%;
}

.pricing-price-title {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 40px;
  font-weight: 500;
  line-height: 130%;
}

.pricing-card-price-wrapper {
  border-top: 1px solid #bbeec44d;
  border-bottom: 1px solid #bbeec44d;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
}

.pricing-card-title-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 15px;
  display: flex;
}

.pricing-card-feature-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.pricing-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}

.pricing-card-feature-text {
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  font-size: 15px;
  line-height: 130%;
  display: flex;
}

.pricing-card-button {
  border: 1px solid var(--_redesign-style---green);
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green-light));
  color: var(--_redesign-style---black-green);
  text-align: center;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 20px 100px;
  font-size: 17px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.pricing-card-button:hover {
  color: var(--_redesign-style---green);
  background-image: none;
}

.text-block-45 {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.div-block-138 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-card-inner {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.faq-section-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.faq-item {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
  background-color: #050b0c80;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 15px;
  display: flex;
}

.faq-item-header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq-question {
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  display: flex;
}

.faq-toggle-button {
  border: 1px solid #bbeec44d;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  min-height: 50px;
  display: flex;
}

.faq-answer-wrapper-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  display: flex;
}

.faq-answer {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 300;
  line-height: 130%;
}

.div-block-141 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.div-block-142 {
  background-image: url('../images/Ellipse-20.webp'), url('../images/Ellipse-18.webp');
  background-position: 100% 95%, 0 10%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.news-page-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  display: flex;
}

.trending-news {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.image-news-new {
  object-fit: cover;
  border-radius: 10px;
  min-width: 100%;
  height: 240px;
}

.title-link-image-block-new {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
}

.list-news-new {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.item-list-news-new {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-list-news-new {
  object-fit: cover;
  border-radius: 10px;
  min-width: 120px;
  max-width: 120px;
  min-height: 120px;
  max-height: 120px;
}

.source-list-news-new {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.title-link-list-news-new {
  font-size: 15px;
  line-height: 130%;
}

.item-list-news-new-description-wrapper {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.trending-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-news-block-new {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 375px;
  min-width: 375px;
  max-width: 375px;
  display: flex;
}

.div-block-146 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact-description-wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: space-between;
  align-items: center;
  max-width: 850px;
  display: flex;
}

.image-74 {
  max-width: 900px;
}

.container-25 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-75 {
  transform-style: preserve-3d;
  position: absolute;
  inset: 20px auto auto -5%;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.core-values-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.core-values-heading-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.core-values-description {
  text-align: left;
  font-size: 17px;
  line-height: 140%;
}

.core-values-cards-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-76 {
  object-fit: none;
  object-position: 100% 50%;
  max-width: 60%;
  height: 20px;
  overflow: clip;
}

.mission-vision-cards-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-152 {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.core-values-description-wrapper {
  font-size: 17px;
  line-height: 140%;
}

.blog-hero-content-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.blog-highlight-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  display: flex;
}

.blog-page-image {
  border-radius: 10px;
  max-height: 315px;
}

.blog-featured-article-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #111;
  border: 1px solid #bbeec44d;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
}

.blog-featured-icon {
  box-sizing: border-box;
  min-width: 130px;
  min-height: 170px;
  max-height: 170px;
  overflow: clip;
}

.blog-featured-icon.mob {
  display: none;
}

.blog-featured-heading-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.blog-featured-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 120%;
}

.blog-featured-description {
  color: #c2c2c2;
  font-size: 17px;
  line-height: 140%;
}

.blog-insights-wrapper {
  grid-column-gap: 75px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.blog-article-card, .blog-article-description-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.blog-article-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
}

.blog-article-subtitle {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
}

.blog-article-header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-article-description-paragraph {
  color: #c2c2c2;
  font-size: 17px;
  line-height: 130%;
}

.blog-cms-section-wrapper {
  width: 100%;
}

.blog-cms-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
}

.blog-cms-list {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-cms-card {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: space-between;
  text-decoration: none;
  display: flex;
}

.blog-cms-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  min-width: 100%;
  height: 240px;
}

.blog-cms-content-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.blog-cms-title {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  max-height: 55px;
  font-size: 21px;
  font-weight: 500;
  line-height: 130%;
  overflow: hidden;
}

.blog-cms-description {
  color: #c2c2c2;
  max-height: 67px;
  font-size: 17px;
  line-height: 130%;
  overflow: hidden;
}

.ebooks-hero-inner-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  margin-top: 60px;
  margin-bottom: 100px;
  display: flex;
}

.ebooks-content-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.ebooks-image-decor {
  min-width: 900px;
  margin-left: -10%;
}

.ebooks-image-decor.mob {
  display: none;
}

.ebooks-subheading {
  white-space: nowrap;
  font-size: 17px;
  line-height: 140%;
}

.lessons-section-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.lessons-slider-wrapper {
  width: 100%;
  overflow: visible;
}

.lessons-slider {
  background-color: #ddd0;
  flex-flow: column;
  height: auto;
}

.slide-nav-2 {
  display: none;
}

.left-arrow {
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  inset: 0% auto 0% -68px;
}

.right-arrow {
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  inset: 0% -68px 0% auto;
}

.lessons-slider-mask {
  width: 33.3%;
  height: auto;
  overflow: visible;
}

.lessons-slider-mask._25 {
  width: 25%;
}

.lesson-slide {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  cursor: pointer;
  flex-flow: column;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.lessons-thumbnail-image {
  object-fit: cover;
  border-radius: 10px;
  min-width: 100%;
  max-height: 200px;
}

.lessons-caption-text {
  font-size: 20px;
  line-height: 130%;
}

.lessons-caption-text._16 {
  font-size: 16px;
}

.lessons-caption-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.lessons-play-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
}

.lessons-slide {
  width: 100%;
}

.lessons-slide.mob, .lessons-slide.desk {
  width: 0%;
  overflow: hidden;
}

.image-83 {
  position: absolute;
  inset: 0% -5% auto auto;
}

.div-block-173, .ebooks-grid-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ebook-card-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.ebook-card-wrapper.mar-top-30 {
  margin-top: 30px;
}

.ebook-cover-image {
  border-radius: 10px;
  min-width: 100%;
}

.ebook-text-wrapper {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.ebook-title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.ebook-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--_redesign-style---white);
  background-color: #111;
  border: 1px solid #bbeec44d;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.ebook-button:hover {
  color: var(--_redesign-style---black-green);
  background-color: #09b869;
}

.text-block-57 {
  text-align: center;
  font-size: 17px;
  line-height: 140%;
}

.image-85 {
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 10px;
  min-width: 100%;
  max-height: 450px;
}

.div-block-179 {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.rich-text-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--_redesign-style---white);
  flex-flow: column;
  font-family: Poppins, sans-serif;
  display: flex;
}

.rich-text-block p {
  font-size: 17px;
  line-height: 150%;
}

.rich-text-block h2 {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 130%;
}

.rich-text-block a {
  color: var(--_redesign-style---green);
}

.heading-18 {
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
}

.link-9, .link-10 {
  color: var(--_redesign-style---green);
}

.div-block-180 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-181 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.div-block-182 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---green);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  text-decoration: none;
  display: flex;
}

.div-block-183 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  height: 100%;
  display: flex;
}

.div-block-184 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.success-message-3 {
  background-color: #ddd0;
  height: 100%;
}

.div-block-185 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.text-block-59 {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
}

.contact-social-link {
  justify-content: space-between;
  align-items: stretch;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  display: flex;
}

.contact-social-icons-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.input-new {
  color: var(--_redesign-style---white);
  background-color: #fff0;
  border: 1px #000;
  margin-bottom: 0;
  padding: 10px;
  font-size: 14px;
  line-height: 130%;
}

.input-new::placeholder {
  color: var(--_redesign-style---white);
}

.input-new.is-message {
  height: 70px;
}

.contact-page-form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-page-form-block {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c99;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 45px;
  display: block;
}

.success-message-4 {
  background-color: #ddd0;
  background-image: linear-gradient(180deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 30px;
  font-weight: 500;
}

.div-block-186 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.code-embed-2 {
  display: flex;
}

.div-block-187 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 210%;
  display: grid;
}

.div-block-188 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 300%;
  display: grid;
}

.div-block-188._4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 400%;
}

.code-embed-3 {
  border-radius: 10px;
  overflow: hidden;
}

.div-block-189 {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-190 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.div-block-191 {
  border: 1px solid var(--_redesign-style---green);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 68px;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.div-block-192 {
  z-index: 9999;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  display: flex;
  position: static;
  inset: 0% auto auto;
}

.div-block-193 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-194 {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.div-block-195 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  display: flex;
}

.div-block-196 {
  width: 100%;
}

.div-block-197 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  padding-top: 10%;
  padding-bottom: 10%;
  display: flex;
}

.form-2 {
  background-color: #ededed00;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.quiz-step {
  border: 1px solid var(--_redesign-style---green);
  background-color: #050b0c80;
  border-radius: 20px;
  min-width: 800px;
  max-width: 800px;
  padding: 3rem 4rem;
  display: none;
  position: relative;
}

.quiz-step.padding-bottom-0 {
  padding-bottom: 0;
}

.text-block-60 {
  text-align: center;
  width: 70%;
  font-size: 1.5rem;
  line-height: 2rem;
}

.div-block-199 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-200 {
  background-color: var(--_redesign-style---green);
  width: 20%;
  height: 1px;
}

.div-block-201 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.div-block-202 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-203 {
  border: 1px solid var(--_redesign-style---green);
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  padding: 15px 100px;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.div-block-203:hover {
  color: var(--_redesign-style---green);
  background-image: none;
}

.div-block-204 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.div-block-205 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-206 {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
}

.div-block-206.auto-width {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.heading-19 {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  text-align: center;
  max-width: 80%;
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3.5rem;
  display: block;
}

.heading-19._100 {
  width: 100%;
  max-width: 100%;
}

.text-block-61 {
  text-align: center;
  width: 100%;
  font-size: 20px;
  line-height: 120%;
}

.div-block-207 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.radio-button-field {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--_redesign-style---green);
  cursor: pointer;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  font-size: 20px;
  line-height: 120%;
  display: flex;
}

.radio-button-field.other-input {
  border-style: none;
  width: 100%;
}

.radio-button {
  border: 2px solid var(--_redesign-style---green);
  width: 27px;
  min-width: 27px;
  height: 27px;
  min-height: 27px;
  margin-top: 0;
  margin-left: 0;
}

.radio-button.w--redirected-checked {
  border: 1px solid var(--_redesign-style---green);
  background-color: var(--_redesign-style---green);
}

.radio-button.w--redirected-focus {
  box-shadow: 0 0 #0000;
}

.radio-button-label {
  color: var(--_redesign-style---white);
  white-space: normal;
  font-weight: 500;
  line-height: 120%;
}

.radio-button-label.no-wrap {
  white-space: nowrap;
}

.div-block-208 {
  border: 1px solid var(--_redesign-style---green);
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.text-field-2 {
  color: var(--_redesign-style---white);
  background-color: #fff0;
  border: 1px #000;
  height: auto;
  margin-bottom: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  display: block;
}

.text-field-3 {
  color: var(--_redesign-style---white);
  background-color: #fff0;
  border: 1px #000;
  margin-bottom: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.div-block-209 {
  border: 1px solid var(--_redesign-style---green);
  border-radius: 20px;
  padding: 15px 20px;
}

.div-block-210 {
  z-index: 2;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}

.radio-button-field-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.radio-button-2 {
  cursor: pointer;
  background-color: #54725b;
  border: 1px #000;
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
  transition: background-color .2s;
}

.radio-button-2:hover {
  background-color: var(--_redesign-style---green-light);
}

.radio-button-2.w--redirected-checked {
  background-color: var(--_redesign-style---green-light);
  border: 1px #000;
}

.radio-button-label-2 {
  font-size: 20px;
  line-height: 1rem;
}

.div-block-211 {
  z-index: 1;
  background-color: #a3dcad80;
  border-radius: 20px;
  height: 4px;
  margin-top: 8px;
  position: absolute;
  inset: 0% 0% auto;
}

.div-block-212 {
  width: 100%;
  margin-top: 40px;
  position: relative;
}

.select-field {
  border: 1px solid var(--_redesign-style---green);
  color: var(--_redesign-style---white);
  background-color: #f3f3f300;
  border-radius: 20px;
  height: 54px;
  margin-bottom: 0;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.div-block-213 {
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.div-block-214 {
  border: 1px solid var(--_redesign-style---green);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-215 {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.div-block-216 {
  border: 1px solid var(--_redesign-style---green);
  background-color: #6d95741c;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  font-size: 20px;
  line-height: 120%;
  display: flex;
}

.div-block-217 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-block-62 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.div-block-218 {
  border: 1px solid var(--_redesign-style---green);
  color: var(--_redesign-style---white);
  text-align: center;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  display: flex;
}

.div-block-219 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-block-3 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-220 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--_redesign-style---green);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
  padding: 15px 20px;
  display: flex;
}

.text-block-64 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.div-block-221, .div-block-222 {
  display: none;
}

.next-button {
  border: 1px solid var(--_redesign-style---green);
  cursor: pointer;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: static;
  inset: 1rem 1rem auto auto;
}

.back-button {
  border: 1px solid var(--_redesign-style---green);
  cursor: pointer;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.div-block-225 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 1rem 1rem auto auto;
}

.div-block-226 {
  border: 1px solid var(--_redesign-style---green);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.skip-button {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--_redesign-style---green);
  cursor: pointer;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding-left: 20px;
  padding-right: 10px;
  display: flex;
}

.text-block-65 {
  color: var(--_redesign-style---green);
}

.quiz-start {
  border: 1px solid var(--_redesign-style---green);
  background-color: #050b0c80;
  border-radius: 20px;
  min-width: 800px;
  max-width: 800px;
  padding: 3rem 4rem;
}

.next-button-wrapper {
  position: absolute;
  inset: 1rem 1rem auto auto;
}

.back-button-wrapper {
  position: absolute;
  inset: 1rem auto auto 1rem;
}

.success-message-5 {
  background-color: #ddd0;
  min-width: 800px;
  max-width: 800px;
  padding: 0;
}

.div-block-227 {
  border: 1px solid var(--_redesign-style---green);
  background-color: #050b0c80;
  border-radius: 20px;
  padding-top: 3rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.submit {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--_redesign-style---green);
  color: var(--_redesign-style---green);
  text-transform: uppercase;
  background-color: #3898ec00;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.submit:hover {
  background-color: var(--_redesign-style---green);
  color: var(--_redesign-style---black-green);
}

.id-case {
  display: none;
}

.div-block-228 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.div-block-229 {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-230 {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c99;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  padding: 12px 45px;
}

.text-block-66 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(909deg, #a3dcad, #d2ffda 50%, #a3dcad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 42px;
  font-weight: 500;
  line-height: 130%;
}

.div-block-231 {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-flow: column;
  display: flex;
}

.image-86 {
  z-index: 1;
  object-fit: contain;
  min-height: 100%;
  max-height: 100%;
  position: relative;
}

.div-block-232 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  max-width: 60%;
  display: flex;
}

.div-block-233 {
  background-image: linear-gradient(90deg, #d2ffda, #fff 50%, #050505);
  width: 100%;
  height: 1px;
}

.div-block-234 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #dedede;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 15px;
  line-height: 130%;
  display: flex;
}

.text-block-67 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #a3dcad, #d2ffda 50%, #a3dcad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 26px;
  font-weight: 500;
  line-height: 130%;
}

.div-block-235 {
  z-index: -1;
  mix-blend-mode: lighten;
  min-width: 75%;
  max-width: 75%;
  min-height: 700px;
  max-height: 700px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.div-block-236 {
  z-index: 2;
  background-image: linear-gradient(90deg, #fff0 90%, #000);
  position: absolute;
  inset: 0%;
}

.div-block-237 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-238 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  display: flex;
}

.div-block-239 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.div-block-240 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: stretch stretch;
  display: grid;
}

.div-block-241 {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c80;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  padding: 40px 30px 20px;
  display: flex;
  position: relative;
}

.div-block-242 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  display: flex;
}

.text-block-68 {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
}

.text-block-69 {
  color: #dedede;
  font-size: 15px;
  line-height: 130%;
}

.div-block-243 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.div-block-244 {
  background-color: #bbeec44d;
  width: 100%;
  height: 1px;
}

.div-block-245 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-70 {
  font-size: 15px;
  line-height: 130%;
}

.link-11 {
  color: #a3dcad;
  font-weight: 500;
}

.text-block-71 {
  color: #fff0;
  -webkit-text-stroke-width: .8px;
  -webkit-text-stroke-color: #a3dcad;
  text-overflow: ellipsis;
  font-size: 25px;
  font-weight: 700;
  line-height: 130%;
}

.image-87 {
  height: 100px;
  position: absolute;
  inset: 20px 20px auto auto;
}

.div-block-246 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.div-block-247 {
  grid-column-gap: 55px;
  grid-row-gap: 55px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.image-88 {
  max-height: 400px;
}

.div-block-248 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.div-block-249 {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: column;
  display: flex;
}

.div-block-250 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.text-block-72 {
  font-size: 15px;
  font-weight: 300;
  line-height: 130%;
}

.text-block-73 {
  text-align: center;
  font-size: 17px;
  line-height: 140%;
}

.text-span-11 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #a3dcad, #d2ffda 50%, #a3dcad);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
}

.div-block-251 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-image: url('../images/Ellipse-23.svg'), url('../images/Ellipse-23.svg');
  background-position: 50% 0, 50% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.div-block-252 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 30%;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-253 {
  background-color: #111;
  border-top: 1px solid #a3dcad;
  border-bottom: 1px solid #a3dcad;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 40px 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-block-74 {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 40px;
  font-weight: 500;
  line-height: 130%;
}

.text-block-75 {
  color: #dedede;
  font-size: 15px;
  font-weight: 300;
  line-height: 140%;
}

.div-block-254 {
  background-color: #111;
  border-top: 1px solid #a3dcad;
  border-bottom: 1px solid #a3dcad;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.text-block-76 {
  color: #fff0;
  text-align: center;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #a3dcad;
  font-size: 180px;
  font-weight: 700;
  line-height: 130%;
}

.image-89 {
  z-index: 1;
  opacity: .05;
  min-height: 100%;
  position: absolute;
  inset: -20% 10% 0% auto;
}

.div-block-255 {
  z-index: 2;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.div-block-256 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-257 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr 1fr 50px 1fr 1fr 50px 1fr 1fr;
  grid-template-columns: 1fr 20px 50px 170px 50px 20px 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-258 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #050b0c80;
  border: 1px solid #bbeec433;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 40px 20px 25px;
  display: flex;
}

.text-block-77 {
  color: #dedede;
  font-size: 15px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-78 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #a3dcad, #d2ffda 50%, #a3dcad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
}

.div-block-259 {
  border-top: 1px solid #29362e;
  border-right: 1px solid #29362e;
}

.div-block-260 {
  border-bottom: 1px solid #29362e;
  border-right: 1px solid #29362e;
}

.div-block-261 {
  border-top: 1px solid #29362e;
  border-left: 1px solid #29362e;
}

.div-block-262 {
  border-bottom: 1px solid #29362e;
  border-left: 1px solid #29362e;
}

.image-90 {
  object-fit: contain;
  min-width: 120%;
  max-width: 120%;
  min-height: 120%;
}

.image-91 {
  max-height: 900px;
  position: absolute;
  inset: auto auto 0% -20%;
}

.div-block-263 {
  background-image: url('../images/Ellipse-24.svg'), url('../images/Ellipse-25.svg');
  background-position: 120% 0, -20% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 70%, auto 70%;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-264 {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  display: flex;
}

.div-block-265 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-266 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.div-block-267 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.heading-20 {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 130%;
}

.text-block-79 {
  color: #dedede;
  font-size: 15px;
  font-weight: 300;
  line-height: 140%;
}

.image-92 {
  opacity: .6;
  object-fit: cover;
  border-radius: 10px;
  min-height: 100%;
}

.div-block-268 {
  background-color: #111;
  border-top: 1px solid #bbeec44d;
  border-bottom: 1px solid #bbeec44d;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 30px 40px;
  display: flex;
  position: relative;
}

.div-block-269 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  display: flex;
}

.text-block-80 {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
}

.image-93 {
  max-height: 80%;
  position: absolute;
  inset: auto -20px auto auto;
}

.image-94 {
  display: none;
}

.div-block-271 {
  background-color: #111;
  border-top: 1px solid #a3dcad;
  border-bottom: 1px solid #a3dcad;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.div-block-272 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-4 {
  z-index: 1;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--_redesign-style---green);
  background-color: #8315f100;
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
  cursor: pointer;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 130%;
  transition: all .25s ease-in-out;
  display: flex;
  position: relative;
  overflow: visible;
}

.button-4:hover {
  text-shadow: 0 2px 8px #8205ff;
  font-weight: 600;
}

.button-4:active {
  text-shadow: none;
  background-color: #8315f130;
}

.button-4_wave-1, .button-4_wave-2 {
  border: .4px solid var(--_redesign-style---green);
  opacity: 0;
  filter: blur(1px);
  background-image: none;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.button-4_wave-3 {
  border: .4px solid var(--_redesign-style---green);
  opacity: 0;
  filter: blur(1px);
  background-image: none;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.div-block-273 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-82 {
  font-size: 20px;
  line-height: 110%;
}

.div-block-274 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-275 {
  background-color: #fff;
  border-radius: 999px;
  min-width: 6px;
  max-width: 6px;
  min-height: 6px;
  max-height: 6px;
}

.div-block-276 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  display: flex;
}

.div-block-277 {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.image-96 {
  max-height: 250px;
}

.paragraph-15 {
  color: #c2c2c2;
  font-size: 15px;
  line-height: 130%;
}

.div-block-278 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-block-83 {
  color: #111;
  font-size: 26px;
  font-weight: 600;
  line-height: 130%;
}

.div-block-279 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: column;
  width: 100%;
  padding-bottom: 60px;
  display: flex;
}

.div-block-280 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.paragraph-16 {
  font-size: 18px;
  line-height: 140%;
}

.text-span-12 {
  color: #c6f6ce;
}

.div-block-281 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  padding-bottom: 30px;
  display: flex;
}

.div-block-282 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-flow: column;
  display: flex;
}

.div-block-283 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.text-block-84 {
  color: #c6f6ce;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
}

.div-block-284 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .6fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-97 {
  object-fit: cover;
  border-radius: 10px;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.div-block-285 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.div-block-286 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.div-block-287 {
  background-color: #ffffff0d;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 100px 20px 30px;
  display: flex;
}

.flowappz-cookie-consent-hide-cookie-button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  padding: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  text-decoration: underline;
  display: block;
  position: fixed;
  bottom: 2%;
  left: 2%;
  box-shadow: 0 2px 5px #0003;
}

.flowappz-cookie-consent-hide-cookie-button:hover {
  box-shadow: 0 5px 30px #0003;
}

.fs-consent_component {
  display: block;
}

.fs-consent_banner {
  z-index: 9999;
  background-color: #f5f5f5;
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  border-radius: 10px;
  max-width: 400px;
  padding: 20px;
  display: block;
  position: fixed;
  inset: auto auto 10px 10px;
}

.fs-consent_banner_wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.fs-consent_banner_paragraph {
  color: var(--_redesign-style---black-green);
  margin-bottom: 0;
}

.fs-consent_banner_buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: flex;
}

.fs-consent_allow {
  border: 1px solid var(--_redesign-style---black-green);
  background-color: var(--_redesign-style---black-green);
  color: #fff;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: block;
}

.fs-consent_allow:hover {
  color: var(--_redesign-style---black-green);
  background-color: #050b0c00;
}

.fs-consent_banner-2 {
  z-index: 9999;
  background-color: #f5f5f5;
  max-width: 45rem;
  padding: 2rem;
  display: block;
  position: fixed;
  inset: auto 0% 0% auto;
}

.fs-consent_banner_wrapper-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.fs-consent_banner_paragraph-2 {
  margin-bottom: 0;
}

.fs-consent_allow-2 {
  color: #fff;
  background-color: #000;
  padding: .5rem 1rem;
  text-decoration: none;
  display: block;
}

.fs-cc_title {
  margin-bottom: .25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.clone-elements-inside-div {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.fs-cc_button {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border: 1px solid var(--_redesign-style---black-green);
  background-color: var(--_redesign-style---black-green);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  font-weight: 500;
  transition: color .2s, background-color .1s;
  display: inline-flex;
}

.fs-cc_button:hover {
  color: var(--_redesign-style---black-green);
  background-color: #050b0c00;
}

.fs-cc_button.is-secondary {
  color: #000;
  background-color: #fff0;
  border: 1px solid #0000001a;
}

.fs-cc_modal {
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  border-radius: 20px;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  display: flex;
  position: relative;
}

.fs-cc_checkbox {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.75rem;
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.fs-cc_checkbox.is--not-allowed {
  cursor: not-allowed;
}

.fs-cc_form {
  margin-bottom: 0;
}

.fs-cc_close-button {
  z-index: 5;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  display: flex;
  position: relative;
}

.fs-cc_link {
  text-decoration: underline;
}

.cookie-preference_background {
  opacity: 1;
  cursor: pointer;
  background-color: #0003;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc_screen-reader-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.fs-cc_checkbox-label {
  cursor: pointer;
  margin-bottom: .25rem;
  font-size: .9375rem;
  font-weight: 600;
}

.fs-cc_preference-buttons {
  z-index: 1;
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: #f8f8f8;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: -1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding: 1.5rem;
  display: flex;
  position: sticky;
  bottom: -2rem;
}

.fs-cc_preference-component {
  z-index: 9525;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc_modal-buttons {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.fs-cc_checkbox-description {
  cursor: pointer;
  font-size: .875rem;
  font-weight: 400;
}

.fs-cc_preferences {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.fs_cc-modal-content {
  color: var(--_redesign-style---black-green);
  padding: 20px;
}

.fs-cc_close-button-line {
  background-color: #000;
  width: 1rem;
  height: 2px;
  position: absolute;
  transform: rotate(-45deg);
}

.fs-cc_close-button-line.is-2nd {
  transform: rotate(45deg);
}

.fs-cc_cookie-component {
  z-index: 9500;
  max-width: 25rem;
  display: flex;
  position: fixed;
  inset: auto auto 10px 10px;
}

.fs-cc_checkbox-button {
  float: left;
  border: 1px solid #0003;
  border-radius: .125rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-left: -1.75rem;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.fs-cc_checkbox-button.w--redirected-checked {
  background-color: #146ef5;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: .625rem;
  border: 1px solid #146ef5;
}

.fs-cc_checkbox-button.w--redirected-focus {
  box-shadow: none;
}

.fs-cc_checkbox-button.is-required {
  cursor: not-allowed;
  background-color: #146ef5;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 45%;
  background-repeat: no-repeat;
  background-size: .625rem;
  border-color: #146ef5;
}

.fs-cc_custom-code {
  display: none;
}

.cookie-preference_wrapper {
  z-index: 1;
  width: 100%;
  max-height: 100%;
  padding: 2rem;
  position: relative;
  overflow: auto;
}

.fs-cc_button-2 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
  font-size: .9375rem;
  font-weight: 700;
  transition: background-color .1s;
  display: inline-flex;
}

.fs-cc_button-2.is-secondary {
  color: #000;
  background-color: #fff0;
  border: 1px solid #0000001a;
}

.fs-cc_modal-2 {
  background-color: #fff;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
}

.fs-cc_close-button-2 {
  z-index: 5;
  cursor: pointer;
  background-color: #f8f8f8;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  display: flex;
  position: relative;
}

.fs-cc_modal-buttons-2 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: #f8f8f8;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.fs_cc-modal-content-2 {
  padding: 1.5rem;
}

.fs-cc_cookie-component-2 {
  z-index: 9500;
  max-width: 25rem;
  display: flex;
}

.fs-cc_button-3 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
  font-size: .9375rem;
  font-weight: 700;
  transition: background-color .1s;
  display: inline-flex;
}

.fs-cc_button-3.is-secondary {
  color: #000;
  background-color: #fff0;
  border: 1px solid #0000001a;
}

.fs-cc_modal-3 {
  background-color: #fff;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
}

.fs-cc_close-button-3 {
  z-index: 5;
  cursor: pointer;
  background-color: #f8f8f8;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  display: flex;
  position: relative;
}

.fs-cc_cookie-component-3 {
  z-index: 9500;
  max-width: 25rem;
  display: flex;
}

.div-block-288 {
  z-index: 9999;
  background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 52%, var(--_redesign-style---green));
  color: var(--_redesign-style---black-green);
  border-radius: 12px;
  max-width: 420px;
  padding: 20px;
  position: fixed;
  inset: auto auto 20px 20px;
}

.div-block-289 {
  margin-bottom: 10px;
}

.div-block-290 {
  width: 100%;
}

.rich-text-block-2 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-flow: column;
  display: flex;
}

.rich-text-block-2 a {
  color: var(--_redesign-style---green);
}

.iframe-vimeo {
  border-radius: 10px;
  overflow: hidden;
}

.div-block-291 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-85 {
  color: #c1f2ca;
  font-size: 14px;
}

.div-block-292 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.image-98 {
  width: 96px;
  min-width: 96px;
  height: 96px;
}

.image-99 {
  position: absolute;
  inset: auto;
}

.image-100 {
  z-index: 1;
  max-height: 100%;
  position: absolute;
  inset: auto 0% 2px auto;
}

.div-block-293 {
  border-bottom-right-radius: 10px;
  min-width: 60%;
  min-height: 115%;
  max-height: 115%;
  position: absolute;
  inset: auto 0 0% auto;
}

.div-block-294 {
  z-index: 2;
  background-image: linear-gradient(#05050500 50%, #050b0c99 58%, #050b0c 86%);
  border-bottom-right-radius: 10px;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.code-embed-5 {
  border-radius: 10px;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.div-block-295 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-101 {
  box-shadow: inset 0 0 20px 0 var(--_redesign-style---green);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 999px;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: auto;
}

@media screen and (min-width: 1280px) {
  .body-4 {
    background-color: #050505;
  }

  .blog-highlight-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: .8fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .blog-featured-article-wrapper {
    border-left-style: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .blog-article-header {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

@media screen and (min-width: 1440px) {
  .image-51, .image-53 {
    right: 0%;
  }

  .image-56 {
    left: 0%;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr 20px .8fr;
  }

  .hero-background-img._180deg {
    max-height: 800px;
  }

  .hero-button-wrapper {
    position: absolute;
    bottom: 10px;
    right: -360px;
  }

  .div-block-242 {
    width: 85%;
  }

  .button-4 {
    transform: scale(1.2);
  }
}

@media screen and (min-width: 1920px) {
  .video-wrapper {
    justify-content: space-between;
    align-items: stretch;
  }

  .image-58 {
    bottom: 5%;
  }

  .button-4 {
    transform: scale(1.4);
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.375rem;
    line-height: 3.875rem;
  }

  h2 {
    font-size: 2.4rem;
    line-height: 2.9rem;
  }

  h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  h4 {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }

  h5 {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

  h6 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .utility-page-content {
    width: 40rem;
  }

  .heading-style-h2 {
    padding-bottom: 0;
    line-height: 3.4rem;
  }

  .container-large {
    max-width: 100%;
    display: block;
  }

  .text-size-regular {
    font-size: .9375rem;
    line-height: 1.4375rem;
  }

  .text-size-small {
    white-space: normal;
  }

  .button {
    font-size: .875rem;
  }

  .padding-section-medium {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .padding-section-medium.is-header {
    padding-top: 5rem;
  }

  .padding-section-medium.padding-bottom-large {
    padding-bottom: 5rem;
  }

  .padding-section-large {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .padding-section-large.is-header {
    padding-top: 4.375rem;
  }

  .padding-section-large.padding-top-medium {
    padding-bottom: 4rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-bottom.padding-small {
    padding-bottom: 1.5rem;
  }

  .padding-bottom.padding-medium {
    padding-bottom: 2rem;
  }

  .padding-bottom.padding-xlarge {
    padding-bottom: 3rem;
  }

  .utility-page-wrapper {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  ._404-component {
    max-width: none;
  }

  .page-wrapper {
    max-width: 100vw;
    padding-bottom: 0;
  }

  .main-wrapper {
    max-width: 100vw;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-brand-logo-wrapper.w--current {
    width: 25%;
  }

  .nav-menu {
    background-color: var(--stock-color);
    padding: 1.5rem;
  }

  .nav-link {
    margin-bottom: .75rem;
  }

  .section-hero {
    flex-flow: row;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .hero-component {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex-flow: column;
  }

  .hero-left-content-wrapper {
    max-width: none;
  }

  .hero-image-wrapper._02 {
    width: 100%;
    display: flex;
  }

  .hero-image-wrapper._01 {
    display: none;
  }

  .section-about {
    width: 100%;
  }

  .about-component {
    grid-column-gap: 3.2rem;
    grid-row-gap: 3.2rem;
    flex-flow: column;
  }

  .about-component.is-about {
    padding-top: 3rem;
  }

  .about-image {
    width: auto;
  }

  .about-image-wrapper {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-image-wrapper.is-about {
    width: auto;
    height: auto;
  }

  .section-service {
    width: 100%;
  }

  .value-component {
    max-width: 100vw;
  }

  .service-collection-list-wrapper {
    flex-flow: row;
    width: 100%;
    max-width: none;
    display: flex;
  }

  .service-collection-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .value-card {
    width: 100%;
  }

  .section-blog {
    justify-content: center;
    display: flex;
  }

  .section-footer {
    padding-top: 4rem;
  }

  .section-team {
    margin-top: 40px;
  }

  .team-component {
    max-width: 100vw;
  }

  .team-top-content-wrapper {
    width: 100%;
  }

  .team-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .team-collection-list.team-collection-list-3 {
    grid-column-gap: 0rem;
    grid-row-gap: 2rem;
  }

  .cta-component {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .faq-list {
    flex-flow: column;
  }

  .blog-component {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .blog-top-content-wrapper {
    grid-column-gap: 1.8rem;
    grid-row-gap: 1.8rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .blog-collection-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-column-gap: 2.7rem;
    grid-row-gap: 3.7rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-left-content-wrapper {
    grid-column-gap: .8rem;
    grid-row-gap: 1.7rem;
  }

  .faq-list-wrapper {
    flex-flow: column;
  }

  .contact-component {
    grid-column-gap: 3.1rem;
    grid-row-gap: 3.1rem;
    flex-flow: column;
  }

  .project-details-bottom-content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .project-details-top-bottom-content {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .service-details-top-content-wrapper {
    grid-column-gap: 1.7rem;
    grid-row-gap: 1.7rem;
    flex-flow: column;
  }

  .service-details-right-content-wrapper {
    max-width: none;
  }

  .team-details-top-content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .blog-details-top-content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .blog-details-image-wrapper {
    width: auto;
    height: auto;
  }

  .blog-details-bottom-content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .blog-details-bottom-left-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .blog-details-bottom-right-content {
    width: 100%;
  }

  .footer-bottom-content {
    justify-content: space-between;
    align-items: center;
  }

  .mission-bottom-content-wrapper {
    flex-flow: column;
  }

  .nav-menu-line-wrapper {
    grid-row-gap: 6px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-menu-button {
    padding: 0;
  }

  .nav-menu-button.w--open {
    background-color: #0000;
  }

  .nav-menu-line {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-menu-line.last, .nav-menu-line.top, .nav-menu-line.middle {
    background-color: var(--neutral--white-0);
  }

  .nav-bottom-content.hide-dekstop {
    display: block;
  }

  .nav-bottom-content.hide-tablet {
    display: none;
  }

  .value-top-content-wrapper {
    margin-bottom: 20px;
  }

  .value-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .text-size-regular-2 {
    font-size: .9375rem;
    line-height: 1.4375rem;
  }

  .button-2 {
    font-size: .875rem;
  }

  .section-footer-2 {
    padding-top: 4rem;
  }

  .footer-grid-2 {
    grid-column-gap: 2.7rem;
    grid-row-gap: 3.7rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-right-content-wrapper-2 {
    width: 100%;
    height: 60rem;
  }

  .hero-right-content-2 {
    display: block;
  }

  .hero-image-2 {
    display: none;
  }

  .section-footer-3 {
    padding-top: 4rem;
  }

  .regular-font-8 {
    width: 400px;
    font-size: .9375rem;
    line-height: 1.4375rem;
  }

  .footer-brand-logo-2 {
    width: 50%;
  }

  .footer-grid-3 {
    grid-column-gap: 2.7rem;
    grid-row-gap: 3.7rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .text-size-regular-9 {
    font-size: .9375rem;
    line-height: 1.4375rem;
  }

  .heading-style-h2-2 {
    padding-bottom: 0;
    font-size: 2.8rem;
  }

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

  .news-2 {
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .web-news-items-2 {
    width: 100%;
  }

  .pagination-2 {
    justify-content: space-around;
  }

  .pagbuttonprev-3 {
    justify-content: flex-end;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .pagbuttonnext-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container1, .container2 {
    width: 100%;
  }

  .section-crypto-recovery {
    max-width: 100vw;
  }

  .container {
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .pop-up-heading {
    margin-top: 5%;
    margin-bottom: 5%;
    padding-bottom: 0;
    font-size: 2em;
    line-height: 2rem;
  }

  .pop-up-litle-heading {
    margin-bottom: 10px;
    font-size: 1.5em;
  }

  .crypto-tax-pop-up {
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 100%;
    max-height: 90%;
  }

  .image-13 {
    width: 2rem;
    max-width: none;
  }

  .column-2 {
    flex-flow: row;
    padding-left: 0;
    padding-right: 0;
  }

  .p1-tax {
    font-size: .7em;
    line-height: 1rem;
  }

  .cryptp-rec-pop-up {
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 100%;
    max-height: 90%;
  }

  .button-pop-up {
    width: 8rem;
    height: 2.5rem;
    font-size: .875rem;
  }

  .cookies {
    display: flex;
  }

  .button-accept, .button-decline, .button-contact {
    font-size: .875rem;
  }

  .section-news {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .extended-news {
    flex-flow: row;
    width: 100%;
  }

  .columns-3 {
    flex-flow: row;
    max-width: 100vw;
  }

  .list-news {
    width: 100%;
    max-width: 100vw;
  }

  .item-list-news {
    width: 100%;
  }

  .image-list-news {
    width: 200px;
  }

  .grid-text-list-news {
    margin-left: 25%;
  }

  .heading-style-h2-news {
    width: 100%;
    padding-bottom: 0;
    font-size: 2.8rem;
  }

  .big-announcement {
    padding-left: 40px;
    padding-right: 40px;
  }

  .announc-container {
    width: 100%;
  }

  .image-22 {
    max-width: 100%;
    max-height: 546px;
  }

  .columns-6 {
    flex-flow: row;
    width: 100%;
  }

  .announc-title {
    padding-bottom: 0;
    font-size: 1.8rem;
    line-height: 2.4rem;
  }

  .announc-text {
    font-size: .9375rem;
    line-height: 1.4375rem;
  }

  .announc-text.is-white {
    font-size: 1.2rem;
  }

  .list-announcement {
    padding-left: 40px;
    padding-right: 40px;
  }

  .list-container {
    width: 100%;
  }

  .list-title {
    padding-bottom: 0;
  }

  .product-updates {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .updates-container {
    width: 100%;
  }

  .image-23 {
    height: 250px;
  }

  .blog-after-title {
    font-size: .9375rem;
    line-height: 1.4375rem;
  }

  .video-container {
    width: 100%;
  }

  .heading-style-h2-contact {
    padding-bottom: 0;
  }

  .education-after-title {
    font-size: .9375rem;
    line-height: 1.4375rem;
  }

  .books {
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .crypto-books {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .link {
    margin-bottom: 2rem;
  }

  .doc-link-text {
    font-size: .7rem;
  }

  .bold-text {
    line-height: 1rem;
  }

  .doc-columns {
    flex-flow: row;
    justify-content: center;
    align-items: stretch;
  }

  .bold-text-3 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }

  .div-block-9 {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
    flex-flow: column;
    width: 100%;
  }

  .div-block-10 {
    margin-top: 0;
  }

  .paragraph-8 {
    line-height: 1.2rem;
  }

  .paragraph-9 {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .container-11 {
    flex-flow: column;
  }

  .div-block-14 {
    padding-left: 10%;
    padding-right: 10%;
  }

  .container-13 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }

  .image-28 {
    margin-right: 0;
  }

  .image-29 {
    object-fit: cover;
  }

  .container-17 {
    flex-flow: column;
  }

  .container-18 {
    padding: 0;
  }

  .container-19 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .image-30 {
    width: 100%;
    margin-right: 0;
  }

  .div-block-16 {
    margin-top: 4rem;
  }

  .name-fields {
    flex-flow: column;
  }

  .first-name, .last-name {
    width: 100%;
  }

  .image-41 {
    height: 50px;
  }

  .video-item {
    margin-bottom: 2rem;
  }

  .big-video-item {
    height: 450px;
  }

  .big-video-heading {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }

  .big-video-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .pricing {
    grid-column-gap: 2.2rem;
    grid-row-gap: 2.2rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .price {
    width: 100%;
    max-width: none;
  }

  .team-sphere-heading-tax {
    padding-bottom: 0;
  }

  .text-size-regular-copy {
    font-size: 1rem;
    line-height: 1.4375rem;
  }

  .heading-styles-h3 {
    text-align: left;
  }

  .section-legal {
    width: 90vw;
  }

  .slider {
    display: none;
  }

  .video-container-phone {
    display: block;
  }

  .test-content {
    display: flex;
  }

  .image-46 {
    display: none;
  }

  .preview-test-item {
    min-width: auto;
  }

  .preview-test {
    width: 80vw;
  }

  .main-wrapper-test, .page-wrapper-2-test {
    max-width: 100vw;
  }

  .bold-text-28 {
    font-size: 1.2rem;
  }

  .link-book-6-1 {
    margin-bottom: 2rem;
  }

  .link-book-6-2 {
    max-width: 50%;
    margin-bottom: 2rem;
    display: none;
  }

  .link-block-6 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    place-items: center start;
  }

  .link-block-6.w--current {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    place-items: center start;
  }

  .subtitle {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }

  .body-4 {
    background-color: var(--_redesign-style---black-green);
  }

  .navbar-2, .section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .navbar-cta-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-contact-button {
    background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
    color: var(--_redesign-style---black-green);
    border-style: none;
    width: 100%;
  }

  .social-icons.nav {
    display: none;
  }

  .navbar-menu {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background-color: #050b0ce6;
    flex-flow: column;
    height: 100vh;
  }

  .navbar-link {
    border-bottom: 1px solid #fff3;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 50px;
    padding-left: 20px;
    display: flex;
  }

  .navbar-link.drop {
    border-bottom-style: none;
  }

  .navbar-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    height: 50px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .navbar-dropdown-list {
    background-color: #05050500;
    padding-top: 0;
  }

  .navbar-dropdown-list.w--open {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #05050500;
    border-style: none;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .line.top {
    background-color: #ffffff1a;
    background-image: none;
  }

  .copyright-text-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-contacts-wrapper {
    width: 100%;
  }

  .footer-hours-wrapper {
    flex-flow: column;
  }

  .footer-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-51 {
    height: 50px;
    right: -25px;
  }

  .container-24 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-53 {
    height: 50px;
    top: 100px;
    right: 0%;
  }

  .services-overview-content-wrapper {
    flex-flow: column;
    display: flex;
  }

  .services-overview-image {
    object-position: 50% 20%;
    max-height: 450px;
  }

  .crypto-asset-recovery-cards-wrapper {
    flex-flow: column;
    display: flex;
  }

  .image-56 {
    height: 50px;
    top: 80px;
    left: -20px;
  }

  .image-58 {
    height: 50px;
    bottom: 5%;
    left: 0%;
  }

  .supported-platforms-wrapper, .supported-platforms-logos-wrapper {
    flex-flow: column;
  }

  .supported-platforms-heading {
    text-align: center;
  }

  .hero-content-wrapper {
    grid-template-rows: 1fr 20px auto;
    grid-template-columns: 1fr;
  }

  .image-64 {
    height: 50px;
  }

  .image-65 {
    height: 50px;
    right: 0%;
  }

  .hero-background-img {
    overflow: hidden;
  }

  .hero-background-blur {
    background-image: linear-gradient(180deg, #0000, var(--_redesign-style---black-green) 60%);
  }

  .hero-background-blur._180deg {
    background-image: linear-gradient(180deg, var(--_redesign-style---black-green) 40%, #0000);
  }

  .web-news-items-new {
    flex-flow: column;
    display: flex;
  }

  .image-69 {
    height: 50px;
    left: -20px;
  }

  .mindmap-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .mindmap-center-wrapper {
    margin-bottom: 20px;
  }

  .mindmap-center-wrapper.mob-none, .mindmap-line-top-right, .mindmap-line-top-left, .mindmap-line-bottom-right, .mindmap-line-bottom-left, .supported-platforms-logos-line-wrapper {
    display: none;
  }

  .footer-contact-group, .footer-additional-group {
    justify-content: space-between;
    width: 100%;
  }

  .navbar-logo-link, .navbar-logo-link.w--current {
    display: flex;
  }

  .navbar-links-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    height: 70%;
  }

  .navbar-menu-button {
    background-color: #a3dcad;
    border-radius: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    transition: background-color .2s;
    display: flex;
  }

  .navbar-menu-button.w--open {
    background-color: #a3dcad;
    background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
  }

  .navbar-menu-button-lines {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 19px;
    max-width: 19px;
    height: 15px;
    max-height: 15px;
    display: flex;
  }

  .navbar-menu-button-line {
    background-color: var(--_redesign-style---black-green);
    border-radius: 100px;
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar-menu-button-line-middle {
    background-color: var(--_redesign-style---black-green);
    border-radius: 10px;
    width: 60%;
    height: 1px;
    padding: 0;
  }

  .navbar-menu-button-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .navbar-dropdown {
    border-bottom: 1px solid #fff3;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .image-73 {
    height: 50px;
    top: 50px;
    right: 0%;
  }

  .hero-button-wrapper {
    display: none;
  }

  .div-block-128 {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-cards-grid {
    flex-flow: column;
    display: flex;
  }

  .div-block-141 {
    flex-flow: column;
    align-items: stretch;
    display: flex;
  }

  .trending-news {
    flex-flow: column;
  }

  .list-news-new {
    flex-flow: column;
    display: flex;
  }

  .item-list-news-new-description-wrapper {
    width: 100%;
  }

  .image-75 {
    height: 50px;
  }

  .core-values-heading-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .mission-vision-cards-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .blog-insights-wrapper {
    flex-flow: column;
    display: flex;
  }

  .blog-cms-list {
    grid-template-columns: 1fr 1fr;
  }

  .line-top-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .ebooks-hero-inner-wrapper {
    flex-flow: column;
  }

  .ebooks-content-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .ebooks-image-decor.desk {
    min-width: 100%;
    margin-left: 0%;
  }

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

  .left-arrow {
    position: relative;
    bottom: -24px;
    left: -30px;
  }

  .right-arrow {
    position: relative;
    top: -24px;
    right: -30px;
  }

  .lessons-slider-mask._25 {
    width: 33.3%;
  }

  .lesson-slide.tab {
    display: none;
  }

  .lessons-slide.desk {
    width: 100%;
  }

  .image-83 {
    height: 50px;
  }

  .contact-page-form-block {
    padding: 20px;
  }

  .div-block-188._4 {
    grid-template-columns: 1fr 1fr 1fr;
    width: 300%;
  }

  .form-2 {
    justify-content: flex-start;
    align-items: stretch;
    max-width: 100%;
  }

  .quiz-step {
    min-width: auto;
  }

  .quiz-start, .success-message-5 {
    min-width: auto;
    max-width: none;
  }

  .text-block-66 {
    font-size: 30px;
  }

  .div-block-240 {
    flex-flow: column;
    display: flex;
  }

  .div-block-246, .div-block-252 {
    display: flex;
  }

  .div-block-257 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    display: flex;
  }

  .div-block-259, .div-block-260, .div-block-261, .div-block-262 {
    display: none;
  }

  .image-90 {
    width: 220px;
    min-width: auto;
    max-width: none;
    min-height: auto;
  }

  .div-block-265 {
    flex-flow: column;
    display: flex;
  }

  .div-block-271 {
    display: none;
  }

  .div-block-272 {
    order: -1;
    width: 100%;
  }

  .div-block-284 {
    flex-flow: column;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.875rem;
    line-height: 3.375rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }

  h4 {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

  h5 {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }

  h6 {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }

  .utility-page-content {
    width: 33.1rem;
  }

  .heading-style-h2 {
    line-height: 3rem;
  }

  .text-size-regular {
    font-size: .875rem;
  }

  .text-size-regular.a {
    text-align: center;
  }

  .padding-section-medium {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .padding-section-medium.is-header {
    padding-top: 3.75rem;
  }

  .padding-section-medium.padding-bottom-large {
    padding-bottom: 3.75rem;
  }

  .padding-section-large {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .padding-section-large.is-header {
    padding-top: 3.75rem;
  }

  .padding-section-large.padding-top-medium {
    padding-top: 2rem;
    padding-bottom: 3.75rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-bottom.padding-large {
    padding-bottom: 2.5rem;
  }

  .padding-bottom.padding-small {
    padding-bottom: 1.5rem;
  }

  .padding-bottom.padding-medium {
    padding-bottom: 2rem;
  }

  .padding-bottom.padding-xlarge, .padding-bottom.padding-large {
    padding-bottom: 2.5rem;
  }

  .utility-page-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .main-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-hero {
    padding-top: 1rem;
    padding-bottom: 3.75rem;
  }

  .hero-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .about-component {
    grid-column-gap: 2.4rem;
    grid-row-gap: 2.4rem;
  }

  .about-image-wrapper {
    width: 100%;
  }

  .service-collection-list {
    grid-column-gap: .8rem;
    grid-row-gap: 1.2rem;
    grid-template-columns: 1fr;
  }

  .section-team {
    margin-top: 40px;
  }

  .team-collection-list {
    grid-template-columns: 1fr;
  }

  .team-collection-list.team-collection-list-3 {
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    place-items: center;
  }

  .cta-component {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer-grid {
    grid-column-gap: 2.9rem;
    grid-row-gap: 2.9rem;
    grid-template-columns: 1fr 1.5fr 1fr;
  }

  .blog-category-collection-list {
    flex-flow: column;
  }

  .blog-category-collection-list-item {
    text-align: center;
    flex-flow: column;
    width: 100%;
  }

  .faq-list-wrapper {
    grid-column-gap: 1.9rem;
    grid-row-gap: 1.9rem;
    flex-flow: column;
  }

  .contact-social-icon-wrapper {
    justify-content: center;
    align-items: center;
  }

  .contact-form {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.5rem;
  }

  .project-details-bottom-content-wrapper {
    padding: 2rem 1.5rem;
  }

  .project-details-top-bottom-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .service-details-bottom-content-wrapper {
    padding: 2rem;
  }

  .team-details-top-content-wrapper {
    grid-column-gap: 1.6rem;
    grid-row-gap: 1.6rem;
    flex-flow: column;
  }

  .team-details-wrapper {
    width: auto;
    height: auto;
  }

  .team-details-top-right-content-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .team-details-right-top-content-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .team-details-bottom-content-wrapper {
    padding: 2rem;
  }

  .blog-details-top-content-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .blog-details-bottom-left-content {
    padding: 2rem 1.5rem;
  }

  .blog-details blockquote {
    margin-top: 1.9rem;
    margin-bottom: 0;
    padding: 2rem 1.5rem;
  }

  .footer-bottom-content {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

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

  .text-size-regular-2 {
    font-size: .875rem;
  }

  .footer-grid-2 {
    grid-column-gap: 2.9rem;
    grid-row-gap: 2.9rem;
    grid-template-columns: 1fr 1.5fr 1fr;
  }

  .grid-2 {
    justify-content: center;
    align-items: flex-start;
    width: 250px;
  }

  .regular-font-8 {
    text-align: center;
    width: 100%;
    font-size: .875rem;
  }

  .footer-link-list-wrapper-3._1 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-grid-3 {
    grid-column-gap: 2.9rem;
    grid-row-gap: 2.9rem;
    grid-template-columns: 1fr 1.5fr;
    place-items: center;
  }

  .text-size-regular-9 {
    font-size: .875rem;
  }

  .heading-style-h2-2 {
    font-size: 2.5rem;
  }

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

  .news-2 {
    max-width: 100vw;
  }

  .web-news-items-2 {
    width: 100%;
  }

  .pagbuttonprev-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-right: 0;
    padding-right: 10%;
  }

  .pagbuttonnext-3 {
    flex-flow: row;
    padding-left: 10%;
  }

  .social-container-3 {
    width: auto;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pop-up-heading {
    margin-bottom: 6px;
    font-size: 1.3em;
  }

  .pop-up-litle-heading {
    font-size: 1em;
  }

  .crypto-tax-pop-up {
    padding-left: 0;
    padding-right: 20px;
  }

  .image-13 {
    width: 1.5rem;
    height: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .p1-tax {
    margin-left: -23px;
    font-size: .5rem;
    line-height: .7rem;
  }

  .cryptp-rec-pop-up {
    max-height: none;
    padding-left: 0;
  }

  .button-pop-up {
    width: 8rem;
    height: 2.5rem;
    left: auto;
    right: auto;
  }

  .cookies {
    display: none;
  }

  .paragraph-3 {
    display: flex;
  }

  .section-news {
    padding-left: 20px;
    padding-right: 20px;
  }

  .extended-news {
    width: auto;
  }

  .image-news-block {
    height: 336px;
  }

  .title-link-image-block {
    font-size: 1.5rem;
  }

  .image-news {
    height: 200px;
  }

  .grid-list-news {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .grid-text-list-news {
    margin-left: 0;
  }

  .columns-5 {
    display: flex;
  }

  .heading-style-h2-news {
    font-size: 2.5rem;
  }

  .columns-6 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .announc-text, .blog-after-title {
    font-size: .875rem;
  }

  .heading-6 {
    width: 100%;
  }

  .heading-style-h2-contact {
    text-align: center;
  }

  .education-after-title {
    font-size: .875rem;
  }

  .div-block-7 {
    grid-template-columns: 1fr;
  }

  .div-block-10 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .image-31 {
    margin-top: 24px;
  }

  .div-block-16 {
    width: 100%;
  }

  .lessons-for-you-1 {
    margin-top: 1rem;
  }

  .big-video-item {
    height: 400px;
  }

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

  .price-heading {
    line-height: 2.1rem;
  }

  .text-size-regular-copy {
    padding-left: 5px;
    padding-right: 5px;
  }

  .div-block-18 {
    max-width: 24rem;
  }

  .heading-style-h3-core {
    text-align: center;
  }

  .test-content {
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
  }

  .image-46 {
    max-width: 200px;
  }

  .preview-test-item {
    min-width: auto;
  }

  .heading-16 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .test-item-divider {
    width: 40%;
  }

  .test-item-intro-text {
    width: 80%;
    font-size: 1.2rem;
  }

  .text-block-13 {
    text-align: center;
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .preview-test {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    width: 100%;
    max-height: none;
  }

  .test-item-1 {
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
  }

  .heading-test {
    max-width: 90%;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .description-test {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .circle-empty {
    width: 20px;
    max-width: 20px;
  }

  .text-block-15 {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .test-item-2 {
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
  }

  .image-50 {
    width: 40px;
    max-width: 45px;
    height: 40px;
  }

  .button-back {
    border-radius: 12px;
    width: 50px;
    height: 50px;
  }

  .test-item-3, .test-item-4, .test-item-5, .test-item-6, .test-item-7, .test-item-8, .test-item-9, .test-item-10, .test-item-11, .test-item-12, .test-item-13, .test-item-14, .test-item-15 {
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
  }

  .rate-answer {
    position: relative;
  }

  .test-item-16, .test-item-17, .test-item-18, .test-item-19 {
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
  }

  .description-test-adittional {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .test-item-20 {
    margin-left: 10%;
    margin-right: 10%;
  }

  .case-id-text {
    font-size: 1rem;
  }

  .next-steps-text {
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .button-schedule-call {
    width: 10rem;
  }

  .button-text-test {
    font-size: 1rem;
  }

  .button-read-guide {
    width: 10rem;
  }

  .bottom-text {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .button-forward {
    border-radius: 12px;
    width: 50px;
    height: 50px;
  }

  .rate-3 {
    left: 47%;
    right: auto;
  }

  .rate-4 {
    left: 68%;
  }

  .rate-5 {
    right: 0%;
  }

  .circle-checked {
    width: 21px;
    max-width: 21px;
  }

  .body-4 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
  }

  .navbar-2, .section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section.gray.etr-2 {
    background-position: 100% -100px;
    background-size: 70%;
  }

  .section.gray.etr-1 {
    background-position: 110% -100px;
    background-size: 70%;
  }

  .section.gray.etr-3 {
    background-image: url('../images/ethereum_1.webp');
    background-repeat: no-repeat;
    background-size: auto;
  }

  .copyright-text-wrapper {
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .copyright-link-legal-page {
    display: none;
  }

  .copyright-text {
    font-size: 8px;
  }

  .footer-top-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .footer-nav-link {
    font-size: 15px;
  }

  .footer-navigation-wrapper {
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-title.gradient-text {
    font-size: 17px;
  }

  .footer-contact-groups-wrapper {
    flex-flow: column;
  }

  .footer-contact-link, .footer-label {
    font-size: 12px;
  }

  .footer-hours-days-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 100%;
    align-items: center;
    width: 100%;
  }

  .footer-social-wrapper {
    justify-content: center;
    align-items: center;
  }

  .footer-certificates-wrapper {
    justify-content: center;
  }

  .footer-hours-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .footer-hours-day-group {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-between;
  }

  .cta-wrapper {
    background-image: linear-gradient(90deg, var(--_redesign-style---green), var(--_redesign-style---green-light) 50%, var(--_redesign-style---green));
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-button {
    padding-left: 90px;
    padding-right: 90px;
    font-size: 14px;
  }

  .footer-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-51 {
    width: 136.484px;
    inset: auto auto 30px -26px;
    transform: rotateX(180deg)rotateY(180deg)rotateZ(0);
  }

  .crypto-easy-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .container-24 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-53 {
    display: none;
  }

  .crypto-easy-image {
    max-height: 320px;
  }

  .crypto-easy-content-wrapper {
    align-items: stretch;
  }

  .section-heading, .section-heading.center {
    font-size: 28px;
  }

  .section-heading.center-mob {
    text-align: center;
  }

  .subheading {
    font-size: 15px;
  }

  .overview-description-paragraph {
    font-size: 12px;
  }

  .overview-description-paragraph.center {
    text-align: left;
  }

  .highlighted-description {
    text-align: left;
    font-size: 12px;
  }

  .crypto-easy-button-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .services-overview-heading-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
  }

  .services-overview-content-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    display: flex;
  }

  .services-overview-image {
    object-position: 50% 20%;
    max-height: 360px;
  }

  .services-overview-cards-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .services-overview-card {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .services-overview-card-content {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 12px;
  }

  .services-overview-card-icon-container {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    padding: 10px;
  }

  .crypto-asset-recovery-cards-wrapper {
    flex-flow: column;
    display: flex;
  }

  .card {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding: 20px 20px 25px;
  }

  .card-icon-container, .card-icon-container._70 {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    padding: 10px;
  }

  .crypto-asset-recovery-card-label {
    font-size: 14px;
  }

  .image-56 {
    width: 136.484px;
    top: 0;
    transform: rotateX(180deg)rotateY(0)rotateZ(0);
  }

  .experts-team-wrapper {
    margin-top: -60px;
    margin-bottom: 40px;
  }

  .team-section-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .team-members-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .team-member-card {
    align-items: center;
    height: auto;
  }

  .crypto-recovery-cards-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .crypto-recovery-wrapper {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 40px;
  }

  .crypto-recovery-wrapper.top-mar-0 {
    margin-top: 0;
  }

  .image-58 {
    width: 136.484px;
    bottom: 2%;
    left: -30px;
    transform: rotateX(180deg)rotateY(0)rotateZ(0);
  }

  .supported-platforms-logos-wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .supported-platforms-logo-item {
    height: 55px;
  }

  .supported-platforms-heading {
    font-size: 20px;
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero-content-wrapper {
    grid-template-rows: 1fr 40px auto;
    grid-template-columns: 1fr;
  }

  .hero-or-divider-wrapper {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
  }

  .hero-alternative-heading {
    font-size: 24px;
  }

  .hero-alternative-button {
    font-size: 13px;
  }

  .hero-form-row {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    align-items: stretch;
    display: flex;
  }

  .hero-form-fields-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
  }

  .submit-button-2 {
    font-size: 13px;
  }

  .image-64 {
    opacity: 1;
    width: 136.484px;
    top: 30px;
    left: -45px;
    transform: rotateX(180deg)rotateY(0)rotateZ(0);
  }

  .image-65 {
    width: 136.484px;
    bottom: 0;
    right: -23px;
    transform: rotateX(180deg)rotateY(0)rotateZ(0);
  }

  .hero-form {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    display: flex;
  }

  .hero-background-wrapper._140 {
    top: 400px;
  }

  .hero-background-blur {
    background-image: linear-gradient(180deg, #0000, var(--_redesign-style---black-green) 51%);
  }

  .social-news-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .social-news-wrapper.pad-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .social-news-head-wrapper {
    justify-content: center;
  }

  .news-navigation-button {
    min-width: 40px;
    min-height: 40px;
  }

  .news-navigation-wrapper {
    position: static;
  }

  .news-navigation-wrapper.list {
    display: flex;
  }

  .social-news-items-new {
    justify-content: space-between;
    display: flex;
  }

  .item-new {
    width: 100%;
  }

  .item-new.mob {
    display: none;
  }

  .source-logo-new {
    min-width: 38px;
    max-width: 38px;
    min-height: 38px;
    max-height: 38px;
  }

  .web-news-items-new {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .news-image-new {
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
  }

  .item {
    width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }

  .item.mob, .image-69 {
    display: none;
  }

  .mindmap-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: auto;
    grid-auto-columns: auto;
    margin-top: 40px;
  }

  .mindmap-cards-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .mindmap-card-paragraph-top {
    font-size: 12px;
  }

  .mindmap-card-subheading {
    font-size: 15px;
  }

  .mindmap-card-heading {
    font-size: 18px;
  }

  .mindmap-center-wrapper {
    margin-bottom: 14px;
  }

  .mindmap-center-wrapper.mob-none, .mindmap-line-top-right, .mindmap-line-top-left, .mindmap-line-bottom-right, .mindmap-line-bottom-left {
    display: none;
  }

  .image-70 {
    width: 136.484px;
    height: 50px;
    top: 30px;
    left: -19px;
    transform: rotateX(180deg)rotateY(0)rotateZ(0);
  }

  .hero-form-headings {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .hero-form-heading {
    font-size: 30px;
    font-weight: 500;
    line-height: 130%;
  }

  .hero-form-subheading {
    font-size: 13px;
    line-height: 130%;
  }

  .text-block-39 {
    justify-content: center;
    align-items: flex-start;
  }

  .supported-platforms-logos-line-wrapper, .crypto-asset-recovery-description-wrapper, .experts-intro-icon-wrapper {
    display: none;
  }

  .footer-contact-group {
    grid-column-gap: 15px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 42% auto;
  }

  .footer-additional-group {
    justify-content: space-between;
  }

  .team-member-photo {
    object-fit: cover;
    object-position: 50% 0%;
    max-width: 70%;
    min-height: 120%;
    max-height: 120%;
  }

  .navbar-logo-link.w--current {
    display: flex;
  }

  .image-73, .hero-logo {
    display: none;
  }

  .recovery-hero-description-wrapper {
    flex-flow: column;
    align-items: stretch;
  }

  .recovery-hero-description-text.mob-center {
    justify-content: flex-start;
    align-items: center;
  }

  .crypto-recovery-paragraph {
    text-align: center;
    font-size: 12px;
  }

  .div-block-128, .pricing-cards-grid {
    flex-flow: column;
    display: flex;
  }

  .pricing-card {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    align-items: stretch;
    padding: 20px;
  }

  .pricing-card-type {
    font-size: 20px;
  }

  .pricing-price-title {
    font-size: 30px;
  }

  .pricing-card-price-wrapper {
    height: 60px;
  }

  .pricing-card-title {
    font-size: 17px;
  }

  .pricing-card-feature-text {
    font-size: 12px;
  }

  .pricing-card-button {
    padding: 16px 20px;
    font-size: 14px;
  }

  .text-block-45 {
    font-size: 13px;
  }

  .div-block-138 {
    flex-flow: column;
    display: flex;
  }

  .pricing-card-inner, .faq-item-header {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-toggle-button {
    min-width: 40px;
    min-height: 40px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .div-block-141 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    align-items: stretch;
    display: flex;
  }

  .trending-news {
    flex-flow: column;
    width: 100%;
  }

  .image-news-new {
    height: 200px;
  }

  .title-link-image-block-new {
    font-size: 18px;
  }

  .item-list-news-new.mob {
    display: none;
  }

  .image-list-news-new {
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
  }

  .trending-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .image-news-block-new {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .div-block-146 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-description-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .image-74 {
    max-width: 120%;
  }

  .image-75 {
    width: 136.484px;
    inset: 40px 0% auto auto;
    transform: rotateX(0)rotateY(180deg)rotateZ(0)rotateX(180deg)rotateY(0)rotateZ(0);
  }

  .core-values-heading-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .core-values-description {
    font-size: 12px;
  }

  .core-values-cards-wrapper {
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .image-76 {
    object-fit: contain;
    max-width: 80%;
  }

  .mission-vision-cards-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    display: flex;
  }

  .blog-page-image {
    object-fit: cover;
    width: 100%;
    min-width: 100%;
    max-height: 200px;
  }

  .blog-featured-icon.desk {
    display: none;
  }

  .blog-featured-icon.mob {
    min-width: auto;
    min-height: 100px;
    max-height: 100px;
    display: block;
  }

  .blog-featured-title {
    font-size: 20px;
  }

  .blog-featured-description {
    font-size: 12px;
  }

  .blog-insights-wrapper {
    grid-row-gap: 15px;
    flex-flow: column;
    display: flex;
  }

  .blog-article-card, .blog-article-description-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .blog-article-title {
    font-size: 17px;
  }

  .blog-article-subtitle {
    font-size: 30px;
  }

  .blog-article-description-paragraph {
    font-size: 12px;
  }

  .blog-cms-list {
    flex-flow: column;
    display: flex;
  }

  .blog-cms-image {
    max-height: 200px;
  }

  .blog-cms-title {
    max-height: 45px;
    font-size: 17px;
  }

  .blog-cms-description {
    max-height: 47px;
    font-size: 12px;
  }

  .blog-page-image-wrapper {
    min-width: 100%;
  }

  .blog-featured-title-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .line-top-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ebooks-hero-inner-wrapper {
    flex-flow: column;
  }

  .ebooks-content-wrapper {
    justify-content: flex-start;
    align-items: stretch;
  }

  .ebooks-image-decor {
    min-width: 100%;
    margin-left: 0%;
  }

  .ebooks-image-decor.desk {
    display: none;
  }

  .ebooks-image-decor.mob {
    display: block;
  }

  .ebooks-subheading {
    text-align: center;
    white-space: normal;
    font-size: 12px;
  }

  .lessons-slider {
    display: flex;
  }

  .left-arrow {
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    inset: auto 0% -20px -30px;
  }

  .right-arrow {
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    top: -20px;
    right: -30px;
  }

  .lessons-slider-mask, .lessons-slider-mask._25 {
    width: 100%;
  }

  .lesson-slide.mob {
    display: none;
  }

  .lessons-caption-text {
    font-size: 16px;
  }

  .lessons-slide.mob {
    width: 100%;
    overflow: visible;
  }

  .image-83 {
    width: 136.484px;
  }

  .ebooks-grid-wrapper {
    flex-flow: column;
    display: flex;
  }

  .ebook-title {
    font-size: 16px;
  }

  .ebook-button {
    font-size: 14px;
  }

  .ebooks-image-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .text-block-57 {
    font-size: 12px;
  }

  .rich-text-block p {
    font-size: 14px;
  }

  .rich-text-block h2 {
    font-size: 30px;
  }

  .heading-18 {
    font-size: 24px;
  }

  .div-block-180 {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .div-block-182, .text-block-58 {
    font-size: 14px;
  }

  .contact-page-form {
    flex-flow: column;
    display: flex;
  }

  .div-block-188 {
    width: 100%;
    display: block;
  }

  .div-block-194 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .div-block-197 {
    padding-top: 0%;
  }

  .form-2 {
    max-width: 100%;
  }

  .heading-19 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .div-block-219 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    display: flex;
  }

  .next-button, .back-button {
    width: 50px;
    height: 50px;
  }

  .skip-button, .submit {
    height: 50px;
  }

  .div-block-230 {
    padding: 10px 25px;
  }

  .text-block-66 {
    font-size: 22px;
  }

  .div-block-231 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .div-block-232 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    max-width: none;
  }

  .text-block-67 {
    font-size: 17px;
  }

  .div-block-235 {
    display: none;
  }

  .div-block-240 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    display: flex;
  }

  .div-block-241 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 20px;
  }

  .div-block-242 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .text-block-68 {
    font-size: 17px;
  }

  .text-block-69 {
    font-size: 12px;
  }

  .div-block-243 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .text-block-70 {
    font-size: 12px;
  }

  .text-block-71 {
    font-size: 20px;
  }

  .image-87 {
    height: 80px;
    top: 10px;
    right: 10px;
  }

  .div-block-246 {
    flex-flow: column;
    display: flex;
  }

  .div-block-247 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    display: flex;
  }

  .text-block-72 {
    font-size: 12px;
  }

  .div-block-251 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .div-block-252 {
    grid-template-columns: 1fr;
    display: flex;
  }

  .div-block-253 {
    padding: 20px;
  }

  .text-block-74 {
    font-size: 22px;
  }

  .text-block-75 {
    font-size: 12px;
  }

  .div-block-255 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .div-block-257 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-258 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 100%;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-block-77 {
    font-size: 12px;
  }

  .text-block-78 {
    font-size: 18px;
  }

  .div-block-259, .div-block-260, .div-block-261, .div-block-262 {
    display: none;
  }

  .image-90 {
    order: -1;
    align-self: center;
    width: 130px;
    min-width: auto;
    max-width: none;
    min-height: auto;
  }

  .div-block-265 {
    flex-flow: column;
    display: flex;
  }

  .div-block-266 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .div-block-267 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: center;
    align-items: center;
  }

  .heading-20 {
    font-size: 28px;
  }

  .text-block-79 {
    font-size: 12px;
  }

  .image-92 {
    width: 100%;
    height: 360px;
  }

  .div-block-268 {
    padding: 15px;
  }

  .div-block-269 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 100%;
  }

  .text-block-80 {
    font-size: 20px;
  }

  .image-93 {
    display: none;
  }

  .image-94 {
    mix-blend-mode: lighten;
    display: block;
  }

  .text-block-81 {
    font-size: 12px;
  }

  .div-block-270 {
    order: 1;
  }

  .image-95 {
    width: 40px;
  }

  .div-block-271 {
    display: none;
  }

  .div-block-272 {
    order: -1;
    width: 100%;
  }

  .text-block-82 {
    font-size: 14px;
  }

  .div-block-275 {
    min-width: 4px;
    max-width: 4px;
    min-height: 4px;
    max-height: 4px;
  }

  .div-block-276 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .image-96 {
    max-height: 160px;
  }

  .div-block-278 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    display: flex;
  }

  .div-block-279 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .paragraph-16 {
    font-size: 14px;
  }

  .div-block-281 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .div-block-287 {
    padding: 10px 60px 10px 20px;
  }

  .fs-consent_banner_paragraph {
    font-size: 14px;
  }

  .fs-consent_allow {
    padding: 12px 20px;
    font-size: 16px;
  }

  .fs-cc_close-button {
    margin-right: 1.25rem;
  }

  .fs-cc_modal-buttons {
    padding: 1.5rem;
  }

  .cookie-preference_wrapper {
    padding-top: 2rem;
  }

  .fs-cc_close-button-2 {
    margin-right: 1.25rem;
  }

  .fs-cc_modal-buttons-2 {
    padding: 1.5rem;
  }

  .fs-cc_close-button-3 {
    margin-right: 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  h2 {
    font-size: 1.7rem;
    line-height: 2.2rem;
  }

  h3 {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

  h4, h5 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  h6 {
    line-height: 1.4rem;
  }

  .utility-page-content {
    width: 18rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-style-h2 {
    font-size: 1.5rem;
    line-height: 2.2rem;
    display: block;
  }

  .container-large {
    flex-flow: column;
    display: flex;
  }

  .heading-style-h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.8rem;
  }

  .text-size-regular {
    font-size: .875rem;
  }

  .text-size-regular.is-white {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .text-size-regular.h {
    text-align: center;
  }

  .text-size-small {
    font-size: .9rem;
  }

  .text-size-small.text-color-white-200 {
    text-align: left;
    justify-content: center;
    align-items: center;
    line-height: 1rem;
    display: flex;
  }

  .button {
    float: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: .8rem;
    line-height: 1rem;
    display: flex;
    position: relative;
  }

  .padding-section-medium {
    flex-flow: column;
    align-items: stretch;
    padding-bottom: 0;
    display: flex;
  }

  .padding-section-medium.is-header {
    margin-bottom: 0;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }

  .padding-section-medium._1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-global {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-section-large {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .padding-section-large.is-header {
    padding-top: 2.5rem;
  }

  .padding-section-large.padding-top-medium {
    padding-bottom: 2.5rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h6 {
    font-size: .85rem;
    line-height: 1.2rem;
  }

  .padding-bottom.padding-large {
    padding-bottom: 2rem;
  }

  .padding-bottom.padding-small {
    padding-bottom: 1.2rem;
  }

  .padding-bottom.padding-medium {
    padding-bottom: 1.8rem;
  }

  .padding-bottom.padding-large {
    padding-bottom: 2rem;
    display: none;
  }

  .utility-page-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  ._404-component {
    padding: 5rem 1rem;
  }

  ._404-image {
    max-width: 35%;
  }

  .password-field {
    flex-flow: column;
  }

  .password-input {
    width: 16.3rem;
  }

  .page-wrapper {
    flex-flow: column;
    padding-bottom: 40px;
    display: flex;
  }

  .main-wrapper {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .nav-brand-logo-wrapper {
    width: 40%;
  }

  .nav-brand-logo-wrapper.w--current {
    width: 80%;
  }

  .nav-menu {
    padding: 1.25rem 1rem;
  }

  .section-hero {
    flex-flow: column;
    margin-bottom: 0;
    padding: 0 5%;
    display: block;
  }

  .section-hero.h {
    padding-left: 0%;
    padding-right: 0%;
  }

  .hero-component {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    flex-flow: column;
  }

  .hero-image-wrapper._02 {
    justify-content: flex-end;
    align-items: center;
    width: auto;
    height: 53rem;
    display: flex;
    position: static;
  }

  .hero-image-wrapper._01 {
    display: none;
  }

  .about-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .about-component.is-about {
    padding-top: 2.5rem;
  }

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

  .about-image-wrapper, .section-service {
    width: 100%;
  }

  .value-component {
    padding-bottom: 0;
  }

  .service-collection-list-wrapper {
    flex-flow: column;
    align-items: stretch;
    display: flex;
  }

  .value-card {
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 1rem 1rem 1.5rem;
  }

  .section-cta {
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-cta.padding {
    padding-left: 0;
    padding-right: 0;
  }

  .section-team {
    margin-top: 2rem;
  }

  .team-component {
    flex-flow: column;
    display: flex;
  }

  .team-top-content-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .team-collection-list {
    grid-column-gap: 1rem;
    display: inline-flex;
  }

  .team-collection-list.team-collection-list-3 {
    grid-column-gap: .1rem;
    grid-auto-flow: row;
    place-items: stretch center;
    display: inline-grid;
  }

  .team-card-content-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 47.7461%;
    padding-left: 0;
    padding-right: 0;
    position: static;
  }

  .team-card-content {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .cta-component {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
  }

  .cta-content-wrapper {
    padding: .5rem;
  }

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

  .faq-accordion {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .blog-top-content-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    flex: 0 auto;
    order: 0;
    justify-content: flex-start;
    align-self: auto;
    align-items: stretch;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
  }

  .blog-card {
    flex-flow: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .blog-image-wrapper {
    width: auto;
    height: auto;
  }

  .footer-grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.9rem;
    grid-template-columns: 1fr 1.5fr;
  }

  .contact-left-content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-form-block {
    flex-flow: column;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
  }

  .contact-form {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-content: end stretch;
    justify-items: stretch;
    width: 100%;
    display: inline-flex;
  }

  .input {
    width: 100%;
    font-size: .8rem;
    display: inline-flex;
  }

  .project-details-bottom-content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .project-details-top-bottom-content {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .service-details-top-content-wrapper, .service-details-right-content-wrapper {
    padding: 1.5rem 1rem;
  }

  .service-form {
    grid-column-gap: 1.3rem;
    grid-row-gap: 1.3rem;
  }

  .service-details-bottom-content-wrapper, .team-details-top-content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team-details-bottom-content-wrapper {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .blog-details-top-content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .blog-details-left-bottom-content-wrapper {
    text-align: center;
    flex-flow: column;
  }

  .blog-details-bottom-left-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .blog-details blockquote {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .blog-details-bottom-right-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-social-icon-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .mission-bottom-content-wrapper {
    margin-top: 40px;
  }

  .mission-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .value-top-content-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }

  .value-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    display: flex;
  }

  .text-size-regular-2 {
    font-size: .875rem;
  }

  .button-2 {
    text-align: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
  }

  .footer-grid-2 {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.9rem;
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-link-3 {
    font-size: .6rem;
  }

  .hero-right-content-wrapper-2 {
    width: 90vw;
    height: 54rem;
    margin-top: -85px;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    overflow: visible;
  }

  .hero-right-content-2 {
    width: 90vw;
    height: auto;
    display: block;
  }

  .hero-image-2._03 {
    opacity: 0;
    display: block;
  }

  .grid-2 {
    grid-template-rows: auto 102px auto;
    width: 200px;
  }

  .sitelinks-title {
    margin-top: 0;
    font-size: 15px;
    display: block;
  }

  .regular-font-8 {
    text-align: center;
    width: 100%;
    font-size: .875rem;
  }

  .footer-brand-logo-2 {
    width: 50%;
    padding-bottom: 10%;
  }

  .footer-link-list-wrapper-3 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .footer-grid-3 {
    grid-column-gap: 1rem;
    grid-row-gap: 2.9rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    display: inline-grid;
  }

  .text-block {
    font-size: .6rem;
  }

  .text-color-green-2 {
    flex-flow: row;
    line-height: 2.2rem;
  }

  .text-size-regular-9 {
    font-size: .875rem;
  }

  .heading-style-h2-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 1.5rem;
    display: flex;
  }

  .toggle-switch-contact {
    flex-flow: row;
    width: 100%;
    left: auto;
  }

  .name-field, .email-field {
    height: auto;
  }

  .phone-field {
    justify-content: flex-start;
    height: auto;
    display: inline-flex;
  }

  .message-subject-field {
    flex-flow: column;
    justify-content: flex-start;
    height: auto;
    display: inline-flex;
  }

  .investment-field, .specialist-field, .country-field, .town-field {
    height: auto;
  }

  .source-info {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: .25fr 2.25fr;
    justify-content: space-between;
    width: 100%;
    display: flex;
  }

  .title-link {
    text-overflow: ellipsis;
    flex-flow: row;
    max-width: 100%;
    max-height: 41.7391%;
    margin-top: 15px;
    margin-left: 0;
    display: flex;
    overflow: hidden;
  }

  .source-name {
    font-size: .8rem;
  }

  .time-since {
    font-size: .8rem;
    line-height: 1rem;
  }

  .social-news-items {
    width: 100%;
  }

  .news-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: left;
    flex-flow: column;
    grid-template-rows: 83px auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: center start;
    width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
  }

  .grid-4 {
    place-items: stretch stretch;
    width: 100%;
  }

  .item1-web {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .item2-web {
    width: 100%;
  }

  .title-link-web {
    font-size: .75rem;
  }

  .item4-web {
    width: 100%;
    display: inline;
  }

  .web-comtainer {
    width: 90vw;
    padding-left: 0;
    padding-right: 0;
  }

  .item3-web {
    width: 100%;
    display: inline;
  }

  .web-news-items-2 {
    clear: none;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    object-fit: fill;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .pagination-2 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-auto-flow: row dense;
    place-items: center;
    margin-left: 0;
    margin-right: 0;
    display: inline-grid;
  }

  .pagbuttonprev-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-position: 0%;
    background-size: cover;
    width: 50px;
    height: 15px;
    margin-left: -10px;
    padding-right: 0%;
    font-size: .75rem;
  }

  .source-logo-3 {
    display: none;
  }

  .pagbuttonnext-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-position: 100%;
    justify-content: flex-start;
    align-items: center;
    width: 50px;
    height: 15px;
    margin-left: 0;
    margin-right: -44px;
    padding-left: 0%;
    font-size: .75rem;
    display: flex;
  }

  .social-container-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -webkit-text-fill-color: inherit;
    vertical-align: middle;
    object-fit: fill;
    background-clip: border-box;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 10px;
    display: inline-flex;
    position: static;
  }

  .container1 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .container2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: auto;
    display: inline-flex;
  }

  .field-label-2, .field-label-3 {
    font-size: .75rem;
  }

  .field-label-4, .field-label-5 {
    height: auto;
    font-size: .75rem;
  }

  .field-label-6, .field-label-7, .field-label-8, .field-label-9, .field-label-10 {
    font-size: .75rem;
  }

  .toggle-option-contact {
    font-size: .8rem;
  }

  .toggle-option-contact.active {
    color: var(--neutral--white-100);
    font-size: .8rem;
  }

  .text-block-4 {
    font-size: .7rem;
  }

  .body {
    overflow: visible;
  }

  .modal-wrapper {
    opacity: 0;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none;
    overflow: visible;
  }

  .container {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 16px 0 4px;
  }

  .pop-up-heading {
    margin-bottom: 16px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .pop-up-litle-heading {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .crypto-tax-pop-up {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    margin-bottom: 4px;
    padding-top: 0;
    padding-bottom: 16px;
    padding-left: 20px;
  }

  .image-13 {
    width: 30px;
    max-width: none;
    height: 30px;
  }

  .column-2 {
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }

  .p1-tax {
    margin-left: 0;
    padding-left: 16px;
    font-size: .8rem;
    line-height: 1.2rem;
  }

  .cryptp-rec-pop-up {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 0 20px 8px;
  }

  .button-pop-up {
    float: none;
    text-align: center;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 12rem;
    margin-top: 0%;
    margin-bottom: 16px;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    display: flex;
    position: static;
  }

  .cookies {
    flex-flow: column;
    width: 100%;
    height: 220px;
    display: none;
  }

  .paragraph-3 {
    font-size: .7rem;
    line-height: 1rem;
  }

  .heading-3 {
    font-size: 1.5rem;
  }

  .button-accept {
    float: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 120px;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    display: flex;
    position: relative;
  }

  .image-20 {
    width: 40px;
    height: 40px;
  }

  .columns-2 {
    width: 65%;
    margin-bottom: 10px;
  }

  .button-decline {
    float: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 120px;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    display: flex;
    position: relative;
  }

  .button-contact {
    float: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    display: block;
    position: relative;
  }

  .section-news {
    flex-flow: column;
    width: 100%;
    margin-top: 40px;
  }

  .extended-news {
    flex-flow: wrap;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }

  .image-news-block {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    height: auto;
  }

  .title-link-image-block {
    font-size: .75rem;
  }

  .columns-3 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .image-news {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    height: 200px;
  }

  .list-news {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 90vw;
    margin-bottom: 45px;
    display: flex;
  }

  .item-list-news {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .grid-list-news {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    place-items: stretch stretch;
    width: 100%;
    height: 100px;
    display: flex;
  }

  .image-list-news {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    height: 100px;
  }

  .grid-text-list-news {
    flex-flow: column;
    margin-top: 0;
    margin-left: 0;
  }

  .source-list-news {
    margin-top: 0;
    padding-bottom: 0;
    font-size: .7rem;
  }

  .title-link-list-news {
    font-size: .75rem;
  }

  .body-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .columns-5 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .column-6 {
    justify-content: center;
    display: flex;
  }

  .column-7 {
    display: flex;
  }

  .heading-style-h2-news {
    font-size: 2rem;
    line-height: 3rem;
    display: inline-block;
  }

  .big-announcement {
    padding-left: 0%;
    padding-right: 0%;
  }

  .blog-top-container-wrapper {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .announc-container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .announc-title-container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    padding-left: 0;
    display: flex;
  }

  .columns-6 {
    flex-flow: column;
  }

  .announc-title {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    font-size: 1rem;
    line-height: 1.5rem;
    display: flex;
    position: static;
  }

  .announc-text {
    font-size: .875rem;
  }

  .announc-text.is-white {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .list-announcement {
    margin-top: -67px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .list-container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .list-title {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    font-size: 1.5rem;
    line-height: 2rem;
    display: flex;
    position: static;
  }

  .list-text {
    text-align: center;
    width: 100%;
    font-size: 1rem;
  }

  .list-ann-item {
    justify-content: center;
    align-items: flex-start;
  }

  .product-updates {
    margin-top: -103px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .updates-container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .image-23 {
    height: 13rem;
  }

  .updates-title {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

  .blog-after-title {
    font-size: .875rem;
  }

  .blog-after-title.is-white {
    padding-left: 5%;
    padding-right: 5%;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .video-container {
    width: 100%;
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading-6 {
    width: 100%;
    font-size: 2rem;
    line-height: 3rem;
  }

  .column-8 {
    display: block;
  }

  .column-9 {
    justify-content: center;
    display: flex;
  }

  .heading-style-h2-contact {
    font-size: 2rem;
    line-height: 3rem;
    display: inline-block;
  }

  .paragraph-4 {
    text-align: center;
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .paragraph-5, .paragraph-6 {
    font-size: .8rem;
    line-height: 1.2rem;
  }

  .education-top-container-wrapper {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .education-after-title {
    font-size: .875rem;
  }

  .books {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .slide, .slide-2, .slide-3, .slide-4, .slide-5, .slide-6 {
    width: 100%;
  }

  .crypto-books {
    padding-left: 0;
    padding-right: 0;
  }

  .link {
    max-width: 100%;
  }

  .heading-7 {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .trade-docs {
    width: 100vw;
    padding-left: 5%;
    padding-right: 5%;
  }

  .upd-column {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 0 20px;
    display: flex;
  }

  .columns-9 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .doc-columns {
    flex-flow: column;
    padding-left: 0%;
    padding-right: 0%;
  }

  .doc-column {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .other-docs {
    width: 100vw;
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading-other-docs {
    font-size: 1.5rem;
  }

  .text-block-6 {
    text-align: center;
    font-size: 1.5rem;
  }

  .bold-text-2 {
    font-size: 1.3rem;
  }

  .bold-text-3 {
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1.4rem;
    display: flex;
  }

  .bold-text-5 {
    display: flex;
  }

  .div-block-6 {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-7 {
    grid-column-gap: 48px;
    flex-flow: column;
    padding-bottom: 40px;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
  }

  .heading-8 {
    flex-flow: column;
    align-self: auto;
    align-items: stretch;
    width: 100%;
    display: block;
  }

  .paragraph-7 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .div-block-9 {
    flex-flow: column;
    padding-left: 0%;
    padding-right: 0%;
  }

  .div-block-10 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 2rem 10px 1rem;
  }

  .container-11 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .div-block-12 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-14 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .container-13 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
  }

  .heading-10, .paragraph-10 {
    text-align: center;
  }

  .container-15 {
    padding-top: 64px;
    padding-right: 0;
  }

  .image-28 {
    width: 340px;
  }

  .container-16 {
    margin-top: 0;
    margin-right: 0;
  }

  .image-29 {
    height: 200px;
  }

  .container-17 {
    flex-flow: column;
    margin-top: 32px;
  }

  .container-18 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 40px 5% 0;
  }

  .div-block-15 {
    margin-bottom: 0;
  }

  .container-19 {
    flex-flow: column;
  }

  .paragraph-12, .paragraph-13, .paragraph-14 {
    text-align: center;
  }

  .image-30 {
    margin-bottom: 24px;
    margin-right: 0;
  }

  .image-31, .image-32, .image-33 {
    height: auto;
  }

  .div-block-16 {
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .bold-text-21, .bold-text-24, .bold-text-25 {
    width: 100%;
  }

  .link-block {
    flex-flow: column;
    display: flex;
  }

  .container-21 {
    flex-flow: row;
    align-items: flex-start;
    padding-bottom: 16px;
  }

  .column-13 {
    align-items: flex-start;
    height: auto;
    margin-bottom: 4px;
    padding-bottom: 4px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .column-14 {
    padding-left: 0;
    padding-right: 0;
  }

  .columns-15 {
    flex-flow: column;
    display: flex;
  }

  .name-fields {
    flex-flow: column;
  }

  .first-name, .last-name {
    width: 100%;
  }

  .phone {
    align-items: stretch;
    width: 100%;
  }

  .input-with-icon, .input-icon, .input-icon-text, .input-container, .input-with-icon-text {
    width: 100%;
    font-size: .8rem;
    display: inline-flex;
  }

  .platforms-heading {
    text-align: center;
    font-size: 1.7rem;
  }

  .icons {
    height: auto;
  }

  .image-41 {
    height: 40px;
  }

  .icons-row-1 {
    height: auto;
  }

  .videos-heading {
    text-align: center;
    font-size: 1.5rem;
  }

  .text-block-9 {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .big-video-item {
    height: 300px;
  }

  .big-video-content {
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1rem;
    padding-left: 0;
  }

  .big-video-heading {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .big-video-description {
    font-size: .75rem;
    line-height: 1rem;
  }

  .pricing {
    flex-flow: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .price {
    width: 100%;
    max-width: none;
  }

  .price-heading {
    font-size: 1.6rem;
  }

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

  .team-sphere-heading-tax {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    font-size: 1.5rem;
    display: flex;
    position: static;
  }

  .bold-text-3-copy {
    text-align: center;
    font-size: 1rem;
    line-height: 1.4rem;
    display: flex;
  }

  .text-size-regular-copy {
    text-align: center;
  }

  .div-block-18 {
    max-width: 18rem;
  }

  .heading-style-h3-core, .heading-styles-h3, .heading-style-sh4 {
    font-size: .85rem;
    line-height: 1.2rem;
  }

  .section-legal {
    width: 100vw;
  }

  .text-block-email {
    font-size: .7rem;
  }

  .slider {
    flex-flow: column;
    display: none;
  }

  .recovery-button {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .recovery-button-content {
    font-size: .75rem;
  }

  .recovery-button-text {
    font-size: 1rem;
  }

  .recovery-button-images {
    display: flex;
  }

  .video-container-phone {
    grid-column-gap: 31px;
    grid-row-gap: 31px;
    flex-flow: column;
    display: flex;
  }

  .progress-bar {
    height: 10px;
  }

  .test-content {
    height: auto;
    display: flex;
  }

  .image-46 {
    max-width: 150px;
    margin-bottom: 10px;
  }

  .preview-test-item {
    min-width: auto;
    max-height: none;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .heading-16 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .test-item-divider {
    width: 50%;
  }

  .test-item-intro-text {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .text-block-13 {
    text-align: center;
    font-size: 1.2rem;
  }

  .button-start {
    width: 80%;
    height: 2.5rem;
    margin-top: 1rem;
  }

  .text-block-14 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .preview-test {
    width: 90vw;
    max-height: none;
  }

  .test-item-1 {
    height: auto;
    margin-top: 0%;
    display: flex;
  }

  .heading-test {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .description-test {
    font-size: .8rem;
    line-height: 1rem;
  }

  .answers {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .answer {
    height: 50px;
  }

  .answer.answer-input {
    flex-flow: row;
    display: flex;
  }

  .circle-empty {
    width: 13px;
    max-width: 15px;
  }

  .text-block-15 {
    font-size: .8rem;
    line-height: 1rem;
  }

  .number-test {
    width: 35px;
    min-width: 35px;
    height: 25px;
    min-height: 25px;
  }

  .number-test-text {
    font-size: 1rem;
  }

  .test-item-2 {
    height: auto;
    display: flex;
  }

  .image-50 {
    width: 35px;
    max-width: 35px;
    height: 35px;
  }

  .button-back {
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin-left: 1rem;
  }

  .main-wrapper-test {
    max-width: 100%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .page-wrapper-2-test {
    flex-flow: column;
    padding-bottom: 40px;
    display: flex;
  }

  .link-book-6-1 {
    display: none;
  }

  .link-book-6-2 {
    max-width: 100%;
    display: block;
  }

  .test-item-3, .test-item-4, .test-item-5, .test-item-6, .test-item-7, .test-item-8, .test-item-9, .test-item-10, .test-item-11, .test-item-12, .test-item-13, .test-item-14, .test-item-15, .test-item-16, .test-item-17, .test-item-18, .test-item-19 {
    height: auto;
    display: flex;
  }

  .description-test-adittional {
    font-size: 1rem;
  }

  .test-item-20 {
    height: auto;
  }

  .next-steps-text {
    width: 100%;
    font-size: .8rem;
  }

  .button-schedule-call {
    width: 7rem;
    height: 4rem;
  }

  .button-text-test {
    line-height: 1.2rem;
  }

  .button-read-guide {
    width: 7rem;
  }

  .button-forward {
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin-right: 1rem;
  }

  .div-block-19 {
    width: 100%;
  }

  .heading-17 {
    text-align: center;
    font-size: 1.6rem;
  }

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

  .circle-checked {
    width: 14px;
    max-width: 14px;
  }

  .subtitle {
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1.4rem;
    display: flex;
  }

  .crypto-easy-image {
    max-height: 220px;
  }

  .services-overview-image {
    max-height: 280px;
  }

  .team-section-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .supported-platforms-logo-item {
    width: 23vw;
    height: 50px;
  }

  .hero-alternative-heading-wrapper {
    width: 100%;
  }

  .image-64 {
    display: block;
  }

  .hero-background-wrapper._140 {
    top: 400px;
  }

  .hero-background-blur {
    background-image: linear-gradient(180deg, #0000, var(--_redesign-style---black-green) 40%);
  }

  .faq-item-header {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .faq-toggle-button {
    min-width: 38px;
    min-height: 38px;
  }

  .div-block-191 {
    height: 50px;
  }

  .quiz-step {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .text-block-60 {
    width: auto;
    font-size: .8rem;
    line-height: 120%;
  }

  .div-block-206 {
    width: 35px;
    min-width: 35px;
    height: 25px;
    min-height: 25px;
    font-size: 1rem;
    line-height: 120%;
  }

  .heading-19 {
    max-width: 90%;
  }

  .text-block-61 {
    font-size: .8rem;
  }

  .div-block-207 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .radio-button-field {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    height: 50px;
  }

  .radio-button {
    width: 13px;
    min-width: 13px;
    height: 13px;
    min-height: 13px;
  }

  .radio-button-label {
    white-space: normal;
    font-size: .8rem;
  }

  .text-field-2 {
    font-size: 14px;
  }

  .text-field-3 {
    height: auto;
    font-size: 14px;
    line-height: 120%;
  }

  .radio-button-2 {
    width: 16px;
    height: 16px;
  }

  .radio-button-label-2 {
    font-size: 16px;
  }

  .div-block-211 {
    height: 2px;
    margin-top: 7px;
  }

  .text-block-62 {
    font-size: .8rem;
  }

  .div-block-218 {
    font-size: 14px;
  }

  .text-block-63 {
    font-size: 14px;
    line-height: 120%;
  }

  .div-block-220 {
    height: 50px;
  }

  .div-block-221 {
    display: none;
  }

  .next-button, .back-button {
    width: 40px;
    height: 40px;
  }

  .skip-button {
    height: 40px;
    padding-left: 10px;
    padding-right: 0;
  }

  .quiz-start, .div-block-227 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .submit {
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-240 {
    flex-flow: column;
  }

  .image-87 {
    height: 60px;
  }

  .div-block-246 {
    flex-flow: column;
  }

  .image-92 {
    height: 220px;
  }

  .div-block-287 {
    padding-right: 20px;
  }

  .fs-consent_banner {
    max-width: 100%;
    margin-right: 10px;
  }

  .fs-consent_banner_buttons {
    text-align: center;
    flex-flow: column;
    align-items: stretch;
  }

  .fs-cc_modal {
    max-width: 100%;
  }

  .fs-cc_close-button {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .fs-cc_preference-buttons {
    bottom: 0;
  }

  .fs-cc_preference-component {
    align-items: flex-end;
  }

  .fs-cc_cookie-component {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .cookie-preference_wrapper {
    max-width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-cc_modal-2 {
    max-width: 100%;
  }

  .fs-cc_close-button-2 {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .fs-cc_cookie-component-2 {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .fs-cc_modal-3 {
    max-width: 100%;
  }

  .fs-cc_close-button-3 {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .fs-cc_cookie-component-3 {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .rich-text-block-2 {
    font-size: 14px;
  }

  .div-block-291 {
    width: 60%;
  }

  .image-100 {
    object-fit: cover;
    object-position: 0% 50%;
    border-bottom-right-radius: 10px;
    min-height: 100%;
    overflow: hidden;
  }
}

#w-node-_3e147e6c-2672-ac97-5fb1-10431a1e3fdd-b0f0c215 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: stretch;
}

#w-node-_8af366ec-8e5c-e57e-618d-ae079b7565a6-b0f0c215 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_696f6850-bd85-0320-feef-be001a6bea66-b0f0c215 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-a19bc0d0-f968-2d77-641b-9e7b50f44071-b0f0c215 {
  grid-area: 1 / 7 / 3 / 8;
}

#w-node-_1f1111e3-b37e-48aa-730c-db4c8496f26c-b0f0c215 {
  grid-area: 4 / 1 / 6 / 2;
}

#w-node-_6d4123a2-2caa-5c9e-1146-379bd0693d5e-b0f0c215 {
  grid-area: 4 / 7 / 6 / 8;
}

#w-node-_40b0bed4-85b6-6c07-eb43-a135e3698f66-b0f0c215 {
  grid-area: 3 / 3 / 4 / 6;
}

#w-node-_125bbe5d-22be-8726-b64a-eec0a738863c-b0f0c215 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_8474209f-1d28-b787-53f5-e861aa764960-b0f0c215 {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-_8f27cd90-1da1-6cc5-b69b-9bff481309af-b0f0c215 {
  grid-area: 4 / 2 / 5 / 4;
}

#w-node-_37d14bc6-3df6-7b64-1135-0bf75bd04026-b0f0c215 {
  grid-area: 4 / 5 / 5 / 7;
}

#w-node-_78209639-57de-e9d0-21e1-a3e46a5b63c4-6a5b6386 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_78209639-57de-e9d0-21e1-a3e46a5b63d9-6a5b6386 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_78209639-57de-e9d0-21e1-a3e46a5b63e3-6a5b6386 {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-cecc7906-7182-8801-567b-221ae316f7d5-e316f7cd, #w-node-cecc7906-7182-8801-567b-221ae316f7dc-e316f7cd, #w-node-cecc7906-7182-8801-567b-221ae316f7e3-e316f7cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#source-name1.w-node-f2dfde28-eb44-8569-515e-9abe0139a1fb-0139a1f0, #source-name2.w-node-f2dfde28-eb44-8569-515e-9abe0139a208-0139a1f0, #source-name3.w-node-f2dfde28-eb44-8569-515e-9abe0139a215-0139a1f0, #source-name4.w-node-f2dfde28-eb44-8569-515e-9abe0139a222-0139a1f0 {
  justify-self: start;
}

#w-node-_05d0303c-1cf6-9834-3daa-099f957cf3a4-ffe6a47d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#source-name1.w-node-_5013a592-6904-48a1-8d9f-a93eca8dc2f5-ffe6a47d {
  justify-self: start;
}

#nextBtn.w-node-_5013a592-6904-48a1-8d9f-a93eca8dc31a-ffe6a47d {
  place-self: auto;
}

#w-node-_5013a592-6904-48a1-8d9f-a93eca8dc321-ffe6a47d, #w-node-_5013a592-6904-48a1-8d9f-a93eca8dc329-ffe6a47d, #w-node-_5013a592-6904-48a1-8d9f-a93eca8dc331-ffe6a47d, #w-node-_5013a592-6904-48a1-8d9f-a93eca8dc339-ffe6a47d, #w-node-_5f7203cc-e064-becb-129b-01f4e572fdf4-d0930d5e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5f7203cc-e064-becb-129b-01f4e572fe03-d0930d5e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_5f7203cc-e064-becb-129b-01f4e572fe0c-d0930d5e, #w-node-_5f7203cc-e064-becb-129b-01f4e572fe14-d0930d5e, #w-node-_5f7203cc-e064-becb-129b-01f4e572fe18-d0930d5e {
  align-self: center;
}

#w-node-_5f7203cc-e064-becb-129b-01f4e572fe1a-d0930d5e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_7ee7f68b-ab19-b26c-e105-8a87a4e7caa5-d0930d5e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5f7203cc-e064-becb-129b-01f4e572fe2d-d0930d5e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_5f7203cc-e064-becb-129b-01f4e572fe31-d0930d5e, #w-node-_5f7203cc-e064-becb-129b-01f4e572fe33-d0930d5e, #w-node-_5f7203cc-e064-becb-129b-01f4e572fe35-d0930d5e {
  align-self: center;
}

#w-node-_9828b8b0-7587-0b04-1da6-bd421262536b-d0930d5e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_9828b8b0-7587-0b04-1da6-bd4212625371-d0930d5e {
  align-self: center;
}

#w-node-_95f65c50-08d0-e4d2-1f54-e3cf591b5bcf-d0930d5e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_9828b8b0-7587-0b04-1da6-bd421262536f-d0930d5e, #w-node-_0df375d2-9735-a699-9dcc-50b35048ed74-d0930d5e {
  align-self: center;
}

#w-node-e0ba31df-a935-1bdf-fb40-b2f135ae043b-3b9c609a, #w-node-e0ba31df-a935-1bdf-fb40-b2f135ae0458-3b9c609a {
  justify-self: center;
}

#w-node-ab9d55ee-d575-0d14-29c3-baaf784654fb-ffe6a47f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_09eecb5a-1c17-5c74-56e6-adacf534acad-ffe6a480, #w-node-_26342c4a-064a-d4a7-6f2b-fc4ee82c2963-ffe6a480 {
  justify-self: center;
}

#w-node-f0c68ccd-d5e6-fdd1-8d13-b10b2f9d8d2b-ffe6a484 {
  place-self: center;
}

#message-input.w-node-c3c42b15-f337-8ea8-89f1-83e4516396c9-ffe6a484 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9721c8dd-536d-8670-11da-5ea86479f0b6-ffe6a484 {
  justify-self: start;
}

#w-node-eb331cc4-8111-fab2-0dfa-da289d7fcb47-ffe6a48b {
  order: -9999;
}

#source-name1.w-node-_9729ecca-495a-b7c3-9a5c-fc41ad2d3e90-2bf63f20 {
  justify-self: start;
}

#nextBtn.w-node-_9729ecca-495a-b7c3-9a5c-fc41ad2d3eb4-2bf63f20 {
  place-self: auto;
}

#w-node-_9729ecca-495a-b7c3-9a5c-fc41ad2d3ebf-2bf63f20, #w-node-_9729ecca-495a-b7c3-9a5c-fc41ad2d3ec7-2bf63f20, #w-node-_9729ecca-495a-b7c3-9a5c-fc41ad2d3ecf-2bf63f20, #w-node-_9729ecca-495a-b7c3-9a5c-fc41ad2d3ed7-2bf63f20, #w-node-a5a99121-21dd-44a9-7797-05c5a3ada956-2bf63f20, #w-node-b482f2a7-aeab-0241-3978-8dc657572910-2bf63f20, #w-node-_5b3fddc4-d649-26f8-63d0-e83ac6c62cb7-2bf63f20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#source-name1.w-node-df040808-25c6-facb-813d-af1158acea1f-89a4431d, #source-name2.w-node-df040808-25c6-facb-813d-af1158acea2c-89a4431d {
  justify-self: start;
}

#w-node-e95cce82-8680-d054-ab92-a9060ce3402e-89a4431d, #w-node-e95cce82-8680-d054-ab92-a9060ce34035-89a4431d, #w-node-e95cce82-8680-d054-ab92-a9060ce3403c-89a4431d, #w-node-b5228725-2276-5900-ae5e-d7f46ef91935-89a4431d, #w-node-_229a3f15-1923-78b6-63f7-6e8619a7769d-89a4431d, #w-node-_1c742671-6806-4fed-20ce-8e2ada4f2295-89a4431d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1492e136-19be-cf53-d303-c0661f1b4dd8-7f776f5c {
  align-self: start;
}

#message-input.w-node-_9a178798-91ca-cff5-1a29-a2aa2b749c00-7c2437c6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9a178798-91ca-cff5-1a29-a2aa2b749c04-7c2437c6 {
  grid-area: 5 / 1 / 6 / 3;
  justify-self: stretch;
}

#w-node-eb498b37-213a-c11b-ea02-d9e912224bad-7c2437c6 {
  grid-area: 5 / 1 / 6 / 3;
}

#w-node-_8e9cd0d7-cec0-8f23-dd59-1744d66dbfa5-3c701502 {
  place-self: stretch stretch;
}

#w-node-c3b4cd81-f275-aa65-ba77-a58d1f9c6144-3c701502 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_45436487-df18-8edf-f76f-a9fbf3fef79f-3c701502 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_803c4c62-5e8b-b172-7633-ba18e34daeee-3c701502 {
  place-self: center end;
}

#w-node-f8592c40-6882-2fa4-1a63-56f38baf4047-3c701502 {
  grid-area: 6 / 3 / 7 / 6;
  align-self: center;
}

#w-node-_60ce1cfb-1273-2edc-adaf-6f802bf51d2d-3c701502 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_855fff3d-be9c-a8a3-170b-683decdbacab-3c701502 {
  grid-area: 4 / 1 / 6 / 2;
}

#w-node-ed5c965b-5a3b-760e-5834-fcbb2beae365-3c701502 {
  grid-area: 7 / 1 / 9 / 2;
}

#w-node-d0f708e6-83fd-01dc-8a17-cf78935ae014-3c701502 {
  grid-area: 1 / 7 / 3 / 8;
}

#w-node-f29c2a5a-4be1-cf60-00dc-573bdafa82f1-3c701502 {
  grid-area: 4 / 7 / 6 / 8;
}

#w-node-c5043f29-fd2b-2ed8-b703-da7f7196ac8d-3c701502 {
  grid-area: 7 / 7 / 9 / 8;
}

#w-node-_72fe9521-2827-90d5-eb70-207d811cd85e-3c701502 {
  grid-area: 2 / 2 / 6 / 4;
}

#w-node-_8597b6d5-ed64-45bf-cc2c-27af11e0dc91-3c701502 {
  grid-area: 7 / 2 / 8 / 4;
}

#w-node-_8a83e92f-3734-1984-51f7-6a8f8fba99c8-3c701502 {
  grid-area: 2 / 5 / 6 / 7;
}

#w-node-_82affd1d-5c97-c555-eb94-a19a3d9994c3-3c701502 {
  grid-area: 7 / 5 / 8 / 7;
}

#w-node-_42f1f687-15f4-e328-0493-813928be31a2-3c701502 {
  grid-area: 2 / 4 / 5 / 5;
  place-self: end center;
}

#w-node-_63903731-76fb-241a-8f25-51663801d725-8e06a7d8 {
  grid-area: 3 / 1 / 4 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-_8af366ec-8e5c-e57e-618d-ae079b7565a6-b0f0c215 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_696f6850-bd85-0320-feef-be001a6bea66-b0f0c215 {
    grid-row-start: 2;
  }

  #w-node-a19bc0d0-f968-2d77-641b-9e7b50f44071-b0f0c215 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_1f1111e3-b37e-48aa-730c-db4c8496f26c-b0f0c215 {
    grid-row-end: 5;
  }

  #w-node-_6d4123a2-2caa-5c9e-1146-379bd0693d5e-b0f0c215 {
    grid-column: 1 / 2;
    grid-row-start: 5;
  }

  #w-node-_40b0bed4-85b6-6c07-eb43-a135e3698f66-b0f0c215 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_5f7203cc-e064-becb-129b-01f4e572fdf4-d0930d5e, #w-node-_5f7203cc-e064-becb-129b-01f4e572fe03-d0930d5e, #w-node-_5f7203cc-e064-becb-129b-01f4e572fe1a-d0930d5e, #w-node-_5f7203cc-e064-becb-129b-01f4e572fe2d-d0930d5e, #w-node-_9828b8b0-7587-0b04-1da6-bd421262536b-d0930d5e, #w-node-_95f65c50-08d0-e4d2-1f54-e3cf591b5bcf-d0930d5e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_19f9ab22-0efb-8b84-b0b7-e67dd71082f0-ffe6a48f {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_19f9ab22-0efb-8b84-b0b7-e67dd71082f8-ffe6a48f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f8592c40-6882-2fa4-1a63-56f38baf4047-3c701502 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_3e147e6c-2672-ac97-5fb1-10431a1e3fdd-b0f0c215 {
    grid-row-end: 2;
  }

  #w-node-_8af366ec-8e5c-e57e-618d-ae079b7565a6-b0f0c215 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_696f6850-bd85-0320-feef-be001a6bea66-b0f0c215 {
    grid-row-start: 2;
  }

  #w-node-a19bc0d0-f968-2d77-641b-9e7b50f44071-b0f0c215 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_1f1111e3-b37e-48aa-730c-db4c8496f26c-b0f0c215 {
    grid-row-end: 5;
  }

  #w-node-_6d4123a2-2caa-5c9e-1146-379bd0693d5e-b0f0c215 {
    grid-column: 1 / 2;
    grid-row-start: 5;
  }

  #w-node-_40b0bed4-85b6-6c07-eb43-a135e3698f66-b0f0c215 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-f4678efb-62b3-a9fa-37b5-61721326b62c-6a5b6386 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_78209639-57de-e9d0-21e1-a3e46a5b63d9-6a5b6386 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_78209639-57de-e9d0-21e1-a3e46a5b63e3-6a5b6386 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_5f7203cc-e064-becb-129b-01f4e572fe1a-d0930d5e {
    grid-column: span 2 / span 2;
  }

  #w-node-e0ba31df-a935-1bdf-fb40-b2f135ae0458-3b9c609a {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_694f93db-53f7-39a2-2315-acb85d6adb1c-5d6adb16 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_19f9ab22-0efb-8b84-b0b7-e67dd71082f0-ffe6a48f {
    grid-column: span 3 / span 3;
  }

  #w-node-f8592c40-6882-2fa4-1a63-56f38baf4047-3c701502 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7ee7f68b-ab19-b26c-e105-8a87a4e7caa5-d0930d5e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #enail-input.w-node-ddb614f6-d497-8b6b-1e7a-fefc1ab851de-ffe6a484 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #phone-input.w-node-_2cdf9a69-89f3-799c-7258-ce90a73645d2-ffe6a484 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #message-subj-input.w-node-_7cf2c531-b796-86e6-a2b4-fa59ad3660a1-ffe6a484 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #investment.w-node-_7ad54fa9-e0fc-9204-c5dc-ecb061168bf9-ffe6a484 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #specialist.w-node-_74c84ddf-5268-11e5-187a-95c70fa78586-ffe6a484 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #country.w-node-_29c1f091-3d27-bd61-d92f-0f806d5c3ff5-ffe6a484 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #town.w-node-_4e1a15e4-3e64-dd03-21bc-e991c2ee8631-ffe6a484 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-_19f9ab22-0efb-8b84-b0b7-e67dd71082f0-ffe6a48f {
    grid-column: span 2 / span 2;
  }

  #enail-input.w-node-_9a178798-91ca-cff5-1a29-a2aa2b749be1-7c2437c6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #phone-input.w-node-_9a178798-91ca-cff5-1a29-a2aa2b749be5-7c2437c6 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #message-subj-input.w-node-_9a178798-91ca-cff5-1a29-a2aa2b749beb-7c2437c6 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #investment.w-node-_9a178798-91ca-cff5-1a29-a2aa2b749bf0-7c2437c6 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #specialist.w-node-_9a178798-91ca-cff5-1a29-a2aa2b749bf4-7c2437c6 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #country.w-node-_9a178798-91ca-cff5-1a29-a2aa2b749bf8-7c2437c6 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #town.w-node-_9a178798-91ca-cff5-1a29-a2aa2b749bfc-7c2437c6 {
    grid-area: 6 / 1 / 7 / 2;
  }
}

/* ===========================================
   CUSTOM ADDITIONS - CountWize Enhancements
   =========================================== */

/* Video Player Container - Fixed Aspect Ratio */
.video-player-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 19px 13px rgba(7, 185, 106, 0.19);
  background-color: #000;
  /* Force visibility overrides */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 16 / 9) {
  .video-player-container {
    padding-bottom: 56.25%;
    height: 0;
  }
}

.video-player-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  /* Force visibility overrides */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1;
  background-color: #000;
}

/* Video loading state */
.video-player-container.loading {
  opacity: 0.7 !important;
}

.video-player-container.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(7, 185, 106, 0.3);
  border-top-color: #07B96A;
  border-radius: 50%;
  animation: video-spinner 0.8s linear infinite;
}

@keyframes video-spinner {
  to { transform: rotate(360deg); }
}

/* Lesson Slide Hover Effects */
.lesson-slide {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.lesson-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(7, 185, 106, 0.3);
}

/* Lesson Slide Active State */
.lesson-slide.active {
  border: 2px solid #07B96A;
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(7, 185, 106, 0.4);
}

/* Fix overflow warning for media elements */
img, video, canvas {
  overflow: clip !important;
}

/* Video Player Responsive Adjustments */
@media screen and (max-width: 991px) {
  .video-player-container {
    max-width: 100%;
    border-radius: 8px;
  }
}

@media screen and (max-width: 767px) {
  .video-player-container {
    border-radius: 6px;
    box-shadow: 0 0 10px 6px rgba(7, 185, 106, 0.15);
  }
}

@media screen and (max-width: 479px) {
  .video-player-container {
    border-radius: 4px;
  }
}

/* Title Link Clamp */
.title-link-new {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--neutral--black-800);
}

::-webkit-scrollbar-thumb {
  background: var(--brand--brand-color-third);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand--brand-color-second);
}

/* Form Autofill Styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--neutral--white-0);
  -webkit-box-shadow: 0 0 0px 1000px var(--neutral--black-800) inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* Phone Input Dropdown Fix */
.iti__country-list {
  background-color: var(--neutral--black-800);
  color: var(--neutral--white-0);
  border: 1px solid var(--neutral--gray-600);
}

.iti__country:hover {
  background-color: var(--brand--brand-color-second);
}

.iti__selected-flag {
  background-color: transparent;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand--brand-color-third);
  outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--brand--brand-color-second);
  color: var(--neutral--white-0);
  padding: 0.5rem 1rem;
  z-index: 10000;
  transition: top 0.3s;
}

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

/* Title Link Web - Text truncation */
.title-link-web {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Title Link - Text truncation */
.title-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.title-link:hover {
  text-decoration: underline;
  color: #07b96a;
}

/* Disabled Link State */
.disabled-link {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}

/* Hide Utility */
.hide {
  display: none;
}

/* Recovery Button Wave Animation */
.recovery-button-image {
  opacity: 0.2;
  animation: wave 1.5s infinite ease-in-out;
}

.recovery-button-image:nth-child(1) {
  animation-delay: 0s;
}

.recovery-button-image:nth-child(2) {
  animation-delay: 0.4s;
}

.recovery-button-image:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes wave {
  0%   { opacity: 0.2; }
  33%  { opacity: 1; }
  66%  { opacity: 0.4; }
  100% { opacity: 0.2; }
}

/* Textarea Resizer Hidden */
textarea::-webkit-resizer {
  display: none;
}


/* ==========================================================================
   VISUAL SECTIONS DEEP AUDIT - Part D: Image Optimization
   Phases 56-65: SVG optimization, alt text, loading states
   ========================================================================== */

/* Phase 56-60: SVG icon styling */
.supported-platforms-logo-image,
.services-overview-card-icon-container img,
.card-icon-container img {
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Ensure consistent SVG colors match design system */
.supported-platforms-logo-image {
  filter: brightness(1) contrast(1);
}

/* Phase 61-63: Image loading optimization */
img[loading="lazy"] {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Placeholder style for images that haven't loaded */
img:not([src]),
img[src=""] {
  background-color: rgba(255, 255, 255, 0.05);
  min-height: 40px;
}

/* Phase 64: Ensure proper image aspect ratio */
.services-overview-image {
  aspect-ratio: 734 / 600;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* Hero section images */
.hero-background-img {
  aspect-ratio: auto;
}

/* Phase 65: Image loading states and placeholder effects */
.image-loading-placeholder {
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.05) 25%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0.05) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Decorative images - reduced prominence */
.image-53,
.image-58,
.image-64,
.image-65 {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* Improve icon visibility in dark mode */
.card-icon-container img {
  filter: brightness(0) invert(1); /* White icons on green gradient */
}

.services-overview-card-icon-container img {
  filter: brightness(0.9);
}

/* ==========================================================================
   Additional Visual Polish - Section Specific Improvements
   ========================================================================== */

/* Hero section polish */
.section.hero {
  position: relative;
  overflow: hidden;
}

/* Services overview section */
.services-overview-wrapper {
  position: relative;
}

/* Crypto recovery section cards grid alignment */
.crypto-asset-recovery-wrapper {
  position: relative;
}

/* Ensure proper stacking context for all sections */
.section {
  position: relative;
  isolation: isolate;
}

/* Focus states for accessibility */
.supported-platforms-logo-item:focus,
.card:focus,
.services-overview-card:focus {
  outline: 2px solid var(--_redesign-style---green, #07B96A);
  outline-offset: 4px;
}

/* Smooth scrolling for entire page */
html {
  scroll-behavior: smooth;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
  .circle-block {
    display: none;
  }
  
  .card,
  .supported-platforms-logo-item {
    border-width: 2px;
  }
  
  .card-description {
    color: #e0e0e0;
  }
}
