@charset "UTF-8";
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/1C_helpers.scss ===== */
/* ============================================================
   Section Spacing Mixin
   Usage:
   @include sec-spacing('padding', 'y');
   @include sec-spacing('margin', 't');
   @include sec-spacing('margin', 'b', true);
   ============================================================ */
/* ============================================================
   Section Spacing Mixin (supports optional $type)
   Example usage:
   @include sec-spacing('padding', 'y');
   @include sec-spacing('margin', 'b', true);
   @include sec-spacing(null, 'top'); // e.g., top offset only
   ============================================================ */
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/uploads/paradigm/scss/theme.scss ===== */
/* ==========================================================================
   FONT FAMILIES
   ========================================================================== */
/* ==========================================================================
   BODY / HTML
   ========================================================================== */
/* ==========================================================================
   HEADINGS
   ========================================================================== */
/* H1 */
/* H2 */
/* H3 */
/* H4 */
/* H5 */
/* ==========================================================================
   PARAGRAPHS / BODY TEXT
   ========================================================================== */
/* ==========================================================================
   LABELS
   ========================================================================== */
/* ==========================================================================
   DISCLAIMERS
   ========================================================================== */
/* ==========================================================================
   MENUS
   ========================================================================== */
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/0_queries.scss ===== */
/* Breakpoints (max-width) */
/* Media query shorthands */
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/1B_flexbox.scss ===== */
/* =========================
   Flex Box Utilities
   ========================= */
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
/* =========================
   Flex Alignment Utilities
   ========================= */
/* Base flex alignment utilities */
.flex-top {
  display: flex;
  align-items: flex-start;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.flex-grow {
  flex-grow: 1;
}
/* Small breakpoint (≤ 767px) */
@media only screen and (max-width: 767px) {
  .sm-align-start {
    align-items: flex-start;
  }
  .sm-align-center {
    align-items: center;
  }
  .sm-align-end {
    align-items: flex-end;
  }
  .sm-justify-start {
    justify-content: flex-start;
  }
  .sm-justify-center {
    justify-content: center;
  }
  .sm-justify-end {
    justify-content: flex-end;
  }
}
/* Medium breakpoint (≤ 1023px) */
@media only screen and (max-width: 1023px) {
  .md-align-start {
    align-items: flex-start;
  }
  .md-align-center {
    align-items: center;
  }
  .md-align-end {
    align-items: flex-end;
  }
  .md-justify-start {
    justify-content: flex-start;
  }
  .md-justify-center {
    justify-content: center;
  }
  .md-justify-end {
    justify-content: flex-end;
  }
}
/* Large breakpoint (≤ 1439px) */
@media only screen and (max-width: 1439px) {
  .lg-align-start {
    align-items: flex-start;
  }
  .lg-align-center {
    align-items: center;
  }
  .lg-align-end {
    align-items: flex-end;
  }
  .lg-justify-start {
    justify-content: flex-start;
  }
  .lg-justify-center {
    justify-content: center;
  }
  .lg-justify-end {
    justify-content: flex-end;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/1C_helpers.scss ===== */
/* ============================================================
   Section Spacing Mixin
   Usage:
   @include sec-spacing('padding', 'y');
   @include sec-spacing('margin', 't');
   @include sec-spacing('margin', 'b', true);
   ============================================================ */
/* ============================================================
   Section Spacing Mixin (supports optional $type)
   Example usage:
   @include sec-spacing('padding', 'y');
   @include sec-spacing('margin', 'b', true);
   @include sec-spacing(null, 'top'); // e.g., top offset only
   ============================================================ */
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/1_grid.scss ===== */
/* ───────────────────────────────
   SUPER-SIMPLE GRID (SCSS ONLY)
   - Container: display:grid; gap:$grid-gap
   - Children: direct > * (no required .col wrapper)
   - Keeps prior class API (.cols-*, .default-cols-*, responsive, fractions)
   ─────────────────────────────── */
/* Base container */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  grid-auto-flow: row dense;
}
.grid.no-gap {
  gap: 0;
}
.grid.tight {
  gap: 0.5rem;
}
.grid.x-tight {
  gap: 0.25rem;
}
.grid.wide {
  gap: 2rem;
}
.grid.x-wide {
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .grid.x-wide {
    gap: 2rem;
  }
}
@media only screen and (max-width: 375px) {
  .grid.wide {
    /* keep vertical rhythm, shrink horizontal gutters */
    column-gap: 1rem;
    row-gap: 2rem;
  }
  .grid.x-wide {
    column-gap: 1rem;
    row-gap: 2rem;
  }
}
.grid img {
  max-width: 100%;
}
/* Default child behavior */
.grid > * {
  box-sizing: border-box;
  grid-column: span 12;
}
/* ───────────────────────────────
   Equal columns (child-level spans)
   ─────────────────────────────── */
/* 1 column (full width) */
.cols-1 > *, .default-cols-1 > * {
  grid-column: span 12;
}
/* 2 columns */
.cols-2 > *, .default-cols-2 > * {
  grid-column: span 6;
}
/* 3 columns */
.cols-3 > *, .default-cols-3 > * {
  grid-column: span 4;
}
/* 4 columns */
.cols-4 > *, .default-cols-4 > * {
  grid-column: span 3;
}
/* 6 columns */
.cols-6 > *, .default-cols-6 > * {
  grid-column: span 2;
}
/* ───────────────────────────────
   Fractional overrides (item-level)
   Apply to .grid > * elements
   ─────────────────────────────── */
.grid > .col-1_1 {
  grid-column: span 12;
}
.grid > .col-1_2 {
  grid-column: span 6;
}
.grid > .col-1_3 {
  grid-column: span 4;
}
.grid > .col-2_3 {
  grid-column: span 8;
}
.grid > .col-1_4 {
  grid-column: span 3;
}
.grid > .col-3_4 {
  grid-column: span 9;
}
.grid > .col-1_6 {
  grid-column: span 2;
}
.grid > .col-5_6 {
  grid-column: span 10;
}
/* ============================================================
   Responsive controls
   ============================================================ */
/* ≤1439px (large screens / laptops) */
@media only screen and (max-width: 1439px) {
  .lg-cols-1 > * {
    grid-column: span 12;
  }
  .lg-cols-2 > * {
    grid-column: span 6;
  }
  .lg-cols-3 > * {
    grid-column: span 4;
  }
  .lg-cols-4 > * {
    grid-column: span 3;
  }
  .lg-cols-6 > * {
    grid-column: span 2;
  }
  .grid > .lg-col-1_1 {
    grid-column: span 12;
  }
  .grid > .lg-col-1_2 {
    grid-column: span 6;
  }
  .grid > .lg-col-1_3 {
    grid-column: span 4;
  }
  .grid > .lg-col-2_3 {
    grid-column: span 8;
  }
  .grid > .lg-col-1_4 {
    grid-column: span 3;
  }
  .grid > .lg-col-3_4 {
    grid-column: span 9;
  }
  .grid > .lg-col-1_6 {
    grid-column: span 2;
  }
  .grid > .lg-col-5_6 {
    grid-column: span 10;
  }
}
/* ≤1023px (tablets) */
@media only screen and (max-width: 1023px) {
  /* default collapse (tablet) */
  .md-cols-1 > * {
    grid-column: span 12;
  }
  .md-cols-2 > * {
    grid-column: span 6;
  }
  .md-cols-3 > * {
    grid-column: span 4;
  }
  .md-cols-4 > * {
    grid-column: span 3;
  }
  .md-cols-6 > * {
    grid-column: span 2;
  }
  .default-cols-6 > * {
    grid-column: span 4;
  }
  .default-cols-4 > * {
    grid-column: span 6;
  }
  .grid > .md-col-1_1 {
    grid-column: span 12;
  }
  .grid > .md-col-1_2 {
    grid-column: span 6;
  }
  .grid > .md-col-1_3 {
    grid-column: span 4;
  }
  .grid > .md-col-2_3 {
    grid-column: span 8;
  }
  .grid > .md-col-1_4 {
    grid-column: span 3;
  }
  .grid > .md-col-3_4 {
    grid-column: span 9;
  }
  .grid > .md-col-1_6 {
    grid-column: span 2;
  }
  .grid > .md-col-5_6 {
    grid-column: span 10;
  }
}
/* ≤767px (mobile) */
@media only screen and (max-width: 767px) {
  /* default collapse (mobile) */
  .sm-cols-1 > * {
    grid-column: span 12;
  }
  .sm-cols-2 > * {
    grid-column: span 6;
  }
  .sm-cols-3 > * {
    grid-column: span 4;
  }
  .sm-cols-4 > * {
    grid-column: span 3;
  }
  .sm-cols-6 > * {
    grid-column: span 2;
  }
  .default-cols-6 > *, .default-cols-2 > *, .default-cols-3 > * {
    grid-column: span 12;
  }
  .grid > .sm-col-1_1 {
    grid-column: span 12;
  }
  .grid > .sm-col-1_2 {
    grid-column: span 6;
  }
  .grid > .sm-col-1_3 {
    grid-column: span 4;
  }
  .grid > .sm-col-2_3 {
    grid-column: span 8;
  }
  .grid > .sm-col-1_4 {
    grid-column: span 3;
  }
  .grid > .sm-col-3_4 {
    grid-column: span 9;
  }
  .grid > .sm-col-1_6 {
    grid-column: span 2;
  }
  .grid > .sm-col-5_6 {
    grid-column: span 10;
  }
}
/* ───────────────────────────────
   Column Order Reversal Utilities
   Updated to:
   - Remove direct-child selector between parent + .container
   - Prefix parent class on every rule
   ─────────────────────────────── */
@media only screen and (max-width: 767px) {
  .sm-col-reverse, .sm-col-reverse .container > .grid, .sm-col-reverse .slider-grid {
    display: flex;
    flex-direction: column-reverse;
  }
}
/* ───────────────────────────────
   CARD GRID (Responsive Flex Layout)
   - Centers child cards evenly
   - Uses flexbox with gap spacing
   - Collapses 3 → 2 → 1 columns
   - Targets direct children only (.card-grid > *)
   ─────────────────────────────── */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
}
@media only screen and (min-width: 768px) {
  .card-grid {
    margin-left: -18px;
    margin-right: -18px;
  }
}
.card-grid > * {
  flex: 0 1 calc(33.333% - 32px);
  max-width: calc(33.333% - 32px);
}
.card-grid.cols-4 > * {
  flex: 0 1 calc(25% - 32px);
  max-width: calc(25% - 32px);
}
.card-grid.cols-2 > * {
  flex: 0 1 calc(50% - 32px);
  max-width: calc(50% - 32px);
}
@media only screen and (max-width: 1023px) {
  .card-grid > * {
    flex: 0 1 calc(50% - 32px);
    max-width: calc(50% - 32px);
  }
}
@media only screen and (max-width: 767px) {
  .card-grid {
    flex-direction: column;
    align-items: center;
  }
  .card-grid > * {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/2_layout.scss ===== */
/* ───────────────────────────────
   layout.scss
   - Global layout primitives
   - Works with grid.scss
   - Handles page max-width, sections,
     background layers, and spacing
   ─────────────────────────────── */
/* SECTIONS
--------------------------------
- Creates vertical rhythm
- Provides space for backgrounds
- Keeps content above background layer */
section, .section {
  position: relative;
  z-index: 0;
  /* Ensure content is above bg-group */
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1023px) {
  section, .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  section, .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* CONTAINER
   --------------------------------
   - Centers content
   - Constrains max width
   - Adds horizontal padding */
.container {
  width: 100%;
  max-width: 1400px;
  /* adjust to your design system */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  /* responsive horizontal gutter */
  padding-right: 1.5rem;
}
.container.fluid {
  max-width: none;
}
.container.narrow {
  max-width: 900px;
}
.narrow > .container {
  max-width: 900px;
}
.fluid:not(.container) > .container {
  max-width: none;
}
body.admin-bar header {
  margin-top: 30px;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/3_normalize.scss ===== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}
/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}
/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}
/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b, strong {
  font-weight: bolder;
}
/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}
/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}
/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button, input, optgroup, select, textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button, input {
  /* 1 */
  overflow: visible;
}
/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button, select {
  /* 1 */
  text-transform: none;
}
/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}
/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}
/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}
/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}
/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}
/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}
/**
   * prevent padding and margin from pushign over other elements
   */
*, *::before, *::after {
  box-sizing: border-box;
}
/**
   * Helper to prevent overflowing grid
   */
.paradigm-wrapper {
  overflow-x: hidden;
  max-width: 100vw;
}
.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 baseline
   Mouse/touch focus stays ring-free; :focus-visible is the single source of
   keyboard focus rings, defined in 10_accessibility.scss.
   ========================================================================== */
