@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght,slnt,ital@8..144,100..1000,-10..0,0..1&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap'); */
@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}
@font-face {
  font-family: DM Sans;
  src: url("../fonts/DM Sans/DMSans-VariableFont_opsz,wght.ttf");
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf");
}
@font-face {
  font-family: Prompt;
  src: url("../fonts/Prompt/Prompt-Light.ttf");
}
@font-face {
  font-family: Prompt Bold;
  src: url("../fonts/Prompt/Prompt-Bold.ttf");
}
@font-face {
  font-family: Open Sans;
  src: url("..fonts/Open Sans/OpenSans-VariableFont_wdth,wght.ttf");
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf");
}
@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"), url("../fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* ========================================================
   DESIGN SYSTEM - CSS Boilerplate
   Includes: Typography, Colors, Spacing, Layouts, Utilities, Responsive, Animations
======================================================== */
/* =============================
   USAGE NOTES:
   - Font usage:
     - --font-primary: General body text, paragraphs, and UI elements
     - --font-secondary: Headings, blockquotes, featured sections
     - --font-display: Large banners, hero sections, standout headlines
     - --font-accent: For buttons, CTAs, badges, and emphasis elements
     - --font-mono: For <pre>, <code>, and inline code requiring monospace
   - Major Third scale: Best for content-heavy sites, blogs, dashboards
   - Perfect Fourth scale: Best for landing pages, portfolios, storytelling
   - Color system auto-supports dark mode (media query based)
   - Color variables use descriptive names: text, backgrounds, buttons, links
   - Spacing based on 8px scale for consistent rhythm
   - Utility classes: flex, grid, spacing, shadows, border-radius
   - Customize primary color, extend grid as needed
   - Add `.dark` class or use JS toggle for manual dark mode
   - Pre-built z-index layers and simple animation utilities
   - Optimize performance: minify CSS, defer JS, lazy load images
============================= */
/* ===============================
   GLOBAL RESET, BOX-SIZING AND BASE HTML STYLING
================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

html {
  font-size: 16px;
  /* Base font size for rem scaling */
  scroll-behavior: smooth;
  /* Smooth scrolling */
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* =============================
   1. FONT FAMILY SYSTEM
============================= */
:root {
  /* Base font stacks */
  --font-sans: 'Segoe UI', sans-serif;
  --font-serif: 'Segoe UI', sans-serif;
  /* Semantic font roles in logical order with descriptions */
  --font-primary: var(--font-sans);
  /* For body text and general UI */
  --font-secondary: var(--font-serif);
  /* For headings, blockquotes, featured sections */
  --font-display: 'Segoe UI', sans-serif;
  /* For large banners, hero sections, standout headlines */
  --font-accent: 'Segoe UI', sans-serif;
  /* For buttons, CTAs, and emphasis elements */
  --font-mono: 'Fira Code', monospace;
  /* For <pre>, <code> blocks and inline code */
}

/* =============================
   TYPOGRAPHY SCALE OPTIONS
   - Default: Major Third (1.25)
   - Optional: Perfect Fourth (1.333)
   - New Smaller Scale: Minor Second (1.118)
============================= */
:root {
  --h1-size: clamp(1.7rem, 3vw, 2.7rem);
  --h2-size: clamp(1.6rem, 2.5vw, 2.2rem);
  --h3-size: clamp(1.3rem, 2vw, 1.8rem);
  --h4-size: clamp(1.2rem, 1.8vw, 1.6rem);
  --h5-size: clamp(1.05rem, 1.5vw, 1.3rem);
  --h6-size: clamp(1rem, 1.2vw, 1.2rem);
  --p-size: 1rem;
  --display-size: clamp(2.5rem, 2rem + 1vw, 3rem);
  --h1-size: clamp(2rem, 1.5rem + 1.5vw, 2.7rem);
  --h2-size: clamp(1.8rem, 1.3rem + 1.2vw, 2.2rem);
  --h3-size: clamp(1.5rem, 1.1rem + 1vw, 1.8rem);
  --h4-size: clamp(1.3rem, 1rem + 0.8vw, 1.6rem);
  --h5-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.3rem);
  --h6-size: clamp(1rem, 0.8rem + 0.5vw, 1.2rem);
  --p-size: clamp(1rem, 0.9rem + 0.3vw, 1.1rem);
  --display-size: clamp(2.5rem, 2rem + 1.5vw, 3.8rem);
  /* ~3.815rem */
  --h1-size: clamp(2.2rem, 1.8rem + 1.2vw, 3.05rem);
  /* ~3.052rem */
  --h2-size: clamp(1.8rem, 1.5rem + 1vw, 2.44rem);
  /* ~2.441rem */
  --h3-size: clamp(1.5rem, 1.3rem + 0.8vw, 1.95rem);
  /* ~1.953rem */
  --h4-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.56rem);
  /* ~1.563rem */
  --h5-size: clamp(1.1rem, 0.95rem + 0.4vw, 1.25rem);
  /* ~1.25rem */
  --h6-size: clamp(1rem, 0.85rem + 0.3vw, 1.1rem);
  /* ~1.1rem */
  --p-size: clamp(1rem, 0.85rem + 0.25vw, 1.05rem);
  /* base */
  --p-size: .9rem;
}

/* MINOR SECOND SCALE (Recommended for very subtle, understated designs) */
/* :root {
   --h1-size: clamp(1.125rem, 3vw, 1.75rem);
   --h2-size: clamp(1rem, 2.8vw, 1.5rem);
   --h3-size: clamp(0.875rem, 2.5vw, 1.25rem);
   --h4-size: clamp(0.75rem, 2vw, 1rem);
   --h5-size: clamp(0.625rem, 1.8vw, 0.875rem);
   --h6-size: clamp(0.5rem, 1.5vw, 0.75rem);
   --p-size: clamp(0.625rem, 1.8vw, 0.875rem);
} */
/* MINOR THIRD SCALE (Recommended for more subtle, restrained designs) */
/* :root {
   --h1-size: clamp(1.25rem, 4vw, 2rem);
   --h2-size: clamp(1.125rem, 3.5vw, 1.75rem);
   --h3-size: clamp(1rem, 3vw, 1.5rem);
   --h4-size: clamp(0.875rem, 2.5vw, 1.25rem);
   --h5-size: clamp(0.75rem, 2vw, 1rem);
   --h6-size: clamp(0.625rem, 1.5vw, 0.875rem);
   --p-size: clamp(0.75rem, 2vw, 1rem);
} */
/* MAJOR THIRD SCALE (Recommended for content-heavy sites, blogs, dashboards) */
/* :root {
   --h1-size: clamp(1.5rem, 4vw, 2.5rem);
   --h2-size: clamp(1.25rem, 3.5vw, 2rem);
   --h3-size: clamp(1.125rem, 3vw, 1.5rem);
   --h4-size: clamp(1rem, 2.5vw, 1.25rem);
   --h5-size: clamp(0.875rem, 2vw, 1.125rem);
   --h6-size: clamp(0.75rem, 1.5vw, 1rem);
   --p-size: clamp(0.875rem, 2vw, 1rem);
} */
/* PERFECT FOURTH SCALE (Recommended for landing pages, portfolios, storytelling) */
/* :root {
   --h1-size: clamp(2rem, 5vw, 3rem);
   --h2-size: clamp(1.75rem, 4.5vw, 2.5rem);
   --h3-size: clamp(1.5rem, 4vw, 2rem);
   --h4-size: clamp(1.25rem, 3.5vw, 1.5rem);
   --h5-size: clamp(1rem, 3vw, 1.25rem);
   --h6-size: clamp(0.875rem, 2.5vw, 1rem);
   --p-size: clamp(1rem, 2.5vw, 1.125rem);
} */
/* BOOTSTRAP SCALE (Recommended for general-purpose websites) */
/* :root {
   --h1-size: clamp(2.25rem, 5vw, 3.5rem);
   --h2-size: clamp(1.75rem, 4.5vw, 2.5rem);
   --h3-size: clamp(1.5rem, 4vw, 2rem);
   --h4-size: clamp(1.25rem, 3.5vw, 1.5rem);
   --h5-size: clamp(1rem, 3vw, 1.25rem);
   --h6-size: clamp(0.875rem, 2.5vw, 1rem);
   --p-size: clamp(1rem, 2.5vw, 1.125rem);
} */
/* PERFECT FIFTH SCALE (Recommended for bold typographic statements, creative sites) */
/* :root {
   --h1-size: clamp(2.25rem, 5.5vw, 3.5rem);
   --h2-size: clamp(1.75rem, 4.5vw, 2.5rem);
   --h3-size: clamp(1.5rem, 4vw, 2rem);
   --h4-size: clamp(1.25rem, 3.5vw, 1.5rem);
   --h5-size: clamp(1rem, 3vw, 1.25rem);
   --h6-size: clamp(0.875rem, 2.5vw, 1rem);
   --p-size: clamp(1rem, 2.5vw, 1.125rem);
} */
/* =============================
   3. COLOR SYSTEM + DARK MODE
============================= */
:root {
  /* Text Colors */
  --text-body: #1C1C1C;
  --text-heading: #520678;
  --text-heading: #111;
  --text-secondary: #1A1A1A;
  --text-muted: #6B7280;
  --text-light: #FFFFFF;
  --text-dark: #1C1C1C;
  --text-disabled: #9CA3AF;
  --text-on-light: #1C1C1C;
  --text-on-dark: #FFFFFF;
  --text-inverse: #FFFFFF;
  --text-gradient: linear-gradient(135deg, #002B99, #003ACC, #3b82f6);
  /* Background Colors */
  --bg-body: #FFFFFF;
  --bg-surface: #F1F4F8;
  --bg-surface-light: #F6F8FB;
  --bg-surface-dark: #121826;
  --bg-navbar: #FFFFFF;
  --bg-alt: #E6ECF5;
  --bg-disabled: #F3F4F6;
  --bg-overlay-light: rgba(255, 255, 255, 0.3);
  --bg-overlay-dark: rgba(0, 0, 0, 0.4);
  /* Button Colors */
  --btn-pri-bg: linear-gradient(135deg, #002B99, #003ACC, #3b82f6);
  --btn-pri-bg: #3B82F6;
  --btn-pri-bg: #942EB4;
  --btn-pri-bg: linear-gradient(100deg, #942EB4, #3B82F6);
  --btn-pri-bg: #222;
  --btn-pri-hover: #002B99;
  --btn-pri-hover: #000;
  --btn-pri-text: #FFFFFF;
  --btn-sec-bg: #E6ECF5;
  --btn-sec-hover: #D0D7E2;
  --btn-sec-text: #002B99;
  --btn-dis-bg: #F3F4F6;
  --btn-dis-text: #9CA3AF;
  /* Interactive Colors */
  --border-default: #D0D7E2;
  --focus-outline: #60A5FA;
  /* Link & Accent Colors */
  --link-default: #003ACC;
  --link-hover: #002B99;
  --accent: #002B99;
  --logo-default: grayscale(100%) brightness(60%);
  --logo-hover: grayscale(0%) brightness(100%);
}

/*
@media (prefers-color-scheme: dark) {
   :root {
      --text-body: #94A3B8;
      --text-heading: #FFFFFF;
      --text-secondary: #E4E8F0;
      --text-muted: #64748B;
      --text-light: #FFFFFF;
      --text-dark: #1C1C1C;
      --text-disabled: #6B7280;
      --text-on-light: #1C1C1C;
      --text-on-dark: #FFFFFF;
      --text-inverse: #000000;
      --text-gradient: linear-gradient(135deg, #002B99, #003ACC, #3b82f6);

      --bg-body: #0A0E1C;
      --bg-surface: #121826;
      --bg-surface-light: #F6F8FB;
      --bg-surface-dark: #121826;
      --bg-navbar: #0C111F;
      --bg-alt: #1A2135;
      --bg-disabled: #2F2F2F;
      --bg-overlay-light: rgba(0, 0, 0, 0.3);
      --bg-overlay-dark: rgba(0, 0, 0, 0.4);

      --btn-pri-bg: linear-gradient(135deg, #002B99, #003ACC, #3b82f6);
      --btn-pri-hover: #002B99;
      --btn-pri-text: #FFFFFF;

      --btn-sec-bg: #E6ECF5;
      --btn-sec-hover: #D0D7E2;
      --btn-sec-text: #002B99;

      --btn-dis-bg: #F3F4F6;
      --btn-dis-text: #9CA3AF;

      --border-default: #2F3548;
      --focus-outline: #60A5FA;

      --link-default: #60A5FA;
      --link-hover: #2563EB;
      --accent: #2563EB;
   }
}
*/
/* Dark Theme */
[data-theme=dark] {
  /* Text Colors */
  --text-body: #94A3B8;
  --text-heading: #FFFFFF;
  --text-secondary: #E4E8F0;
  --text-muted: #64748B;
  --text-light: #FFFFFF;
  --text-dark: #1C1C1C;
  --text-disabled: #6B7280;
  --text-on-light: #1C1C1C;
  --text-on-dark: #FFFFFF;
  --text-inverse: #000000;
  --text-gradient: linear-gradient(135deg, #002B99, #003ACC, #3b82f6);
  /* Vivid blue for call-to-actions */
  /* Background Colors */
  --bg-body: #0A0E1C;
  --bg-surface: #121826;
  --bg-surface-light: #F6F8FB;
  --bg-surface-dark: #121826;
  --bg-navbar: #0C111F;
  --bg-alt: #1A2135;
  --bg-disabled: #2F2F2F;
  --bg-overlay-light: rgba(0, 0, 0, 0.3);
  --bg-overlay-dark: rgba(0, 0, 0, 0.4);
  /* Button Colors */
  --btn-pri-bg: linear-gradient(135deg, #002B99, #003ACC, #3b82f6);
  --btn-pri-hover: #002B99;
  --btn-pri-text: #FFFFFF;
  --btn-sec-bg: #E6ECF5;
  --btn-sec-hover: #D0D7E2;
  --btn-sec-text: #002B99;
  --btn-dis-bg: #F3F4F6;
  --btn-dis-text: #9CA3AF;
  /* Interactive Colors */
  --border-default: #2F3548;
  --focus-outline: #60A5FA;
  /* Link & Accent Colors */
  --link-default: #60A5FA;
  --link-hover: #2563EB;
  --accent: #2563EB;
}

/* =============================
   4. SPACING SYSTEM (8px scale)
============================= */
:root {
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
}

/* =============================
   5. RESPONSIVE BREAKPOINTS
============================= */
:root {
  --break-sm: 480px;
  --break-md: 768px;
  --break-lg: 1024px;
  --break-xl: 1280px;
}

/* Example Usage: 
@media (min-width: var(--break-md)) { ... }
*/
/* =============================
   6. Z-INDEX LAYERS
============================= */
:root {
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 50;
  --z-modal: 100;
  --z-toast: 200;
}

/* =============================
   7. SHADOWS & BORDER RADIUS
============================= */
:root {
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-rounded: 9999px;
  /* Shadows & Effects */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.05);
  --shadow-elevation: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* Add inner shadow or glassmorphism effects if needed */
  --shadow-inner: inset 0 1px 2px rgba(0, 0, 0, 0.06);
  --blur-glass: backdrop-filter: blur(12px);
}

/* =============================
   Utility classes for semantic font usage
============================= */
.secondary-text {
  font-family: var(--font-secondary);
  color: var(--text-secondary);
}

.accent-text {
  font-family: var(--font-accent);
  color: var(--accent);
}

.display-text {
  font-family: var(--font-display);
  color: var(--text-heading);
}

.code-text {
  font-family: var(--font-mono);
  color: var(--text-light);
  background-color: var(--text-body);
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
}

/* =============================
   Optional CTA utility
   ============================= */
.cta-text {
  font-family: var(--font-accent);
  color: var(--text-light);
  background-color: var(--btn-pri-bg);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* =============================
   LAYOUT UTILITIES
============================= */
.container {
  max-width: 1340px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

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

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

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

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

/* =============================
   SPACING UTILITIES
============================= */
.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.p-sm {
  padding: var(--space-sm);
}

.p-md {
  padding: var(--space-md);
}

.p-lg {
  padding: var(--space-lg);
}

/* =============================
   BORDER & SHADOW UTILITIES
============================= */
.rounded-sm {
  border-radius: var(--radius-sm);
}

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

.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

/* =============================
   BUTTON BASE
============================= */
.btn {
  background-color: var(--btn-pri-bg);
  color: var(--text-light);
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: var(--font-accent);
  font-weight: 600;
}

.btn:hover {
  background-color: var(--btn-pri-hover);
}

/* =============================
   ANIMATIONS
============================= */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide-up {
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.bounce {
  animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.beat {
  animation: beat 0.5s ease infinite;
}

@keyframes beat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.8s ease-out;
  pointer-events: none;
  opacity: 0.75;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  /* Add subtle glow to ripple */
}

@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
/* Blob Animations */
.blob {
  animation: blob-turn var(--time, 30s) linear infinite;
  fill: var(--fill, #7600f8);
  position: relative;
  transform-origin: center;
}

.blob svg {
  animation: blob-skew calc(var(--time, 30s) * 0.5) linear 0s infinite;
  transform-origin: center;
}

.blob svg path {
  animation: blob-scale calc(var(--time, 30s) * 0.5) ease-in-out 0s infinite;
  transform-origin: center;
}

@keyframes blob-turn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blob-skew {
  0% {
    transform: skewY(0deg);
  }
  13% {
    transform: skewY(calc(1.8deg * var(--amount, 2)));
  }
  18% {
    transform: skewY(calc(2.2deg * var(--amount, 2)));
  }
  24% {
    transform: skewY(calc(2.48deg * var(--amount, 2)));
  }
  25% {
    transform: skewY(calc(2.5deg * var(--amount, 2)));
  }
  26% {
    transform: skewY(calc(2.48deg * var(--amount, 2)));
  }
  32% {
    transform: skewY(calc(2.2deg * var(--amount, 2)));
  }
  37% {
    transform: skewY(calc(1.8deg * var(--amount, 2)));
  }
  50% {
    transform: skewY(0deg);
  }
  63% {
    transform: skewY(calc(-1.8deg * var(--amount, 2)));
  }
  68% {
    transform: skewY(calc(-2.2deg * var(--amount, 2)));
  }
  74% {
    transform: skewY(calc(-2.48deg * var(--amount, 2)));
  }
  75% {
    transform: skewY(calc(-2.5deg * var(--amount, 2)));
  }
  76% {
    transform: skewY(calc(-2.48deg * var(--amount, 2)));
  }
  82% {
    transform: skewY(calc(-2.2deg * var(--amount, 2)));
  }
  87% {
    transform: skewY(calc(-1.8deg * var(--amount, 2)));
  }
  100% {
    transform: skewY(0deg);
  }
}
@keyframes blob-scale {
  0% {
    transform: scaleX(0.9) scaleY(1);
  }
  25% {
    transform: scaleX(0.9) scaleY(0.9);
  }
  50% {
    transform: scaleX(1) scaleY(0.9);
  }
  75% {
    transform: scaleX(0.9) scaleY(0.9);
  }
  100% {
    transform: scaleX(0.9) scaleY(1);
  }
}
/* ============================================
   BASE STYLING FOR BODY ELEMENT
============================================ */
body {
  font-family: var(--font-primary);
  /* Default font */
  font-size: var(--p-size);
  /* Default font size */
  color: var(--text-body);
  /* Base text color */
  background: var(--bg-body);
  /* Page background */
  min-height: 100vh;
  /* Full viewport height */
  transition: 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ============================================
   TYPOGRAPHY: HEADINGS, PARAGRAPHS, AND TEXT
============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  /* Tighter spacing for headings */
  margin: 0;
  /* Reset margin */
  color: var(--text-heading);
}

h1,
h2 {
  letter-spacing: 1px;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

h6 {
  font-size: var(--h6-size);
}

p {
  /* margin-bottom: var(--space-md); */
  letter-spacing: 0.02em;
  /* max-width: 70ch; */
  color: var(--text-body);
}

/* Optional serif style */
/* h1, h2, h3, h4 { font-family: var(--font-secondary); } */
/* ============================================
   STYLING FOR LISTS AND LINKS
============================================ */
ul,
ol {
  list-style: none;
  /* Remove default list styles */
}

a,
ins {
  text-decoration: none;
  /* Remove default link underlines */
  color: var(--link-default);
  /* Optional link color */
  transition: 0.3s ease;
  /* Smooth color transition */
}

a {
  font-family: var(--font-secondary);
  user-select: none;
}

a:hover,
a:focus {
  color: var(--link-hover);
}

del {
  text-decoration: line-through;
  /* Consistent strikethrough */
}

/* ============================================
   STYLING FOR FORMS AND FORM ELEMENTS
============================================ */
button,
input,
textarea {
  font-family: inherit;
  /* Inherit font styles */
  color: inherit;
  /* Inherit text color */
  background: transparent;
  /* Remove default background */
  border: none;
  /* Remove default borders */
  outline: none;
  /* Remove default focus outlines */
  appearance: none;
  /* Normalize appearance across browsers */
}

button,
input[type=submit],
input[type=reset] {
  cursor: pointer;
  /* Pointer cursor for buttons */
  background-color: var(--btn-pri-bg);
  /* Button background color */
  color: var(--accent);
  /* Button text color */
  padding: 0.5em 1em;
  /* Consistent padding */
  border-radius: 4px;
  /* Slightly rounded corners */
  user-select: none;
  /* No user selection */
  transition: 0.3s ease;
  /* Smooth transitions */
}

button:hover,
input[type=submit]:hover,
input[type=reset]:hover {
  background-color: var(--btn-pri-hover);
  /* Button hover background */
}

input,
textarea,
select {
  padding: var(--space-sm);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  background-color: transparent;
  font-family: var(--font-accent);
  color: var(--text-body);
}

select {
  border: none;
  outline: none;
  padding: 0;
  font-weight: 500;
}

input[type=checkbox],
input[type=radio] {
  padding: 10px;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

/* ============================================
   ACCESSIBILITY AND FOCUS STATES
============================================ */
button[type=submit]:focus,
button[type=reset]:focus,
input:focus,
select:focus {
  outline: 1px solid var(--focus-outline);
  /* Visible focus outline */
  /* outline-offset: 2px; */
  /* Space between element and outline */
}

/* Hover state color for interactive elements */
button:hover,
select:hover {
  color: var(--btn-pri-hover);
}

/* ============================================
   IMAGES, AND BLOCKQUOTE STYLING
============================================ */
blockquote {
  border-left: 4px solid var(--border-default);
  padding-left: var(--space-md);
  color: var(--text-secondary);
  font-style: italic;
  font-family: var(--font-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

section {
  transition: 0.3s ease;
}

/* =============================
   Base Button Styles
============================= */
.btn {
  position: relative;
  padding: 12px 28px;
  font-weight: 500;
  border-radius: var(--radius-md);
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: scale(0.97);
}

.btn:focus {
  outline: none;
}

.btn i {
  margin-right: 6px;
}

/* =============================
   Solid Buttons
============================= */
.btn-primary {
  background: var(--btn-pri-bg);
  color: var(--btn-pri-text);
}

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

.btn-secondary {
  background: var(--btn-sec-bg);
  color: var(--btn-sec-text);
}

.btn-secondary:hover {
  background: var(--btn-sec-hover);
  color: var(--btn-sec-text);
}

/* =============================
   Solid Pill Buttons
============================= */
.btn-primary-pill,
.btn-secondary-pill {
  border-radius: var(--radius-rounded);
  padding: 10px 32px;
}

.btn-primary-pill {
  background: var(--btn-pri-bg);
  color: var(--btn-pri-text);
}

.btn-primary-pill:hover {
  background: var(--btn-pri-hover);
  color: var(--btn-pri-text);
}

.btn-secondary-pill {
  background: var(--btn-sec-bg);
  color: var(--btn-sec-text);
}

.btn-secondary-pill:hover {
  background: var(--btn-sec-hover);
  color: var(--btn-sec-text);
}

/* =============================
   Outline Buttons
============================= */
.btn-outline-primary {
  color: var(--btn-pri-hover);
  border: 1.5px solid currentColor;
}

.btn-outline-primary:hover {
  background: var(--btn-pri-hover);
  color: var(--btn-pri-text);
}

.btn-outline-secondary {
  color: var(--btn-sec-hover);
  border: 1.5px solid currentColor;
}

.btn-outline-secondary:hover {
  background: var(--btn-sec-hover);
  color: var(--btn-sec-text);
}

/* =============================
   Outline Pill Buttons
============================= */
.btn-outline-primary-pill,
.btn-outline-secondary-pill {
  border-radius: var(--radius-rounded);
  padding: 10px 32px;
}

.btn-outline-primary-pill {
  color: var(--btn-pri-hover);
  border: 1.5px solid currentColor;
}

.btn-outline-primary-pill:hover {
  background: var(--btn-pri-hover);
  color: var(--btn-pri-text);
}

.btn-outline-secondary-pill {
  color: var(--btn-sec-hover);
  border: 1.5px solid currentColor;
}

.btn-outline-secondary-pill:hover {
  background: var(--btn-sec-hover);
  color: var(--btn-sec-text);
}

/* =============================
   Elevation Utility
============================= */
.btn-elevated {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-elevated:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =============================
   Icon Utilities
============================= */
.icon-left i {
  margin-right: 0.5rem;
}

.icon-right i {
  margin-left: 0.5rem;
}

/*
.preloader {
   width: 100%;
   height: 100vh;
   position: fixed;
   top: 0;
   left: 0;
   background: var(--bg-body, #0e0e0e);
   display: grid;
   place-content: center;
   z-index: 10000;
   color: var(--bg-body);
   padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.loader {
   text-align: center;
}

.brand-logo img {
   height: 50px;
   margin-bottom: 20px;
   display: none;
}

.greeting-text {
   font-size: var(--h4-size);
   margin-bottom: 20px;
   color: var(--accent);
   animation: fadeIn 2s ease-in-out;
}

.spinner {
   width: 40px;
   height: 40px;
   border: 4px solid var(--border-default);
   border-top: 4px solid var(--accent);
   border-radius: 50%;
   animation: spin 1s linear infinite;
   margin: 0 auto;
}

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

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}
*/
/* Block: preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  z-index: 9999;
}

/* Element: preloader__loader */
.preloader__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* Element: preloader__logo */
.preloader__logo img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  display: none;
}

/* Element: preloader__greeting */
.preloader__greeting {
  font-size: var(--h4-size);
  color: var(--accent);
  animation: fadeIn 2s ease-in-out;
}

/* Element: preloader__spinner */
.preloader__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-default);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: preloader__spin 1s linear infinite;
}

/* Spinner Animation */
@keyframes preloader__spin {
  to {
    transform: rotate(360deg);
  }
}
/* Fade in Animation */
@keyframes preloader__fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.preloader--hidden {
  display: none;
}

/*
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: .5rem clamp(1.5rem, 5vw, 3rem);
  z-index: 1000;
  transition: 0.3s ease;
  background: #fff;
}

.navbar-container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-container>div {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.navbar.fixed {
  background: var(--bg-navbar);
  box-shadow: var(--shadow-elevation);
}

.navbar .action {
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar .logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar .logo img {
  height: 55px;
}

.navbar .hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  margin-left: 10px;
  cursor: pointer;
}

.navbar .hamburger:hover {
  background: none;
  padding: 0;
  color: var(--accent);
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.navbar .nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar .nav-links a.active,
.navbar .nav-links a:hover {
  color: var(--accent);
}

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 150%;
  left: 0;
  background: var(--bg-navbar);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-elevation);
  display: none;
  flex-direction: column;
  width: max-content;
  z-index: 999;
}

.navbar .dropdown:hover .dropdown-menu {
  display: flex;
}

.navbar .dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--link-default);
}

.navbar .dropdown-menu a:hover {
  background: var(--bg-surface);
  color: var(--accent);
}

.navbar .theme-select {
  font-size: var(--p-size);
  color: var(--link-default);
  font-weight: bold;
}

.navbar .theme-select:hover {
  color: var(--accent);
}

.navbar .btn {
  background: none;
  color: var(--accent);
  border: 2px solid var(--accent);
  text-transform: none;
  font-size: .8rem;
  padding: 10px 15px;
}

@media (max-width: 1280px) {
  .navbar .hamburger {
    display: block;
  }

  .navbar .nav-links,
  .navbar .theme-select {
    display: none;
  }
}
*/
/* Base Navbar */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem clamp(1.5rem, 5vw, 3rem);
  z-index: 1000;
  transition: 0.3s ease;
}

.navbar--fixed {
  background: var(--bg-navbar);
  box-shadow: var(--shadow-elevation);
}

/* Container */
.navbar__container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .left {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Logo */
.navbar__logo {
  font-size: 0.4rem;
  font-weight: normal;
  text-decoration: none;
  color: var(--text-heading);
}

.navbar__logo-image {
  height: 45px;
}

.navbar__phone {
  color: var(--text-primary);
  font-size: calc(var(--p-size) - 10%);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-decoration: underline;
}

/* List + Items */
.navbar__list {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: calc(var(--p-size) - 10%);
  transition: color 0.3s ease;
}

.navbar__link--active,
.navbar__link:hover {
  color: var(--accent);
}

/* Dropdowns */
.navbar__item--dropdown:hover .navbar__dropdown-menu,
.navbar__item--dropdown:hover .navbar__mega-menu {
  display: flex;
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-navbar);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-elevation);
  display: none;
  flex-direction: column;
  width: max-content;
  z-index: 999;
}

.navbar__dropdown-item {
  list-style: none;
}

.navbar__dropdown-link {
  font-family: "Inter", sans-serif;
  font-size: calc(var(--p-size) - 10%);
  color: #1E293B;
  padding: 8px 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.navbar__dropdown-link:hover,
.navbar__dropdown-link--active {
  color: #2563EB;
  background: #F1F5F9;
  border-radius: 4px;
}

/* Mega Menu */
.navbar__mega-menu {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
}

.navbar__mega-column {
  width: 170px;
  display: flex;
  flex-direction: column;
}

.navbar__mega-heading {
  font-family: "Inter", sans-serif;
  font-size: var(--p-size);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.navbar__mega-link {
  font-family: "Inter", sans-serif;
  font-size: calc(var(--p-size) - 10%);
  color: #1E293B;
  padding: 8px 0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar__mega-link:hover {
  color: #2563EB;
  background: #F1F5F9;
  border-radius: 4px;
  padding-left: 4px;
}

/* Actions */
.navbar__actions {
  display: flex;
  gap: 30px;
  align-items: center;
}

.navbar__theme-select {
  font-size: calc(var(--p-size) - 10%);
  color: var(--link-default);
  font-weight: normal;
  cursor: pointer;
  display: none;
}

.navbar__theme-select:hover {
  color: var(--accent);
}

.navbar__btn {
  background: var(--btn-pri-bg);
  color: var(--text-light);
  font-size: calc(var(--p-size) - 10%);
  letter-spacing: 1px;
  padding: 8px 25px;
  /* border-radius: var(--radius-pill); */
  border-radius: var(--radius-rounded);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* .navbar__btn-icon {
  font-size: 1rem;
} */
/* Hamburger */
.navbar__hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  margin-left: 10px;
  cursor: pointer;
}

.navbar__hamburger:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1280px) {
  .navbar__hamburger {
    display: block;
  }
  .navbar__list,
  .navbar__theme-select {
    display: none;
  }
}
.sidebar {
  position: fixed;
  top: 0;
  left: -310px;
  width: 300px;
  height: 100%;
  background: var(--bg-body);
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: left 0.3s ease, background 0.3s ease;
  z-index: 1002;
  overflow-y: auto;
}

.sidebar.open {
  left: 0;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-overlay-dark);
  z-index: 1001;
  display: none;
}

#overlay.active {
  display: block;
}

.sidebar .logo {
  display: block;
  margin-bottom: 25px;
}

.sidebar .logo img {
  height: 40px;
}

.sidebar #close-sidebar {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  padding: 0;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--accent);
}

.sidebar .nav-links {
  display: block;
  border-top: 1px solid var(--border-default);
  padding-top: 20px;
}

.sidebar .nav-links li {
  margin-bottom: 20px;
}

.sidebar .nav-links a {
  color: var(--text-muted);
  font-size: var(--p-size);
  transition: color 0.3s ease;
}

.sidebar .nav-links a:hover {
  color: var(--accent);
}

.sidebar .dropdown > a {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar .dropdown-menu {
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
  display: none;
}

.sidebar .dropdown-menu.open {
  display: block;
}

.sidebar .dropdown-menu li {
  margin: 8px 0;
}

/* --- Theme Selector Dropdown --- */
.theme-selector {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.theme-selector label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.theme-selector select {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  color: var(--text-muted);
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.theme-selector select:focus {
  outline: 2px solid var(--focus-outline);
}

@media (min-width: 1000px) {
  .sidebar,
  #overlay {
    display: none;
  }
}
.footer {
  background: var(--bg-body);
  color: var(--text-muted);
  transition: background 0.3s ease;
}
.footer .footer-top-container {
  width: 100%;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.footer .footer-container,
.footer .footer-bottom .container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
}
.footer .footer-top {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: clamp(3.75rem, 2rem + 2vw, 6.25rem) 0;
  padding-bottom: 30px;
}
.footer .footer-branding {
  flex: 1 1 250px;
}
.footer .footer-branding a {
  display: inline-block;
  margin-bottom: 10px;
}
.footer .footer-branding a img {
  height: 65px;
}
.footer .footer-branding a .icon {
  font-size: 2rem;
  margin-right: 10px;
  margin-bottom: 0;
}
.footer .footer-branding a:hover {
  color: var(--link-hover);
}
.footer .footer-branding p {
  max-width: 500px;
  color: var(--text-muted);
}
.footer .footer-newsletter {
  flex: 1 1 250px;
}
.footer .footer-newsletter h4 {
  color: var(--text-secondary);
  font-weight: normal;
  margin-bottom: 10px;
}
.footer .footer-newsletter p {
  font-weight: normal;
  color: var(--text-muted);
}
.footer .footer-newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
}
.footer .footer-newsletter .newsletter-form div {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer .footer-newsletter .newsletter-form input[type=email] {
  flex: 1;
  width: 100%;
  min-width: 150px;
  padding: 8px 16px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
}
.footer .footer-newsletter .newsletter-form input[type=checkbox] {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  gap: 10px;
  margin-bottom: 20px;
}
.footer .footer-newsletter .newsletter-form input[type=checkbox] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}
.footer .footer-newsletter .newsletter-form input[type=checkbox]:focus {
  outline: none;
}
.footer .footer-newsletter .newsletter-form input[type=checkbox]:checked {
  background: #3B82F6;
  border-color: #3B82F6;
}
.footer .footer-newsletter .newsletter-form input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  color: var(--text-light);
  font-size: 0.65rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.footer {
  /* input {
     appearance: auto;
     -webkit-appearance: auto;
     for Safari
     -moz-appearance: auto;
     for Firefox
  } */
}
.footer .form-msg {
  margin-top: 20px;
  color: var(--link-default);
  display: none;
}
.footer .footer-middle {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 0;
}
.footer .footer-middle .footer-col {
  flex: 1 1 150px;
  height: max-content;
}
.footer .footer-middle .footer-col h5 {
  color: var(--text-secondary);
  font-size: var(--p-size);
  font-weight: 500;
  margin-bottom: 10px;
}
.footer .footer-middle .footer-col ul {
  list-style: none;
}
.footer .footer-middle .footer-col li {
  margin-bottom: 5px;
}
.footer .footer-middle .footer-col li,
.footer .footer-middle .footer-col li a,
.footer .footer-middle .footer-col li span {
  letter-spacing: 0.5px;
  font-size: calc(var(--p-size) - 10%);
  color: var(--text-muted);
}
.footer .footer-middle .footer-col li span {
  display: none;
}
.footer .footer-middle .footer-col a:hover {
  color: var(--link-hover);
}
.footer .footer-bottom {
  position: relative;
  border-top: 1px solid var(--border-default);
  padding: clamp(3.75rem, 2rem + 2vw, 6.25rem) clamp(1.5rem, 5vw, 3rem);
  background: #000;
  padding: 4rem;
}
.footer .footer-bottom .container {
  font-size: calc(var(--p-size) - 10%);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: auto;
}
.footer .footer-bottom p {
  color: var(--text-muted);
}
.footer .footer-bottom a {
  text-decoration: underline;
  color: var(--text-muted);
}
.footer .footer-bottom a:hover {
  color: var(--text-light);
}
@media (max-width: 768px) {
  .footer .footer-top,
  .footer .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .back-to-top {
    margin-top: 20px;
  }
}

/*# sourceMappingURL=global.css.map */