:focus {
  outline: none;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/4_spacing.scss ===== */
/* ============================================================
   Spacing Utilities (based on Grid Gap)
   Hierarchy:
   - All-sides variants (lowest precedence)
   - Axis variants (medium precedence)
   - Single-direction variants (highest precedence)
   ============================================================ */
/* Base grid spacing scale */
/* Spacing scale */
/* Breakpoints (from theme variables) */
/* Direction maps */
/* Values */
/* Negative margin values */
/* ============================================================
   Generator Mixins
   ============================================================ */
/* --- Margin Generator --- */
/* --- Padding Generator --- */
/* ============================================================
   Output Utilities
   ============================================================ */
/* Base (all screens) */
/* === All-sides (lowest precedence) === */
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 2rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-none {
  margin: 0 !important;
}
.m-auto {
  margin: auto !important;
}
/* === Axis (medium precedence) === */
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}
.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.mx-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
/* === Single-direction (highest precedence) === */
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 2rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-none {
  margin-top: 0 !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 2rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-none {
  margin-bottom: 0 !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.ml-3 {
  margin-left: 1rem !important;
}
.ml-4 {
  margin-left: 2rem !important;
}
.ml-5 {
  margin-left: 3rem !important;
}
.ml-none {
  margin-left: 0 !important;
}
.ml-auto {
  margin-left: auto !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mr-3 {
  margin-right: 1rem !important;
}
.mr-4 {
  margin-right: 2rem !important;
}
.mr-5 {
  margin-right: 3rem !important;
}
.mr-none {
  margin-right: 0 !important;
}
.mr-auto {
  margin-right: auto !important;
}
/* === Negative Margins === */
.m-n1 {
  margin: -0.25rem !important;
}
.mt-n1 {
  margin-top: -0.25rem !important;
}
.mb-n1 {
  margin-bottom: -0.25rem !important;
}
.ml-n1 {
  margin-left: -0.25rem !important;
}
.mr-n1 {
  margin-right: -0.25rem !important;
}
.mx-n1 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}
.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}
.m-n2 {
  margin: -0.5rem !important;
}
.mt-n2 {
  margin-top: -0.5rem !important;
}
.mb-n2 {
  margin-bottom: -0.5rem !important;
}
.ml-n2 {
  margin-left: -0.5rem !important;
}
.mr-n2 {
  margin-right: -0.5rem !important;
}
.mx-n2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}
.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.mt-n3 {
  margin-top: -1rem !important;
}
.mb-n3 {
  margin-bottom: -1rem !important;
}
.ml-n3 {
  margin-left: -1rem !important;
}
.mr-n3 {
  margin-right: -1rem !important;
}
.mx-n3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}
.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}
.m-n4 {
  margin: -2rem !important;
}
.mt-n4 {
  margin-top: -2rem !important;
}
.mb-n4 {
  margin-bottom: -2rem !important;
}
.ml-n4 {
  margin-left: -2rem !important;
}
.mr-n4 {
  margin-right: -2rem !important;
}
.mx-n4 {
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}
.my-n4 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}
.m-n5 {
  margin: -3rem !important;
}
.mt-n5 {
  margin-top: -3rem !important;
}
.mb-n5 {
  margin-bottom: -3rem !important;
}
.ml-n5 {
  margin-left: -3rem !important;
}
.mr-n5 {
  margin-right: -3rem !important;
}
.mx-n5 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}
.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}
/* === All-sides (lowest precedence) === */
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 2rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.p-none {
  padding: 0 !important;
}
/* === Axis (medium precedence) === */
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.px-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* === Single-direction (highest precedence) === */
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 2rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pt-none {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 2rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.pb-none {
  padding-bottom: 0 !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 0.25rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.pl-4 {
  padding-left: 2rem !important;
}
.pl-5 {
  padding-left: 3rem !important;
}
.pl-none {
  padding-left: 0 !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 0.25rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pr-4 {
  padding-right: 2rem !important;
}
.pr-5 {
  padding-right: 3rem !important;
}
.pr-none {
  padding-right: 0 !important;
}
/* Responsive: lg */
@media only screen and (max-width: 1439px) {
  /* === All-sides (lowest precedence) === */
  /* === Axis (medium precedence) === */
  /* === Single-direction (highest precedence) === */
  /* === Negative Margins === */
  /* === All-sides (lowest precedence) === */
  /* === Axis (medium precedence) === */
  /* === Single-direction (highest precedence) === */
  .lg-m-0 {
    margin: 0 !important;
  }
  .lg-m-1 {
    margin: 0.25rem !important;
  }
  .lg-m-2 {
    margin: 0.5rem !important;
  }
  .lg-m-3 {
    margin: 1rem !important;
  }
  .lg-m-4 {
    margin: 2rem !important;
  }
  .lg-m-5 {
    margin: 3rem !important;
  }
  .lg-m-none {
    margin: 0 !important;
  }
  .lg-m-auto {
    margin: auto !important;
  }
  .lg-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .lg-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .lg-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .lg-mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .lg-mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .lg-mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .lg-mx-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .lg-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .lg-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .lg-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .lg-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .lg-my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .lg-my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .lg-my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .lg-my-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .lg-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .lg-mt-0 {
    margin-top: 0 !important;
  }
  .lg-mt-1 {
    margin-top: 0.25rem !important;
  }
  .lg-mt-2 {
    margin-top: 0.5rem !important;
  }
  .lg-mt-3 {
    margin-top: 1rem !important;
  }
  .lg-mt-4 {
    margin-top: 2rem !important;
  }
  .lg-mt-5 {
    margin-top: 3rem !important;
  }
  .lg-mt-none {
    margin-top: 0 !important;
  }
  .lg-mt-auto {
    margin-top: auto !important;
  }
  .lg-mb-0 {
    margin-bottom: 0 !important;
  }
  .lg-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .lg-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .lg-mb-3 {
    margin-bottom: 1rem !important;
  }
  .lg-mb-4 {
    margin-bottom: 2rem !important;
  }
  .lg-mb-5 {
    margin-bottom: 3rem !important;
  }
  .lg-mb-none {
    margin-bottom: 0 !important;
  }
  .lg-mb-auto {
    margin-bottom: auto !important;
  }
  .lg-ml-0 {
    margin-left: 0 !important;
  }
  .lg-ml-1 {
    margin-left: 0.25rem !important;
  }
  .lg-ml-2 {
    margin-left: 0.5rem !important;
  }
  .lg-ml-3 {
    margin-left: 1rem !important;
  }
  .lg-ml-4 {
    margin-left: 2rem !important;
  }
  .lg-ml-5 {
    margin-left: 3rem !important;
  }
  .lg-ml-none {
    margin-left: 0 !important;
  }
  .lg-ml-auto {
    margin-left: auto !important;
  }
  .lg-mr-0 {
    margin-right: 0 !important;
  }
  .lg-mr-1 {
    margin-right: 0.25rem !important;
  }
  .lg-mr-2 {
    margin-right: 0.5rem !important;
  }
  .lg-mr-3 {
    margin-right: 1rem !important;
  }
  .lg-mr-4 {
    margin-right: 2rem !important;
  }
  .lg-mr-5 {
    margin-right: 3rem !important;
  }
  .lg-mr-none {
    margin-right: 0 !important;
  }
  .lg-mr-auto {
    margin-right: auto !important;
  }
  .lg-m-n1 {
    margin: -0.25rem !important;
  }
  .lg-mt-n1 {
    margin-top: -0.25rem !important;
  }
  .lg-mb-n1 {
    margin-bottom: -0.25rem !important;
  }
  .lg-ml-n1 {
    margin-left: -0.25rem !important;
  }
  .lg-mr-n1 {
    margin-right: -0.25rem !important;
  }
  .lg-mx-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .lg-my-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .lg-m-n2 {
    margin: -0.5rem !important;
  }
  .lg-mt-n2 {
    margin-top: -0.5rem !important;
  }
  .lg-mb-n2 {
    margin-bottom: -0.5rem !important;
  }
  .lg-ml-n2 {
    margin-left: -0.5rem !important;
  }
  .lg-mr-n2 {
    margin-right: -0.5rem !important;
  }
  .lg-mx-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .lg-my-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .lg-m-n3 {
    margin: -1rem !important;
  }
  .lg-mt-n3 {
    margin-top: -1rem !important;
  }
  .lg-mb-n3 {
    margin-bottom: -1rem !important;
  }
  .lg-ml-n3 {
    margin-left: -1rem !important;
  }
  .lg-mr-n3 {
    margin-right: -1rem !important;
  }
  .lg-mx-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .lg-my-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .lg-m-n4 {
    margin: -2rem !important;
  }
  .lg-mt-n4 {
    margin-top: -2rem !important;
  }
  .lg-mb-n4 {
    margin-bottom: -2rem !important;
  }
  .lg-ml-n4 {
    margin-left: -2rem !important;
  }
  .lg-mr-n4 {
    margin-right: -2rem !important;
  }
  .lg-mx-n4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .lg-my-n4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .lg-m-n5 {
    margin: -3rem !important;
  }
  .lg-mt-n5 {
    margin-top: -3rem !important;
  }
  .lg-mb-n5 {
    margin-bottom: -3rem !important;
  }
  .lg-ml-n5 {
    margin-left: -3rem !important;
  }
  .lg-mr-n5 {
    margin-right: -3rem !important;
  }
  .lg-mx-n5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .lg-my-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .lg-p-0 {
    padding: 0 !important;
  }
  .lg-p-1 {
    padding: 0.25rem !important;
  }
  .lg-p-2 {
    padding: 0.5rem !important;
  }
  .lg-p-3 {
    padding: 1rem !important;
  }
  .lg-p-4 {
    padding: 2rem !important;
  }
  .lg-p-5 {
    padding: 3rem !important;
  }
  .lg-p-none {
    padding: 0 !important;
  }
  .lg-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .lg-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .lg-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .lg-px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .lg-px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .lg-px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .lg-px-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .lg-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .lg-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .lg-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .lg-py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .lg-py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .lg-py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .lg-py-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .lg-pt-0 {
    padding-top: 0 !important;
  }
  .lg-pt-1 {
    padding-top: 0.25rem !important;
  }
  .lg-pt-2 {
    padding-top: 0.5rem !important;
  }
  .lg-pt-3 {
    padding-top: 1rem !important;
  }
  .lg-pt-4 {
    padding-top: 2rem !important;
  }
  .lg-pt-5 {
    padding-top: 3rem !important;
  }
  .lg-pt-none {
    padding-top: 0 !important;
  }
  .lg-pb-0 {
    padding-bottom: 0 !important;
  }
  .lg-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .lg-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .lg-pb-3 {
    padding-bottom: 1rem !important;
  }
  .lg-pb-4 {
    padding-bottom: 2rem !important;
  }
  .lg-pb-5 {
    padding-bottom: 3rem !important;
  }
  .lg-pb-none {
    padding-bottom: 0 !important;
  }
  .lg-pl-0 {
    padding-left: 0 !important;
  }
  .lg-pl-1 {
    padding-left: 0.25rem !important;
  }
  .lg-pl-2 {
    padding-left: 0.5rem !important;
  }
  .lg-pl-3 {
    padding-left: 1rem !important;
  }
  .lg-pl-4 {
    padding-left: 2rem !important;
  }
  .lg-pl-5 {
    padding-left: 3rem !important;
  }
  .lg-pl-none {
    padding-left: 0 !important;
  }
  .lg-pr-0 {
    padding-right: 0 !important;
  }
  .lg-pr-1 {
    padding-right: 0.25rem !important;
  }
  .lg-pr-2 {
    padding-right: 0.5rem !important;
  }
  .lg-pr-3 {
    padding-right: 1rem !important;
  }
  .lg-pr-4 {
    padding-right: 2rem !important;
  }
  .lg-pr-5 {
    padding-right: 3rem !important;
  }
  .lg-pr-none {
    padding-right: 0 !important;
  }
}
/* Responsive: md */
@media only screen and (max-width: 1023px) {
  /* === All-sides (lowest precedence) === */
  /* === Axis (medium precedence) === */
  /* === Single-direction (highest precedence) === */
  /* === Negative Margins === */
  /* === All-sides (lowest precedence) === */
  /* === Axis (medium precedence) === */
  /* === Single-direction (highest precedence) === */
  .md-m-0 {
    margin: 0 !important;
  }
  .md-m-1 {
    margin: 0.25rem !important;
  }
  .md-m-2 {
    margin: 0.5rem !important;
  }
  .md-m-3 {
    margin: 1rem !important;
  }
  .md-m-4 {
    margin: 2rem !important;
  }
  .md-m-5 {
    margin: 3rem !important;
  }
  .md-m-none {
    margin: 0 !important;
  }
  .md-m-auto {
    margin: auto !important;
  }
  .md-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .md-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .md-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .md-mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .md-mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .md-mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .md-mx-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .md-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .md-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .md-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .md-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .md-my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .md-my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .md-my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .md-my-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .md-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .md-mt-0 {
    margin-top: 0 !important;
  }
  .md-mt-1 {
    margin-top: 0.25rem !important;
  }
  .md-mt-2 {
    margin-top: 0.5rem !important;
  }
  .md-mt-3 {
    margin-top: 1rem !important;
  }
  .md-mt-4 {
    margin-top: 2rem !important;
  }
  .md-mt-5 {
    margin-top: 3rem !important;
  }
  .md-mt-none {
    margin-top: 0 !important;
  }
  .md-mt-auto {
    margin-top: auto !important;
  }
  .md-mb-0 {
    margin-bottom: 0 !important;
  }
  .md-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .md-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .md-mb-3 {
    margin-bottom: 1rem !important;
  }
  .md-mb-4 {
    margin-bottom: 2rem !important;
  }
  .md-mb-5 {
    margin-bottom: 3rem !important;
  }
  .md-mb-none {
    margin-bottom: 0 !important;
  }
  .md-mb-auto {
    margin-bottom: auto !important;
  }
  .md-ml-0 {
    margin-left: 0 !important;
  }
  .md-ml-1 {
    margin-left: 0.25rem !important;
  }
  .md-ml-2 {
    margin-left: 0.5rem !important;
  }
  .md-ml-3 {
    margin-left: 1rem !important;
  }
  .md-ml-4 {
    margin-left: 2rem !important;
  }
  .md-ml-5 {
    margin-left: 3rem !important;
  }
  .md-ml-none {
    margin-left: 0 !important;
  }
  .md-ml-auto {
    margin-left: auto !important;
  }
  .md-mr-0 {
    margin-right: 0 !important;
  }
  .md-mr-1 {
    margin-right: 0.25rem !important;
  }
  .md-mr-2 {
    margin-right: 0.5rem !important;
  }
  .md-mr-3 {
    margin-right: 1rem !important;
  }
  .md-mr-4 {
    margin-right: 2rem !important;
  }
  .md-mr-5 {
    margin-right: 3rem !important;
  }
  .md-mr-none {
    margin-right: 0 !important;
  }
  .md-mr-auto {
    margin-right: auto !important;
  }
  .md-m-n1 {
    margin: -0.25rem !important;
  }
  .md-mt-n1 {
    margin-top: -0.25rem !important;
  }
  .md-mb-n1 {
    margin-bottom: -0.25rem !important;
  }
  .md-ml-n1 {
    margin-left: -0.25rem !important;
  }
  .md-mr-n1 {
    margin-right: -0.25rem !important;
  }
  .md-mx-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .md-my-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .md-m-n2 {
    margin: -0.5rem !important;
  }
  .md-mt-n2 {
    margin-top: -0.5rem !important;
  }
  .md-mb-n2 {
    margin-bottom: -0.5rem !important;
  }
  .md-ml-n2 {
    margin-left: -0.5rem !important;
  }
  .md-mr-n2 {
    margin-right: -0.5rem !important;
  }
  .md-mx-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .md-my-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .md-m-n3 {
    margin: -1rem !important;
  }
  .md-mt-n3 {
    margin-top: -1rem !important;
  }
  .md-mb-n3 {
    margin-bottom: -1rem !important;
  }
  .md-ml-n3 {
    margin-left: -1rem !important;
  }
  .md-mr-n3 {
    margin-right: -1rem !important;
  }
  .md-mx-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .md-my-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .md-m-n4 {
    margin: -2rem !important;
  }
  .md-mt-n4 {
    margin-top: -2rem !important;
  }
  .md-mb-n4 {
    margin-bottom: -2rem !important;
  }
  .md-ml-n4 {
    margin-left: -2rem !important;
  }
  .md-mr-n4 {
    margin-right: -2rem !important;
  }
  .md-mx-n4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .md-my-n4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .md-m-n5 {
    margin: -3rem !important;
  }
  .md-mt-n5 {
    margin-top: -3rem !important;
  }
  .md-mb-n5 {
    margin-bottom: -3rem !important;
  }
  .md-ml-n5 {
    margin-left: -3rem !important;
  }
  .md-mr-n5 {
    margin-right: -3rem !important;
  }
  .md-mx-n5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .md-my-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .md-p-0 {
    padding: 0 !important;
  }
  .md-p-1 {
    padding: 0.25rem !important;
  }
  .md-p-2 {
    padding: 0.5rem !important;
  }
  .md-p-3 {
    padding: 1rem !important;
  }
  .md-p-4 {
    padding: 2rem !important;
  }
  .md-p-5 {
    padding: 3rem !important;
  }
  .md-p-none {
    padding: 0 !important;
  }
  .md-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .md-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .md-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .md-px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .md-px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .md-px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .md-px-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .md-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .md-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .md-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .md-py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .md-py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .md-py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .md-py-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .md-pt-0 {
    padding-top: 0 !important;
  }
  .md-pt-1 {
    padding-top: 0.25rem !important;
  }
  .md-pt-2 {
    padding-top: 0.5rem !important;
  }
  .md-pt-3 {
    padding-top: 1rem !important;
  }
  .md-pt-4 {
    padding-top: 2rem !important;
  }
  .md-pt-5 {
    padding-top: 3rem !important;
  }
  .md-pt-none {
    padding-top: 0 !important;
  }
  .md-pb-0 {
    padding-bottom: 0 !important;
  }
  .md-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .md-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .md-pb-3 {
    padding-bottom: 1rem !important;
  }
  .md-pb-4 {
    padding-bottom: 2rem !important;
  }
  .md-pb-5 {
    padding-bottom: 3rem !important;
  }
  .md-pb-none {
    padding-bottom: 0 !important;
  }
  .md-pl-0 {
    padding-left: 0 !important;
  }
  .md-pl-1 {
    padding-left: 0.25rem !important;
  }
  .md-pl-2 {
    padding-left: 0.5rem !important;
  }
  .md-pl-3 {
    padding-left: 1rem !important;
  }
  .md-pl-4 {
    padding-left: 2rem !important;
  }
  .md-pl-5 {
    padding-left: 3rem !important;
  }
  .md-pl-none {
    padding-left: 0 !important;
  }
  .md-pr-0 {
    padding-right: 0 !important;
  }
  .md-pr-1 {
    padding-right: 0.25rem !important;
  }
  .md-pr-2 {
    padding-right: 0.5rem !important;
  }
  .md-pr-3 {
    padding-right: 1rem !important;
  }
  .md-pr-4 {
    padding-right: 2rem !important;
  }
  .md-pr-5 {
    padding-right: 3rem !important;
  }
  .md-pr-none {
    padding-right: 0 !important;
  }
}
/* Responsive: sm */
@media only screen and (max-width: 767px) {
  /* === All-sides (lowest precedence) === */
  /* === Axis (medium precedence) === */
  /* === Single-direction (highest precedence) === */
  /* === Negative Margins === */
  /* === All-sides (lowest precedence) === */
  /* === Axis (medium precedence) === */
  /* === Single-direction (highest precedence) === */
  .sm-m-0 {
    margin: 0 !important;
  }
  .sm-m-1 {
    margin: 0.25rem !important;
  }
  .sm-m-2 {
    margin: 0.5rem !important;
  }
  .sm-m-3 {
    margin: 1rem !important;
  }
  .sm-m-4 {
    margin: 2rem !important;
  }
  .sm-m-5 {
    margin: 3rem !important;
  }
  .sm-m-none {
    margin: 0 !important;
  }
  .sm-m-auto {
    margin: auto !important;
  }
  .sm-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .sm-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .sm-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .sm-mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .sm-mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .sm-mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .sm-mx-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .sm-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .sm-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .sm-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .sm-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .sm-my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .sm-my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .sm-my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .sm-my-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .sm-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .sm-mt-0 {
    margin-top: 0 !important;
  }
  .sm-mt-1 {
    margin-top: 0.25rem !important;
  }
  .sm-mt-2 {
    margin-top: 0.5rem !important;
  }
  .sm-mt-3 {
    margin-top: 1rem !important;
  }
  .sm-mt-4 {
    margin-top: 2rem !important;
  }
  .sm-mt-5 {
    margin-top: 3rem !important;
  }
  .sm-mt-none {
    margin-top: 0 !important;
  }
  .sm-mt-auto {
    margin-top: auto !important;
  }
  .sm-mb-0 {
    margin-bottom: 0 !important;
  }
  .sm-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .sm-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .sm-mb-3 {
    margin-bottom: 1rem !important;
  }
  .sm-mb-4 {
    margin-bottom: 2rem !important;
  }
  .sm-mb-5 {
    margin-bottom: 3rem !important;
  }
  .sm-mb-none {
    margin-bottom: 0 !important;
  }
  .sm-mb-auto {
    margin-bottom: auto !important;
  }
  .sm-ml-0 {
    margin-left: 0 !important;
  }
  .sm-ml-1 {
    margin-left: 0.25rem !important;
  }
  .sm-ml-2 {
    margin-left: 0.5rem !important;
  }
  .sm-ml-3 {
    margin-left: 1rem !important;
  }
  .sm-ml-4 {
    margin-left: 2rem !important;
  }
  .sm-ml-5 {
    margin-left: 3rem !important;
  }
  .sm-ml-none {
    margin-left: 0 !important;
  }
  .sm-ml-auto {
    margin-left: auto !important;
  }
  .sm-mr-0 {
    margin-right: 0 !important;
  }
  .sm-mr-1 {
    margin-right: 0.25rem !important;
  }
  .sm-mr-2 {
    margin-right: 0.5rem !important;
  }
  .sm-mr-3 {
    margin-right: 1rem !important;
  }
  .sm-mr-4 {
    margin-right: 2rem !important;
  }
  .sm-mr-5 {
    margin-right: 3rem !important;
  }
  .sm-mr-none {
    margin-right: 0 !important;
  }
  .sm-mr-auto {
    margin-right: auto !important;
  }
  .sm-m-n1 {
    margin: -0.25rem !important;
  }
  .sm-mt-n1 {
    margin-top: -0.25rem !important;
  }
  .sm-mb-n1 {
    margin-bottom: -0.25rem !important;
  }
  .sm-ml-n1 {
    margin-left: -0.25rem !important;
  }
  .sm-mr-n1 {
    margin-right: -0.25rem !important;
  }
  .sm-mx-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .sm-my-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .sm-m-n2 {
    margin: -0.5rem !important;
  }
  .sm-mt-n2 {
    margin-top: -0.5rem !important;
  }
  .sm-mb-n2 {
    margin-bottom: -0.5rem !important;
  }
  .sm-ml-n2 {
    margin-left: -0.5rem !important;
  }
  .sm-mr-n2 {
    margin-right: -0.5rem !important;
  }
  .sm-mx-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .sm-my-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .sm-m-n3 {
    margin: -1rem !important;
  }
  .sm-mt-n3 {
    margin-top: -1rem !important;
  }
  .sm-mb-n3 {
    margin-bottom: -1rem !important;
  }
  .sm-ml-n3 {
    margin-left: -1rem !important;
  }
  .sm-mr-n3 {
    margin-right: -1rem !important;
  }
  .sm-mx-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .sm-my-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .sm-m-n4 {
    margin: -2rem !important;
  }
  .sm-mt-n4 {
    margin-top: -2rem !important;
  }
  .sm-mb-n4 {
    margin-bottom: -2rem !important;
  }
  .sm-ml-n4 {
    margin-left: -2rem !important;
  }
  .sm-mr-n4 {
    margin-right: -2rem !important;
  }
  .sm-mx-n4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .sm-my-n4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .sm-m-n5 {
    margin: -3rem !important;
  }
  .sm-mt-n5 {
    margin-top: -3rem !important;
  }
  .sm-mb-n5 {
    margin-bottom: -3rem !important;
  }
  .sm-ml-n5 {
    margin-left: -3rem !important;
  }
  .sm-mr-n5 {
    margin-right: -3rem !important;
  }
  .sm-mx-n5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .sm-my-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .sm-p-0 {
    padding: 0 !important;
  }
  .sm-p-1 {
    padding: 0.25rem !important;
  }
  .sm-p-2 {
    padding: 0.5rem !important;
  }
  .sm-p-3 {
    padding: 1rem !important;
  }
  .sm-p-4 {
    padding: 2rem !important;
  }
  .sm-p-5 {
    padding: 3rem !important;
  }
  .sm-p-none {
    padding: 0 !important;
  }
  .sm-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .sm-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .sm-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .sm-px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .sm-px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .sm-px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .sm-px-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .sm-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .sm-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .sm-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .sm-py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .sm-py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .sm-py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .sm-py-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .sm-pt-0 {
    padding-top: 0 !important;
  }
  .sm-pt-1 {
    padding-top: 0.25rem !important;
  }
  .sm-pt-2 {
    padding-top: 0.5rem !important;
  }
  .sm-pt-3 {
    padding-top: 1rem !important;
  }
  .sm-pt-4 {
    padding-top: 2rem !important;
  }
  .sm-pt-5 {
    padding-top: 3rem !important;
  }
  .sm-pt-none {
    padding-top: 0 !important;
  }
  .sm-pb-0 {
    padding-bottom: 0 !important;
  }
  .sm-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .sm-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .sm-pb-3 {
    padding-bottom: 1rem !important;
  }
  .sm-pb-4 {
    padding-bottom: 2rem !important;
  }
  .sm-pb-5 {
    padding-bottom: 3rem !important;
  }
  .sm-pb-none {
    padding-bottom: 0 !important;
  }
  .sm-pl-0 {
    padding-left: 0 !important;
  }
  .sm-pl-1 {
    padding-left: 0.25rem !important;
  }
  .sm-pl-2 {
    padding-left: 0.5rem !important;
  }
  .sm-pl-3 {
    padding-left: 1rem !important;
  }
  .sm-pl-4 {
    padding-left: 2rem !important;
  }
  .sm-pl-5 {
    padding-left: 3rem !important;
  }
  .sm-pl-none {
    padding-left: 0 !important;
  }
  .sm-pr-0 {
    padding-right: 0 !important;
  }
  .sm-pr-1 {
    padding-right: 0.25rem !important;
  }
  .sm-pr-2 {
    padding-right: 0.5rem !important;
  }
  .sm-pr-3 {
    padding-right: 1rem !important;
  }
  .sm-pr-4 {
    padding-right: 2rem !important;
  }
  .sm-pr-5 {
    padding-right: 3rem !important;
  }
  .sm-pr-none {
    padding-right: 0 !important;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/5_utilities.scss ===== */
/* ============================================================
   Type Utilities
   ============================================================ */
/* Alignment */
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-justify {
  text-align: justify !important;
}
/* Weight */
.text-bold {
  font-weight: 700 !important;
}
.text-medium {
  font-weight: 500 !important;
}
.text-normal {
  font-weight: 400 !important;
}
.text-light {
  font-weight: 300 !important;
}
/* Transform */
.text-uppercase {
  text-transform: uppercase !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
/* Style */
.text-italic {
  font-style: italic !important;
}
.text-underline {
  text-decoration: underline !important;
}
.text-strike {
  text-decoration: line-through !important;
}
/* Sizing */
.text-small {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.text-large {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}
/* Responsive alignment (inherit breakpoints) */
@media only screen and (max-width: 767px) {
  .sm-text-left {
    text-align: left !important;
  }
  .sm-text-right {
    text-align: right !important;
  }
  .sm-text-center {
    text-align: center !important;
  }
  .sm-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (max-width: 1023px) {
  .md-text-left {
    text-align: left !important;
  }
  .md-text-right {
    text-align: right !important;
  }
  .md-text-center {
    text-align: center !important;
  }
  .md-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (max-width: 1439px) {
  .lg-text-left {
    text-align: left !important;
  }
  .lg-text-right {
    text-align: right !important;
  }
  .lg-text-center {
    text-align: center !important;
  }
  .lg-text-justify {
    text-align: justify !important;
  }
}
/* ============================================================
   Display Utilities
   ============================================================ */
/* Base display utilities */
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
/* Small breakpoint (≤ 767px) */
@media only screen and (max-width: 767px) {
  .sm-d-none {
    display: none !important;
  }
  .sm-d-block {
    display: block !important;
  }
  .sm-d-flex {
    display: flex !important;
  }
}
/* Medium breakpoint (≤ 1023px) */
@media only screen and (max-width: 1023px) {
  .md-d-none {
    display: none !important;
  }
  .md-d-block {
    display: block !important;
  }
  .md-d-flex {
    display: flex !important;
  }
}
/* Large breakpoint (≤ 1439px) */
@media only screen and (max-width: 1439px) {
  .lg-d-none {
    display: none !important;
  }
  .lg-d-block {
    display: block !important;
  }
  .lg-d-flex {
    display: flex !important;
  }
}
/* =========================
   Min-Height Utilities (vh)
   ========================= */
/* Base min-height utilities */
.min-height-10vh {
  min-height: 10vh !important;
}
.min-height-20vh {
  min-height: 20vh !important;
}
.min-height-30vh {
  min-height: 30vh !important;
}
.min-height-40vh {
  min-height: 40vh !important;
}
.min-height-50vh {
  min-height: 50vh !important;
}
.min-height-60vh {
  min-height: 60vh !important;
}
.min-height-70vh {
  min-height: 70vh !important;
}
.min-height-80vh {
  min-height: 80vh !important;
}
.min-height-90vh {
  min-height: 90vh !important;
}
.min-height-100vh {
  min-height: 100vh !important;
}
.min-height-unset {
  min-height: unset !important;
}
.min-width-100 {
  min-width: 100%;
}
/* Large breakpoint (≤ 1439px) */
@media only screen and (max-width: 1439px) {
  .lg-min-height-10vh {
    min-height: 10vh !important;
  }
  .lg-min-height-20vh {
    min-height: 20vh !important;
  }
  .lg-min-height-30vh {
    min-height: 30vh !important;
  }
  .lg-min-height-40vh {
    min-height: 40vh !important;
  }
  .lg-min-height-50vh {
    min-height: 50vh !important;
  }
  .lg-min-height-60vh {
    min-height: 60vh !important;
  }
  .lg-min-height-70vh {
    min-height: 70vh !important;
  }
  .lg-min-height-80vh {
    min-height: 80vh !important;
  }
  .lg-min-height-90vh {
    min-height: 90vh !important;
  }
  .lg-min-height-100vh {
    min-height: 100vh !important;
  }
  .lg-min-height-unset {
    min-height: unset !important;
  }
}
/* Medium breakpoint (≤ 1023px) */
@media only screen and (max-width: 1023px) {
  .md-min-height-10vh {
    min-height: 10vh !important;
  }
  .md-min-height-20vh {
    min-height: 20vh !important;
  }
  .md-min-height-30vh {
    min-height: 30vh !important;
  }
  .md-min-height-40vh {
    min-height: 40vh !important;
  }
  .md-min-height-50vh {
    min-height: 50vh !important;
  }
  .md-min-height-60vh {
    min-height: 60vh !important;
  }
  .md-min-height-70vh {
    min-height: 70vh !important;
  }
  .md-min-height-80vh {
    min-height: 80vh !important;
  }
  .md-min-height-90vh {
    min-height: 90vh !important;
  }
  .md-min-height-100vh {
    min-height: 100vh !important;
  }
  .md-min-height-unset {
    min-height: unset !important;
  }
}
/* Small breakpoint (≤ 767px) */
@media only screen and (max-width: 767px) {
  .sm-min-height-10vh {
    min-height: 10vh !important;
  }
  .sm-min-height-20vh {
    min-height: 20vh !important;
  }
  .sm-min-height-30vh {
    min-height: 30vh !important;
  }
  .sm-min-height-40vh {
    min-height: 40vh !important;
  }
  .sm-min-height-50vh {
    min-height: 50vh !important;
  }
  .sm-min-height-60vh {
    min-height: 60vh !important;
  }
  .sm-min-height-70vh {
    min-height: 70vh !important;
  }
  .sm-min-height-80vh {
    min-height: 80vh !important;
  }
  .sm-min-height-90vh {
    min-height: 90vh !important;
  }
  .sm-min-height-100vh {
    min-height: 100vh !important;
  }
  .sm-min-height-unset {
    min-height: unset !important;
  }
}
/* =========================
   Other
   ========================= */
.pos-relative {
  position: relative;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
/* Iframe Helper */
.iframe-container, .iframe-container-parent {
  position: relative;
  padding-bottom: 50%;
  overflow: auto;
}
.iframe-container > iframe, .iframe-container-parent > iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}
/* Video Helper */
.wp-video {
  max-width: 1200px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.wp-video .mejs-container {
  border-radius: 28px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  overflow: hidden;
  background: none;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/7_header.scss ===== */
/* ==========================================================================
   Site Header (Desktop $mobile-nav-breakpoint+)
   ========================================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  height: 10rem;
  transition: height 0.45s ease, background 0.45s ease;
  will-change: height, box-shadow;
  padding-top: 2.5rem;
}
#site-header.no-top-bar {
  padding-top: 0;
  height: 7rem;
}
#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.5rem;
  flex-wrap: nowrap;
}
#site-header .header-inner .menu-toggle {
  display: none;
}
#site-header .header-inner .header-logo {
  display: flex;
  align-items: center;
  height: 100%;
  max-height: 100%;
  padding: 0.5rem 0;
}
#site-header .header-inner .header-logo a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
#site-header .header-inner .header-logo img {
  height: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  transition: height 0.45s ease, transform 0.45s ease;
}
#site-header .header-inner .header-nav {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
#site-header .header-inner .header-nav .menu-left, #site-header .header-inner .header-nav .menu-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#site-header .header-inner .header-nav .menu-left {
  flex-grow: 1;
  justify-content: center;
}
#site-header .header-inner .header-nav .menu-right {
  justify-content: flex-end;
}
#site-header .header-inner .header-nav .menu-item {
  position: relative;
}
#site-header .header-inner .header-nav .menu-item a {
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.25s ease;
}
#site-header .header-inner .header-nav .menu-item a:hover, #site-header .header-inner .header-nav .menu-item a:focus {
  color: #004FA0;
}
@media only screen and (min-width: 1321px) {
  #site-header .header-inner .header-nav .menu-item .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15), 0px 8px 16px rgba(0, 0, 0, 0.12);
    z-index: 20;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .has-grandchildren {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .has-grandchildren a {
    flex-grow: 1;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .has-grandchildren > a:hover + .submenu-toggle + .dropdown.grandchild, #site-header .header-inner .header-nav .menu-item .dropdown .has-grandchildren > a + .submenu-toggle:hover + .dropdown.grandchild, #site-header .header-inner .header-nav .menu-item .dropdown .has-grandchildren > a:focus + .submenu-toggle + .dropdown.grandchild, #site-header .header-inner .header-nav .menu-item .dropdown .has-grandchildren > a + .submenu-toggle:focus + .dropdown.grandchild, #site-header .header-inner .header-nav .menu-item .dropdown .has-grandchildren.expanded > .dropdown.grandchild, #site-header .header-inner .header-nav .menu-item .dropdown .dropdown.grandchild:hover, #site-header .header-inner .header-nav .menu-item .dropdown .dropdown.grandchild:focus-within {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .has-grandchildren.dismissed > .dropdown.grandchild {
    opacity: 0 !important;
    visibility: hidden !important;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link {
    display: inline-block;
    padding: 0.65rem 1rem;
    color: #000000;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link:hover, #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link:focus {
    background: rgba(0, 79, 160, 0.05);
    color: #004FA0;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown.grandchild {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12), 0px 6px 12px rgba(0, 0, 0, 0.1);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 25;
  }
  #site-header .header-inner .header-nav .menu-item:hover > .dropdown, #site-header .header-inner .header-nav .menu-item:focus-within > .dropdown, #site-header .header-inner .header-nav .menu-item.expanded > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #site-header .header-inner .header-nav .menu-item.dismissed > .dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media only screen and (min-width: 1321px) {
  #site-header .header-inner .header-nav .menu-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5rem;
    background: #dbdbdb;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0 1.5rem;
    font-size: 0.9rem;
    z-index: 5;
    transition: transform 0.45s ease, opacity 0.45s ease;
  }
  #site-header .header-inner .header-nav .menu-top a {
    color: #000000;
    text-decoration: none;
    transition: color 0.25s ease;
  }
  #site-header .header-inner .header-nav .menu-top a:hover, #site-header .header-inner .header-nav .menu-top a:focus {
    color: #004FA0;
  }
  #site-header .header-inner .header-nav .menu-top .top-item {
    position: relative;
  }
  #site-header .header-inner .header-nav .menu-top .top-item .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background: #fff;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 30;
  }
  #site-header .header-inner .header-nav .menu-top .top-item .dropdown .dropdown-link {
    display: block;
    padding: 0.6rem 1rem;
    color: #000;
  }
  #site-header .header-inner .header-nav .menu-top .top-item .dropdown .dropdown-link:hover {
    background: rgba(0, 79, 160, 0.05);
    color: #004FA0;
  }
  #site-header .header-inner .header-nav .menu-top .top-item:hover > .dropdown, #site-header .header-inner .header-nav .menu-top .top-item:focus-within > .dropdown, #site-header .header-inner .header-nav .menu-top .top-item.expanded > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #site-header .header-inner .header-nav .menu-top .top-item.dismissed > .dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
#site-header.is-floating {
  padding-top: 0px;
  height: 6rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 8px 12px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1321px) {
  #site-header.is-floating .menu-top {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
}
@media only screen and (max-width: 1320px) {
  #site-header {
    height: 6rem;
  }
  #site-header.is-floating {
    height: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #site-header {
    height: 5rem;
  }
  #site-header.is-floating {
    height: 4rem;
  }
  #site-header .header-inner {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1320px) {
  #site-header.no-top-bar {
    height: 6rem;
  }
  #site-header.no-top-bar.is-floating {
    height: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #site-header.no-top-bar {
    height: 5rem;
  }
  #site-header.no-top-bar.is-floating {
    height: 4rem;
  }
}
/* ==========================================================================
   Paradigm Wrapper (Offsets Fixed Header)
   ========================================================================== */
.paradigm-wrapper {
  padding-top: 10rem;
  transition: padding-top 0.45s ease;
}
@media only screen and (max-width: 1320px) {
  .paradigm-wrapper {
    padding-top: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .paradigm-wrapper {
    padding-top: 5rem;
  }
}
/* ==========================================================================
   Adjust Wrapper Offset When Header Lacks Top Bar
   ========================================================================== */
#site-header.no-top-bar + .paradigm-wrapper {
  padding-top: 7rem;
}
@media only screen and (max-width: 1320px) {
  #site-header.no-top-bar + .paradigm-wrapper {
    padding-top: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  #site-header.no-top-bar + .paradigm-wrapper {
    padding-top: 5rem;
  }
}
/* ==========================================================================
   Mobile Styles
   ========================================================================== */
@media only screen and (max-width: 1320px) {
  #site-header {
    padding-top: 0;
  }
  #site-header .header-inner {
    justify-content: space-between;
    padding: 0 1rem;
  }
  #site-header .header-inner .header-logo {
    justify-content: flex-start;
    width: calc(100% - 65px);
  }
  #site-header .header-inner .header-logo a {
    height: 100%;
    width: 100%;
  }
  #site-header .header-inner .header-logo img {
    display: block;
    height: 100%;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: height 0.45s ease;
  }
  #site-header .header-inner .menu-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #000;
    z-index: 1101;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #site-header .header-inner .menu-toggle .toggle-icon {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #site-header .header-inner #primary-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #fff;
    padding-top: 1rem;
    transform: translateX(-100%);
    z-index: 1100;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    max-width: unset;
    gap: 0;
    transition: none;
  }
  #site-header .header-inner #primary-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #site-header .header-inner #primary-menu.close {
    visibility: visible;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #site-header .header-inner .header-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
  }
  #site-header .header-inner .header-nav .menu-left, #site-header .header-inner .header-nav .menu-right, #site-header .header-inner .header-nav .menu-top {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 0;
    flex-grow: 0;
  }
  #site-header .header-inner .header-nav .menu-item, #site-header .header-inner .header-nav .top-item, #site-header .header-inner .header-nav .dropdown-item {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
  }
  #site-header .header-inner .header-nav .menu-item a, #site-header .header-inner .header-nav .top-item a, #site-header .header-inner .header-nav .dropdown-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }
  #site-header .header-inner .header-nav .menu-item a:hover, #site-header .header-inner .header-nav .menu-item a:focus, #site-header .header-inner .header-nav .top-item a:hover, #site-header .header-inner .header-nav .top-item a:focus, #site-header .header-inner .header-nav .dropdown-item a:hover, #site-header .header-inner .header-nav .dropdown-item a:focus {
    background: #f7f7f7;
    color: #004FA0;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown, #site-header .header-inner .header-nav .top-item .dropdown, #site-header .header-inner .header-nav .dropdown-item .dropdown {
    display: none;
    flex-direction: column;
    background: #fafafa;
    border-left: 3px solid #004FA0;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link, #site-header .header-inner .header-nav .top-item .dropdown .dropdown-link, #site-header .header-inner .header-nav .dropdown-item .dropdown .dropdown-link {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link:hover, #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link:focus, #site-header .header-inner .header-nav .top-item .dropdown .dropdown-link:hover, #site-header .header-inner .header-nav .top-item .dropdown .dropdown-link:focus, #site-header .header-inner .header-nav .dropdown-item .dropdown .dropdown-link:hover, #site-header .header-inner .header-nav .dropdown-item .dropdown .dropdown-link:focus {
    background: #f0f0f0;
    color: #004FA0;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown.grandchild, #site-header .header-inner .header-nav .top-item .dropdown .dropdown.grandchild, #site-header .header-inner .header-nav .dropdown-item .dropdown .dropdown.grandchild {
    display: none;
    flex-direction: column;
    background: #f8f8f8;
    border-left: 3px solid #69B436;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown.grandchild .dropdown-link, #site-header .header-inner .header-nav .top-item .dropdown .dropdown.grandchild .dropdown-link, #site-header .header-inner .header-nav .dropdown-item .dropdown .dropdown.grandchild .dropdown-link {
    padding-left: 2.5rem;
  }
  #site-header .header-inner .header-nav .menu-item.expanded > .dropdown, #site-header .header-inner .header-nav .top-item.expanded > .dropdown, #site-header .header-inner .header-nav .dropdown-item.expanded > .dropdown {
    display: flex;
    animation: dropdownExpand 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #site-header .header-inner .header-nav .menu-item.expanded > .dropdown.grandchild, #site-header .header-inner .header-nav .top-item.expanded > .dropdown.grandchild, #site-header .header-inner .header-nav .dropdown-item.expanded > .dropdown.grandchild {
    display: flex;
    animation: dropdownExpand 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes dropdownExpand {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  body.mobile-nav-open {
    overflow-y: hidden;
  }
  .menu-right {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: #fff;
    box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.15);
    transition: bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
    z-index: 1200;
    opacity: 0;
  }
  .menu-right a.btn {
    width: 100%;
    text-align: center;
  }
  body.mobile-nav-open .menu-right {
    bottom: 0;
    opacity: 1;
  }
}
/* ==========================================================================
   Navigation Accessibility Styles
   Ensures visible outlines for all menu, dropdown, and grandchild links.
   Applies to:
   - .menu-item > a
   - .dropdown-link
   - .top-item > a
   - Any nested grandchild link inside dropdowns
   ========================================================================== */
@media only screen and (min-width: 1321px) {
  .submenu-toggle {
    appearance: unset;
    -webkit-appearance: unset;
    border: none;
    background: none;
    display: inline-block;
    position: relative;
    top: -2px;
  }
  .dropdown-item .submenu-toggle {
    position: absolute;
    right: 0;
    height: 100%;
    width: 35px;
    line-height: 1;
  }
  .top-item .submenu-toggle {
    top: -0.8px;
  }
  .submenu-toggle .chevron {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    transform: rotate(-45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .submenu-toggle:hover .chevron, .submenu-toggle:focus .chevron {
    border-color: #004FA0;
  }
}
@media only screen and (max-width: 1320px) {
  .submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57.5px;
    height: 57.5px;
    cursor: pointer;
    appearance: unset;
    -webkit-appearance: unset;
    border: none;
    background: none;
  }
  .dropdown-item .submenu-toggle {
    height: 46px;
  }
  .submenu-toggle .chevron {
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    transform: rotate(-45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .submenu-toggle[aria-expanded="true"] .chevron {
    transform: rotate(45deg);
  }
  .submenu-toggle:hover .chevron, .submenu-toggle:focus .chevron {
    border-color: #004FA0;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/8_footer.scss ===== */
/* ───────────────────────────────
   FOOTER GRID (Fixed Row Desktop, No Gap)
   - Columns size to their content
   - Uses negative margins + internal padding
   - 1 row on desktop, 2 rows on tablet, 1 on mobile
   ─────────────────────────────── */
.footer-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 -1rem;
  width: 100%;
  overflow-x: visible;
  /* Tablet: exactly 2 per row (50% width) */
  /* Mobile: full-width stacked */
}
.footer-grid img {
  max-width: 100%;
}
.footer-grid > .footer-col {
  flex: 0 0 auto;
  width: fit-content;
  min-width: fit-content;
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 1023px) {
  .footer-grid {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -1rem;
  }
  .footer-grid > .footer-col {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    padding: 0 1rem 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0;
  }
  .footer-grid > .footer-col {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    padding: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
  }
}
/* ───────────────────────────────
   FOUR COLUMN LAYOUT (opt-in)
   - Added by site_footer.php when the "Enable Four Column Layout" toggle is on
   - Logo takes its own full-width row, centred
   - The four widget columns sit evenly (25%) beneath it

   Four columns won't fit alongside the logo in the default single row, so the
   logo wraps to its own row instead of squeezing everything. Ordered after
   .footer-grid so these override its equal-specificity rules — including inside
   the shared breakpoints below.
   ─────────────────────────────── */
.footer-grid--four {
  flex-wrap: wrap;
  /* Tablet: two per row, matching the default grid's behaviour */
  /* Mobile: the base grid stacks everything; keep the logo centred. */
}
.footer-grid--four > .footer-col-1 {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 2rem;
  text-align: center;
}
.footer-grid--four > .footer-col-1 .footer-logo {
  display: flex;
  justify-content: center;
}
.footer-grid--four > .footer-col-1 .footer-logo-widgets .footer-social {
  justify-content: center;
}
.footer-grid--four > .footer-col-1 .footer-logo-widgets .social-group {
  justify-content: center;
}
.footer-grid--four > .footer-col-1 .footer-logo-widgets .footer-nav {
  align-items: center;
}
.footer-grid--four > .footer-col:not(.footer-col-1) {
  flex: 0 0 25%;
  width: 25%;
  max-width: 25%;
  min-width: 0;
}
@media only screen and (max-width: 1023px) {
  .footer-grid--four > .footer-col-1 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .footer-grid--four > .footer-col:not(.footer-col-1) {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .footer-grid--four > .footer-col-1 {
    margin-bottom: 0;
  }
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  margin-right: -100px;
  width: 50px;
  height: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 99;
}
.back-to-top.active {
  margin-right: 0;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .back-to-top {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/9_adjustments.scss ===== */
.pf2-alert-container > span > p:first-child {
  margin-top: 0;
}
.pf2-alert-container > span > p:last-child {
  margin-bottom: 0;
}
.img-wrapper img {
  width: 100%;
}
ul + p, li + p {
  margin-top: 0;
}
figure.video-figure {
  margin-left: 0;
  margin-right: 0;
}
main > p {
  display: none;
}
.rpi-dots .rpi-dot {
  height: 16px !important;
  width: 16px !important;
}
.post-byline {
  border-bottom: solid 2px;
  display: inline-block;
  padding-bottom: 0.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.post-byline a {
  font-weight: bold;
}
.video-figure {
  position: relative;
}
.video-figure:not(.is-playing) video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}
.video-figure__play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.video-figure__play::before, .video-figure__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.video-figure__play::before {
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.video-figure__play::after {
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent #004FA0;
}
.video-figure__play:hover::before, .video-figure__play:focus-visible::before {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
.video-figure__play:hover::after, .video-figure__play:focus-visible::after {
  transform: translate(-40%, -50%) scale(1.06);
}
.video-figure__play:focus-visible {
  outline: 3px solid #004FA0;
  outline-offset: 3px;
}
@media only screen and (max-width: 767px) {
  .video-figure__play::before {
    width: 64px;
    height: 64px;
  }
  .video-figure__play::after {
    border-width: 12px 0 12px 20px;
  }
}
.video-figure.is-playing .video-figure__play {
  display: none;
}
.video-figure__transcript {
  margin-top: 1rem;
  text-align: left;
  font-size: 0.9375rem;
  color: #000 !important;
}
.video-figure__transcript > summary {
  cursor: pointer;
  font-weight: 600;
  list-style-position: inside;
}
.video-figure__transcript > summary:focus-visible {
  outline: 3px solid #004FA0;
  outline-offset: 2px;
}
.video-figure__transcript-body {
  max-height: 22rem;
  overflow-y: auto;
  margin-top: 0.75rem;
  padding-right: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.6;
}
.video-figure__transcript-body > p {
  margin: 0.75rem 0 0;
}
.video-figure .video-transcript {
  position: relative;
  max-height: 20rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  margin: 0;
  padding: 0;
  list-style: none;
}
.video-figure .video-transcript > li {
  margin: 0;
}
.video-figure .video-transcript-cue {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  padding: 0.3rem 0.4rem;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #000 !important;
  text-align: left;
  font: inherit;
  line-height: 1.6;
  cursor: pointer;
}
.video-figure .video-transcript-cue:hover {
  background: rgba(0, 0, 0, 0.05);
}
.video-figure .video-transcript-cue:focus-visible {
  outline: 3px solid #004FA0;
  outline-offset: -2px;
}
.video-figure .video-transcript-cue.is-active {
  background: rgba(0, 0, 0, 0.05);
  box-shadow: inset 3px 0 0 0 #004FA0;
  color: #000 !important;
  font-weight: 600;
}
.video-figure .video-transcript-time {
  flex: 0 0 auto;
  min-width: 2.75rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.6;
}
.video-figure .video-transcript-text {
  flex: 1 1 auto;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/10_accessibility.scss ===== */
/* ───────────────────────────────
   Accessibility (10_accessibility.scss)
   - Sitewide ADA styling: focus protocol + accessible control chrome.
   - Loads after 9_adjustments (natural sort) but before child theme SCSS
     and custom.scss, so brands can still override per-component.
   ─────────────────────────────── */
/* ───────────────────────────────
   Focus protocol
   - :focus is ring-free (3_normalize.scss); :focus-visible is the single
     source of keyboard focus indication sitewide.
   - Dual ring: color(primary) outline offset over a white box-shadow backing,
     so the ring reads on light, dark, and image backgrounds alike.
   - Components with richer indicators (slider dots, video modal buttons,
     form text inputs) override this with their own more-specific rules.
   ─────────────────────────────── */
:focus-visible {
  outline: 2px solid #004FA0;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #fff;
  transition: none;
}
/* Custom form controls hide the native ring via appearance:none and never
   replaced it — give them the standard treatment explicitly. */
.pf2-radio input:focus-visible, .pf2-checkbox input:focus-visible, .pf2-boolean input:focus-visible {
  outline: 2px solid #004FA0;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #fff;
}
/* Background-video pause toggle — rendered as a section-level sibling of
   .bg-group, because the group (video + overlay layers) stacks at negative
   z-index with pointer-events:none; a child there could never be clicked. */
.bg-video-toggle {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.2s ease;
}
.bg-video-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}
.bg-video-toggle:focus-visible {
  outline: 2px solid #004FA0;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #fff;
  background: rgba(0, 0, 0, 0.8);
}
/* Pause glyph (two bars); becomes a play triangle when paused. */
.bg-video-toggle-icon {
  display: block;
  width: 12px;
  height: 14px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
}
.bg-video-toggle.is-paused .bg-video-toggle-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-left: 12px solid currentColor;
  border-right: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
/* Static transcript rows (iframe embeds in the video modal) reuse the cue
   styling but aren't seekable — no pointer affordance. */
span.video-transcript-cue.is-static {
  cursor: default;
}
/* ───────────────────────────────
   Forced colors (Windows High Contrast)
   - Backgrounds and box-shadows are stripped in forced-colors mode; controls
     drawn with them vanish. Redraw the video play badge and the bg-video
     toggle with system-color borders so they stay visible. Outlines survive
     natively, so the focus protocol needs no override.
   ─────────────────────────────── */
@media (forced-colors: active) {
  .video-figure__play::before {
    background: ButtonFace;
    border: 2px solid ButtonText;
  }
  .video-figure__play::after {
    border-left-color: ButtonText;
  }
  .bg-video-toggle {
    background: ButtonFace;
    border: 2px solid ButtonText;
    color: ButtonText;
  }
}
/* ───────────────────────────────
   Accordion panels collapse via max-height, which leaves the hidden
   content keyboard-tabbable and exposed to assistive tech. Visibility
   pulls collapsed panels out of the tab order and the accessibility
   tree; child themes animate the box, not visibility, so no conflict.
   ─────────────────────────────── */
.accordion-module .tab-panel {
  visibility: hidden;
}
.accordion-module .tab-panel.is-active {
  visibility: visible;
}
/* ───────────────────────────────
   Image cards reveal their description/CTA on hover only; keyboard
   focus must reveal them too. Mirrors the :hover block in img_cards.scss
   (mobile/tablet never collapse the container, so this is desktop-only
   behavior by way of that file's own media queries).
   ─────────────────────────────── */
.img-card:focus-within {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.img-card:focus-within .bg-layer.bg-overlay {
  transform: scaleY(1);
}
.img-card:focus-within .card-content-inner {
  max-height: 100%;
}
.img-card:focus-within .show-container {
  opacity: 1;
  max-height: 500px;
  overflow: unset;
}
.img-card:focus-within .img-card-desc, .img-card:focus-within .btn {
  pointer-events: auto;
}
@media only screen and (min-width: 1024px) {
  .img-card:focus-within .img-card-content > .bg-layer.bg-overlay {
    top: -300px;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/animations.scss ===== */
/* ===============================
   Scroll Animations
   =============================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Variants */
.animate-fade {
  transform: none;
}
.animate-left {
  transform: translateX(-40px);
}
.animate-right {
  transform: translateX(40px);
}
.animate-up {
  transform: translateY(40px);
}
.animate-down {
  transform: translateY(-40px);
}
.animate-on-scroll.visible.animate-left, .animate-on-scroll.visible.animate-right, .animate-on-scroll.visible.animate-up, .animate-on-scroll.visible.animate-down {
  transform: translate(0, 0);
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/components/before_after_card.scss ===== */
.before-after-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: ew-resize;
}
.before-after-card .before-img, .before-after-card .after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}
.before-after-card .after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: inset(0 50% 0 0);
}
.before-after-card .slider-handle:focus-visible {
  outline: none;
}
.before-after-card .slider-handle:focus-visible .handle-dot {
  outline: 2px solid #004FA0;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(0, 0, 0, 0.25);
}
.before-after-card .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.before-after-card .slider-handle .handle-line {
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
}
.before-after-card .slider-handle .handle-dot {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  cursor: ew-resize;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.before-after-card .slider-handle .handle-dot:hover {
  background: #004FA0;
  border-color: #004FA0;
}
.before-after-card .slider-handle .handle-dot:hover .arrow::before {
  border-color: #fff;
}
.before-after-card .slider-handle .handle-dot .arrow {
  position: relative;
  width: 10px;
  height: 10px;
}
.before-after-card .slider-handle .handle-dot .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #004FA0;
  border-right: 2px solid #004FA0;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s ease;
}
.before-after-card .slider-handle .handle-dot .arrow.left::before {
  transform: translateY(-50%) rotate(225deg);
  left: 2px;
}
.before-after-card .slider-handle .handle-dot .arrow.right::before {
  transform: translateY(-50%) rotate(45deg);
  right: 2px;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/fluid_ba_img_section.scss ===== */
section.fluid-ba-img-section .before-after-card {
  height: 100%;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/fluid_img_section.scss ===== */
.inline-fluid-img-section, .fluid-ba-img-section, .fluid-img-section {
  align-items: stretch;
  display: flex;
}
.inline-fluid-img-section .container, .fluid-ba-img-section .container, .fluid-img-section .container {
  align-items: stretch;
  display: flex;
  justify-content: center;
}
.inline-fluid-img-section .fluid-img-container, .fluid-ba-img-section .fluid-img-container, .fluid-img-section .fluid-img-container {
  top: 0;
  bottom: 0;
  width: 48%;
  overflow: visible;
  position: absolute;
}
@media only screen and (min-width: 1080px) {
  .inline-fluid-img-section.img-third .fluid-img-container, .fluid-ba-img-section.img-third .fluid-img-container, .fluid-img-section.img-third .fluid-img-container {
    width: 33%;
  }
  .inline-fluid-img-section.img-third .grid > .img-col, .fluid-ba-img-section.img-third .grid > .img-col, .fluid-img-section.img-third .grid > .img-col {
    grid-column: span 4;
  }
  .inline-fluid-img-section.img-third .grid > *:not(.img-col), .fluid-ba-img-section.img-third .grid > *:not(.img-col), .fluid-img-section.img-third .grid > *:not(.img-col) {
    grid-column: span 8;
  }
}
.inline-fluid-img-section.img-right .fluid-img-container, .fluid-ba-img-section.img-right .fluid-img-container, .fluid-img-section.img-right .fluid-img-container {
  right: 0;
  left: auto;
}
@media only screen and (max-width: 767px) {
  .inline-fluid-img-section.img-right .img-col, .fluid-ba-img-section.img-right .img-col, .fluid-img-section.img-right .img-col {
    margin-right: -1.5rem !important;
  }
  .inline-fluid-img-section.img-right.sm-col-reverse .img-col, .fluid-ba-img-section.img-right.sm-col-reverse .img-col, .fluid-img-section.img-right.sm-col-reverse .img-col {
    margin-right: 0 !important;
    margin-left: -1.5rem !important;
  }
}
.inline-fluid-img-section.img-left .fluid-img-container, .fluid-ba-img-section.img-left .fluid-img-container, .fluid-img-section.img-left .fluid-img-container {
  right: auto;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .inline-fluid-img-section.img-left .img-col, .fluid-ba-img-section.img-left .img-col, .fluid-img-section.img-left .img-col {
    margin-left: -1.5rem !important;
  }
  .inline-fluid-img-section.img-left.sm-col-reverse .img-col, .fluid-ba-img-section.img-left.sm-col-reverse .img-col, .fluid-img-section.img-left.sm-col-reverse .img-col {
    margin-left: 0 !important;
    margin-right: -1.5rem !important;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/fluid_overlap.scss ===== */
.fluid-img-overlap-section {
  align-items: stretch;
  display: flex;
}
.fluid-img-overlap-section .container {
  align-items: stretch;
  display: flex;
  justify-content: center;
}
.fluid-img-overlap-section .fluid-img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: visible;
  border-radius: 0;
  z-index: -1;
  width: 50%;
}
.fluid-img-overlap-section.img-left .fluid-img-container {
  right: auto;
  left: 0;
}
.fluid-img-overlap-section.img-right .fluid-img-container {
  right: 0;
  left: auto;
}
@media only screen and (max-width: 767px) {
  .fluid-img-overlap-section .img-col {
    position: relative;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}
.fluid-img-overlap-section .content-group {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1023px) {
  .fluid-img-overlap-section .content-group {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .fluid-img-overlap-section .content-group {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/header.scss ===== */
@media only screen and (min-width: 1321px) {
  #site-header .header-inner .header-nav .menu-item a {
    color: rgba(0, 79, 160, 0.8);
  }
  #site-header .header-inner .header-nav .menu-item a.current-url, #site-header .header-inner .header-nav .menu-item a:hover, #site-header .header-inner .header-nav .menu-item a:focus {
    color: #004FA0;
  }
  #site-header .header-inner .header-nav .menu-item a.current-url {
    font-weight: bold;
  }
  .submenu-toggle > span {
    border-color: rgba(0, 0, 0, 0.8);
  }
  #site-header .header-inner .header-nav .menu-item a.current-url + .submenu-toggle > span, #site-header .header-inner .header-nav .menu-item a:hover + .submenu-toggle > span, #site-header .header-inner .header-nav .menu-item a:focus + .submenu-toggle > span {
    border-color: #004FA0;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link {
    color: rgba(0, 0, 0, 0.8);
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link + .submenu-toggle > span {
    border-color: rgba(0, 0, 0, 0.8);
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link.current-url, #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link:hover, #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link:focus, #site-header .header-inner .header-nav .menu-top .top-item .dropdown .dropdown-link:hover, #site-header .header-inner .header-nav .menu-top .top-item .dropdown .dropdown-link:focus, #site-header .header-inner .header-nav .menu-top .top-item .dropdown .dropdown-link.current-url {
    background-color: #004FA0;
    color: #FFFFFF;
  }
  #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link.current-url + .submenu-toggle > span, #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link:hover + .submenu-toggle > span, #site-header .header-inner .header-nav .menu-item .dropdown .dropdown-link:focus + .submenu-toggle > span {
    border-color: #FFFFFF;
  }
  .dropdown, .dropdown > .dropdown-item:first-child > a, .dropdown.grandchild > .dropdown-link:first-child, .top-item .dropdown > .dropdown-link:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .dropdown, .dropdown > .dropdown-item:last-child > a, .dropdown.grandchild > .dropdown-link:last-child, .top-item .dropdown > .dropdown-link:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  #site-header .header-inner .header-nav .menu-top a {
    color: #000000;
  }
  #site-header .header-inner .header-nav .menu-top a:hover, #site-header .header-inner .header-nav .menu-top a:focus {
    color: #004FA0;
  }
  #site-header .header-inner .header-nav .menu-top .top-item .dropdown, #site-header .header-inner .header-nav .menu-item .dropdown {
    top: 150%;
  }
}
@media only screen and (max-width: 1320px) {
  #site-header .header-inner .header-nav .menu-item a {
    color: #004FA0;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/img_cards.scss ===== */
/* =========================================================
   Image Card (Hover Reveal) — long-title safe
   ========================================================= */
.img-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 750ms ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  /* Controls collapsed overlay height */
  --overlay-collapsed-height: 30%;
  height: 45vh;
  min-height: 300px;
}
@media only screen and (max-width: 767px) {
  .img-card {
    height: 50vh;
    min-height: 350px;
  }
}
.img-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.img-card:hover .bg-layer.bg-overlay {
  transform: scaleY(1);
}
.img-card:hover .card-content-inner {
  max-height: 100%;
}
.img-card:hover .show-container {
  opacity: 1;
  max-height: 500px;
  overflow: unset;
}
.img-card:hover .img-card-desc, .img-card:hover .btn {
  pointer-events: auto;
}
/* =========================================================
   Card Content Wrapper
   ========================================================= */
.img-card-content {
  z-index: 2;
  position: relative;
}
/* =========================================================
   Overlay (visual layer)
   ========================================================= */
.img-card-content > .bg-layer.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 750ms ease;
}
@media only screen and (min-width: 1024px) {
  .img-card:hover .img-card-content > .bg-layer.bg-overlay {
    top: -300px;
  }
}
/* =========================================================
   Inner Content (CLAMPED)
   ========================================================= */
.card-content-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  transition: max-height 600ms ease;
}
/* =========================================================
   Title
   ========================================================= */
.img-card-title {
  line-height: 1.2;
}
/* =========================================================
   Hidden content container
   ========================================================= */
.show-container {
  transition: all 750ms ease;
}
@media only screen and (min-width: 1024px) {
  .show-container {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
}
/* =========================================================
   Non-hover state safety
   ========================================================= */
.img-card-desc, .img-card-content .btn {
  pointer-events: none;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/img_group_section.scss ===== */
.img-group-container {
  position: relative;
  overflow: visible;
  aspect-ratio: 0.9333333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .img-group-container {
    max-height: calc(100% + 160px);
  }
}
.img-group-container .img-group {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.img-group-container .img-group .img {
  position: absolute;
  width: 60%;
  height: 75%;
  background-size: cover;
  background-position: center center;
}
.img-group-container .img-group .top {
  top: 0;
}
.img-group-container .img-group .bottom {
  bottom: 0;
}
.img-group-container .img-group .left {
  left: 0;
}
.img-group-container .img-group .right {
  right: 0;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/modules/bg-group.scss ===== */
/* ───────────────────────────────
   Background Group + Layers
   - Absolute fill inside section
   - Supports image, video, solid, and overlay
   - Overlay blends above image/video layers
   ─────────────────────────────── */
section {
  position: relative;
  /* ensure backgrounds are scoped to each section */
  z-index: 0;
  /* content stack baseline */
}
.bg-group {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  /* background group always behind section content */
}
.bg-container {
  position: relative;
  overflow: hidden;
  z-index: -2;
}
.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  /* don’t block content interactions */
  z-index: -1;
  /* baseline layer inside group */
}
/* Image background */
.bg-layer.bg-img {
  background-size: cover;
  background-position: center;
}
/* Video background */
/* ───────────────────────────────
   Video Backgrounds
   ─────────────────────────────── */
.bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.bg-video.is-loaded, .bg-video[style*="opacity: 1"] {
  opacity: 1;
}
.bg-video iframe, .bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  border: 0;
  display: block;
}
.bg-video iframe {
  filter: brightness(0.9) contrast(1.1);
}
.bg-video iframe::-webkit-media-controls, .bg-video iframe::cue, .bg-video iframe .ytp-title-text, .bg-video iframe .ytp-gradient-top, .bg-video iframe .ytp-gradient-bottom, .bg-video iframe .ytp-chrome-bottom, .bg-video iframe .player-title, .bg-video iframe .vp-controls-wrapper {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Ensures proper scoping inside .bg-group when nested */
.bg-group .bg-layer.bg-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Overlay */
.bg-layer.bg-overlay {
  z-index: 0;
  /* above bg, below content */
}
/* =========================
   Background Position Utilities
   ========================= */
.bg-pos-top, .bg-pos-top > .bg-image {
  background-position: top center !important;
}
.bg-pos-bottom, .bg-pos-bottom > .bg-image {
  background-position: bottom center !important;
}
.bg-pos-left, .bg-pos-left > .bg-image {
  background-position: center left !important;
}
.bg-pos-right, .bg-pos-right > .bg-image {
  background-position: center right !important;
}
.bg-pos-center, .bg-pos-center > .bg-image {
  background-position: center center !important;
}
img.bg-pos-top, .bg-pos-top > img {
  align-self: flex-start !important;
}
img.bg-pos-bottom, .bg-pos-bottom > img {
  align-self: flex-end !important;
}
img.bg-pos-left, .bg-pos-left > img {
  align-self: flex-start !important;
}
img.bg-pos-right, .bg-pos-right > img {
  align-self: flex-end !important;
}
img.bg-pos-center, .bg-pos-center > img {
  align-self: center !important;
}
.overflow-hidden {
  overflow: hidden;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/slider.scss ===== */
/* -----------------------------------------------------------
   Slider Section — Class-based transitions
   ----------------------------------------------------------- */
.slider-viewport {
  position: relative;
  width: 100%;
  min-height: 400px;
  /* ensures stable height, prevents popping */
}
.slider-dot {
  appearance: unset;
  -webkit-appearance: unset;
  line-height: 1;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  border: none;
  background: #ccc;
}
.slider-dot:hover {
  background: #004FA0;
  cursor: pointer;
}
.slider-dot.is-active {
  background: #69B436;
}
.slider-dot:focus-visible {
  outline: 2px solid #004FA0;
  outline-offset: 3px;
}
.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  height: 48px;
  width: 48px;
  border-radius: 24px;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: #004FA0;
  color: #FFFFFF;
  transition: background 200ms ease, color 200ms ease, opacity 200ms ease;
  cursor: pointer;
}
.slider-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: #69B436;
  color: #FFFFFF;
}
.slider-btn:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #004FA0;
}
@media only screen and (min-width: 1490px) {
  .slider-btn {
    position: absolute;
    top: 50%;
    /* LEFT BUTTON */
    /* RIGHT BUTTON */
  }
  .slider-btn.slider-btn-prev {
    left: calc((100vw - 1400px) / -4);
    transform: translateY(-50%) translateX(-50%);
  }
  .slider-btn.slider-btn-next {
    right: calc((100vw - 1400px) / -4);
    transform: translateY(-50%) translateX(50%);
  }
  .slider-pagination {
    position: absolute;
    display: flex;
    width: 50%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 0;
    gap: 5px;
  }
  .img-left .slider-pagination {
    left: auto;
    right: 0;
  }
  .img-right .slider-pagination {
    right: auto;
    left: 0;
  }
}
@media only screen and (max-width: 1489px) {
  .slider-section {
    z-index: 10;
  }
  .slider {
    transform: unset !important;
  }
  .slider-pagination {
    gap: 5px;
    display: flex;
  }
  .slider-controls {
    position: fixed;
    bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    height: 60px;
    border-radius: 30px;
    background: #FFFFFF;
    gap: 10px;
    padding: 0 8px;
    transition: all 0.4s ease;
    z-index: 11;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    margin-bottom: -100px;
  }
  .slider-controls.in-view {
    margin-bottom: 0px;
  }
  body.slider-in-view .back-to-top {
    bottom: 100px !important;
  }
  .img-left .slider-pagination {
    left: auto;
    right: 0;
  }
  .img-right .slider-pagination {
    right: auto;
    left: 0;
  }
}
.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
  transform: translateX(40px);
}
.slider-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  position: relative;
  /* keeps layout stable once active */
}
/* Slide-in (from left) */
.slider-slide.slide-in {
  opacity: 0;
  transform: translateX(-30px);
  animation: sliderIn 700ms ease forwards;
}
/* Slide-out (to right, fading) */
.slider-slide.slide-out {
  opacity: 1;
  transform: translateX(0);
  animation: sliderOut 700ms ease forwards;
}
@keyframes sliderIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes sliderOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(30px);
  }
}
/* Inside-slide content animations */
.slider-slide .slider-content > * {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.slider-slide.is-active .slider-content > * {
  opacity: 1;
  transform: translateY(0);
}
.slide-count {
  display: block;
  margin-right: auto;
  margin-left: 0;
  width: 100%;
  max-width: 50px;
  font-weight: bold;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 10px;
  opacity: 0.6;
  transition: opacity 0.375s ease, max-width 0.4s ease;
  position: relative;
  /* Base underline (inactive) */
}
.slide-count::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #6db5ff;
  opacity: 0.3;
  transform: scaleX(0.3);
  transform-origin: left center;
  transition: transform 0.5s ease, background 0.5s ease, opacity 0.5s ease;
}
/* ---------------------------------------------
   When section is active — count is in view
--------------------------------------------- */
.count-active .slide-count {
  opacity: 1;
  max-width: 600px;
}
.count-active .slide-count::after {
  background: #004FA0;
  opacity: 1;
  transform: scaleX(1);
}
/* ---------------------------------------------
   Reduced-motion override
   --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .slider-slide, .slider-slide.slide-in, .slider-slide.slide-out, .slider-slide .slider-content > * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-parent/assets/scss/video-cards.scss ===== */
.video-card-section {
  z-index: 2;
}
.carousel-card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.video-card-carousel .slider-viewport {
  overflow: hidden;
  width: 100%;
}
.video-card-carousel .slider-track {
  transition: transform 420ms ease;
  will-change: transform;
}
.video-card-carousel .card-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  --carousel-gap: 1.5rem;
}
.video-card-carousel .carousel-card {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.video-card-carousel .carousel-card:not(.vanilla) {
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
  opacity: 0.6;
  transform: scale(0.92);
}
.video-card-carousel .carousel-card.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
@media (max-width: 1024px) {
  .video-card-carousel .carousel-card {
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
  }
}
@media (max-width: 640px) {
  .video-card-carousel .carousel-card {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 1490px) {
  .video-card-section .slider-pagination {
    width: 100%;
  }
  .video-card-section .video-card-carousel .slider-viewport {
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 1489px) {
  .video-card-section .video-card-carousel .slider-viewport {
    padding-bottom: 1rem;
  }
  .video-card-section .video-card-carousel {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
/* --------------------------------------------------
   Video Card Carousel — Mobile Hard Overrides
   Keeps a single row + 1 card with slivers
-------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .video-card-carousel .card-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    gap: 1rem;
  }
  .video-card-carousel .card-grid > * {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto;
  }
  .video-card-carousel .carousel-card {
    flex: 0 0 76% !important;
    max-width: 400px !important;
  }
  .video-card-carousel .slider-viewport {
    overflow: hidden;
  }
}
/* --------------------------------------------------
   Video Modal (Fullscreen)
-------------------------------------------------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.video-modal[hidden] {
  display: none;
}
.video-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.video-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.video-modal-embed {
  position: relative;
  width: 100%;
  max-width: 1600px;
  aspect-ratio: 1.7777777778;
  background: #000;
}
.video-modal-embed iframe, .video-modal-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Close button. Positioned by .video-modal-bar, not by itself — it used to be
   absolute at top/right, which put it on top of the transcript toggle once that
   button joined it in the bar. Sized to match the toggle so the two read as a
   pair rather than a big X next to a small pill. */
.video-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: #fff;
}
.video-modal-close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
/* Prevent body scroll when open */
body.video-modal-open {
  overflow: hidden;
}
/* --------------------------------------------------
   Transcript panel

   Built by video-cards.js from the cues the browser parsed for the captions
   track, so it only exists when the card has a VTT attached.

   It sits BESIDE the video, not under it. The video is height-constrained
   (16/9 inside a roughly 16/9 viewport), so horizontal is the axis with slack:
   a 380px side panel costs ~2% of the video's width at 1920x900, where a bottom
   sheet of the same size costs nearly 30%. Portrait inverts that — the video is
   width-constrained there, with height to spare — so the panel drops underneath
   at the bottom of this file.
-------------------------------------------------- */
/* Everything below is modal-only. It's nested under .video-modal because the
   inline [video] embed transcript reuses these same class names on a light
   page — unscoped, these white-on-dark rules rendered it white on white. */
.video-modal {
  /* Toolbar holding the transcript toggle and the close button. The bar is the
     only thing positioned; its children are laid out by flex, so they can't
     collide the way an absolutely-positioned close button did. */
  /* Player + panel side by side; the player takes whatever is left. */
}
.video-modal .video-modal-bar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.video-modal .video-modal-transcript-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.25rem;
  /* match .video-modal-close */
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1;
  cursor: pointer;
  /* Pressed state, so the toggle reads as on/off rather than a plain button. */
}
.video-modal .video-modal-transcript-toggle[hidden] {
  display: none;
}
.video-modal .video-modal-transcript-toggle:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: #fff;
}
.video-modal .video-modal-transcript-toggle:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.video-modal .video-modal-transcript-toggle[aria-expanded="true"] {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.video-modal .video-modal-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  /* Size the player from HEIGHT and let 16/9 derive the width, capped by
       whatever horizontal room is left. Driving it from width:100% instead
       overflowed a short viewport, because aspect-ratio then computes a height
       the container can't honour. This is also what keeps the panel cheap: the
       player is already height-bound, so taking width off it costs little. */
}
.video-modal .video-modal-stage .video-modal-embed {
  flex: 0 1 auto;
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: min(1600px, 100%);
  min-width: 0;
}
.video-modal .video-modal-transcript {
  flex: 0 0 380px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
  /* The bar overlaps the top-right corner; keep the heading clear of it. */
  margin-top: 3rem;
  padding: 1rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: left;
}
.video-modal .video-modal-transcript[hidden] {
  display: none;
}
.video-modal .video-modal-transcript-heading {
  flex: 0 0 auto;
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
}
.video-modal .video-transcript {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  /* Scroll the reading list, not the page behind it. */
  overscroll-behavior: contain;
}
.video-modal .video-transcript > li {
  margin: 0;
}
.video-modal .video-transcript-cue {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  padding: 0.35rem 0.5rem;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
  /* The line currently being spoken. Colour alone can't carry this (WCAG
       1.4.1), so it also gets weight and a leading rule. */
}
.video-modal .video-transcript-cue:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.video-modal .video-transcript-cue:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}
.video-modal .video-transcript-cue.is-active {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 3px 0 0 0 #fff;
  color: #fff;
  font-weight: 600;
}
.video-modal .video-transcript-time {
  flex: 0 0 auto;
  min-width: 2.75rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
}
.video-modal .video-transcript-text {
  flex: 1 1 auto;
}
/* Portrait / narrow: the video is width-constrained here with height to spare,
   so the panel goes underneath rather than beside. */
@media screen and (max-width: 1024px), screen and (orientation: portrait) {
  /* Stacked, so the player sizes from width again and gives up height to the
     sheet — the opposite trade from desktop, because portrait is where the
     spare room is vertical. */
  .video-modal-stage {
    flex-direction: column;
    gap: 0.5rem;
  }
  .video-modal-transcript {
    flex: 0 1 auto;
    align-self: stretch;
    margin-top: 0;
    max-height: 40vh;
  }
  .video-modal-stage .video-modal-embed {
    flex: 0 1 auto;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-caregiver/assets/scss/accordion.scss ===== */
.accordion-module {
  /* ---------------------------------
       Configurable tokens
       --------------------------------- */
  --accordion-border-color: #9e9e9e;
  --accordion-bg-default: #ebebeb;
  border: none;
  overflow: hidden;
  border-radius: 28px;
  /* ---------------------------------
       Trigger
       --------------------------------- */
  /* ---------------------------------
       Panel (animated by default)
       --------------------------------- */
  /* ---------------------------------
       Cleanup last item borders
       --------------------------------- */
  /* ---------------------------------
       Mobile: disable layout animations
       --------------------------------- */
}
.accordion-module .accordion-title {
  margin: 0;
  padding: 0;
}
.accordion-module .accordion-title:not(:has(+ .tab-panel:last-of-type)) .tab-trigger {
  border-bottom: 1px solid var(--accordion-border-color);
}
.accordion-module .tab-trigger {
  display: block;
  width: 100%;
  position: relative;
  text-align: left;
  padding: 1.5rem 3rem 1.5rem 1rem;
  background: var(--accordion-bg-default);
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.accordion-module .tab-trigger i {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 200ms ease;
}
.accordion-module .tab-trigger.is-active {
  background: #004FA0;
  color: #FFFFFF;
}
.accordion-module .tab-trigger.is-active i {
  transform: rotate(180deg);
  color: #FFFFFF;
}
.accordion-module .tab-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 300ms ease, opacity 200ms ease, transform 200ms ease;
}
.accordion-module .tab-panel .accordion-content {
  padding: 1.5rem 1rem;
}
.accordion-module .tab-panel.is-active {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  border-bottom: 1px solid var(--accordion-border-color);
}
.accordion-module .tab-panel:last-child {
  border-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .accordion-module .tab-panel {
    transition: none;
    max-height: none;
    opacity: 1;
    transform: none;
  }
  .accordion-module .tab-panel:not(.is-active) {
    display: none;
  }
  .accordion-module .tab-trigger i {
    transition: none;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-caregiver/assets/scss/components/buttons.scss ===== */
.btn, .btn-default {
  font-family: "Avenir";
  font-style: normal;
  font-variant: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.125;
  min-height: 58px;
  border-radius: 29px;
  padding: 3px 58px 0;
  cursor: pointer;
  position: relative;
  text-align: center;
  text-decoration: none;
  appearance: unset;
  -webkit-appearance: unset;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background: none;
  z-index: 3;
  transition: all 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn.ghost:not(:hover), .btn-default.ghost:not(:hover) {
  background: transparent !important;
  border-color: transparent !important;
}
.btn::before, .btn-default::before {
  content: "";
  position: absolute;
  inset: -3px;
  transition: all 0.375s ease;
  transform: translateX(0%);
  z-index: -2;
}
.btn::after, .btn-default::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  transition: all 0.375s ease;
  transform: translateX(-100%);
}
.btn:hover::after, .btn-default:hover::after {
  transform: translateX(0%);
}
.btn:hover::before, .btn-default:hover::before {
  transform: translateX(100%);
}
.btn.small, .btn-default.small {
  font-size: 80%;
  font-weight: 500;
  padding: 8px 1.375rem 6px;
  min-height: 36px;
}
.btn:active, .btn-default:active {
  transform: scale(0.98);
}
@media only screen and (max-width: 767px) {
  .btn, .btn-default {
    font-size: 1rem;
    padding: 0 52px;
    min-height: 52px;
  }
  .btn.small, .btn-default.small {
    min-height: 34px;
  }
}
.btn, .btn-default {
  color: #FFFFFF;
  border: 2px solid #69B436;
  background-color: #69B436;
}
.btn::before, .btn-default::before {
  background-color: #69B436;
}
.btn::after, .btn-default::after {
  background-color: #009639;
}
.btn:hover, .btn-default:hover {
  color: #FFFFFF;
  border: 2px solid #009639;
  background-color: #009639;
}
.btn-primary {
  color: #FFFFFF;
  border: 2px solid #1095CD;
  background-color: #1095CD;
}
.btn-primary::before {
  background-color: #1095CD;
}
.btn-primary::after {
  background-color: #004FA0;
}
.btn-primary:hover {
  color: #FFFFFF;
  border: 2px solid #004FA0;
  background-color: #004FA0;
}
.btn-secondary {
  color: #FFFFFF;
  border: 2px solid #69B436;
  background-color: #69B436;
}
.btn-secondary::before {
  background-color: #69B436;
}
.btn-secondary::after {
  background-color: #009639;
}
.btn-secondary:hover {
  color: #FFFFFF;
  border: 2px solid #009639;
  background-color: #009639;
}
.btn-white-ol {
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  background-color: transparent;
}
.btn-white-ol::before {
  background-color: transparent;
}
.btn-white-ol::after {
  background-color: #FFFFFF;
}
.btn-white-ol:hover {
  color: #004FA0;
  border: 2px solid #FFFFFF;
  background-color: #FFFFFF;
}
.btn-primary-ol {
  color: #1095CD;
  border: 2px solid #1095CD;
  background-color: transparent;
}
.btn-primary-ol::before {
  background-color: transparent;
}
.btn-primary-ol::after {
  background-color: #004FA0;
}
.btn-primary-ol:hover {
  color: #FFFFFF;
  border: 2px solid #004FA0;
  background-color: #004FA0;
}
.btn-secondary-ol {
  color: #69B436;
  border: 2px solid #69B436;
  background-color: transparent;
}
.btn-secondary-ol::before {
  background-color: transparent;
}
.btn-secondary-ol::after {
  background-color: #69B436;
}
.btn-secondary-ol:hover {
  color: #FFFFFF;
  border: 2px solid #69B436;
  background-color: #69B436;
}
.btn-full {
  width: 100%;
  text-align: center;
}
.text-center .btn, .text-center.btn {
  margin-left: auto;
  margin-right: auto;
}
.text-right .btn, .text-right.btn {
  margin-left: auto;
}
.text-left .btn, .text-left.btn {
  margin-right: auto;
}
.text-center.btn, .text-left.btn, .text-right.btn {
  display: inline-flex;
}
.btn.ghost:not(:hover) {
  border-color: transparent !important;
}
.btn.ghost:before {
  display: none !important;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-caregiver/assets/scss/components/surgeon_cards.scss ===== */
.surgeon-card {
  border-radius: 28px;
  overflow: hidden;
}
.surgeon-card .headshot-link {
  position: relative;
  overflow: hidden;
  display: block;
}
.surgeon-card .headshot-link .headshot {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, filter 0.4s ease;
  transform-origin: center center;
}
.surgeon-card .headshot-link:hover .headshot {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.05);
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-caregiver/assets/scss/footer.scss ===== */
footer {
  background: #004FA0;
}
footer .h4.footer-label {
  color: #69B436;
}
footer a {
  color: #FFFFFF !important;
  text-decoration: none;
}
footer a:hover {
  color: #69B436 !important;
}
.footer-bottom {
  background-color: #004791;
}
.social-group {
  margin: 0 -0.375rem -0.75rem -0.375rem;
}
.social-group .social-wrapper {
  padding: 0 0.375rem 0.75rem 0.375rem;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-caregiver/assets/scss/forms.scss ===== */
input, textarea, select {
  font-size: 18px;
  border-radius: 15px;
  border: none;
  padding: 1rem;
  line-height: 1.45;
  color: #004FA0;
}
@media only screen and (max-width: 767px) {
  input, textarea, select {
    font-size: 16px;
  }
}
input:focus, textarea:focus, select:focus {
  outline: none;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px #004FA0;
}
/* Paradigm Forms 2.0 – Custom Radio & Checkbox Styling */
.pf2-radio, .pf2-checkbox, .pf2-boolean {
  cursor: pointer;
}
.pf2-radio input[type="radio"], .pf2-checkbox input[type="checkbox"], .pf2-boolean input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #004FA0;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* Square shape for checkbox variants */
.pf2-checkbox input[type="checkbox"], .pf2-boolean input[type="checkbox"] {
  border-radius: 4px;
}
/* Checked state */
.pf2-radio input[type="radio"]:checked, .pf2-checkbox input[type="checkbox"]:checked, .pf2-boolean input[type="checkbox"]:checked {
  background-color: #004FA0;
  border-color: #004FA0;
}
/* Checkmark or radio dot */
.pf2-radio input[type="radio"]:checked::after, .pf2-checkbox input[type="checkbox"]:checked::after, .pf2-boolean input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
/* Square checkmark for standard checkboxes */
.pf2-checkbox input[type="checkbox"]:checked::after, .pf2-boolean input[type="checkbox"]:checked::after {
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 0;
  background: transparent;
  transform: translate(-50%, -60%) rotate(-45deg);
}
/* Label spacing */
.pf2-radio span, .pf2-checkbox span, .pf2-boolean span {
  vertical-align: middle;
}
.paradigm-form2 .btn {
  height: fit-content;
}
.paradigm-form2 .disclaimer {
  margin-top: 0;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-caregiver/assets/scss/icon-group.scss ===== */
.text-center .icon-group-container {
  align-items: center;
  justify-content: center;
  text-align: left;
}
.icon-group .icon img {
  width: 50px;
  margin-right: 0.5rem;
  max-width: unset;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .icon-group .icon img {
    width: 40px;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-caregiver/assets/scss/icon_cards.scss ===== */
/* ============================================
   Card Search Bar
   ============================================ */
.card-search-wrapper {
  padding-left: 18px;
  padding-right: 18px;
}
@media only screen and (max-width: 767px) {
  .card-search-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.card-search-wrapper .search-label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.card-search-wrapper .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.card-search-wrapper .search-input-wrapper .card-search-input {
  width: 100%;
  border: solid 2px #004FA0;
  color: #004FA0;
}
.card-search-wrapper .search-input-wrapper .card-search-icon {
  position: absolute;
  color: #004FA0;
  right: 12px;
  font-size: 1.25rem;
}
/* Highlight Match */
.highlight {
  background: #004FA0;
  color: #FFFFFF;
  padding: 0 2px;
}
.card-icon-container {
  height: 75px;
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-caregiver/assets/scss/tabs.scss ===== */
/**
 * Module: Tabs
 *
 * Responsibilities:
 * - Styles tab navigation and panels using Paradigm grid + utilities.
 * - Mobile: full-width accordion-style tab buttons.
 * - Desktop: content-width tab buttons (original behavior).
 * - Provides smooth animated transitions between tab panels.
 * - Avoids layout shifts and height animation pitfalls.
 */
.tabs-module {
  /* ===============================
     Mobile accordion triggers
     =============================== */
}
.tabs-module .tabs-nav {
  display: grid;
  gap: 1rem;
  z-index: 0;
}
.tabs-module .tabs-nav .tab-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 1rem 1.5rem;
  background: #007cfc;
  color: #FFFFFF;
  border: 0;
  border-radius: 0;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.tabs-module .tabs-nav .tab-trigger.is-active {
  background: #004FA0;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.tabs-module .mobile-tab-trigger {
  display: block;
  position: relative;
  width: 100%;
  padding: 1.25rem 1rem;
  background: #007cfc;
  color: #FFFFFF;
  border: 0;
  border-radius: 0;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background-color 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.tabs-module .mobile-tab-trigger i {
  position: absolute;
  right: 1rem;
  font-size: 1.25rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}
.tabs-module .mobile-tab-trigger.is-active {
  background: #004FA0;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.tabs-module .mobile-tab-trigger.is-active i {
  transform: rotate(180deg);
}
.tabs-module .tabs-panels {
  position: relative;
  z-index: 2;
}
.tabs-module .tab-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease, visibility 0ms linear 300ms;
}
.tabs-module .tab-panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 300ms ease, transform 300ms ease, visibility 0ms;
}
.tabs-module .tab-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
.tabs-module .tab-content {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.tabs-module .tab-panel.is-active .tab-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 100ms;
}
@media only screen and (min-width: 768px) {
  .tabs-module .tabs-nav .tab-trigger {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }
  .tabs-module .tab-panel {
    border-top-right-radius: 28px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .tabs-module .mobile-tab-trigger {
    border-radius: 28px !important;
  }
  .tabs-module .mobile-tab-trigger.is-active {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .tabs-module .tab-panel {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/themes/paradigm-caregiver/assets/scss/utilities.scss ===== */
.rounded {
  border-radius: 28px;
}
.rounded-l {
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
}
.rounded-r {
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
}
.rounded-t {
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}
.rounded-b {
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}
.rounded-lg {
  border-radius: 54px;
}
.rounded-lg-l {
  border-top-left-radius: 54px;
  border-bottom-left-radius: 54px;
}
.rounded-lg-r {
  border-top-right-radius: 54px;
  border-bottom-right-radius: 54px;
}
.rounded-lg-t {
  border-top-left-radius: 54px;
  border-top-right-radius: 54px;
}
.rounded-lg-b {
  border-bottom-left-radius: 54px;
  border-bottom-right-radius: 54px;
}
.shadow-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.shadow-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.shadow-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.shadow-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.shadow-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
/* ===== File: /home/666914.cloudwaysapps.com/qdjpbfafjj/public_html/wp-content/uploads/paradigm/scss/custom.scss ===== */
a {
  color: #004FA0;
  text-decoration: none;
}
.header-logo {
  max-height: 130px !important;
}
@media only screen and (max-width: 1439px) {
  .header-logo {
    max-height: 110px !important;
  }
}
@media only screen and (max-width: 1320px) {
  .header-logo {
    max-height: 90px !important;
  }
}
@media only screen and (max-width: 1023px) {
  .header-logo {
    max-height: 70px !important;
  }
}
.offset-logos {
  padding-bottom: 160px;
}
.offset-logos + section {
  padding-top: 0;
  margin-top: -80px;
}
.offset-logos + section .bg-group {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .offset-logos {
    padding-bottom: 140px;
  }
  .offset-logos + section {
    margin-top: -70px;
  }
}
@media only screen and (max-width: 1023px) {
  .offset-logos {
    padding-bottom: 120px;
  }
  .offset-logos + section {
    margin-top: -60px;
  }
}
@media only screen and (min-width: 1321px) {
  #site-header .header-inner .header-nav .menu-top {
    background: #004FA0;
  }
  #site-header .header-inner .header-nav .menu-top a {
    color: #FFFFFF;
  }
  #site-header .header-inner .header-nav .menu-top a + .submenu-toggle .chevron {
    border-color: #FFFFFF;
  }
  #site-header .header-inner .header-nav .menu-top a:hover, #site-header .header-inner .header-nav .menu-top a:focus, #site-header .header-inner .header-nav .menu-top a:focus-within {
    color: #69B436;
  }
  #site-header .header-inner .header-nav .menu-top a:hover + .submenu-toggle .chevron, #site-header .header-inner .header-nav .menu-top a:focus + .submenu-toggle .chevron, #site-header .header-inner .header-nav .menu-top a:focus-within + .submenu-toggle .chevron {
    border-color: #69B436;
  }
  #site-header .header-inner .header-nav .menu-top a.current-url {
    color: #69B436;
  }
  #site-header .header-inner .header-nav .menu-top a.current-url + .submenu-toggle .chevron {
    border-color: #69B436;
  }
}
#site-header .header-inner .menu-left .menu-item a {
  color: #000000;
}
#site-header .header-inner .menu-left .menu-item a:hover, #site-header .header-inner .menu-left .menu-item a:focus {
  color: #000000;
}
#site-header .header-inner .menu-left .menu-item a:hover + .submenu-toggle .chevron, #site-header .header-inner .menu-left .menu-item a:focus + .submenu-toggle .chevron {
  border-color: rgba(33, 33, 33, 0.5);
}
.submenu-toggle:hover .chevron, .submenu-toggle:focus .chevron {
  border-color: rgba(33, 33, 33, 0.5) !important;
}
#site-header .header-inner .header-nav {
  width: 100%;
}
#site-header .menu-right {
  min-width: 220px;
}
@media only screen and (max-width: 1320px) {
  #site-header .header-inner .menu-toggle .toggle-icon {
    color: #004FA0;
  }
}
#site-footer {
  overflow: hidden;
  margin-top: -1px;
}
.footer-main {
  background: #051b33;
  color: #FFFFFF;
}
.footer-link {
  color: #FFFFFF !important;
}
.footer-bottom {
  color: #FFFFFF;
  background: #041425;
}
img.footer-logo-img {
  max-width: 250px;
}
@media only screen and (max-width: 1439px) {
  img.footer-logo-img {
    max-width: 230px;
  }
}
@media only screen and (max-width: 1023px) {
  img.footer-logo-img {
    max-width: 250px;
  }
}
@media only screen and (max-width: 767px) {
  img.footer-logo-img {
    max-width: 210px;
  }
}
.h4.footer-label {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 900;
  text-transform: capitalize;
}
#site-footer .social-group a.social-link {
  color: #FFFFFF !important;
  font-size: 1.5rem;
}
#site-footer .social-group a.social-link:hover {
  color: #69B436 !important;
}
.back-to-top {
  background-color: #004FA0;
  border-radius: 25px;
  color: #FFFFFF;
}
.back-to-top:hover {
  background-color: #004287;
}
.overlay-primary {
  background-color: #004FA0;
  opacity: 0.75;
}
.overlay-primary:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #004FA0;
  mix-blend-mode: multiply;
  opacity: 0.75;
}
.overlay-secondary {
  background-color: #69B436;
  opacity: 0.75;
}
.overlay-secondary:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #69B436;
  mix-blend-mode: multiply;
  opacity: 0.75;
}
.overlay-tertiary {
  background-color: #062341;
  opacity: 0.75;
}
.overlay-tertiary:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #062341;
  mix-blend-mode: multiply;
  opacity: 0.75;
}
.overlay-white {
  background-color: #FFFFFF;
  opacity: 0.65;
}
.overlay-black {
  background-color: #000000;
  opacity: 0.65;
}
.pf2-progress-fill, .pf2-step-circle.active, .pf2-step-circle.completed, .pf2-option-card.active .pf2-checkmark, .pfw-alert-container .label {
  background: #69B436 !important;
}
.pf2-option-card.active, .pf2-checkmark, .pf2-option-card.active .pf2-checkmark, .paradigm-form2 input:focus, .paradigm-form2 select:focus, .paradigm-form2 textarea:focus {
  border-color: #69B436 !important;
}
.pf2-option-card.active {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(105, 180, 54, 0.18) !important;
}
.pf2-option-card:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(105, 180, 54, 0.1) !important;
}
.paradigm-form2 input:focus, .paradigm-form2 select:focus, .paradigm-form2 textarea:focus {
  border-color: #004FA0 !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(105, 180, 54, 0.18) !important;
}
@media only screen and (min-width: 767px) {
  .home-hero-section .grid > div:first-child {
    grid-column: span 8 !important;
  }
  .home-hero-section .h2 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 767px) {
  .home-hero-section .h2 {
    font-size: 36px;
  }
  .home-hero-section img {
    max-width: 80%;
  }
}
.home-hero-section {
  padding-bottom: calc(160px + 80px);
}
@media only screen and (max-width: 1023px) {
  .home-hero-section {
    padding-bottom: calc(160px + 70px);
  }
}
@media only screen and (max-width: 767px) {
  .home-hero-section {
    padding-bottom: calc(160px + 200px);
  }
}
.home-hero-section .h2 {
  font-weight: 500;
  color: #000000;
}
.home-card-section {
  margin-top: -160px !important;
  padding-top: 0 !important;
}
.home-card-section .bg-group {
  top: 160px !important;
  bottom: -1px;
}
.home-bg-offset .bg-overlay {
  opacity: 0.6;
}
@media only screen and (max-width: 1023px) {
  .home-bg-offset {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-bg-offset {
    padding-top: 20px;
  }
}
.home-bg-offset .bg-group {
  top: 107.5px;
}
@media only screen and (max-width: 1023px) {
  .home-bg-offset .bg-group {
    top: 23.5px;
  }
}
@media only screen and (max-width: 767px) {
  .home-bg-offset .bg-group {
    top: 43.5px;
  }
}
.home-bg-offset .content-col {
  max-width: 1000px;
  margin: 0 auto;
}
.home-bg-offset .content-col p {
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  .child-page-header {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 1;
  }
  .child-page-header .content-col {
    padding-bottom: 100px;
  }
  .child-page-header + section > .bg-group {
    top: -80px;
  }
}
.img-wrapper img.header-img {
  max-height: 55vh;
}
.footer-main {
  z-index: 1;
  padding-right: 50px;
  padding-left: 50px;
}
@media only screen and (max-width: 1023px) {
  .footer-main {
    padding-right: 0;
  }
}
.footer-main::before {
  content: "";
  position: absolute;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  width: 250px;
  height: 250px;
  background-image: url("/wp-content/uploads/paradigm/img/aosi-floating-element.png");
  bottom: 0;
  right: 0;
  transform: translateX(40%) translateY(-15%);
}
@media only screen and (max-width: 767px) {
  .footer-main::before {
    height: 200px;
    width: 200px;
  }
}
.mark-section-a.cta-section > .container::before {
  content: "";
  position: absolute;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  width: 250px;
  height: 250px;
  background-image: url("/wp-content/uploads/paradigm/img/aosi-floating-element.png");
  transform: translateX(-40%);
  left: 0;
  top: 35%;
}
@media only screen and (max-width: 1023px) {
  .mark-section-a.cta-section > .container::before {
    display: none;
  }
}
.mark-section-a.fluid-img-section.img-left {
  z-index: 2;
}
.mark-section-a.fluid-img-section.img-left > .container::before {
  content: "";
  position: absolute;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  width: 250px;
  height: 250px;
  background-image: url("/wp-content/uploads/paradigm/img/aosi-floating-element.png");
  bottom: -10%;
  left: 0;
  transform: translateX(-35%) translateY(0);
}
@media only screen and (max-width: 1023px) {
  .mark-section-a.fluid-img-section.img-left > .container::before {
    height: 200px;
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .mark-section-a.fluid-img-section.img-left > .container::before {
    bottom: initial;
    top: 10%;
    height: 150px;
    width: 150px;
  }
}
.mark-section-a.img-header-section .container::before {
  content: "";
  position: absolute;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  width: 250px;
  height: 250px;
  background-image: url("/wp-content/uploads/paradigm/img/aosi-floating-element.png");
  bottom: 20%;
  left: 0;
  transform: translateX(-30%);
}
@media only screen and (max-width: 1023px) {
  .mark-section-a.img-header-section .container::before {
    bottom: -5%;
  }
}
@media only screen and (max-width: 767px) {
  .mark-section-a.img-header-section .container::before {
    height: 130px;
    width: 130px;
  }
}
.mark-section-a.fluid-img-section.img-right {
  z-index: 2;
}
.mark-section-a.fluid-img-section.img-right::before {
  content: "";
  position: absolute;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  width: 250px;
  height: 250px;
  background-image: url("/wp-content/uploads/paradigm/img/aosi-floating-element.png");
  bottom: 0;
  right: -5%;
  transform: translateY(30%);
}
@media only screen and (max-width: 1023px) {
  .mark-section-a.fluid-img-section.img-right::before {
    height: 200px;
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .mark-section-a.fluid-img-section.img-right::before {
    bottom: initial;
    top: 150px;
    transform: initial;
    right: -10%;
    height: 130px;
    width: 130px;
  }
}
.mark-section-a.img-group-section .img-group::before {
  content: "";
  position: absolute;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  width: 250px;
  height: 250px;
  background-image: url("/wp-content/uploads/paradigm/img/aosi-floating-element.png");
  bottom: 0;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1023px) {
  .mark-section-a.img-group-section .img-group::before {
    height: 200px;
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .mark-section-a.img-group-section .img-group::before {
    height: 150px;
    width: 150px;
    bottom: 10%;
  }
}
.bg-custom {
  background-color: #ecf3f6;
}
section.white h2 {
  color: #FFFFFF;
}
.font-medium {
  font-weight: 500 !important;
}
.medium-container > .container {
  max-width: 1200px;
}
.centered-buttons .btn-group {
  justify-content: center !important;
}
.underline {
  text-decoration: underline;
}
.white a:not(.btn) {
  color: #F0F5FA;
  text-decoration: underline;
}
.cky-btn-revisit-wrapper {
  box-shadow: 0px 2px 10px #2d2d2e9c;
  background-color: #004FA0 !important;
}
