@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bs--color-text);
  background-color: var(--bs--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

:root {
  --bs--primary: #f16839;
  --bs--secondary: #64030b;
  --bs--primary-light: #FFB4AD;
  --bs--primary-mid: #FF8A80;
  --bs--light: #F5F5F7;
  --bs--dark: #1D1D1F;
  --bs--muted: #6E6E73;
  --bs--white: #FFFFFF;
  --bs--black: #000000;
  --bs--accent-teal: #2DD4BF;
  --bs--accent-teal-light: #5EEAD4;
  --bs--accent-teal-dark: #14B8A6;
  --bs--accent-forest: #2D4A3E;
  --bs--accent-forest-light: #3D6B5A;
  --bs--accent-forest-dark: #1E352C;
  --bs--accent-gold: #B8860B;
  --bs--accent-gold-light: #D4A017;
  --bs--accent-gold-dark: #8B6508;
  --bs--accent-rust: #C2410C;
  --bs--accent-rust-light: #EA580C;
  --bs--accent-rust-dark: #9A3412;
  --bs--accent-rose: #BE185D;
  --bs--accent-rose-light: #DB2777;
  --bs--accent-rose-dark: #9D174D;
  --bs--accent-primary: #f16839;
  --bs--accent-primary-light: #FF8A80;
  --bs--accent-secondary: #adadad;
  --bs--accent-secondary-light: #dadada;
  --bs--success: #16A34A;
  --bs--danger: #DC2626;
  --bs--warning: #F59E0B;
  --bs--info: #2DD4BF;
  --bs--primary: #f16839;
  --bs--primary-mid: #FF8A80;
  --bs--primary-light: #FFB4AD;
  --bs--secondary: #64030b;
  --bs--secondary-hover: #2E46D4;
  --bs--secondary-subtle: #EAEEFF;
  --bs--white: #FFFFFF;
  --bs--off-white: #F5F5F7;
  --bs--black: #000000;
  --bs--slate-100: #F5F5F7;
  --bs--slate-200: #D2D2D7;
  --bs--slate-400: #86868B;
  --bs--slate-500: #6E6E73;
  --bs--slate-600: #1D1D1F;
  --bs--slate-900: #1D1D1F;
  --bs--color-primary: #f16839;
  --bs--color-primary-hover: #FFB4AD;
  --bs--color-secondary: #64030b;
  --bs--color-secondary-hover: #2E46D4;
  --bs--color-background: var(--bs--color-background);
  --bs--color-background-alt: var(--bs--color-background-alt);
  --bs--color-background-dark: var(--bs--color-background-dark);
  --bs--color-text: var(--bs--color-text);
  --bs--color-text-muted: var(--bs--color-text-muted);
  --bs--color-text-on-dark: var(--bs--color-text-on-dark);
  --bs--color-text-on-dark-muted: var(--bs--color-text-on-dark-muted);
  --bs--color-border: var(--bs--color-border);
  --bs--color-border-dark: var(--bs--color-border-dark);
  --bs--font-display: -apple-system, BlinkMacSystemFont, Inter, SF Pro Display, Segoe UI, Roboto, Arial, sans-serif;
  --bs--font-body: -apple-system, BlinkMacSystemFont, Inter, SF Pro Display, Segoe UI, Roboto, sans-serif;
  --bs--font-mono: ui-monospace, SF Mono, Consolas, monospace;
  --bs--section-padding-y: 5rem;
  --bs--section-padding-y-mobile: 3rem;
  --bs--radius-sm: 4px;
  --bs--radius-md: 12px;
  --bs--radius-lg: 18px;
  --bs--radius-xl: 28px;
  --bs--radius-pill: 999px;
  --bs--transition-fast: 0.15s ease;
  --bs--transition-base: 0.2s ease;
  --bs--transition-slow: 0.3s ease;
  --bs--z-dropdown: 100;
  --bs--z-sticky: 100;
  --bs--z-modal: 1000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--bs--color-text);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: 1rem;
  color: var(--bs--color-text-muted);
  line-height: 1.7;
}

p.lead,
.text-lead {
  font-size: 1.125rem;
  line-height: 1.75;
}

small,
.text-small {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

em.tx--accent,
.tx--accent {
  color: #64030b;
  font-style: normal;
}

code, pre {
  font-family: ui-monospace, "SF Mono", "Consolas", monospace;
  font-size: 0.875rem;
}

hr {
  border: none;
  border-top: 1px solid var(--bs--color-border);
  margin: 2rem 0;
}

.tx--primary {
  color: #f16839 !important;
}

.tx--secondary {
  color: #64030b !important;
}

.tx--primary-light {
  color: #FFB4AD !important;
}

.tx--primary-mid {
  color: #FF8A80 !important;
}

.tx--light {
  color: #F5F5F7 !important;
}

.tx--dark {
  color: #1D1D1F !important;
}

.tx--muted {
  color: #6E6E73 !important;
}

.tx--white {
  color: #FFFFFF !important;
}

.tx--black {
  color: #000000 !important;
}

.tx--accent-teal {
  color: #2DD4BF !important;
}

.tx--accent-teal-light {
  color: #5EEAD4 !important;
}

.tx--accent-teal-dark {
  color: #14B8A6 !important;
}

.tx--accent-forest {
  color: #2D4A3E !important;
}

.tx--accent-forest-light {
  color: #3D6B5A !important;
}

.tx--accent-forest-dark {
  color: #1E352C !important;
}

.tx--accent-gold {
  color: #B8860B !important;
}

.tx--accent-gold-light {
  color: #D4A017 !important;
}

.tx--accent-gold-dark {
  color: #8B6508 !important;
}

.tx--accent-rust {
  color: #C2410C !important;
}

.tx--accent-rust-light {
  color: #EA580C !important;
}

.tx--accent-rust-dark {
  color: #9A3412 !important;
}

.tx--accent-rose {
  color: #BE185D !important;
}

.tx--accent-rose-light {
  color: #DB2777 !important;
}

.tx--accent-rose-dark {
  color: #9D174D !important;
}

.tx--accent-primary {
  color: #f16839 !important;
}

.tx--accent-primary-light {
  color: #FF8A80 !important;
}

.tx--accent-secondary {
  color: #adadad !important;
}

.tx--accent-secondary-light {
  color: #dadada !important;
}

.tx--success {
  color: #16A34A !important;
}

.tx--danger {
  color: #DC2626 !important;
}

.tx--warning {
  color: #F59E0B !important;
}

.tx--info {
  color: #2DD4BF !important;
}

.tx--muted-dark {
  color: var(--bs--color-text-on-dark-muted) !important;
}

.bg--primary {
  background-color: #f16839;
}

.bg--secondary {
  background-color: #64030b;
}

.bg--primary-light {
  background-color: #FFB4AD;
}

.bg--primary-mid {
  background-color: #FF8A80;
}

.bg--light {
  background-color: #F5F5F7;
}

.bg--dark {
  background-color: #1D1D1F;
}

.bg--muted {
  background-color: #6E6E73;
}

.bg--white {
  background-color: #FFFFFF;
}

.bg--black {
  background-color: #000000;
}

.bg--accent-teal {
  background-color: #2DD4BF;
}

.bg--accent-teal-light {
  background-color: #5EEAD4;
}

.bg--accent-teal-dark {
  background-color: #14B8A6;
}

.bg--accent-forest {
  background-color: #2D4A3E;
}

.bg--accent-forest-light {
  background-color: #3D6B5A;
}

.bg--accent-forest-dark {
  background-color: #1E352C;
}

.bg--accent-gold {
  background-color: #B8860B;
}

.bg--accent-gold-light {
  background-color: #D4A017;
}

.bg--accent-gold-dark {
  background-color: #8B6508;
}

.bg--accent-rust {
  background-color: #C2410C;
}

.bg--accent-rust-light {
  background-color: #EA580C;
}

.bg--accent-rust-dark {
  background-color: #9A3412;
}

.bg--accent-rose {
  background-color: #BE185D;
}

.bg--accent-rose-light {
  background-color: #DB2777;
}

.bg--accent-rose-dark {
  background-color: #9D174D;
}

.bg--accent-primary {
  background-color: #f16839;
}

.bg--accent-primary-light {
  background-color: #FF8A80;
}

.bg--accent-secondary {
  background-color: #adadad;
}

.bg--accent-secondary-light {
  background-color: #dadada;
}

.bg--success {
  background-color: #16A34A;
}

.bg--danger {
  background-color: #DC2626;
}

.bg--warning {
  background-color: #F59E0B;
}

.bg--info {
  background-color: #2DD4BF;
}

.bg--grad-dark-light {
  background: linear-gradient(to bottom, #f16839, #FFB4AD) !important;
}

.bg--grad-dark-white {
  background: linear-gradient(to bottom, #f16839, #FFFFFF) !important;
}

.bg--grad-light-dark {
  background: linear-gradient(to bottom, #FFFFFF, #f16839) !important;
}

.bg--grad-light-white {
  background: linear-gradient(to bottom, #F5F5F7, #FFFFFF) !important;
}

.bg--grad-accent-primary {
  background: linear-gradient(to bottom, #f16839, #FF8A80) !important;
}

.bg--grad-accent-primary-white {
  background: linear-gradient(to bottom, #f16839, #FFFFFF) !important;
}

.bg--grad-white-accent-primary {
  background: linear-gradient(to bottom, #FFFFFF, #f16839) !important;
}

.bg--grad-accent-secondary {
  background: linear-gradient(to bottom, #adadad, #dadada) !important;
}

.bg--grad-accent-secondary-white {
  background: linear-gradient(to bottom, #adadad, #FFFFFF) !important;
}

.bg--grad-white-accent-secondary {
  background: linear-gradient(to bottom, #FFFFFF, #adadad) !important;
}

.bd-primary {
  border-color: #f16839 !important;
}

.bd-secondary {
  border-color: #64030b !important;
}

.bd-primary-light {
  border-color: #FFB4AD !important;
}

.bd-primary-mid {
  border-color: #FF8A80 !important;
}

.bd-light {
  border-color: #F5F5F7 !important;
}

.bd-dark {
  border-color: #1D1D1F !important;
}

.bd-muted {
  border-color: #6E6E73 !important;
}

.bd-white {
  border-color: #FFFFFF !important;
}

.bd-black {
  border-color: #000000 !important;
}

.bd-accent-teal {
  border-color: #2DD4BF !important;
}

.bd-accent-teal-light {
  border-color: #5EEAD4 !important;
}

.bd-accent-teal-dark {
  border-color: #14B8A6 !important;
}

.bd-accent-forest {
  border-color: #2D4A3E !important;
}

.bd-accent-forest-light {
  border-color: #3D6B5A !important;
}

.bd-accent-forest-dark {
  border-color: #1E352C !important;
}

.bd-accent-gold {
  border-color: #B8860B !important;
}

.bd-accent-gold-light {
  border-color: #D4A017 !important;
}

.bd-accent-gold-dark {
  border-color: #8B6508 !important;
}

.bd-accent-rust {
  border-color: #C2410C !important;
}

.bd-accent-rust-light {
  border-color: #EA580C !important;
}

.bd-accent-rust-dark {
  border-color: #9A3412 !important;
}

.bd-accent-rose {
  border-color: #BE185D !important;
}

.bd-accent-rose-light {
  border-color: #DB2777 !important;
}

.bd-accent-rose-dark {
  border-color: #9D174D !important;
}

.bd-accent-primary {
  border-color: #f16839 !important;
}

.bd-accent-primary-light {
  border-color: #FF8A80 !important;
}

.bd-accent-secondary {
  border-color: #adadad !important;
}

.bd-accent-secondary-light {
  border-color: #dadada !important;
}

.bd-success {
  border-color: #16A34A !important;
}

.bd-danger {
  border-color: #DC2626 !important;
}

.bd-warning {
  border-color: #F59E0B !important;
}

.bd-info {
  border-color: #2DD4BF !important;
}

.bd {
  border: 1px solid var(--bs--color-border) !important;
}

.bd-top {
  border-top: 1px solid var(--bs--color-border) !important;
}

.bd-bottom {
  border-bottom: 1px solid var(--bs--color-border) !important;
}

.bd-0 {
  border: none !important;
}

.tx-left {
  text-align: left !important;
}

.tx-center {
  text-align: center !important;
}

.tx-right {
  text-align: right !important;
}

@media (min-width: 576px) {
  .tx-sm-left {
    text-align: left !important;
  }
  .tx-sm-center {
    text-align: center !important;
  }
  .tx-sm-right {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .tx-md-left {
    text-align: left !important;
  }
  .tx-md-center {
    text-align: center !important;
  }
  .tx-md-right {
    text-align: right !important;
  }
}
@media (min-width: 992px) {
  .tx-lg-left {
    text-align: left !important;
  }
  .tx-lg-center {
    text-align: center !important;
  }
  .tx-lg-right {
    text-align: right !important;
  }
}
@media (min-width: 1200px) {
  .tx-xl-left {
    text-align: left !important;
  }
  .tx-xl-center {
    text-align: center !important;
  }
  .tx-xl-right {
    text-align: right !important;
  }
}
@media (min-width: 1600px) {
  .tx-xxl-left {
    text-align: left !important;
  }
  .tx-xxl-center {
    text-align: center !important;
  }
  .tx-xxl-right {
    text-align: right !important;
  }
}
.ftw-regular {
  font-weight: 400 !important;
}

.ftw-medium {
  font-weight: 500 !important;
}

.ftw-semibold {
  font-weight: 600 !important;
}

.ftw-bold {
  font-weight: 700 !important;
}

.ftw-extrabold {
  font-weight: 800 !important;
}

.tx-0 {
  font-size: 0 !important;
}

.tx-1 {
  font-size: 0.25rem !important;
}

.tx-2 {
  font-size: 0.5rem !important;
}

.tx-3 {
  font-size: 0.75rem !important;
}

.tx-4 {
  font-size: 1rem !important;
}

.tx-5 {
  font-size: 1.25rem !important;
}

.tx-6 {
  font-size: 1.5rem !important;
}

.tx-8 {
  font-size: 2rem !important;
}

.tx-10 {
  font-size: 2.5rem !important;
}

.tx-12 {
  font-size: 3rem !important;
}

.tx-16 {
  font-size: 4rem !important;
}

.tx-20 {
  font-size: 5rem !important;
}

.tx-24 {
  font-size: 6rem !important;
}

.tx-32 {
  font-size: 8rem !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64030b;
  margin-bottom: 1rem;
}

.eyebrow.eyebrow--rule::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.eyebrow.eyebrow--pill {
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64030b;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--bs--color-border);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.pip {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f16839, #64030b);
}

.dm-icon {
  display: none;
}

html.dark .dm-icon--dark {
  display: inline-block;
}

html.light .dm-icon--light {
  display: inline-block;
}

:root {
  --bs--color-background: #F5F5F7;
  --bs--color-surface: #FFFFFF;
  --bs--color-background-alt: #F5F5F7;
  --bs--color-background-dark: #1D1D1F;
  --bs--color-text: #000000;
  --bs--color-text-muted: #6E6E73;
  --bs--color-text-on-dark: #FFFFFF;
  --bs--color-text-on-dark-muted: #86868B;
  --bs--color-border: rgba(0, 0, 0, 0.08);
  --bs--color-border-strong: #D2D2D7;
  --bs--color-border-dark: rgba(255, 255, 255, 0.08);
  --bs--color-surface-elevated: #FFFFFF;
  --bs--color-input-bg: #FFFFFF;
  --bs--color-card-bg: #FFFFFF;
  --bs--color-nav-bg: rgba(#FFFFFF, 1);
  --bs--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --bs--shadow-md: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
  --bs--shadow-lg: 0 20px 40px -16px rgba(0, 0, 0, 0.15);
  color-scheme: light;
}

.dark,
.dark-mode {
  --bs--color-background: #0f0f11;
  --bs--color-surface: #1c1c1e;
  --bs--color-background-alt: #1c1c1e;
  --bs--color-background-dark: #000000;
  --bs--color-text: #f5f5f7;
  --bs--color-text-muted: #a1a1a6;
  --bs--color-text-on-dark: #f5f5f7;
  --bs--color-text-on-dark-muted: #86868b;
  --bs--color-border: rgba(255, 255, 255, 0.1);
  --bs--color-border-strong: #424245;
  --bs--color-border-dark: rgba(255, 255, 255, 0.08);
  --bs--color-surface-elevated: #2c2c2e;
  --bs--color-input-bg: #2c2c2e;
  --bs--color-card-bg: #1c1c1e;
  --bs--color-nav-bg: rgba(28, 28, 30, 1);
  --bs--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --bs--shadow-md: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
  --bs--shadow-lg: 0 20px 40px -16px rgba(0, 0, 0, 0.5);
}

.dark .bg--white,
.dark-mode .bg--white {
  background: #1D1D1F !important;
}

.dark .bg--black,
.dark-mode .bg--black {
  background: #FFFFFF !important;
}

.dark .bg--light,
.dark-mode .bg--light {
  background: #1c1c1e !important;
}

.dark .bg--dark,
.dark-mode .bg--dark {
  background: #FFFFFF !important;
}

.dark .tx--white,
.dark-mode .tx--white {
  color: #000000 !important;
}

.dark .tx--dark,
.dark-mode .tx--dark {
  color: #f5f5f7 !important;
}

.dark .tx--black,
.dark-mode .tx--black {
  color: #f5f5f7 !important;
}

.dark .tx--muted,
.dark-mode .tx--muted {
  color: #a1a1a6 !important;
}

.dark .bd-white,
.dark-mode .bd-white {
  border-color: #1D1D1F !important;
}

.dark .bd-light,
.dark-mode .bd-light {
  border-color: #424245 !important;
}

.dark .bd-dark,
.dark-mode .bd-dark {
  border-color: #f5f5f7 !important;
}

.dark .nb__link,
.dark-mode .nb__link {
  color: #FFFFFF;
}

.dark .pass-megamenu a,
.dark-mode .pass-megamenu a {
  color: #f16839;
}

.dark .pass-megamenu a:hover,
.dark-mode .pass-megamenu a:hover {
  color: #64030b;
}

.dark a,
.dark-mode a {
  color: #f16839;
}

.dark a:hover,
.dark-mode a:hover {
  color: #64030b;
}

.dark .pc-domain-search label.pc-domain-search__option,
.dark-mode .pc-domain-search label.pc-domain-search__option {
  background: #000000;
  color: #FFFFFF;
  border: 1px solid #6E6E73;
}

.dark,
.dark-mode {
  color-scheme: dark;
}

.frame, .section-inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 576px) {
  .frame, .section-inner {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .frame, .section-inner {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .frame, .section-inner {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .frame, .section-inner {
    max-width: 1120px;
  }
}
@media (min-width: 1600px) {
  .frame, .section-inner {
    max-width: 1520px;
  }
}
.frame--fluid {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.frame--narrow {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.frame--sm {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 576px) {
  .frame--sm {
    max-width: 540px;
  }
}
.frame--md {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .frame--md {
    max-width: 720px;
  }
}
.frame--lg {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 992px) {
  .frame--lg {
    max-width: 960px;
  }
}
.frame--xl {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1200px) {
  .frame--xl {
    max-width: 1120px;
  }
}
.frame--xxl {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1600px) {
  .frame--xxl {
    max-width: 1520px;
  }
}
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid--auto-md {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--auto-lg {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

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

@media (min-width: 768px) {
  .grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid--cols-3 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid--cols-4 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gap-0 {
  gap: 0 !important;
}

.gap-sm {
  gap: 0.75rem !important;
}

.gap-md {
  gap: 1.5rem !important;
}

.gap-lg {
  gap: 2.5rem !important;
}

.flex {
  display: flex !important;
}

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

.flex-col {
  flex-direction: column !important;
}

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

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

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

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

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

.items-stretch {
  align-items: stretch !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-center {
  justify-content: center !important;
}

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

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.flex-1 {
  flex: 1 1 0% !important;
}

.flex-auto {
  flex: 1 1 auto !important;
}

.flex-none {
  flex: none !important;
}

.dis-none {
  display: none !important;
}

.dis-block {
  display: block !important;
}

.dis-inline {
  display: inline !important;
}

.dis-inline-block {
  display: inline-block !important;
}

@media (min-width: 576px) {
  .dis-sm-none {
    display: none !important;
  }
  .dis-sm-block {
    display: block !important;
  }
  .dis-sm-flex {
    display: flex !important;
  }
  .dis-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) {
  .dis-md-none {
    display: none !important;
  }
  .dis-md-block {
    display: block !important;
  }
  .dis-md-flex {
    display: flex !important;
  }
  .dis-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) {
  .dis-lg-none {
    display: none !important;
  }
  .dis-lg-block {
    display: block !important;
  }
  .dis-lg-flex {
    display: flex !important;
  }
  .dis-lg-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .dis-xl-none {
    display: none !important;
  }
  .dis-xl-block {
    display: block !important;
  }
  .dis-xl-flex {
    display: flex !important;
  }
  .dis-xl-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1600px) {
  .dis-xxl-none {
    display: none !important;
  }
  .dis-xxl-block {
    display: block !important;
  }
  .dis-xxl-flex {
    display: flex !important;
  }
  .dis-xxl-inline-block {
    display: inline-block !important;
  }
}
.w-full {
  width: 100% !important;
}

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

.max-w-full {
  max-width: 100% !important;
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(1.5rem / -2);
  margin-right: calc(1.5rem / -2);
  margin-top: calc(1.5rem / -1);
}

.grid-row > * {
  padding-left: calc(1.5rem / 2);
  padding-right: calc(1.5rem / 2);
  padding-top: 1.5rem;
  width: 100%;
}

.grid-row--no-gutters {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.grid-row--no-gutters > * {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.grid-row--gutter-0 {
  margin-left: calc(0 / -2);
  margin-right: calc(0 / -2);
  margin-top: calc(0 / -1);
}

.grid-row--gutter-0 > * {
  padding-left: calc(0 / 2);
  padding-right: calc(0 / 2);
  padding-top: 0;
}

.grid-row--gutter-x-0 {
  margin-left: calc(0 / -2);
  margin-right: calc(0 / -2);
}

.grid-row--gutter-x-0 > * {
  padding-left: calc(0 / 2);
  padding-right: calc(0 / 2);
}

.grid-row--gutter-y-0 {
  margin-top: calc(0 / -1);
}

.grid-row--gutter-y-0 > * {
  padding-top: 0;
}

.grid-row--gutter-2 {
  margin-left: calc(0.5rem / -2);
  margin-right: calc(0.5rem / -2);
  margin-top: calc(0.5rem / -1);
}

.grid-row--gutter-2 > * {
  padding-left: calc(0.5rem / 2);
  padding-right: calc(0.5rem / 2);
  padding-top: 0.5rem;
}

.grid-row--gutter-x-2 {
  margin-left: calc(0.5rem / -2);
  margin-right: calc(0.5rem / -2);
}

.grid-row--gutter-x-2 > * {
  padding-left: calc(0.5rem / 2);
  padding-right: calc(0.5rem / 2);
}

.grid-row--gutter-y-2 {
  margin-top: calc(0.5rem / -1);
}

.grid-row--gutter-y-2 > * {
  padding-top: 0.5rem;
}

.grid-row--gutter-3 {
  margin-left: calc(0.75rem / -2);
  margin-right: calc(0.75rem / -2);
  margin-top: calc(0.75rem / -1);
}

.grid-row--gutter-3 > * {
  padding-left: calc(0.75rem / 2);
  padding-right: calc(0.75rem / 2);
  padding-top: 0.75rem;
}

.grid-row--gutter-x-3 {
  margin-left: calc(0.75rem / -2);
  margin-right: calc(0.75rem / -2);
}

.grid-row--gutter-x-3 > * {
  padding-left: calc(0.75rem / 2);
  padding-right: calc(0.75rem / 2);
}

.grid-row--gutter-y-3 {
  margin-top: calc(0.75rem / -1);
}

.grid-row--gutter-y-3 > * {
  padding-top: 0.75rem;
}

.grid-row--gutter-4 {
  margin-left: calc(1rem / -2);
  margin-right: calc(1rem / -2);
  margin-top: calc(1rem / -1);
}

.grid-row--gutter-4 > * {
  padding-left: calc(1rem / 2);
  padding-right: calc(1rem / 2);
  padding-top: 1rem;
}

.grid-row--gutter-x-4 {
  margin-left: calc(1rem / -2);
  margin-right: calc(1rem / -2);
}

.grid-row--gutter-x-4 > * {
  padding-left: calc(1rem / 2);
  padding-right: calc(1rem / 2);
}

.grid-row--gutter-y-4 {
  margin-top: calc(1rem / -1);
}

.grid-row--gutter-y-4 > * {
  padding-top: 1rem;
}

.grid-row--gutter-6 {
  margin-left: calc(1.5rem / -2);
  margin-right: calc(1.5rem / -2);
  margin-top: calc(1.5rem / -1);
}

.grid-row--gutter-6 > * {
  padding-left: calc(1.5rem / 2);
  padding-right: calc(1.5rem / 2);
  padding-top: 1.5rem;
}

.grid-row--gutter-x-6 {
  margin-left: calc(1.5rem / -2);
  margin-right: calc(1.5rem / -2);
}

.grid-row--gutter-x-6 > * {
  padding-left: calc(1.5rem / 2);
  padding-right: calc(1.5rem / 2);
}

.grid-row--gutter-y-6 {
  margin-top: calc(1.5rem / -1);
}

.grid-row--gutter-y-6 > * {
  padding-top: 1.5rem;
}

.grid-row--gutter-8 {
  margin-left: calc(2rem / -2);
  margin-right: calc(2rem / -2);
  margin-top: calc(2rem / -1);
}

.grid-row--gutter-8 > * {
  padding-left: calc(2rem / 2);
  padding-right: calc(2rem / 2);
  padding-top: 2rem;
}

.grid-row--gutter-x-8 {
  margin-left: calc(2rem / -2);
  margin-right: calc(2rem / -2);
}

.grid-row--gutter-x-8 > * {
  padding-left: calc(2rem / 2);
  padding-right: calc(2rem / 2);
}

.grid-row--gutter-y-8 {
  margin-top: calc(2rem / -1);
}

.grid-row--gutter-y-8 > * {
  padding-top: 2rem;
}

.grid-row--gutter-10 {
  margin-left: calc(2.5rem / -2);
  margin-right: calc(2.5rem / -2);
  margin-top: calc(2.5rem / -1);
}

.grid-row--gutter-10 > * {
  padding-left: calc(2.5rem / 2);
  padding-right: calc(2.5rem / 2);
  padding-top: 2.5rem;
}

.grid-row--gutter-x-10 {
  margin-left: calc(2.5rem / -2);
  margin-right: calc(2.5rem / -2);
}

.grid-row--gutter-x-10 > * {
  padding-left: calc(2.5rem / 2);
  padding-right: calc(2.5rem / 2);
}

.grid-row--gutter-y-10 {
  margin-top: calc(2.5rem / -1);
}

.grid-row--gutter-y-10 > * {
  padding-top: 2.5rem;
}

.grid-row--gutter-12 {
  margin-left: calc(3rem / -2);
  margin-right: calc(3rem / -2);
  margin-top: calc(3rem / -1);
}

.grid-row--gutter-12 > * {
  padding-left: calc(3rem / 2);
  padding-right: calc(3rem / 2);
  padding-top: 3rem;
}

.grid-row--gutter-x-12 {
  margin-left: calc(3rem / -2);
  margin-right: calc(3rem / -2);
}

.grid-row--gutter-x-12 > * {
  padding-left: calc(3rem / 2);
  padding-right: calc(3rem / 2);
}

.grid-row--gutter-y-12 {
  margin-top: calc(3rem / -1);
}

.grid-row--gutter-y-12 > * {
  padding-top: 3rem;
}

.grid-row--items-start {
  align-items: flex-start !important;
}

.grid-row--items-center {
  align-items: center !important;
}

.grid-row--items-end {
  align-items: flex-end !important;
}

.grid-row--items-stretch {
  align-items: stretch !important;
}

.grid-row--justify-start {
  justify-content: flex-start !important;
}

.grid-row--justify-center {
  justify-content: center !important;
}

.grid-row--justify-end {
  justify-content: flex-end !important;
}

.grid-row--justify-between {
  justify-content: space-between !important;
}

.grid-row--justify-around {
  justify-content: space-around !important;
}

.grid-row--nowrap {
  flex-wrap: nowrap !important;
}

.grid-row--wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gcol {
  flex: 1 1 0%;
  max-width: 100%;
}

.gcol-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.gcol-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.gcol-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.gcol-3 {
  flex: 0 0 auto;
  width: 25%;
}

.gcol-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.gcol-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.gcol-6 {
  flex: 0 0 auto;
  width: 50%;
}

.gcol-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.gcol-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.gcol-9 {
  flex: 0 0 auto;
  width: 75%;
}

.gcol-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.gcol-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.gcol-12 {
  flex: 0 0 auto;
  width: 100%;
}

.gcol-offset-1 {
  margin-left: 8.3333333333%;
}

.gcol-offset-2 {
  margin-left: 16.6666666667%;
}

.gcol-offset-3 {
  margin-left: 25%;
}

.gcol-offset-4 {
  margin-left: 33.3333333333%;
}

.gcol-offset-5 {
  margin-left: 41.6666666667%;
}

.gcol-offset-6 {
  margin-left: 50%;
}

.gcol-offset-7 {
  margin-left: 58.3333333333%;
}

.gcol-offset-8 {
  margin-left: 66.6666666667%;
}

.gcol-offset-9 {
  margin-left: 75%;
}

.gcol-offset-10 {
  margin-left: 83.3333333333%;
}

.gcol-offset-11 {
  margin-left: 91.6666666667%;
}

.gcol-offset-0 {
  margin-left: 0;
}

.gcol-order-first {
  order: -1;
}

.gcol-order-last {
  order: 13;
}

.gcol-order-0 {
  order: 0;
}

.gcol-order-1 {
  order: 1;
}

.gcol-order-2 {
  order: 2;
}

.gcol-order-3 {
  order: 3;
}

.gcol-order-4 {
  order: 4;
}

.gcol-order-5 {
  order: 5;
}

.gcol-order-6 {
  order: 6;
}

.gcol-order-7 {
  order: 7;
}

.gcol-order-8 {
  order: 8;
}

.gcol-order-9 {
  order: 9;
}

.gcol-order-10 {
  order: 10;
}

.gcol-order-11 {
  order: 11;
}

.gcol-order-12 {
  order: 12;
}

@media (min-width: 576px) {
  .gcol-sm {
    flex: 1 1 0%;
    max-width: 100%;
  }
  .gcol-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .gcol-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .gcol-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .gcol-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .gcol-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .gcol-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .gcol-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .gcol-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .gcol-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .gcol-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .gcol-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .gcol-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .gcol-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .gcol-offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .gcol-offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .gcol-offset-sm-3 {
    margin-left: 25%;
  }
  .gcol-offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .gcol-offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .gcol-offset-sm-6 {
    margin-left: 50%;
  }
  .gcol-offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .gcol-offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .gcol-offset-sm-9 {
    margin-left: 75%;
  }
  .gcol-offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .gcol-offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .gcol-offset-sm-0 {
    margin-left: 0;
  }
  .gcol-order-sm-first {
    order: -1;
  }
  .gcol-order-sm-last {
    order: 13;
  }
  .gcol-order-sm-0 {
    order: 0;
  }
  .gcol-order-sm-1 {
    order: 1;
  }
  .gcol-order-sm-2 {
    order: 2;
  }
  .gcol-order-sm-3 {
    order: 3;
  }
  .gcol-order-sm-4 {
    order: 4;
  }
  .gcol-order-sm-5 {
    order: 5;
  }
  .gcol-order-sm-6 {
    order: 6;
  }
  .gcol-order-sm-7 {
    order: 7;
  }
  .gcol-order-sm-8 {
    order: 8;
  }
  .gcol-order-sm-9 {
    order: 9;
  }
  .gcol-order-sm-10 {
    order: 10;
  }
  .gcol-order-sm-11 {
    order: 11;
  }
  .gcol-order-sm-12 {
    order: 12;
  }
}
@media (min-width: 768px) {
  .gcol-md {
    flex: 1 1 0%;
    max-width: 100%;
  }
  .gcol-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .gcol-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .gcol-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .gcol-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .gcol-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .gcol-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .gcol-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .gcol-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .gcol-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .gcol-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .gcol-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .gcol-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .gcol-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .gcol-offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .gcol-offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .gcol-offset-md-3 {
    margin-left: 25%;
  }
  .gcol-offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .gcol-offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .gcol-offset-md-6 {
    margin-left: 50%;
  }
  .gcol-offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .gcol-offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .gcol-offset-md-9 {
    margin-left: 75%;
  }
  .gcol-offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .gcol-offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .gcol-offset-md-0 {
    margin-left: 0;
  }
  .gcol-order-md-first {
    order: -1;
  }
  .gcol-order-md-last {
    order: 13;
  }
  .gcol-order-md-0 {
    order: 0;
  }
  .gcol-order-md-1 {
    order: 1;
  }
  .gcol-order-md-2 {
    order: 2;
  }
  .gcol-order-md-3 {
    order: 3;
  }
  .gcol-order-md-4 {
    order: 4;
  }
  .gcol-order-md-5 {
    order: 5;
  }
  .gcol-order-md-6 {
    order: 6;
  }
  .gcol-order-md-7 {
    order: 7;
  }
  .gcol-order-md-8 {
    order: 8;
  }
  .gcol-order-md-9 {
    order: 9;
  }
  .gcol-order-md-10 {
    order: 10;
  }
  .gcol-order-md-11 {
    order: 11;
  }
  .gcol-order-md-12 {
    order: 12;
  }
}
@media (min-width: 992px) {
  .gcol-lg {
    flex: 1 1 0%;
    max-width: 100%;
  }
  .gcol-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .gcol-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .gcol-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .gcol-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .gcol-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .gcol-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .gcol-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .gcol-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .gcol-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .gcol-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .gcol-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .gcol-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .gcol-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .gcol-offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .gcol-offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .gcol-offset-lg-3 {
    margin-left: 25%;
  }
  .gcol-offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .gcol-offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .gcol-offset-lg-6 {
    margin-left: 50%;
  }
  .gcol-offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .gcol-offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .gcol-offset-lg-9 {
    margin-left: 75%;
  }
  .gcol-offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .gcol-offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .gcol-offset-lg-0 {
    margin-left: 0;
  }
  .gcol-order-lg-first {
    order: -1;
  }
  .gcol-order-lg-last {
    order: 13;
  }
  .gcol-order-lg-0 {
    order: 0;
  }
  .gcol-order-lg-1 {
    order: 1;
  }
  .gcol-order-lg-2 {
    order: 2;
  }
  .gcol-order-lg-3 {
    order: 3;
  }
  .gcol-order-lg-4 {
    order: 4;
  }
  .gcol-order-lg-5 {
    order: 5;
  }
  .gcol-order-lg-6 {
    order: 6;
  }
  .gcol-order-lg-7 {
    order: 7;
  }
  .gcol-order-lg-8 {
    order: 8;
  }
  .gcol-order-lg-9 {
    order: 9;
  }
  .gcol-order-lg-10 {
    order: 10;
  }
  .gcol-order-lg-11 {
    order: 11;
  }
  .gcol-order-lg-12 {
    order: 12;
  }
}
@media (min-width: 1200px) {
  .gcol-xl {
    flex: 1 1 0%;
    max-width: 100%;
  }
  .gcol-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .gcol-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .gcol-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .gcol-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .gcol-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .gcol-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .gcol-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .gcol-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .gcol-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .gcol-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .gcol-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .gcol-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .gcol-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .gcol-offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .gcol-offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .gcol-offset-xl-3 {
    margin-left: 25%;
  }
  .gcol-offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .gcol-offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .gcol-offset-xl-6 {
    margin-left: 50%;
  }
  .gcol-offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .gcol-offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .gcol-offset-xl-9 {
    margin-left: 75%;
  }
  .gcol-offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .gcol-offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .gcol-offset-xl-0 {
    margin-left: 0;
  }
  .gcol-order-xl-first {
    order: -1;
  }
  .gcol-order-xl-last {
    order: 13;
  }
  .gcol-order-xl-0 {
    order: 0;
  }
  .gcol-order-xl-1 {
    order: 1;
  }
  .gcol-order-xl-2 {
    order: 2;
  }
  .gcol-order-xl-3 {
    order: 3;
  }
  .gcol-order-xl-4 {
    order: 4;
  }
  .gcol-order-xl-5 {
    order: 5;
  }
  .gcol-order-xl-6 {
    order: 6;
  }
  .gcol-order-xl-7 {
    order: 7;
  }
  .gcol-order-xl-8 {
    order: 8;
  }
  .gcol-order-xl-9 {
    order: 9;
  }
  .gcol-order-xl-10 {
    order: 10;
  }
  .gcol-order-xl-11 {
    order: 11;
  }
  .gcol-order-xl-12 {
    order: 12;
  }
}
@media (min-width: 1600px) {
  .gcol-xxl {
    flex: 1 1 0%;
    max-width: 100%;
  }
  .gcol-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .gcol-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .gcol-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .gcol-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .gcol-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .gcol-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .gcol-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .gcol-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .gcol-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .gcol-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .gcol-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .gcol-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .gcol-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .gcol-offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .gcol-offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .gcol-offset-xxl-3 {
    margin-left: 25%;
  }
  .gcol-offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .gcol-offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .gcol-offset-xxl-6 {
    margin-left: 50%;
  }
  .gcol-offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .gcol-offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .gcol-offset-xxl-9 {
    margin-left: 75%;
  }
  .gcol-offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .gcol-offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .gcol-offset-xxl-0 {
    margin-left: 0;
  }
  .gcol-order-xxl-first {
    order: -1;
  }
  .gcol-order-xxl-last {
    order: 13;
  }
  .gcol-order-xxl-0 {
    order: 0;
  }
  .gcol-order-xxl-1 {
    order: 1;
  }
  .gcol-order-xxl-2 {
    order: 2;
  }
  .gcol-order-xxl-3 {
    order: 3;
  }
  .gcol-order-xxl-4 {
    order: 4;
  }
  .gcol-order-xxl-5 {
    order: 5;
  }
  .gcol-order-xxl-6 {
    order: 6;
  }
  .gcol-order-xxl-7 {
    order: 7;
  }
  .gcol-order-xxl-8 {
    order: 8;
  }
  .gcol-order-xxl-9 {
    order: 9;
  }
  .gcol-order-xxl-10 {
    order: 10;
  }
  .gcol-order-xxl-11 {
    order: 11;
  }
  .gcol-order-xxl-12 {
    order: 12;
  }
}
.flexgrid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.flexgrid > * {
  flex: 1 1 260px;
}

.flexgrid--auto-sm > * {
  flex: 1 1 200px;
}

.flexgrid--auto-md > * {
  flex: 1 1 260px;
}

.flexgrid--auto-lg > * {
  flex: 1 1 320px;
}

.flexgrid--cols-2 > * {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .flexgrid--cols-2 > * {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
@media (min-width: 992px) {
  .flexgrid--cols-2 > * {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
.flexgrid--cols-3 > * {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .flexgrid--cols-3 > * {
    flex: 1 1 calc(33.3333333333% - 1.5rem);
  }
}
@media (min-width: 992px) {
  .flexgrid--cols-3 > * {
    flex: 1 1 calc(33.3333333333% - 1.5rem);
  }
}
.flexgrid--cols-4 > * {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .flexgrid--cols-4 > * {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
@media (min-width: 992px) {
  .flexgrid--cols-4 > * {
    flex: 1 1 calc(25% - 1.5rem);
  }
}
.flexgrid--gap-0 {
  gap: 0 !important;
}

.flexgrid--gap-2 {
  gap: 0.5rem !important;
}

.flexgrid--gap-3 {
  gap: 0.75rem !important;
}

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

.flexgrid--gap-6 {
  gap: 1.5rem !important;
}

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

.flexgrid--gap-10 {
  gap: 2.5rem !important;
}

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

.flexgrid--nowrap {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.space-i-0 {
  padding: 0 !important;
}

.space-o-0 {
  margin: 0 !important;
}

.space-i-t-0 {
  padding-top: 0 !important;
}

.space-i-b-0 {
  padding-bottom: 0 !important;
}

.space-i-l-0 {
  padding-left: 0 !important;
}

.space-i-r-0 {
  padding-right: 0 !important;
}

.space-o-t-0 {
  margin-top: 0 !important;
}

.space-o-b-0 {
  margin-bottom: 0 !important;
}

.space-o-l-0 {
  margin-left: 0 !important;
}

.space-o-r-0 {
  margin-right: 0 !important;
}

.space-i-x-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.space-i-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.space-o-x-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.space-o-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.space-i-1 {
  padding: 0.25rem !important;
}

.space-o-1 {
  margin: 0.25rem !important;
}

.space-i-t-1 {
  padding-top: 0.25rem !important;
}

.space-i-b-1 {
  padding-bottom: 0.25rem !important;
}

.space-i-l-1 {
  padding-left: 0.25rem !important;
}

.space-i-r-1 {
  padding-right: 0.25rem !important;
}

.space-o-t-1 {
  margin-top: 0.25rem !important;
}

.space-o-b-1 {
  margin-bottom: 0.25rem !important;
}

.space-o-l-1 {
  margin-left: 0.25rem !important;
}

.space-o-r-1 {
  margin-right: 0.25rem !important;
}

.space-i-x-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.space-i-y-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.space-o-x-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.space-o-y-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.space-o-n1 {
  margin: -0.25rem !important;
}

.space-o-t-n1 {
  margin-top: -0.25rem !important;
}

.space-o-b-n1 {
  margin-bottom: -0.25rem !important;
}

.space-o-l-n1 {
  margin-left: -0.25rem !important;
}

.space-o-r-n1 {
  margin-right: -0.25rem !important;
}

.space-o-x-n1 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}

.space-o-y-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.space-i-2 {
  padding: 0.5rem !important;
}

.space-o-2 {
  margin: 0.5rem !important;
}

.space-i-t-2 {
  padding-top: 0.5rem !important;
}

.space-i-b-2 {
  padding-bottom: 0.5rem !important;
}

.space-i-l-2 {
  padding-left: 0.5rem !important;
}

.space-i-r-2 {
  padding-right: 0.5rem !important;
}

.space-o-t-2 {
  margin-top: 0.5rem !important;
}

.space-o-b-2 {
  margin-bottom: 0.5rem !important;
}

.space-o-l-2 {
  margin-left: 0.5rem !important;
}

.space-o-r-2 {
  margin-right: 0.5rem !important;
}

.space-i-x-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.space-i-y-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.space-o-x-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.space-o-y-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.space-o-n2 {
  margin: -0.5rem !important;
}

.space-o-t-n2 {
  margin-top: -0.5rem !important;
}

.space-o-b-n2 {
  margin-bottom: -0.5rem !important;
}

.space-o-l-n2 {
  margin-left: -0.5rem !important;
}

.space-o-r-n2 {
  margin-right: -0.5rem !important;
}

.space-o-x-n2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.space-o-y-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.space-i-3 {
  padding: 0.75rem !important;
}

.space-o-3 {
  margin: 0.75rem !important;
}

.space-i-t-3 {
  padding-top: 0.75rem !important;
}

.space-i-b-3 {
  padding-bottom: 0.75rem !important;
}

.space-i-l-3 {
  padding-left: 0.75rem !important;
}

.space-i-r-3 {
  padding-right: 0.75rem !important;
}

.space-o-t-3 {
  margin-top: 0.75rem !important;
}

.space-o-b-3 {
  margin-bottom: 0.75rem !important;
}

.space-o-l-3 {
  margin-left: 0.75rem !important;
}

.space-o-r-3 {
  margin-right: 0.75rem !important;
}

.space-i-x-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.space-i-y-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.space-o-x-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.space-o-y-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.space-o-n3 {
  margin: -0.75rem !important;
}

.space-o-t-n3 {
  margin-top: -0.75rem !important;
}

.space-o-b-n3 {
  margin-bottom: -0.75rem !important;
}

.space-o-l-n3 {
  margin-left: -0.75rem !important;
}

.space-o-r-n3 {
  margin-right: -0.75rem !important;
}

.space-o-x-n3 {
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}

.space-o-y-n3 {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.space-i-4 {
  padding: 1rem !important;
}

.space-o-4 {
  margin: 1rem !important;
}

.space-i-t-4 {
  padding-top: 1rem !important;
}

.space-i-b-4 {
  padding-bottom: 1rem !important;
}

.space-i-l-4 {
  padding-left: 1rem !important;
}

.space-i-r-4 {
  padding-right: 1rem !important;
}

.space-o-t-4 {
  margin-top: 1rem !important;
}

.space-o-b-4 {
  margin-bottom: 1rem !important;
}

.space-o-l-4 {
  margin-left: 1rem !important;
}

.space-o-r-4 {
  margin-right: 1rem !important;
}

.space-i-x-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.space-i-y-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.space-o-x-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.space-o-y-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.space-o-n4 {
  margin: -1rem !important;
}

.space-o-t-n4 {
  margin-top: -1rem !important;
}

.space-o-b-n4 {
  margin-bottom: -1rem !important;
}

.space-o-l-n4 {
  margin-left: -1rem !important;
}

.space-o-r-n4 {
  margin-right: -1rem !important;
}

.space-o-x-n4 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.space-o-y-n4 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.space-i-5 {
  padding: 1.25rem !important;
}

.space-o-5 {
  margin: 1.25rem !important;
}

.space-i-t-5 {
  padding-top: 1.25rem !important;
}

.space-i-b-5 {
  padding-bottom: 1.25rem !important;
}

.space-i-l-5 {
  padding-left: 1.25rem !important;
}

.space-i-r-5 {
  padding-right: 1.25rem !important;
}

.space-o-t-5 {
  margin-top: 1.25rem !important;
}

.space-o-b-5 {
  margin-bottom: 1.25rem !important;
}

.space-o-l-5 {
  margin-left: 1.25rem !important;
}

.space-o-r-5 {
  margin-right: 1.25rem !important;
}

.space-i-x-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.space-i-y-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.space-o-x-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.space-o-y-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.space-o-n5 {
  margin: -1.25rem !important;
}

.space-o-t-n5 {
  margin-top: -1.25rem !important;
}

.space-o-b-n5 {
  margin-bottom: -1.25rem !important;
}

.space-o-l-n5 {
  margin-left: -1.25rem !important;
}

.space-o-r-n5 {
  margin-right: -1.25rem !important;
}

.space-o-x-n5 {
  margin-left: -1.25rem !important;
  margin-right: -1.25rem !important;
}

.space-o-y-n5 {
  margin-top: -1.25rem !important;
  margin-bottom: -1.25rem !important;
}

.space-i-6 {
  padding: 1.5rem !important;
}

.space-o-6 {
  margin: 1.5rem !important;
}

.space-i-t-6 {
  padding-top: 1.5rem !important;
}

.space-i-b-6 {
  padding-bottom: 1.5rem !important;
}

.space-i-l-6 {
  padding-left: 1.5rem !important;
}

.space-i-r-6 {
  padding-right: 1.5rem !important;
}

.space-o-t-6 {
  margin-top: 1.5rem !important;
}

.space-o-b-6 {
  margin-bottom: 1.5rem !important;
}

.space-o-l-6 {
  margin-left: 1.5rem !important;
}

.space-o-r-6 {
  margin-right: 1.5rem !important;
}

.space-i-x-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.space-i-y-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.space-o-x-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.space-o-y-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.space-o-n6 {
  margin: -1.5rem !important;
}

.space-o-t-n6 {
  margin-top: -1.5rem !important;
}

.space-o-b-n6 {
  margin-bottom: -1.5rem !important;
}

.space-o-l-n6 {
  margin-left: -1.5rem !important;
}

.space-o-r-n6 {
  margin-right: -1.5rem !important;
}

.space-o-x-n6 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.space-o-y-n6 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.space-i-8 {
  padding: 2rem !important;
}

.space-o-8 {
  margin: 2rem !important;
}

.space-i-t-8 {
  padding-top: 2rem !important;
}

.space-i-b-8 {
  padding-bottom: 2rem !important;
}

.space-i-l-8 {
  padding-left: 2rem !important;
}

.space-i-r-8 {
  padding-right: 2rem !important;
}

.space-o-t-8 {
  margin-top: 2rem !important;
}

.space-o-b-8 {
  margin-bottom: 2rem !important;
}

.space-o-l-8 {
  margin-left: 2rem !important;
}

.space-o-r-8 {
  margin-right: 2rem !important;
}

.space-i-x-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.space-i-y-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.space-o-x-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.space-o-y-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.space-o-n8 {
  margin: -2rem !important;
}

.space-o-t-n8 {
  margin-top: -2rem !important;
}

.space-o-b-n8 {
  margin-bottom: -2rem !important;
}

.space-o-l-n8 {
  margin-left: -2rem !important;
}

.space-o-r-n8 {
  margin-right: -2rem !important;
}

.space-o-x-n8 {
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}

.space-o-y-n8 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.space-i-10 {
  padding: 2.5rem !important;
}

.space-o-10 {
  margin: 2.5rem !important;
}

.space-i-t-10 {
  padding-top: 2.5rem !important;
}

.space-i-b-10 {
  padding-bottom: 2.5rem !important;
}

.space-i-l-10 {
  padding-left: 2.5rem !important;
}

.space-i-r-10 {
  padding-right: 2.5rem !important;
}

.space-o-t-10 {
  margin-top: 2.5rem !important;
}

.space-o-b-10 {
  margin-bottom: 2.5rem !important;
}

.space-o-l-10 {
  margin-left: 2.5rem !important;
}

.space-o-r-10 {
  margin-right: 2.5rem !important;
}

.space-i-x-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.space-i-y-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.space-o-x-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.space-o-y-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.space-o-n10 {
  margin: -2.5rem !important;
}

.space-o-t-n10 {
  margin-top: -2.5rem !important;
}

.space-o-b-n10 {
  margin-bottom: -2.5rem !important;
}

.space-o-l-n10 {
  margin-left: -2.5rem !important;
}

.space-o-r-n10 {
  margin-right: -2.5rem !important;
}

.space-o-x-n10 {
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
}

.space-o-y-n10 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.space-i-12 {
  padding: 3rem !important;
}

.space-o-12 {
  margin: 3rem !important;
}

.space-i-t-12 {
  padding-top: 3rem !important;
}

.space-i-b-12 {
  padding-bottom: 3rem !important;
}

.space-i-l-12 {
  padding-left: 3rem !important;
}

.space-i-r-12 {
  padding-right: 3rem !important;
}

.space-o-t-12 {
  margin-top: 3rem !important;
}

.space-o-b-12 {
  margin-bottom: 3rem !important;
}

.space-o-l-12 {
  margin-left: 3rem !important;
}

.space-o-r-12 {
  margin-right: 3rem !important;
}

.space-i-x-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.space-i-y-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.space-o-x-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.space-o-y-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.space-o-n12 {
  margin: -3rem !important;
}

.space-o-t-n12 {
  margin-top: -3rem !important;
}

.space-o-b-n12 {
  margin-bottom: -3rem !important;
}

.space-o-l-n12 {
  margin-left: -3rem !important;
}

.space-o-r-n12 {
  margin-right: -3rem !important;
}

.space-o-x-n12 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.space-o-y-n12 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.space-i-16 {
  padding: 4rem !important;
}

.space-o-16 {
  margin: 4rem !important;
}

.space-i-t-16 {
  padding-top: 4rem !important;
}

.space-i-b-16 {
  padding-bottom: 4rem !important;
}

.space-i-l-16 {
  padding-left: 4rem !important;
}

.space-i-r-16 {
  padding-right: 4rem !important;
}

.space-o-t-16 {
  margin-top: 4rem !important;
}

.space-o-b-16 {
  margin-bottom: 4rem !important;
}

.space-o-l-16 {
  margin-left: 4rem !important;
}

.space-o-r-16 {
  margin-right: 4rem !important;
}

.space-i-x-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.space-i-y-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.space-o-x-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.space-o-y-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.space-o-n16 {
  margin: -4rem !important;
}

.space-o-t-n16 {
  margin-top: -4rem !important;
}

.space-o-b-n16 {
  margin-bottom: -4rem !important;
}

.space-o-l-n16 {
  margin-left: -4rem !important;
}

.space-o-r-n16 {
  margin-right: -4rem !important;
}

.space-o-x-n16 {
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}

.space-o-y-n16 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.space-i-20 {
  padding: 5rem !important;
}

.space-o-20 {
  margin: 5rem !important;
}

.space-i-t-20 {
  padding-top: 5rem !important;
}

.space-i-b-20 {
  padding-bottom: 5rem !important;
}

.space-i-l-20 {
  padding-left: 5rem !important;
}

.space-i-r-20 {
  padding-right: 5rem !important;
}

.space-o-t-20 {
  margin-top: 5rem !important;
}

.space-o-b-20 {
  margin-bottom: 5rem !important;
}

.space-o-l-20 {
  margin-left: 5rem !important;
}

.space-o-r-20 {
  margin-right: 5rem !important;
}

.space-i-x-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.space-i-y-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.space-o-x-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.space-o-y-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.space-o-n20 {
  margin: -5rem !important;
}

.space-o-t-n20 {
  margin-top: -5rem !important;
}

.space-o-b-n20 {
  margin-bottom: -5rem !important;
}

.space-o-l-n20 {
  margin-left: -5rem !important;
}

.space-o-r-n20 {
  margin-right: -5rem !important;
}

.space-o-x-n20 {
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}

.space-o-y-n20 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.space-i-24 {
  padding: 6rem !important;
}

.space-o-24 {
  margin: 6rem !important;
}

.space-i-t-24 {
  padding-top: 6rem !important;
}

.space-i-b-24 {
  padding-bottom: 6rem !important;
}

.space-i-l-24 {
  padding-left: 6rem !important;
}

.space-i-r-24 {
  padding-right: 6rem !important;
}

.space-o-t-24 {
  margin-top: 6rem !important;
}

.space-o-b-24 {
  margin-bottom: 6rem !important;
}

.space-o-l-24 {
  margin-left: 6rem !important;
}

.space-o-r-24 {
  margin-right: 6rem !important;
}

.space-i-x-24 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.space-i-y-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.space-o-x-24 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.space-o-y-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.space-o-n24 {
  margin: -6rem !important;
}

.space-o-t-n24 {
  margin-top: -6rem !important;
}

.space-o-b-n24 {
  margin-bottom: -6rem !important;
}

.space-o-l-n24 {
  margin-left: -6rem !important;
}

.space-o-r-n24 {
  margin-right: -6rem !important;
}

.space-o-x-n24 {
  margin-left: -6rem !important;
  margin-right: -6rem !important;
}

.space-o-y-n24 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.space-i-32 {
  padding: 8rem !important;
}

.space-o-32 {
  margin: 8rem !important;
}

.space-i-t-32 {
  padding-top: 8rem !important;
}

.space-i-b-32 {
  padding-bottom: 8rem !important;
}

.space-i-l-32 {
  padding-left: 8rem !important;
}

.space-i-r-32 {
  padding-right: 8rem !important;
}

.space-o-t-32 {
  margin-top: 8rem !important;
}

.space-o-b-32 {
  margin-bottom: 8rem !important;
}

.space-o-l-32 {
  margin-left: 8rem !important;
}

.space-o-r-32 {
  margin-right: 8rem !important;
}

.space-i-x-32 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.space-i-y-32 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.space-o-x-32 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.space-o-y-32 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.space-o-n32 {
  margin: -8rem !important;
}

.space-o-t-n32 {
  margin-top: -8rem !important;
}

.space-o-b-n32 {
  margin-bottom: -8rem !important;
}

.space-o-l-n32 {
  margin-left: -8rem !important;
}

.space-o-r-n32 {
  margin-right: -8rem !important;
}

.space-o-x-n32 {
  margin-left: -8rem !important;
  margin-right: -8rem !important;
}

.space-o-y-n32 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.space-o-auto {
  margin: auto !important;
}

.space-o-x-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.space-o-y-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.space-o-t-auto {
  margin-top: auto !important;
}

.space-o-b-auto {
  margin-bottom: auto !important;
}

.space-o-l-auto {
  margin-left: auto !important;
}

.space-o-r-auto {
  margin-right: auto !important;
}

@media (min-width: 576px) {
  .space-sm-i-0 {
    padding: 0 !important;
  }
  .space-sm-o-0 {
    margin: 0 !important;
  }
  .space-sm-i-t-0 {
    padding-top: 0 !important;
  }
  .space-sm-i-b-0 {
    padding-bottom: 0 !important;
  }
  .space-sm-i-l-0 {
    padding-left: 0 !important;
  }
  .space-sm-i-r-0 {
    padding-right: 0 !important;
  }
  .space-sm-o-t-0 {
    margin-top: 0 !important;
  }
  .space-sm-o-b-0 {
    margin-bottom: 0 !important;
  }
  .space-sm-o-l-0 {
    margin-left: 0 !important;
  }
  .space-sm-o-r-0 {
    margin-right: 0 !important;
  }
  .space-sm-i-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .space-sm-i-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .space-sm-o-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .space-sm-o-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .space-sm-i-1 {
    padding: 0.25rem !important;
  }
  .space-sm-o-1 {
    margin: 0.25rem !important;
  }
  .space-sm-i-t-1 {
    padding-top: 0.25rem !important;
  }
  .space-sm-i-b-1 {
    padding-bottom: 0.25rem !important;
  }
  .space-sm-i-l-1 {
    padding-left: 0.25rem !important;
  }
  .space-sm-i-r-1 {
    padding-right: 0.25rem !important;
  }
  .space-sm-o-t-1 {
    margin-top: 0.25rem !important;
  }
  .space-sm-o-b-1 {
    margin-bottom: 0.25rem !important;
  }
  .space-sm-o-l-1 {
    margin-left: 0.25rem !important;
  }
  .space-sm-o-r-1 {
    margin-right: 0.25rem !important;
  }
  .space-sm-i-x-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .space-sm-i-y-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .space-sm-o-x-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .space-sm-o-y-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .space-sm-o-n1 {
    margin: -0.25rem !important;
  }
  .space-sm-o-t-n1 {
    margin-top: -0.25rem !important;
  }
  .space-sm-o-b-n1 {
    margin-bottom: -0.25rem !important;
  }
  .space-sm-o-l-n1 {
    margin-left: -0.25rem !important;
  }
  .space-sm-o-r-n1 {
    margin-right: -0.25rem !important;
  }
  .space-sm-o-x-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .space-sm-o-y-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .space-sm-i-2 {
    padding: 0.5rem !important;
  }
  .space-sm-o-2 {
    margin: 0.5rem !important;
  }
  .space-sm-i-t-2 {
    padding-top: 0.5rem !important;
  }
  .space-sm-i-b-2 {
    padding-bottom: 0.5rem !important;
  }
  .space-sm-i-l-2 {
    padding-left: 0.5rem !important;
  }
  .space-sm-i-r-2 {
    padding-right: 0.5rem !important;
  }
  .space-sm-o-t-2 {
    margin-top: 0.5rem !important;
  }
  .space-sm-o-b-2 {
    margin-bottom: 0.5rem !important;
  }
  .space-sm-o-l-2 {
    margin-left: 0.5rem !important;
  }
  .space-sm-o-r-2 {
    margin-right: 0.5rem !important;
  }
  .space-sm-i-x-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .space-sm-i-y-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .space-sm-o-x-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .space-sm-o-y-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .space-sm-o-n2 {
    margin: -0.5rem !important;
  }
  .space-sm-o-t-n2 {
    margin-top: -0.5rem !important;
  }
  .space-sm-o-b-n2 {
    margin-bottom: -0.5rem !important;
  }
  .space-sm-o-l-n2 {
    margin-left: -0.5rem !important;
  }
  .space-sm-o-r-n2 {
    margin-right: -0.5rem !important;
  }
  .space-sm-o-x-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .space-sm-o-y-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .space-sm-i-3 {
    padding: 0.75rem !important;
  }
  .space-sm-o-3 {
    margin: 0.75rem !important;
  }
  .space-sm-i-t-3 {
    padding-top: 0.75rem !important;
  }
  .space-sm-i-b-3 {
    padding-bottom: 0.75rem !important;
  }
  .space-sm-i-l-3 {
    padding-left: 0.75rem !important;
  }
  .space-sm-i-r-3 {
    padding-right: 0.75rem !important;
  }
  .space-sm-o-t-3 {
    margin-top: 0.75rem !important;
  }
  .space-sm-o-b-3 {
    margin-bottom: 0.75rem !important;
  }
  .space-sm-o-l-3 {
    margin-left: 0.75rem !important;
  }
  .space-sm-o-r-3 {
    margin-right: 0.75rem !important;
  }
  .space-sm-i-x-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .space-sm-i-y-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .space-sm-o-x-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .space-sm-o-y-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .space-sm-o-n3 {
    margin: -0.75rem !important;
  }
  .space-sm-o-t-n3 {
    margin-top: -0.75rem !important;
  }
  .space-sm-o-b-n3 {
    margin-bottom: -0.75rem !important;
  }
  .space-sm-o-l-n3 {
    margin-left: -0.75rem !important;
  }
  .space-sm-o-r-n3 {
    margin-right: -0.75rem !important;
  }
  .space-sm-o-x-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .space-sm-o-y-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .space-sm-i-4 {
    padding: 1rem !important;
  }
  .space-sm-o-4 {
    margin: 1rem !important;
  }
  .space-sm-i-t-4 {
    padding-top: 1rem !important;
  }
  .space-sm-i-b-4 {
    padding-bottom: 1rem !important;
  }
  .space-sm-i-l-4 {
    padding-left: 1rem !important;
  }
  .space-sm-i-r-4 {
    padding-right: 1rem !important;
  }
  .space-sm-o-t-4 {
    margin-top: 1rem !important;
  }
  .space-sm-o-b-4 {
    margin-bottom: 1rem !important;
  }
  .space-sm-o-l-4 {
    margin-left: 1rem !important;
  }
  .space-sm-o-r-4 {
    margin-right: 1rem !important;
  }
  .space-sm-i-x-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .space-sm-i-y-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .space-sm-o-x-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .space-sm-o-y-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .space-sm-o-n4 {
    margin: -1rem !important;
  }
  .space-sm-o-t-n4 {
    margin-top: -1rem !important;
  }
  .space-sm-o-b-n4 {
    margin-bottom: -1rem !important;
  }
  .space-sm-o-l-n4 {
    margin-left: -1rem !important;
  }
  .space-sm-o-r-n4 {
    margin-right: -1rem !important;
  }
  .space-sm-o-x-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .space-sm-o-y-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .space-sm-i-5 {
    padding: 1.25rem !important;
  }
  .space-sm-o-5 {
    margin: 1.25rem !important;
  }
  .space-sm-i-t-5 {
    padding-top: 1.25rem !important;
  }
  .space-sm-i-b-5 {
    padding-bottom: 1.25rem !important;
  }
  .space-sm-i-l-5 {
    padding-left: 1.25rem !important;
  }
  .space-sm-i-r-5 {
    padding-right: 1.25rem !important;
  }
  .space-sm-o-t-5 {
    margin-top: 1.25rem !important;
  }
  .space-sm-o-b-5 {
    margin-bottom: 1.25rem !important;
  }
  .space-sm-o-l-5 {
    margin-left: 1.25rem !important;
  }
  .space-sm-o-r-5 {
    margin-right: 1.25rem !important;
  }
  .space-sm-i-x-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .space-sm-i-y-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .space-sm-o-x-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .space-sm-o-y-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .space-sm-o-n5 {
    margin: -1.25rem !important;
  }
  .space-sm-o-t-n5 {
    margin-top: -1.25rem !important;
  }
  .space-sm-o-b-n5 {
    margin-bottom: -1.25rem !important;
  }
  .space-sm-o-l-n5 {
    margin-left: -1.25rem !important;
  }
  .space-sm-o-r-n5 {
    margin-right: -1.25rem !important;
  }
  .space-sm-o-x-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .space-sm-o-y-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .space-sm-i-6 {
    padding: 1.5rem !important;
  }
  .space-sm-o-6 {
    margin: 1.5rem !important;
  }
  .space-sm-i-t-6 {
    padding-top: 1.5rem !important;
  }
  .space-sm-i-b-6 {
    padding-bottom: 1.5rem !important;
  }
  .space-sm-i-l-6 {
    padding-left: 1.5rem !important;
  }
  .space-sm-i-r-6 {
    padding-right: 1.5rem !important;
  }
  .space-sm-o-t-6 {
    margin-top: 1.5rem !important;
  }
  .space-sm-o-b-6 {
    margin-bottom: 1.5rem !important;
  }
  .space-sm-o-l-6 {
    margin-left: 1.5rem !important;
  }
  .space-sm-o-r-6 {
    margin-right: 1.5rem !important;
  }
  .space-sm-i-x-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .space-sm-i-y-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .space-sm-o-x-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .space-sm-o-y-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .space-sm-o-n6 {
    margin: -1.5rem !important;
  }
  .space-sm-o-t-n6 {
    margin-top: -1.5rem !important;
  }
  .space-sm-o-b-n6 {
    margin-bottom: -1.5rem !important;
  }
  .space-sm-o-l-n6 {
    margin-left: -1.5rem !important;
  }
  .space-sm-o-r-n6 {
    margin-right: -1.5rem !important;
  }
  .space-sm-o-x-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .space-sm-o-y-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .space-sm-i-8 {
    padding: 2rem !important;
  }
  .space-sm-o-8 {
    margin: 2rem !important;
  }
  .space-sm-i-t-8 {
    padding-top: 2rem !important;
  }
  .space-sm-i-b-8 {
    padding-bottom: 2rem !important;
  }
  .space-sm-i-l-8 {
    padding-left: 2rem !important;
  }
  .space-sm-i-r-8 {
    padding-right: 2rem !important;
  }
  .space-sm-o-t-8 {
    margin-top: 2rem !important;
  }
  .space-sm-o-b-8 {
    margin-bottom: 2rem !important;
  }
  .space-sm-o-l-8 {
    margin-left: 2rem !important;
  }
  .space-sm-o-r-8 {
    margin-right: 2rem !important;
  }
  .space-sm-i-x-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .space-sm-i-y-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .space-sm-o-x-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .space-sm-o-y-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .space-sm-o-n8 {
    margin: -2rem !important;
  }
  .space-sm-o-t-n8 {
    margin-top: -2rem !important;
  }
  .space-sm-o-b-n8 {
    margin-bottom: -2rem !important;
  }
  .space-sm-o-l-n8 {
    margin-left: -2rem !important;
  }
  .space-sm-o-r-n8 {
    margin-right: -2rem !important;
  }
  .space-sm-o-x-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .space-sm-o-y-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .space-sm-i-10 {
    padding: 2.5rem !important;
  }
  .space-sm-o-10 {
    margin: 2.5rem !important;
  }
  .space-sm-i-t-10 {
    padding-top: 2.5rem !important;
  }
  .space-sm-i-b-10 {
    padding-bottom: 2.5rem !important;
  }
  .space-sm-i-l-10 {
    padding-left: 2.5rem !important;
  }
  .space-sm-i-r-10 {
    padding-right: 2.5rem !important;
  }
  .space-sm-o-t-10 {
    margin-top: 2.5rem !important;
  }
  .space-sm-o-b-10 {
    margin-bottom: 2.5rem !important;
  }
  .space-sm-o-l-10 {
    margin-left: 2.5rem !important;
  }
  .space-sm-o-r-10 {
    margin-right: 2.5rem !important;
  }
  .space-sm-i-x-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .space-sm-i-y-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .space-sm-o-x-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .space-sm-o-y-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .space-sm-o-n10 {
    margin: -2.5rem !important;
  }
  .space-sm-o-t-n10 {
    margin-top: -2.5rem !important;
  }
  .space-sm-o-b-n10 {
    margin-bottom: -2.5rem !important;
  }
  .space-sm-o-l-n10 {
    margin-left: -2.5rem !important;
  }
  .space-sm-o-r-n10 {
    margin-right: -2.5rem !important;
  }
  .space-sm-o-x-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .space-sm-o-y-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .space-sm-i-12 {
    padding: 3rem !important;
  }
  .space-sm-o-12 {
    margin: 3rem !important;
  }
  .space-sm-i-t-12 {
    padding-top: 3rem !important;
  }
  .space-sm-i-b-12 {
    padding-bottom: 3rem !important;
  }
  .space-sm-i-l-12 {
    padding-left: 3rem !important;
  }
  .space-sm-i-r-12 {
    padding-right: 3rem !important;
  }
  .space-sm-o-t-12 {
    margin-top: 3rem !important;
  }
  .space-sm-o-b-12 {
    margin-bottom: 3rem !important;
  }
  .space-sm-o-l-12 {
    margin-left: 3rem !important;
  }
  .space-sm-o-r-12 {
    margin-right: 3rem !important;
  }
  .space-sm-i-x-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .space-sm-i-y-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .space-sm-o-x-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .space-sm-o-y-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .space-sm-o-n12 {
    margin: -3rem !important;
  }
  .space-sm-o-t-n12 {
    margin-top: -3rem !important;
  }
  .space-sm-o-b-n12 {
    margin-bottom: -3rem !important;
  }
  .space-sm-o-l-n12 {
    margin-left: -3rem !important;
  }
  .space-sm-o-r-n12 {
    margin-right: -3rem !important;
  }
  .space-sm-o-x-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .space-sm-o-y-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .space-sm-i-16 {
    padding: 4rem !important;
  }
  .space-sm-o-16 {
    margin: 4rem !important;
  }
  .space-sm-i-t-16 {
    padding-top: 4rem !important;
  }
  .space-sm-i-b-16 {
    padding-bottom: 4rem !important;
  }
  .space-sm-i-l-16 {
    padding-left: 4rem !important;
  }
  .space-sm-i-r-16 {
    padding-right: 4rem !important;
  }
  .space-sm-o-t-16 {
    margin-top: 4rem !important;
  }
  .space-sm-o-b-16 {
    margin-bottom: 4rem !important;
  }
  .space-sm-o-l-16 {
    margin-left: 4rem !important;
  }
  .space-sm-o-r-16 {
    margin-right: 4rem !important;
  }
  .space-sm-i-x-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .space-sm-i-y-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .space-sm-o-x-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .space-sm-o-y-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .space-sm-o-n16 {
    margin: -4rem !important;
  }
  .space-sm-o-t-n16 {
    margin-top: -4rem !important;
  }
  .space-sm-o-b-n16 {
    margin-bottom: -4rem !important;
  }
  .space-sm-o-l-n16 {
    margin-left: -4rem !important;
  }
  .space-sm-o-r-n16 {
    margin-right: -4rem !important;
  }
  .space-sm-o-x-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .space-sm-o-y-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .space-sm-i-20 {
    padding: 5rem !important;
  }
  .space-sm-o-20 {
    margin: 5rem !important;
  }
  .space-sm-i-t-20 {
    padding-top: 5rem !important;
  }
  .space-sm-i-b-20 {
    padding-bottom: 5rem !important;
  }
  .space-sm-i-l-20 {
    padding-left: 5rem !important;
  }
  .space-sm-i-r-20 {
    padding-right: 5rem !important;
  }
  .space-sm-o-t-20 {
    margin-top: 5rem !important;
  }
  .space-sm-o-b-20 {
    margin-bottom: 5rem !important;
  }
  .space-sm-o-l-20 {
    margin-left: 5rem !important;
  }
  .space-sm-o-r-20 {
    margin-right: 5rem !important;
  }
  .space-sm-i-x-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .space-sm-i-y-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .space-sm-o-x-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .space-sm-o-y-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .space-sm-o-n20 {
    margin: -5rem !important;
  }
  .space-sm-o-t-n20 {
    margin-top: -5rem !important;
  }
  .space-sm-o-b-n20 {
    margin-bottom: -5rem !important;
  }
  .space-sm-o-l-n20 {
    margin-left: -5rem !important;
  }
  .space-sm-o-r-n20 {
    margin-right: -5rem !important;
  }
  .space-sm-o-x-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .space-sm-o-y-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .space-sm-i-24 {
    padding: 6rem !important;
  }
  .space-sm-o-24 {
    margin: 6rem !important;
  }
  .space-sm-i-t-24 {
    padding-top: 6rem !important;
  }
  .space-sm-i-b-24 {
    padding-bottom: 6rem !important;
  }
  .space-sm-i-l-24 {
    padding-left: 6rem !important;
  }
  .space-sm-i-r-24 {
    padding-right: 6rem !important;
  }
  .space-sm-o-t-24 {
    margin-top: 6rem !important;
  }
  .space-sm-o-b-24 {
    margin-bottom: 6rem !important;
  }
  .space-sm-o-l-24 {
    margin-left: 6rem !important;
  }
  .space-sm-o-r-24 {
    margin-right: 6rem !important;
  }
  .space-sm-i-x-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .space-sm-i-y-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .space-sm-o-x-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .space-sm-o-y-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .space-sm-o-n24 {
    margin: -6rem !important;
  }
  .space-sm-o-t-n24 {
    margin-top: -6rem !important;
  }
  .space-sm-o-b-n24 {
    margin-bottom: -6rem !important;
  }
  .space-sm-o-l-n24 {
    margin-left: -6rem !important;
  }
  .space-sm-o-r-n24 {
    margin-right: -6rem !important;
  }
  .space-sm-o-x-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .space-sm-o-y-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .space-sm-i-32 {
    padding: 8rem !important;
  }
  .space-sm-o-32 {
    margin: 8rem !important;
  }
  .space-sm-i-t-32 {
    padding-top: 8rem !important;
  }
  .space-sm-i-b-32 {
    padding-bottom: 8rem !important;
  }
  .space-sm-i-l-32 {
    padding-left: 8rem !important;
  }
  .space-sm-i-r-32 {
    padding-right: 8rem !important;
  }
  .space-sm-o-t-32 {
    margin-top: 8rem !important;
  }
  .space-sm-o-b-32 {
    margin-bottom: 8rem !important;
  }
  .space-sm-o-l-32 {
    margin-left: 8rem !important;
  }
  .space-sm-o-r-32 {
    margin-right: 8rem !important;
  }
  .space-sm-i-x-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .space-sm-i-y-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .space-sm-o-x-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .space-sm-o-y-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .space-sm-o-n32 {
    margin: -8rem !important;
  }
  .space-sm-o-t-n32 {
    margin-top: -8rem !important;
  }
  .space-sm-o-b-n32 {
    margin-bottom: -8rem !important;
  }
  .space-sm-o-l-n32 {
    margin-left: -8rem !important;
  }
  .space-sm-o-r-n32 {
    margin-right: -8rem !important;
  }
  .space-sm-o-x-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .space-sm-o-y-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .space-sm-o-auto {
    margin: auto !important;
  }
  .space-sm-o-x-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .space-sm-o-y-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .space-sm-o-t-auto {
    margin-top: auto !important;
  }
  .space-sm-o-b-auto {
    margin-bottom: auto !important;
  }
  .space-sm-o-l-auto {
    margin-left: auto !important;
  }
  .space-sm-o-r-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 768px) {
  .space-md-i-0 {
    padding: 0 !important;
  }
  .space-md-o-0 {
    margin: 0 !important;
  }
  .space-md-i-t-0 {
    padding-top: 0 !important;
  }
  .space-md-i-b-0 {
    padding-bottom: 0 !important;
  }
  .space-md-i-l-0 {
    padding-left: 0 !important;
  }
  .space-md-i-r-0 {
    padding-right: 0 !important;
  }
  .space-md-o-t-0 {
    margin-top: 0 !important;
  }
  .space-md-o-b-0 {
    margin-bottom: 0 !important;
  }
  .space-md-o-l-0 {
    margin-left: 0 !important;
  }
  .space-md-o-r-0 {
    margin-right: 0 !important;
  }
  .space-md-i-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .space-md-i-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .space-md-o-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .space-md-o-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .space-md-i-1 {
    padding: 0.25rem !important;
  }
  .space-md-o-1 {
    margin: 0.25rem !important;
  }
  .space-md-i-t-1 {
    padding-top: 0.25rem !important;
  }
  .space-md-i-b-1 {
    padding-bottom: 0.25rem !important;
  }
  .space-md-i-l-1 {
    padding-left: 0.25rem !important;
  }
  .space-md-i-r-1 {
    padding-right: 0.25rem !important;
  }
  .space-md-o-t-1 {
    margin-top: 0.25rem !important;
  }
  .space-md-o-b-1 {
    margin-bottom: 0.25rem !important;
  }
  .space-md-o-l-1 {
    margin-left: 0.25rem !important;
  }
  .space-md-o-r-1 {
    margin-right: 0.25rem !important;
  }
  .space-md-i-x-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .space-md-i-y-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .space-md-o-x-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .space-md-o-y-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .space-md-o-n1 {
    margin: -0.25rem !important;
  }
  .space-md-o-t-n1 {
    margin-top: -0.25rem !important;
  }
  .space-md-o-b-n1 {
    margin-bottom: -0.25rem !important;
  }
  .space-md-o-l-n1 {
    margin-left: -0.25rem !important;
  }
  .space-md-o-r-n1 {
    margin-right: -0.25rem !important;
  }
  .space-md-o-x-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .space-md-o-y-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .space-md-i-2 {
    padding: 0.5rem !important;
  }
  .space-md-o-2 {
    margin: 0.5rem !important;
  }
  .space-md-i-t-2 {
    padding-top: 0.5rem !important;
  }
  .space-md-i-b-2 {
    padding-bottom: 0.5rem !important;
  }
  .space-md-i-l-2 {
    padding-left: 0.5rem !important;
  }
  .space-md-i-r-2 {
    padding-right: 0.5rem !important;
  }
  .space-md-o-t-2 {
    margin-top: 0.5rem !important;
  }
  .space-md-o-b-2 {
    margin-bottom: 0.5rem !important;
  }
  .space-md-o-l-2 {
    margin-left: 0.5rem !important;
  }
  .space-md-o-r-2 {
    margin-right: 0.5rem !important;
  }
  .space-md-i-x-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .space-md-i-y-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .space-md-o-x-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .space-md-o-y-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .space-md-o-n2 {
    margin: -0.5rem !important;
  }
  .space-md-o-t-n2 {
    margin-top: -0.5rem !important;
  }
  .space-md-o-b-n2 {
    margin-bottom: -0.5rem !important;
  }
  .space-md-o-l-n2 {
    margin-left: -0.5rem !important;
  }
  .space-md-o-r-n2 {
    margin-right: -0.5rem !important;
  }
  .space-md-o-x-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .space-md-o-y-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .space-md-i-3 {
    padding: 0.75rem !important;
  }
  .space-md-o-3 {
    margin: 0.75rem !important;
  }
  .space-md-i-t-3 {
    padding-top: 0.75rem !important;
  }
  .space-md-i-b-3 {
    padding-bottom: 0.75rem !important;
  }
  .space-md-i-l-3 {
    padding-left: 0.75rem !important;
  }
  .space-md-i-r-3 {
    padding-right: 0.75rem !important;
  }
  .space-md-o-t-3 {
    margin-top: 0.75rem !important;
  }
  .space-md-o-b-3 {
    margin-bottom: 0.75rem !important;
  }
  .space-md-o-l-3 {
    margin-left: 0.75rem !important;
  }
  .space-md-o-r-3 {
    margin-right: 0.75rem !important;
  }
  .space-md-i-x-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .space-md-i-y-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .space-md-o-x-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .space-md-o-y-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .space-md-o-n3 {
    margin: -0.75rem !important;
  }
  .space-md-o-t-n3 {
    margin-top: -0.75rem !important;
  }
  .space-md-o-b-n3 {
    margin-bottom: -0.75rem !important;
  }
  .space-md-o-l-n3 {
    margin-left: -0.75rem !important;
  }
  .space-md-o-r-n3 {
    margin-right: -0.75rem !important;
  }
  .space-md-o-x-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .space-md-o-y-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .space-md-i-4 {
    padding: 1rem !important;
  }
  .space-md-o-4 {
    margin: 1rem !important;
  }
  .space-md-i-t-4 {
    padding-top: 1rem !important;
  }
  .space-md-i-b-4 {
    padding-bottom: 1rem !important;
  }
  .space-md-i-l-4 {
    padding-left: 1rem !important;
  }
  .space-md-i-r-4 {
    padding-right: 1rem !important;
  }
  .space-md-o-t-4 {
    margin-top: 1rem !important;
  }
  .space-md-o-b-4 {
    margin-bottom: 1rem !important;
  }
  .space-md-o-l-4 {
    margin-left: 1rem !important;
  }
  .space-md-o-r-4 {
    margin-right: 1rem !important;
  }
  .space-md-i-x-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .space-md-i-y-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .space-md-o-x-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .space-md-o-y-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .space-md-o-n4 {
    margin: -1rem !important;
  }
  .space-md-o-t-n4 {
    margin-top: -1rem !important;
  }
  .space-md-o-b-n4 {
    margin-bottom: -1rem !important;
  }
  .space-md-o-l-n4 {
    margin-left: -1rem !important;
  }
  .space-md-o-r-n4 {
    margin-right: -1rem !important;
  }
  .space-md-o-x-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .space-md-o-y-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .space-md-i-5 {
    padding: 1.25rem !important;
  }
  .space-md-o-5 {
    margin: 1.25rem !important;
  }
  .space-md-i-t-5 {
    padding-top: 1.25rem !important;
  }
  .space-md-i-b-5 {
    padding-bottom: 1.25rem !important;
  }
  .space-md-i-l-5 {
    padding-left: 1.25rem !important;
  }
  .space-md-i-r-5 {
    padding-right: 1.25rem !important;
  }
  .space-md-o-t-5 {
    margin-top: 1.25rem !important;
  }
  .space-md-o-b-5 {
    margin-bottom: 1.25rem !important;
  }
  .space-md-o-l-5 {
    margin-left: 1.25rem !important;
  }
  .space-md-o-r-5 {
    margin-right: 1.25rem !important;
  }
  .space-md-i-x-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .space-md-i-y-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .space-md-o-x-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .space-md-o-y-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .space-md-o-n5 {
    margin: -1.25rem !important;
  }
  .space-md-o-t-n5 {
    margin-top: -1.25rem !important;
  }
  .space-md-o-b-n5 {
    margin-bottom: -1.25rem !important;
  }
  .space-md-o-l-n5 {
    margin-left: -1.25rem !important;
  }
  .space-md-o-r-n5 {
    margin-right: -1.25rem !important;
  }
  .space-md-o-x-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .space-md-o-y-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .space-md-i-6 {
    padding: 1.5rem !important;
  }
  .space-md-o-6 {
    margin: 1.5rem !important;
  }
  .space-md-i-t-6 {
    padding-top: 1.5rem !important;
  }
  .space-md-i-b-6 {
    padding-bottom: 1.5rem !important;
  }
  .space-md-i-l-6 {
    padding-left: 1.5rem !important;
  }
  .space-md-i-r-6 {
    padding-right: 1.5rem !important;
  }
  .space-md-o-t-6 {
    margin-top: 1.5rem !important;
  }
  .space-md-o-b-6 {
    margin-bottom: 1.5rem !important;
  }
  .space-md-o-l-6 {
    margin-left: 1.5rem !important;
  }
  .space-md-o-r-6 {
    margin-right: 1.5rem !important;
  }
  .space-md-i-x-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .space-md-i-y-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .space-md-o-x-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .space-md-o-y-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .space-md-o-n6 {
    margin: -1.5rem !important;
  }
  .space-md-o-t-n6 {
    margin-top: -1.5rem !important;
  }
  .space-md-o-b-n6 {
    margin-bottom: -1.5rem !important;
  }
  .space-md-o-l-n6 {
    margin-left: -1.5rem !important;
  }
  .space-md-o-r-n6 {
    margin-right: -1.5rem !important;
  }
  .space-md-o-x-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .space-md-o-y-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .space-md-i-8 {
    padding: 2rem !important;
  }
  .space-md-o-8 {
    margin: 2rem !important;
  }
  .space-md-i-t-8 {
    padding-top: 2rem !important;
  }
  .space-md-i-b-8 {
    padding-bottom: 2rem !important;
  }
  .space-md-i-l-8 {
    padding-left: 2rem !important;
  }
  .space-md-i-r-8 {
    padding-right: 2rem !important;
  }
  .space-md-o-t-8 {
    margin-top: 2rem !important;
  }
  .space-md-o-b-8 {
    margin-bottom: 2rem !important;
  }
  .space-md-o-l-8 {
    margin-left: 2rem !important;
  }
  .space-md-o-r-8 {
    margin-right: 2rem !important;
  }
  .space-md-i-x-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .space-md-i-y-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .space-md-o-x-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .space-md-o-y-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .space-md-o-n8 {
    margin: -2rem !important;
  }
  .space-md-o-t-n8 {
    margin-top: -2rem !important;
  }
  .space-md-o-b-n8 {
    margin-bottom: -2rem !important;
  }
  .space-md-o-l-n8 {
    margin-left: -2rem !important;
  }
  .space-md-o-r-n8 {
    margin-right: -2rem !important;
  }
  .space-md-o-x-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .space-md-o-y-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .space-md-i-10 {
    padding: 2.5rem !important;
  }
  .space-md-o-10 {
    margin: 2.5rem !important;
  }
  .space-md-i-t-10 {
    padding-top: 2.5rem !important;
  }
  .space-md-i-b-10 {
    padding-bottom: 2.5rem !important;
  }
  .space-md-i-l-10 {
    padding-left: 2.5rem !important;
  }
  .space-md-i-r-10 {
    padding-right: 2.5rem !important;
  }
  .space-md-o-t-10 {
    margin-top: 2.5rem !important;
  }
  .space-md-o-b-10 {
    margin-bottom: 2.5rem !important;
  }
  .space-md-o-l-10 {
    margin-left: 2.5rem !important;
  }
  .space-md-o-r-10 {
    margin-right: 2.5rem !important;
  }
  .space-md-i-x-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .space-md-i-y-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .space-md-o-x-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .space-md-o-y-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .space-md-o-n10 {
    margin: -2.5rem !important;
  }
  .space-md-o-t-n10 {
    margin-top: -2.5rem !important;
  }
  .space-md-o-b-n10 {
    margin-bottom: -2.5rem !important;
  }
  .space-md-o-l-n10 {
    margin-left: -2.5rem !important;
  }
  .space-md-o-r-n10 {
    margin-right: -2.5rem !important;
  }
  .space-md-o-x-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .space-md-o-y-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .space-md-i-12 {
    padding: 3rem !important;
  }
  .space-md-o-12 {
    margin: 3rem !important;
  }
  .space-md-i-t-12 {
    padding-top: 3rem !important;
  }
  .space-md-i-b-12 {
    padding-bottom: 3rem !important;
  }
  .space-md-i-l-12 {
    padding-left: 3rem !important;
  }
  .space-md-i-r-12 {
    padding-right: 3rem !important;
  }
  .space-md-o-t-12 {
    margin-top: 3rem !important;
  }
  .space-md-o-b-12 {
    margin-bottom: 3rem !important;
  }
  .space-md-o-l-12 {
    margin-left: 3rem !important;
  }
  .space-md-o-r-12 {
    margin-right: 3rem !important;
  }
  .space-md-i-x-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .space-md-i-y-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .space-md-o-x-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .space-md-o-y-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .space-md-o-n12 {
    margin: -3rem !important;
  }
  .space-md-o-t-n12 {
    margin-top: -3rem !important;
  }
  .space-md-o-b-n12 {
    margin-bottom: -3rem !important;
  }
  .space-md-o-l-n12 {
    margin-left: -3rem !important;
  }
  .space-md-o-r-n12 {
    margin-right: -3rem !important;
  }
  .space-md-o-x-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .space-md-o-y-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .space-md-i-16 {
    padding: 4rem !important;
  }
  .space-md-o-16 {
    margin: 4rem !important;
  }
  .space-md-i-t-16 {
    padding-top: 4rem !important;
  }
  .space-md-i-b-16 {
    padding-bottom: 4rem !important;
  }
  .space-md-i-l-16 {
    padding-left: 4rem !important;
  }
  .space-md-i-r-16 {
    padding-right: 4rem !important;
  }
  .space-md-o-t-16 {
    margin-top: 4rem !important;
  }
  .space-md-o-b-16 {
    margin-bottom: 4rem !important;
  }
  .space-md-o-l-16 {
    margin-left: 4rem !important;
  }
  .space-md-o-r-16 {
    margin-right: 4rem !important;
  }
  .space-md-i-x-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .space-md-i-y-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .space-md-o-x-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .space-md-o-y-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .space-md-o-n16 {
    margin: -4rem !important;
  }
  .space-md-o-t-n16 {
    margin-top: -4rem !important;
  }
  .space-md-o-b-n16 {
    margin-bottom: -4rem !important;
  }
  .space-md-o-l-n16 {
    margin-left: -4rem !important;
  }
  .space-md-o-r-n16 {
    margin-right: -4rem !important;
  }
  .space-md-o-x-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .space-md-o-y-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .space-md-i-20 {
    padding: 5rem !important;
  }
  .space-md-o-20 {
    margin: 5rem !important;
  }
  .space-md-i-t-20 {
    padding-top: 5rem !important;
  }
  .space-md-i-b-20 {
    padding-bottom: 5rem !important;
  }
  .space-md-i-l-20 {
    padding-left: 5rem !important;
  }
  .space-md-i-r-20 {
    padding-right: 5rem !important;
  }
  .space-md-o-t-20 {
    margin-top: 5rem !important;
  }
  .space-md-o-b-20 {
    margin-bottom: 5rem !important;
  }
  .space-md-o-l-20 {
    margin-left: 5rem !important;
  }
  .space-md-o-r-20 {
    margin-right: 5rem !important;
  }
  .space-md-i-x-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .space-md-i-y-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .space-md-o-x-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .space-md-o-y-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .space-md-o-n20 {
    margin: -5rem !important;
  }
  .space-md-o-t-n20 {
    margin-top: -5rem !important;
  }
  .space-md-o-b-n20 {
    margin-bottom: -5rem !important;
  }
  .space-md-o-l-n20 {
    margin-left: -5rem !important;
  }
  .space-md-o-r-n20 {
    margin-right: -5rem !important;
  }
  .space-md-o-x-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .space-md-o-y-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .space-md-i-24 {
    padding: 6rem !important;
  }
  .space-md-o-24 {
    margin: 6rem !important;
  }
  .space-md-i-t-24 {
    padding-top: 6rem !important;
  }
  .space-md-i-b-24 {
    padding-bottom: 6rem !important;
  }
  .space-md-i-l-24 {
    padding-left: 6rem !important;
  }
  .space-md-i-r-24 {
    padding-right: 6rem !important;
  }
  .space-md-o-t-24 {
    margin-top: 6rem !important;
  }
  .space-md-o-b-24 {
    margin-bottom: 6rem !important;
  }
  .space-md-o-l-24 {
    margin-left: 6rem !important;
  }
  .space-md-o-r-24 {
    margin-right: 6rem !important;
  }
  .space-md-i-x-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .space-md-i-y-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .space-md-o-x-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .space-md-o-y-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .space-md-o-n24 {
    margin: -6rem !important;
  }
  .space-md-o-t-n24 {
    margin-top: -6rem !important;
  }
  .space-md-o-b-n24 {
    margin-bottom: -6rem !important;
  }
  .space-md-o-l-n24 {
    margin-left: -6rem !important;
  }
  .space-md-o-r-n24 {
    margin-right: -6rem !important;
  }
  .space-md-o-x-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .space-md-o-y-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .space-md-i-32 {
    padding: 8rem !important;
  }
  .space-md-o-32 {
    margin: 8rem !important;
  }
  .space-md-i-t-32 {
    padding-top: 8rem !important;
  }
  .space-md-i-b-32 {
    padding-bottom: 8rem !important;
  }
  .space-md-i-l-32 {
    padding-left: 8rem !important;
  }
  .space-md-i-r-32 {
    padding-right: 8rem !important;
  }
  .space-md-o-t-32 {
    margin-top: 8rem !important;
  }
  .space-md-o-b-32 {
    margin-bottom: 8rem !important;
  }
  .space-md-o-l-32 {
    margin-left: 8rem !important;
  }
  .space-md-o-r-32 {
    margin-right: 8rem !important;
  }
  .space-md-i-x-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .space-md-i-y-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .space-md-o-x-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .space-md-o-y-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .space-md-o-n32 {
    margin: -8rem !important;
  }
  .space-md-o-t-n32 {
    margin-top: -8rem !important;
  }
  .space-md-o-b-n32 {
    margin-bottom: -8rem !important;
  }
  .space-md-o-l-n32 {
    margin-left: -8rem !important;
  }
  .space-md-o-r-n32 {
    margin-right: -8rem !important;
  }
  .space-md-o-x-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .space-md-o-y-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .space-md-o-auto {
    margin: auto !important;
  }
  .space-md-o-x-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .space-md-o-y-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .space-md-o-t-auto {
    margin-top: auto !important;
  }
  .space-md-o-b-auto {
    margin-bottom: auto !important;
  }
  .space-md-o-l-auto {
    margin-left: auto !important;
  }
  .space-md-o-r-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 992px) {
  .space-lg-i-0 {
    padding: 0 !important;
  }
  .space-lg-o-0 {
    margin: 0 !important;
  }
  .space-lg-i-t-0 {
    padding-top: 0 !important;
  }
  .space-lg-i-b-0 {
    padding-bottom: 0 !important;
  }
  .space-lg-i-l-0 {
    padding-left: 0 !important;
  }
  .space-lg-i-r-0 {
    padding-right: 0 !important;
  }
  .space-lg-o-t-0 {
    margin-top: 0 !important;
  }
  .space-lg-o-b-0 {
    margin-bottom: 0 !important;
  }
  .space-lg-o-l-0 {
    margin-left: 0 !important;
  }
  .space-lg-o-r-0 {
    margin-right: 0 !important;
  }
  .space-lg-i-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .space-lg-i-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .space-lg-o-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .space-lg-o-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .space-lg-i-1 {
    padding: 0.25rem !important;
  }
  .space-lg-o-1 {
    margin: 0.25rem !important;
  }
  .space-lg-i-t-1 {
    padding-top: 0.25rem !important;
  }
  .space-lg-i-b-1 {
    padding-bottom: 0.25rem !important;
  }
  .space-lg-i-l-1 {
    padding-left: 0.25rem !important;
  }
  .space-lg-i-r-1 {
    padding-right: 0.25rem !important;
  }
  .space-lg-o-t-1 {
    margin-top: 0.25rem !important;
  }
  .space-lg-o-b-1 {
    margin-bottom: 0.25rem !important;
  }
  .space-lg-o-l-1 {
    margin-left: 0.25rem !important;
  }
  .space-lg-o-r-1 {
    margin-right: 0.25rem !important;
  }
  .space-lg-i-x-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .space-lg-i-y-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .space-lg-o-x-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .space-lg-o-y-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .space-lg-o-n1 {
    margin: -0.25rem !important;
  }
  .space-lg-o-t-n1 {
    margin-top: -0.25rem !important;
  }
  .space-lg-o-b-n1 {
    margin-bottom: -0.25rem !important;
  }
  .space-lg-o-l-n1 {
    margin-left: -0.25rem !important;
  }
  .space-lg-o-r-n1 {
    margin-right: -0.25rem !important;
  }
  .space-lg-o-x-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .space-lg-o-y-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .space-lg-i-2 {
    padding: 0.5rem !important;
  }
  .space-lg-o-2 {
    margin: 0.5rem !important;
  }
  .space-lg-i-t-2 {
    padding-top: 0.5rem !important;
  }
  .space-lg-i-b-2 {
    padding-bottom: 0.5rem !important;
  }
  .space-lg-i-l-2 {
    padding-left: 0.5rem !important;
  }
  .space-lg-i-r-2 {
    padding-right: 0.5rem !important;
  }
  .space-lg-o-t-2 {
    margin-top: 0.5rem !important;
  }
  .space-lg-o-b-2 {
    margin-bottom: 0.5rem !important;
  }
  .space-lg-o-l-2 {
    margin-left: 0.5rem !important;
  }
  .space-lg-o-r-2 {
    margin-right: 0.5rem !important;
  }
  .space-lg-i-x-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .space-lg-i-y-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .space-lg-o-x-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .space-lg-o-y-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .space-lg-o-n2 {
    margin: -0.5rem !important;
  }
  .space-lg-o-t-n2 {
    margin-top: -0.5rem !important;
  }
  .space-lg-o-b-n2 {
    margin-bottom: -0.5rem !important;
  }
  .space-lg-o-l-n2 {
    margin-left: -0.5rem !important;
  }
  .space-lg-o-r-n2 {
    margin-right: -0.5rem !important;
  }
  .space-lg-o-x-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .space-lg-o-y-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .space-lg-i-3 {
    padding: 0.75rem !important;
  }
  .space-lg-o-3 {
    margin: 0.75rem !important;
  }
  .space-lg-i-t-3 {
    padding-top: 0.75rem !important;
  }
  .space-lg-i-b-3 {
    padding-bottom: 0.75rem !important;
  }
  .space-lg-i-l-3 {
    padding-left: 0.75rem !important;
  }
  .space-lg-i-r-3 {
    padding-right: 0.75rem !important;
  }
  .space-lg-o-t-3 {
    margin-top: 0.75rem !important;
  }
  .space-lg-o-b-3 {
    margin-bottom: 0.75rem !important;
  }
  .space-lg-o-l-3 {
    margin-left: 0.75rem !important;
  }
  .space-lg-o-r-3 {
    margin-right: 0.75rem !important;
  }
  .space-lg-i-x-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .space-lg-i-y-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .space-lg-o-x-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .space-lg-o-y-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .space-lg-o-n3 {
    margin: -0.75rem !important;
  }
  .space-lg-o-t-n3 {
    margin-top: -0.75rem !important;
  }
  .space-lg-o-b-n3 {
    margin-bottom: -0.75rem !important;
  }
  .space-lg-o-l-n3 {
    margin-left: -0.75rem !important;
  }
  .space-lg-o-r-n3 {
    margin-right: -0.75rem !important;
  }
  .space-lg-o-x-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .space-lg-o-y-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .space-lg-i-4 {
    padding: 1rem !important;
  }
  .space-lg-o-4 {
    margin: 1rem !important;
  }
  .space-lg-i-t-4 {
    padding-top: 1rem !important;
  }
  .space-lg-i-b-4 {
    padding-bottom: 1rem !important;
  }
  .space-lg-i-l-4 {
    padding-left: 1rem !important;
  }
  .space-lg-i-r-4 {
    padding-right: 1rem !important;
  }
  .space-lg-o-t-4 {
    margin-top: 1rem !important;
  }
  .space-lg-o-b-4 {
    margin-bottom: 1rem !important;
  }
  .space-lg-o-l-4 {
    margin-left: 1rem !important;
  }
  .space-lg-o-r-4 {
    margin-right: 1rem !important;
  }
  .space-lg-i-x-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .space-lg-i-y-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .space-lg-o-x-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .space-lg-o-y-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .space-lg-o-n4 {
    margin: -1rem !important;
  }
  .space-lg-o-t-n4 {
    margin-top: -1rem !important;
  }
  .space-lg-o-b-n4 {
    margin-bottom: -1rem !important;
  }
  .space-lg-o-l-n4 {
    margin-left: -1rem !important;
  }
  .space-lg-o-r-n4 {
    margin-right: -1rem !important;
  }
  .space-lg-o-x-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .space-lg-o-y-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .space-lg-i-5 {
    padding: 1.25rem !important;
  }
  .space-lg-o-5 {
    margin: 1.25rem !important;
  }
  .space-lg-i-t-5 {
    padding-top: 1.25rem !important;
  }
  .space-lg-i-b-5 {
    padding-bottom: 1.25rem !important;
  }
  .space-lg-i-l-5 {
    padding-left: 1.25rem !important;
  }
  .space-lg-i-r-5 {
    padding-right: 1.25rem !important;
  }
  .space-lg-o-t-5 {
    margin-top: 1.25rem !important;
  }
  .space-lg-o-b-5 {
    margin-bottom: 1.25rem !important;
  }
  .space-lg-o-l-5 {
    margin-left: 1.25rem !important;
  }
  .space-lg-o-r-5 {
    margin-right: 1.25rem !important;
  }
  .space-lg-i-x-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .space-lg-i-y-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .space-lg-o-x-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .space-lg-o-y-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .space-lg-o-n5 {
    margin: -1.25rem !important;
  }
  .space-lg-o-t-n5 {
    margin-top: -1.25rem !important;
  }
  .space-lg-o-b-n5 {
    margin-bottom: -1.25rem !important;
  }
  .space-lg-o-l-n5 {
    margin-left: -1.25rem !important;
  }
  .space-lg-o-r-n5 {
    margin-right: -1.25rem !important;
  }
  .space-lg-o-x-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .space-lg-o-y-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .space-lg-i-6 {
    padding: 1.5rem !important;
  }
  .space-lg-o-6 {
    margin: 1.5rem !important;
  }
  .space-lg-i-t-6 {
    padding-top: 1.5rem !important;
  }
  .space-lg-i-b-6 {
    padding-bottom: 1.5rem !important;
  }
  .space-lg-i-l-6 {
    padding-left: 1.5rem !important;
  }
  .space-lg-i-r-6 {
    padding-right: 1.5rem !important;
  }
  .space-lg-o-t-6 {
    margin-top: 1.5rem !important;
  }
  .space-lg-o-b-6 {
    margin-bottom: 1.5rem !important;
  }
  .space-lg-o-l-6 {
    margin-left: 1.5rem !important;
  }
  .space-lg-o-r-6 {
    margin-right: 1.5rem !important;
  }
  .space-lg-i-x-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .space-lg-i-y-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .space-lg-o-x-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .space-lg-o-y-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .space-lg-o-n6 {
    margin: -1.5rem !important;
  }
  .space-lg-o-t-n6 {
    margin-top: -1.5rem !important;
  }
  .space-lg-o-b-n6 {
    margin-bottom: -1.5rem !important;
  }
  .space-lg-o-l-n6 {
    margin-left: -1.5rem !important;
  }
  .space-lg-o-r-n6 {
    margin-right: -1.5rem !important;
  }
  .space-lg-o-x-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .space-lg-o-y-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .space-lg-i-8 {
    padding: 2rem !important;
  }
  .space-lg-o-8 {
    margin: 2rem !important;
  }
  .space-lg-i-t-8 {
    padding-top: 2rem !important;
  }
  .space-lg-i-b-8 {
    padding-bottom: 2rem !important;
  }
  .space-lg-i-l-8 {
    padding-left: 2rem !important;
  }
  .space-lg-i-r-8 {
    padding-right: 2rem !important;
  }
  .space-lg-o-t-8 {
    margin-top: 2rem !important;
  }
  .space-lg-o-b-8 {
    margin-bottom: 2rem !important;
  }
  .space-lg-o-l-8 {
    margin-left: 2rem !important;
  }
  .space-lg-o-r-8 {
    margin-right: 2rem !important;
  }
  .space-lg-i-x-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .space-lg-i-y-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .space-lg-o-x-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .space-lg-o-y-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .space-lg-o-n8 {
    margin: -2rem !important;
  }
  .space-lg-o-t-n8 {
    margin-top: -2rem !important;
  }
  .space-lg-o-b-n8 {
    margin-bottom: -2rem !important;
  }
  .space-lg-o-l-n8 {
    margin-left: -2rem !important;
  }
  .space-lg-o-r-n8 {
    margin-right: -2rem !important;
  }
  .space-lg-o-x-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .space-lg-o-y-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .space-lg-i-10 {
    padding: 2.5rem !important;
  }
  .space-lg-o-10 {
    margin: 2.5rem !important;
  }
  .space-lg-i-t-10 {
    padding-top: 2.5rem !important;
  }
  .space-lg-i-b-10 {
    padding-bottom: 2.5rem !important;
  }
  .space-lg-i-l-10 {
    padding-left: 2.5rem !important;
  }
  .space-lg-i-r-10 {
    padding-right: 2.5rem !important;
  }
  .space-lg-o-t-10 {
    margin-top: 2.5rem !important;
  }
  .space-lg-o-b-10 {
    margin-bottom: 2.5rem !important;
  }
  .space-lg-o-l-10 {
    margin-left: 2.5rem !important;
  }
  .space-lg-o-r-10 {
    margin-right: 2.5rem !important;
  }
  .space-lg-i-x-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .space-lg-i-y-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .space-lg-o-x-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .space-lg-o-y-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .space-lg-o-n10 {
    margin: -2.5rem !important;
  }
  .space-lg-o-t-n10 {
    margin-top: -2.5rem !important;
  }
  .space-lg-o-b-n10 {
    margin-bottom: -2.5rem !important;
  }
  .space-lg-o-l-n10 {
    margin-left: -2.5rem !important;
  }
  .space-lg-o-r-n10 {
    margin-right: -2.5rem !important;
  }
  .space-lg-o-x-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .space-lg-o-y-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .space-lg-i-12 {
    padding: 3rem !important;
  }
  .space-lg-o-12 {
    margin: 3rem !important;
  }
  .space-lg-i-t-12 {
    padding-top: 3rem !important;
  }
  .space-lg-i-b-12 {
    padding-bottom: 3rem !important;
  }
  .space-lg-i-l-12 {
    padding-left: 3rem !important;
  }
  .space-lg-i-r-12 {
    padding-right: 3rem !important;
  }
  .space-lg-o-t-12 {
    margin-top: 3rem !important;
  }
  .space-lg-o-b-12 {
    margin-bottom: 3rem !important;
  }
  .space-lg-o-l-12 {
    margin-left: 3rem !important;
  }
  .space-lg-o-r-12 {
    margin-right: 3rem !important;
  }
  .space-lg-i-x-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .space-lg-i-y-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .space-lg-o-x-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .space-lg-o-y-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .space-lg-o-n12 {
    margin: -3rem !important;
  }
  .space-lg-o-t-n12 {
    margin-top: -3rem !important;
  }
  .space-lg-o-b-n12 {
    margin-bottom: -3rem !important;
  }
  .space-lg-o-l-n12 {
    margin-left: -3rem !important;
  }
  .space-lg-o-r-n12 {
    margin-right: -3rem !important;
  }
  .space-lg-o-x-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .space-lg-o-y-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .space-lg-i-16 {
    padding: 4rem !important;
  }
  .space-lg-o-16 {
    margin: 4rem !important;
  }
  .space-lg-i-t-16 {
    padding-top: 4rem !important;
  }
  .space-lg-i-b-16 {
    padding-bottom: 4rem !important;
  }
  .space-lg-i-l-16 {
    padding-left: 4rem !important;
  }
  .space-lg-i-r-16 {
    padding-right: 4rem !important;
  }
  .space-lg-o-t-16 {
    margin-top: 4rem !important;
  }
  .space-lg-o-b-16 {
    margin-bottom: 4rem !important;
  }
  .space-lg-o-l-16 {
    margin-left: 4rem !important;
  }
  .space-lg-o-r-16 {
    margin-right: 4rem !important;
  }
  .space-lg-i-x-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .space-lg-i-y-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .space-lg-o-x-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .space-lg-o-y-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .space-lg-o-n16 {
    margin: -4rem !important;
  }
  .space-lg-o-t-n16 {
    margin-top: -4rem !important;
  }
  .space-lg-o-b-n16 {
    margin-bottom: -4rem !important;
  }
  .space-lg-o-l-n16 {
    margin-left: -4rem !important;
  }
  .space-lg-o-r-n16 {
    margin-right: -4rem !important;
  }
  .space-lg-o-x-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .space-lg-o-y-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .space-lg-i-20 {
    padding: 5rem !important;
  }
  .space-lg-o-20 {
    margin: 5rem !important;
  }
  .space-lg-i-t-20 {
    padding-top: 5rem !important;
  }
  .space-lg-i-b-20 {
    padding-bottom: 5rem !important;
  }
  .space-lg-i-l-20 {
    padding-left: 5rem !important;
  }
  .space-lg-i-r-20 {
    padding-right: 5rem !important;
  }
  .space-lg-o-t-20 {
    margin-top: 5rem !important;
  }
  .space-lg-o-b-20 {
    margin-bottom: 5rem !important;
  }
  .space-lg-o-l-20 {
    margin-left: 5rem !important;
  }
  .space-lg-o-r-20 {
    margin-right: 5rem !important;
  }
  .space-lg-i-x-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .space-lg-i-y-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .space-lg-o-x-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .space-lg-o-y-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .space-lg-o-n20 {
    margin: -5rem !important;
  }
  .space-lg-o-t-n20 {
    margin-top: -5rem !important;
  }
  .space-lg-o-b-n20 {
    margin-bottom: -5rem !important;
  }
  .space-lg-o-l-n20 {
    margin-left: -5rem !important;
  }
  .space-lg-o-r-n20 {
    margin-right: -5rem !important;
  }
  .space-lg-o-x-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .space-lg-o-y-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .space-lg-i-24 {
    padding: 6rem !important;
  }
  .space-lg-o-24 {
    margin: 6rem !important;
  }
  .space-lg-i-t-24 {
    padding-top: 6rem !important;
  }
  .space-lg-i-b-24 {
    padding-bottom: 6rem !important;
  }
  .space-lg-i-l-24 {
    padding-left: 6rem !important;
  }
  .space-lg-i-r-24 {
    padding-right: 6rem !important;
  }
  .space-lg-o-t-24 {
    margin-top: 6rem !important;
  }
  .space-lg-o-b-24 {
    margin-bottom: 6rem !important;
  }
  .space-lg-o-l-24 {
    margin-left: 6rem !important;
  }
  .space-lg-o-r-24 {
    margin-right: 6rem !important;
  }
  .space-lg-i-x-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .space-lg-i-y-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .space-lg-o-x-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .space-lg-o-y-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .space-lg-o-n24 {
    margin: -6rem !important;
  }
  .space-lg-o-t-n24 {
    margin-top: -6rem !important;
  }
  .space-lg-o-b-n24 {
    margin-bottom: -6rem !important;
  }
  .space-lg-o-l-n24 {
    margin-left: -6rem !important;
  }
  .space-lg-o-r-n24 {
    margin-right: -6rem !important;
  }
  .space-lg-o-x-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .space-lg-o-y-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .space-lg-i-32 {
    padding: 8rem !important;
  }
  .space-lg-o-32 {
    margin: 8rem !important;
  }
  .space-lg-i-t-32 {
    padding-top: 8rem !important;
  }
  .space-lg-i-b-32 {
    padding-bottom: 8rem !important;
  }
  .space-lg-i-l-32 {
    padding-left: 8rem !important;
  }
  .space-lg-i-r-32 {
    padding-right: 8rem !important;
  }
  .space-lg-o-t-32 {
    margin-top: 8rem !important;
  }
  .space-lg-o-b-32 {
    margin-bottom: 8rem !important;
  }
  .space-lg-o-l-32 {
    margin-left: 8rem !important;
  }
  .space-lg-o-r-32 {
    margin-right: 8rem !important;
  }
  .space-lg-i-x-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .space-lg-i-y-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .space-lg-o-x-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .space-lg-o-y-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .space-lg-o-n32 {
    margin: -8rem !important;
  }
  .space-lg-o-t-n32 {
    margin-top: -8rem !important;
  }
  .space-lg-o-b-n32 {
    margin-bottom: -8rem !important;
  }
  .space-lg-o-l-n32 {
    margin-left: -8rem !important;
  }
  .space-lg-o-r-n32 {
    margin-right: -8rem !important;
  }
  .space-lg-o-x-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .space-lg-o-y-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .space-lg-o-auto {
    margin: auto !important;
  }
  .space-lg-o-x-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .space-lg-o-y-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .space-lg-o-t-auto {
    margin-top: auto !important;
  }
  .space-lg-o-b-auto {
    margin-bottom: auto !important;
  }
  .space-lg-o-l-auto {
    margin-left: auto !important;
  }
  .space-lg-o-r-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1200px) {
  .space-xl-i-0 {
    padding: 0 !important;
  }
  .space-xl-o-0 {
    margin: 0 !important;
  }
  .space-xl-i-t-0 {
    padding-top: 0 !important;
  }
  .space-xl-i-b-0 {
    padding-bottom: 0 !important;
  }
  .space-xl-i-l-0 {
    padding-left: 0 !important;
  }
  .space-xl-i-r-0 {
    padding-right: 0 !important;
  }
  .space-xl-o-t-0 {
    margin-top: 0 !important;
  }
  .space-xl-o-b-0 {
    margin-bottom: 0 !important;
  }
  .space-xl-o-l-0 {
    margin-left: 0 !important;
  }
  .space-xl-o-r-0 {
    margin-right: 0 !important;
  }
  .space-xl-i-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .space-xl-i-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .space-xl-o-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .space-xl-o-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .space-xl-i-1 {
    padding: 0.25rem !important;
  }
  .space-xl-o-1 {
    margin: 0.25rem !important;
  }
  .space-xl-i-t-1 {
    padding-top: 0.25rem !important;
  }
  .space-xl-i-b-1 {
    padding-bottom: 0.25rem !important;
  }
  .space-xl-i-l-1 {
    padding-left: 0.25rem !important;
  }
  .space-xl-i-r-1 {
    padding-right: 0.25rem !important;
  }
  .space-xl-o-t-1 {
    margin-top: 0.25rem !important;
  }
  .space-xl-o-b-1 {
    margin-bottom: 0.25rem !important;
  }
  .space-xl-o-l-1 {
    margin-left: 0.25rem !important;
  }
  .space-xl-o-r-1 {
    margin-right: 0.25rem !important;
  }
  .space-xl-i-x-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .space-xl-i-y-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .space-xl-o-x-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .space-xl-o-y-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .space-xl-o-n1 {
    margin: -0.25rem !important;
  }
  .space-xl-o-t-n1 {
    margin-top: -0.25rem !important;
  }
  .space-xl-o-b-n1 {
    margin-bottom: -0.25rem !important;
  }
  .space-xl-o-l-n1 {
    margin-left: -0.25rem !important;
  }
  .space-xl-o-r-n1 {
    margin-right: -0.25rem !important;
  }
  .space-xl-o-x-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .space-xl-o-y-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .space-xl-i-2 {
    padding: 0.5rem !important;
  }
  .space-xl-o-2 {
    margin: 0.5rem !important;
  }
  .space-xl-i-t-2 {
    padding-top: 0.5rem !important;
  }
  .space-xl-i-b-2 {
    padding-bottom: 0.5rem !important;
  }
  .space-xl-i-l-2 {
    padding-left: 0.5rem !important;
  }
  .space-xl-i-r-2 {
    padding-right: 0.5rem !important;
  }
  .space-xl-o-t-2 {
    margin-top: 0.5rem !important;
  }
  .space-xl-o-b-2 {
    margin-bottom: 0.5rem !important;
  }
  .space-xl-o-l-2 {
    margin-left: 0.5rem !important;
  }
  .space-xl-o-r-2 {
    margin-right: 0.5rem !important;
  }
  .space-xl-i-x-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .space-xl-i-y-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .space-xl-o-x-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .space-xl-o-y-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .space-xl-o-n2 {
    margin: -0.5rem !important;
  }
  .space-xl-o-t-n2 {
    margin-top: -0.5rem !important;
  }
  .space-xl-o-b-n2 {
    margin-bottom: -0.5rem !important;
  }
  .space-xl-o-l-n2 {
    margin-left: -0.5rem !important;
  }
  .space-xl-o-r-n2 {
    margin-right: -0.5rem !important;
  }
  .space-xl-o-x-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .space-xl-o-y-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .space-xl-i-3 {
    padding: 0.75rem !important;
  }
  .space-xl-o-3 {
    margin: 0.75rem !important;
  }
  .space-xl-i-t-3 {
    padding-top: 0.75rem !important;
  }
  .space-xl-i-b-3 {
    padding-bottom: 0.75rem !important;
  }
  .space-xl-i-l-3 {
    padding-left: 0.75rem !important;
  }
  .space-xl-i-r-3 {
    padding-right: 0.75rem !important;
  }
  .space-xl-o-t-3 {
    margin-top: 0.75rem !important;
  }
  .space-xl-o-b-3 {
    margin-bottom: 0.75rem !important;
  }
  .space-xl-o-l-3 {
    margin-left: 0.75rem !important;
  }
  .space-xl-o-r-3 {
    margin-right: 0.75rem !important;
  }
  .space-xl-i-x-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .space-xl-i-y-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .space-xl-o-x-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .space-xl-o-y-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .space-xl-o-n3 {
    margin: -0.75rem !important;
  }
  .space-xl-o-t-n3 {
    margin-top: -0.75rem !important;
  }
  .space-xl-o-b-n3 {
    margin-bottom: -0.75rem !important;
  }
  .space-xl-o-l-n3 {
    margin-left: -0.75rem !important;
  }
  .space-xl-o-r-n3 {
    margin-right: -0.75rem !important;
  }
  .space-xl-o-x-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .space-xl-o-y-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .space-xl-i-4 {
    padding: 1rem !important;
  }
  .space-xl-o-4 {
    margin: 1rem !important;
  }
  .space-xl-i-t-4 {
    padding-top: 1rem !important;
  }
  .space-xl-i-b-4 {
    padding-bottom: 1rem !important;
  }
  .space-xl-i-l-4 {
    padding-left: 1rem !important;
  }
  .space-xl-i-r-4 {
    padding-right: 1rem !important;
  }
  .space-xl-o-t-4 {
    margin-top: 1rem !important;
  }
  .space-xl-o-b-4 {
    margin-bottom: 1rem !important;
  }
  .space-xl-o-l-4 {
    margin-left: 1rem !important;
  }
  .space-xl-o-r-4 {
    margin-right: 1rem !important;
  }
  .space-xl-i-x-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .space-xl-i-y-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .space-xl-o-x-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .space-xl-o-y-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .space-xl-o-n4 {
    margin: -1rem !important;
  }
  .space-xl-o-t-n4 {
    margin-top: -1rem !important;
  }
  .space-xl-o-b-n4 {
    margin-bottom: -1rem !important;
  }
  .space-xl-o-l-n4 {
    margin-left: -1rem !important;
  }
  .space-xl-o-r-n4 {
    margin-right: -1rem !important;
  }
  .space-xl-o-x-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .space-xl-o-y-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .space-xl-i-5 {
    padding: 1.25rem !important;
  }
  .space-xl-o-5 {
    margin: 1.25rem !important;
  }
  .space-xl-i-t-5 {
    padding-top: 1.25rem !important;
  }
  .space-xl-i-b-5 {
    padding-bottom: 1.25rem !important;
  }
  .space-xl-i-l-5 {
    padding-left: 1.25rem !important;
  }
  .space-xl-i-r-5 {
    padding-right: 1.25rem !important;
  }
  .space-xl-o-t-5 {
    margin-top: 1.25rem !important;
  }
  .space-xl-o-b-5 {
    margin-bottom: 1.25rem !important;
  }
  .space-xl-o-l-5 {
    margin-left: 1.25rem !important;
  }
  .space-xl-o-r-5 {
    margin-right: 1.25rem !important;
  }
  .space-xl-i-x-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .space-xl-i-y-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .space-xl-o-x-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .space-xl-o-y-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .space-xl-o-n5 {
    margin: -1.25rem !important;
  }
  .space-xl-o-t-n5 {
    margin-top: -1.25rem !important;
  }
  .space-xl-o-b-n5 {
    margin-bottom: -1.25rem !important;
  }
  .space-xl-o-l-n5 {
    margin-left: -1.25rem !important;
  }
  .space-xl-o-r-n5 {
    margin-right: -1.25rem !important;
  }
  .space-xl-o-x-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .space-xl-o-y-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .space-xl-i-6 {
    padding: 1.5rem !important;
  }
  .space-xl-o-6 {
    margin: 1.5rem !important;
  }
  .space-xl-i-t-6 {
    padding-top: 1.5rem !important;
  }
  .space-xl-i-b-6 {
    padding-bottom: 1.5rem !important;
  }
  .space-xl-i-l-6 {
    padding-left: 1.5rem !important;
  }
  .space-xl-i-r-6 {
    padding-right: 1.5rem !important;
  }
  .space-xl-o-t-6 {
    margin-top: 1.5rem !important;
  }
  .space-xl-o-b-6 {
    margin-bottom: 1.5rem !important;
  }
  .space-xl-o-l-6 {
    margin-left: 1.5rem !important;
  }
  .space-xl-o-r-6 {
    margin-right: 1.5rem !important;
  }
  .space-xl-i-x-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .space-xl-i-y-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .space-xl-o-x-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .space-xl-o-y-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .space-xl-o-n6 {
    margin: -1.5rem !important;
  }
  .space-xl-o-t-n6 {
    margin-top: -1.5rem !important;
  }
  .space-xl-o-b-n6 {
    margin-bottom: -1.5rem !important;
  }
  .space-xl-o-l-n6 {
    margin-left: -1.5rem !important;
  }
  .space-xl-o-r-n6 {
    margin-right: -1.5rem !important;
  }
  .space-xl-o-x-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .space-xl-o-y-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .space-xl-i-8 {
    padding: 2rem !important;
  }
  .space-xl-o-8 {
    margin: 2rem !important;
  }
  .space-xl-i-t-8 {
    padding-top: 2rem !important;
  }
  .space-xl-i-b-8 {
    padding-bottom: 2rem !important;
  }
  .space-xl-i-l-8 {
    padding-left: 2rem !important;
  }
  .space-xl-i-r-8 {
    padding-right: 2rem !important;
  }
  .space-xl-o-t-8 {
    margin-top: 2rem !important;
  }
  .space-xl-o-b-8 {
    margin-bottom: 2rem !important;
  }
  .space-xl-o-l-8 {
    margin-left: 2rem !important;
  }
  .space-xl-o-r-8 {
    margin-right: 2rem !important;
  }
  .space-xl-i-x-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .space-xl-i-y-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .space-xl-o-x-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .space-xl-o-y-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .space-xl-o-n8 {
    margin: -2rem !important;
  }
  .space-xl-o-t-n8 {
    margin-top: -2rem !important;
  }
  .space-xl-o-b-n8 {
    margin-bottom: -2rem !important;
  }
  .space-xl-o-l-n8 {
    margin-left: -2rem !important;
  }
  .space-xl-o-r-n8 {
    margin-right: -2rem !important;
  }
  .space-xl-o-x-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .space-xl-o-y-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .space-xl-i-10 {
    padding: 2.5rem !important;
  }
  .space-xl-o-10 {
    margin: 2.5rem !important;
  }
  .space-xl-i-t-10 {
    padding-top: 2.5rem !important;
  }
  .space-xl-i-b-10 {
    padding-bottom: 2.5rem !important;
  }
  .space-xl-i-l-10 {
    padding-left: 2.5rem !important;
  }
  .space-xl-i-r-10 {
    padding-right: 2.5rem !important;
  }
  .space-xl-o-t-10 {
    margin-top: 2.5rem !important;
  }
  .space-xl-o-b-10 {
    margin-bottom: 2.5rem !important;
  }
  .space-xl-o-l-10 {
    margin-left: 2.5rem !important;
  }
  .space-xl-o-r-10 {
    margin-right: 2.5rem !important;
  }
  .space-xl-i-x-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .space-xl-i-y-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .space-xl-o-x-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .space-xl-o-y-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .space-xl-o-n10 {
    margin: -2.5rem !important;
  }
  .space-xl-o-t-n10 {
    margin-top: -2.5rem !important;
  }
  .space-xl-o-b-n10 {
    margin-bottom: -2.5rem !important;
  }
  .space-xl-o-l-n10 {
    margin-left: -2.5rem !important;
  }
  .space-xl-o-r-n10 {
    margin-right: -2.5rem !important;
  }
  .space-xl-o-x-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .space-xl-o-y-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .space-xl-i-12 {
    padding: 3rem !important;
  }
  .space-xl-o-12 {
    margin: 3rem !important;
  }
  .space-xl-i-t-12 {
    padding-top: 3rem !important;
  }
  .space-xl-i-b-12 {
    padding-bottom: 3rem !important;
  }
  .space-xl-i-l-12 {
    padding-left: 3rem !important;
  }
  .space-xl-i-r-12 {
    padding-right: 3rem !important;
  }
  .space-xl-o-t-12 {
    margin-top: 3rem !important;
  }
  .space-xl-o-b-12 {
    margin-bottom: 3rem !important;
  }
  .space-xl-o-l-12 {
    margin-left: 3rem !important;
  }
  .space-xl-o-r-12 {
    margin-right: 3rem !important;
  }
  .space-xl-i-x-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .space-xl-i-y-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .space-xl-o-x-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .space-xl-o-y-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .space-xl-o-n12 {
    margin: -3rem !important;
  }
  .space-xl-o-t-n12 {
    margin-top: -3rem !important;
  }
  .space-xl-o-b-n12 {
    margin-bottom: -3rem !important;
  }
  .space-xl-o-l-n12 {
    margin-left: -3rem !important;
  }
  .space-xl-o-r-n12 {
    margin-right: -3rem !important;
  }
  .space-xl-o-x-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .space-xl-o-y-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .space-xl-i-16 {
    padding: 4rem !important;
  }
  .space-xl-o-16 {
    margin: 4rem !important;
  }
  .space-xl-i-t-16 {
    padding-top: 4rem !important;
  }
  .space-xl-i-b-16 {
    padding-bottom: 4rem !important;
  }
  .space-xl-i-l-16 {
    padding-left: 4rem !important;
  }
  .space-xl-i-r-16 {
    padding-right: 4rem !important;
  }
  .space-xl-o-t-16 {
    margin-top: 4rem !important;
  }
  .space-xl-o-b-16 {
    margin-bottom: 4rem !important;
  }
  .space-xl-o-l-16 {
    margin-left: 4rem !important;
  }
  .space-xl-o-r-16 {
    margin-right: 4rem !important;
  }
  .space-xl-i-x-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .space-xl-i-y-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .space-xl-o-x-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .space-xl-o-y-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .space-xl-o-n16 {
    margin: -4rem !important;
  }
  .space-xl-o-t-n16 {
    margin-top: -4rem !important;
  }
  .space-xl-o-b-n16 {
    margin-bottom: -4rem !important;
  }
  .space-xl-o-l-n16 {
    margin-left: -4rem !important;
  }
  .space-xl-o-r-n16 {
    margin-right: -4rem !important;
  }
  .space-xl-o-x-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .space-xl-o-y-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .space-xl-i-20 {
    padding: 5rem !important;
  }
  .space-xl-o-20 {
    margin: 5rem !important;
  }
  .space-xl-i-t-20 {
    padding-top: 5rem !important;
  }
  .space-xl-i-b-20 {
    padding-bottom: 5rem !important;
  }
  .space-xl-i-l-20 {
    padding-left: 5rem !important;
  }
  .space-xl-i-r-20 {
    padding-right: 5rem !important;
  }
  .space-xl-o-t-20 {
    margin-top: 5rem !important;
  }
  .space-xl-o-b-20 {
    margin-bottom: 5rem !important;
  }
  .space-xl-o-l-20 {
    margin-left: 5rem !important;
  }
  .space-xl-o-r-20 {
    margin-right: 5rem !important;
  }
  .space-xl-i-x-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .space-xl-i-y-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .space-xl-o-x-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .space-xl-o-y-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .space-xl-o-n20 {
    margin: -5rem !important;
  }
  .space-xl-o-t-n20 {
    margin-top: -5rem !important;
  }
  .space-xl-o-b-n20 {
    margin-bottom: -5rem !important;
  }
  .space-xl-o-l-n20 {
    margin-left: -5rem !important;
  }
  .space-xl-o-r-n20 {
    margin-right: -5rem !important;
  }
  .space-xl-o-x-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .space-xl-o-y-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .space-xl-i-24 {
    padding: 6rem !important;
  }
  .space-xl-o-24 {
    margin: 6rem !important;
  }
  .space-xl-i-t-24 {
    padding-top: 6rem !important;
  }
  .space-xl-i-b-24 {
    padding-bottom: 6rem !important;
  }
  .space-xl-i-l-24 {
    padding-left: 6rem !important;
  }
  .space-xl-i-r-24 {
    padding-right: 6rem !important;
  }
  .space-xl-o-t-24 {
    margin-top: 6rem !important;
  }
  .space-xl-o-b-24 {
    margin-bottom: 6rem !important;
  }
  .space-xl-o-l-24 {
    margin-left: 6rem !important;
  }
  .space-xl-o-r-24 {
    margin-right: 6rem !important;
  }
  .space-xl-i-x-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .space-xl-i-y-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .space-xl-o-x-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .space-xl-o-y-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .space-xl-o-n24 {
    margin: -6rem !important;
  }
  .space-xl-o-t-n24 {
    margin-top: -6rem !important;
  }
  .space-xl-o-b-n24 {
    margin-bottom: -6rem !important;
  }
  .space-xl-o-l-n24 {
    margin-left: -6rem !important;
  }
  .space-xl-o-r-n24 {
    margin-right: -6rem !important;
  }
  .space-xl-o-x-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .space-xl-o-y-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .space-xl-i-32 {
    padding: 8rem !important;
  }
  .space-xl-o-32 {
    margin: 8rem !important;
  }
  .space-xl-i-t-32 {
    padding-top: 8rem !important;
  }
  .space-xl-i-b-32 {
    padding-bottom: 8rem !important;
  }
  .space-xl-i-l-32 {
    padding-left: 8rem !important;
  }
  .space-xl-i-r-32 {
    padding-right: 8rem !important;
  }
  .space-xl-o-t-32 {
    margin-top: 8rem !important;
  }
  .space-xl-o-b-32 {
    margin-bottom: 8rem !important;
  }
  .space-xl-o-l-32 {
    margin-left: 8rem !important;
  }
  .space-xl-o-r-32 {
    margin-right: 8rem !important;
  }
  .space-xl-i-x-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .space-xl-i-y-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .space-xl-o-x-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .space-xl-o-y-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .space-xl-o-n32 {
    margin: -8rem !important;
  }
  .space-xl-o-t-n32 {
    margin-top: -8rem !important;
  }
  .space-xl-o-b-n32 {
    margin-bottom: -8rem !important;
  }
  .space-xl-o-l-n32 {
    margin-left: -8rem !important;
  }
  .space-xl-o-r-n32 {
    margin-right: -8rem !important;
  }
  .space-xl-o-x-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .space-xl-o-y-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .space-xl-o-auto {
    margin: auto !important;
  }
  .space-xl-o-x-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .space-xl-o-y-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .space-xl-o-t-auto {
    margin-top: auto !important;
  }
  .space-xl-o-b-auto {
    margin-bottom: auto !important;
  }
  .space-xl-o-l-auto {
    margin-left: auto !important;
  }
  .space-xl-o-r-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1600px) {
  .space-xxl-i-0 {
    padding: 0 !important;
  }
  .space-xxl-o-0 {
    margin: 0 !important;
  }
  .space-xxl-i-t-0 {
    padding-top: 0 !important;
  }
  .space-xxl-i-b-0 {
    padding-bottom: 0 !important;
  }
  .space-xxl-i-l-0 {
    padding-left: 0 !important;
  }
  .space-xxl-i-r-0 {
    padding-right: 0 !important;
  }
  .space-xxl-o-t-0 {
    margin-top: 0 !important;
  }
  .space-xxl-o-b-0 {
    margin-bottom: 0 !important;
  }
  .space-xxl-o-l-0 {
    margin-left: 0 !important;
  }
  .space-xxl-o-r-0 {
    margin-right: 0 !important;
  }
  .space-xxl-i-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .space-xxl-i-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .space-xxl-o-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .space-xxl-o-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .space-xxl-i-1 {
    padding: 0.25rem !important;
  }
  .space-xxl-o-1 {
    margin: 0.25rem !important;
  }
  .space-xxl-i-t-1 {
    padding-top: 0.25rem !important;
  }
  .space-xxl-i-b-1 {
    padding-bottom: 0.25rem !important;
  }
  .space-xxl-i-l-1 {
    padding-left: 0.25rem !important;
  }
  .space-xxl-i-r-1 {
    padding-right: 0.25rem !important;
  }
  .space-xxl-o-t-1 {
    margin-top: 0.25rem !important;
  }
  .space-xxl-o-b-1 {
    margin-bottom: 0.25rem !important;
  }
  .space-xxl-o-l-1 {
    margin-left: 0.25rem !important;
  }
  .space-xxl-o-r-1 {
    margin-right: 0.25rem !important;
  }
  .space-xxl-i-x-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .space-xxl-i-y-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .space-xxl-o-x-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .space-xxl-o-y-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .space-xxl-o-n1 {
    margin: -0.25rem !important;
  }
  .space-xxl-o-t-n1 {
    margin-top: -0.25rem !important;
  }
  .space-xxl-o-b-n1 {
    margin-bottom: -0.25rem !important;
  }
  .space-xxl-o-l-n1 {
    margin-left: -0.25rem !important;
  }
  .space-xxl-o-r-n1 {
    margin-right: -0.25rem !important;
  }
  .space-xxl-o-x-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .space-xxl-o-y-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .space-xxl-i-2 {
    padding: 0.5rem !important;
  }
  .space-xxl-o-2 {
    margin: 0.5rem !important;
  }
  .space-xxl-i-t-2 {
    padding-top: 0.5rem !important;
  }
  .space-xxl-i-b-2 {
    padding-bottom: 0.5rem !important;
  }
  .space-xxl-i-l-2 {
    padding-left: 0.5rem !important;
  }
  .space-xxl-i-r-2 {
    padding-right: 0.5rem !important;
  }
  .space-xxl-o-t-2 {
    margin-top: 0.5rem !important;
  }
  .space-xxl-o-b-2 {
    margin-bottom: 0.5rem !important;
  }
  .space-xxl-o-l-2 {
    margin-left: 0.5rem !important;
  }
  .space-xxl-o-r-2 {
    margin-right: 0.5rem !important;
  }
  .space-xxl-i-x-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .space-xxl-i-y-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .space-xxl-o-x-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .space-xxl-o-y-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .space-xxl-o-n2 {
    margin: -0.5rem !important;
  }
  .space-xxl-o-t-n2 {
    margin-top: -0.5rem !important;
  }
  .space-xxl-o-b-n2 {
    margin-bottom: -0.5rem !important;
  }
  .space-xxl-o-l-n2 {
    margin-left: -0.5rem !important;
  }
  .space-xxl-o-r-n2 {
    margin-right: -0.5rem !important;
  }
  .space-xxl-o-x-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .space-xxl-o-y-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .space-xxl-i-3 {
    padding: 0.75rem !important;
  }
  .space-xxl-o-3 {
    margin: 0.75rem !important;
  }
  .space-xxl-i-t-3 {
    padding-top: 0.75rem !important;
  }
  .space-xxl-i-b-3 {
    padding-bottom: 0.75rem !important;
  }
  .space-xxl-i-l-3 {
    padding-left: 0.75rem !important;
  }
  .space-xxl-i-r-3 {
    padding-right: 0.75rem !important;
  }
  .space-xxl-o-t-3 {
    margin-top: 0.75rem !important;
  }
  .space-xxl-o-b-3 {
    margin-bottom: 0.75rem !important;
  }
  .space-xxl-o-l-3 {
    margin-left: 0.75rem !important;
  }
  .space-xxl-o-r-3 {
    margin-right: 0.75rem !important;
  }
  .space-xxl-i-x-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .space-xxl-i-y-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .space-xxl-o-x-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .space-xxl-o-y-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .space-xxl-o-n3 {
    margin: -0.75rem !important;
  }
  .space-xxl-o-t-n3 {
    margin-top: -0.75rem !important;
  }
  .space-xxl-o-b-n3 {
    margin-bottom: -0.75rem !important;
  }
  .space-xxl-o-l-n3 {
    margin-left: -0.75rem !important;
  }
  .space-xxl-o-r-n3 {
    margin-right: -0.75rem !important;
  }
  .space-xxl-o-x-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .space-xxl-o-y-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .space-xxl-i-4 {
    padding: 1rem !important;
  }
  .space-xxl-o-4 {
    margin: 1rem !important;
  }
  .space-xxl-i-t-4 {
    padding-top: 1rem !important;
  }
  .space-xxl-i-b-4 {
    padding-bottom: 1rem !important;
  }
  .space-xxl-i-l-4 {
    padding-left: 1rem !important;
  }
  .space-xxl-i-r-4 {
    padding-right: 1rem !important;
  }
  .space-xxl-o-t-4 {
    margin-top: 1rem !important;
  }
  .space-xxl-o-b-4 {
    margin-bottom: 1rem !important;
  }
  .space-xxl-o-l-4 {
    margin-left: 1rem !important;
  }
  .space-xxl-o-r-4 {
    margin-right: 1rem !important;
  }
  .space-xxl-i-x-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .space-xxl-i-y-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .space-xxl-o-x-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .space-xxl-o-y-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .space-xxl-o-n4 {
    margin: -1rem !important;
  }
  .space-xxl-o-t-n4 {
    margin-top: -1rem !important;
  }
  .space-xxl-o-b-n4 {
    margin-bottom: -1rem !important;
  }
  .space-xxl-o-l-n4 {
    margin-left: -1rem !important;
  }
  .space-xxl-o-r-n4 {
    margin-right: -1rem !important;
  }
  .space-xxl-o-x-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .space-xxl-o-y-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .space-xxl-i-5 {
    padding: 1.25rem !important;
  }
  .space-xxl-o-5 {
    margin: 1.25rem !important;
  }
  .space-xxl-i-t-5 {
    padding-top: 1.25rem !important;
  }
  .space-xxl-i-b-5 {
    padding-bottom: 1.25rem !important;
  }
  .space-xxl-i-l-5 {
    padding-left: 1.25rem !important;
  }
  .space-xxl-i-r-5 {
    padding-right: 1.25rem !important;
  }
  .space-xxl-o-t-5 {
    margin-top: 1.25rem !important;
  }
  .space-xxl-o-b-5 {
    margin-bottom: 1.25rem !important;
  }
  .space-xxl-o-l-5 {
    margin-left: 1.25rem !important;
  }
  .space-xxl-o-r-5 {
    margin-right: 1.25rem !important;
  }
  .space-xxl-i-x-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .space-xxl-i-y-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .space-xxl-o-x-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .space-xxl-o-y-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .space-xxl-o-n5 {
    margin: -1.25rem !important;
  }
  .space-xxl-o-t-n5 {
    margin-top: -1.25rem !important;
  }
  .space-xxl-o-b-n5 {
    margin-bottom: -1.25rem !important;
  }
  .space-xxl-o-l-n5 {
    margin-left: -1.25rem !important;
  }
  .space-xxl-o-r-n5 {
    margin-right: -1.25rem !important;
  }
  .space-xxl-o-x-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .space-xxl-o-y-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .space-xxl-i-6 {
    padding: 1.5rem !important;
  }
  .space-xxl-o-6 {
    margin: 1.5rem !important;
  }
  .space-xxl-i-t-6 {
    padding-top: 1.5rem !important;
  }
  .space-xxl-i-b-6 {
    padding-bottom: 1.5rem !important;
  }
  .space-xxl-i-l-6 {
    padding-left: 1.5rem !important;
  }
  .space-xxl-i-r-6 {
    padding-right: 1.5rem !important;
  }
  .space-xxl-o-t-6 {
    margin-top: 1.5rem !important;
  }
  .space-xxl-o-b-6 {
    margin-bottom: 1.5rem !important;
  }
  .space-xxl-o-l-6 {
    margin-left: 1.5rem !important;
  }
  .space-xxl-o-r-6 {
    margin-right: 1.5rem !important;
  }
  .space-xxl-i-x-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .space-xxl-i-y-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .space-xxl-o-x-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .space-xxl-o-y-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .space-xxl-o-n6 {
    margin: -1.5rem !important;
  }
  .space-xxl-o-t-n6 {
    margin-top: -1.5rem !important;
  }
  .space-xxl-o-b-n6 {
    margin-bottom: -1.5rem !important;
  }
  .space-xxl-o-l-n6 {
    margin-left: -1.5rem !important;
  }
  .space-xxl-o-r-n6 {
    margin-right: -1.5rem !important;
  }
  .space-xxl-o-x-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .space-xxl-o-y-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .space-xxl-i-8 {
    padding: 2rem !important;
  }
  .space-xxl-o-8 {
    margin: 2rem !important;
  }
  .space-xxl-i-t-8 {
    padding-top: 2rem !important;
  }
  .space-xxl-i-b-8 {
    padding-bottom: 2rem !important;
  }
  .space-xxl-i-l-8 {
    padding-left: 2rem !important;
  }
  .space-xxl-i-r-8 {
    padding-right: 2rem !important;
  }
  .space-xxl-o-t-8 {
    margin-top: 2rem !important;
  }
  .space-xxl-o-b-8 {
    margin-bottom: 2rem !important;
  }
  .space-xxl-o-l-8 {
    margin-left: 2rem !important;
  }
  .space-xxl-o-r-8 {
    margin-right: 2rem !important;
  }
  .space-xxl-i-x-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .space-xxl-i-y-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .space-xxl-o-x-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .space-xxl-o-y-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .space-xxl-o-n8 {
    margin: -2rem !important;
  }
  .space-xxl-o-t-n8 {
    margin-top: -2rem !important;
  }
  .space-xxl-o-b-n8 {
    margin-bottom: -2rem !important;
  }
  .space-xxl-o-l-n8 {
    margin-left: -2rem !important;
  }
  .space-xxl-o-r-n8 {
    margin-right: -2rem !important;
  }
  .space-xxl-o-x-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .space-xxl-o-y-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .space-xxl-i-10 {
    padding: 2.5rem !important;
  }
  .space-xxl-o-10 {
    margin: 2.5rem !important;
  }
  .space-xxl-i-t-10 {
    padding-top: 2.5rem !important;
  }
  .space-xxl-i-b-10 {
    padding-bottom: 2.5rem !important;
  }
  .space-xxl-i-l-10 {
    padding-left: 2.5rem !important;
  }
  .space-xxl-i-r-10 {
    padding-right: 2.5rem !important;
  }
  .space-xxl-o-t-10 {
    margin-top: 2.5rem !important;
  }
  .space-xxl-o-b-10 {
    margin-bottom: 2.5rem !important;
  }
  .space-xxl-o-l-10 {
    margin-left: 2.5rem !important;
  }
  .space-xxl-o-r-10 {
    margin-right: 2.5rem !important;
  }
  .space-xxl-i-x-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .space-xxl-i-y-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .space-xxl-o-x-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .space-xxl-o-y-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .space-xxl-o-n10 {
    margin: -2.5rem !important;
  }
  .space-xxl-o-t-n10 {
    margin-top: -2.5rem !important;
  }
  .space-xxl-o-b-n10 {
    margin-bottom: -2.5rem !important;
  }
  .space-xxl-o-l-n10 {
    margin-left: -2.5rem !important;
  }
  .space-xxl-o-r-n10 {
    margin-right: -2.5rem !important;
  }
  .space-xxl-o-x-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .space-xxl-o-y-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .space-xxl-i-12 {
    padding: 3rem !important;
  }
  .space-xxl-o-12 {
    margin: 3rem !important;
  }
  .space-xxl-i-t-12 {
    padding-top: 3rem !important;
  }
  .space-xxl-i-b-12 {
    padding-bottom: 3rem !important;
  }
  .space-xxl-i-l-12 {
    padding-left: 3rem !important;
  }
  .space-xxl-i-r-12 {
    padding-right: 3rem !important;
  }
  .space-xxl-o-t-12 {
    margin-top: 3rem !important;
  }
  .space-xxl-o-b-12 {
    margin-bottom: 3rem !important;
  }
  .space-xxl-o-l-12 {
    margin-left: 3rem !important;
  }
  .space-xxl-o-r-12 {
    margin-right: 3rem !important;
  }
  .space-xxl-i-x-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .space-xxl-i-y-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .space-xxl-o-x-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .space-xxl-o-y-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .space-xxl-o-n12 {
    margin: -3rem !important;
  }
  .space-xxl-o-t-n12 {
    margin-top: -3rem !important;
  }
  .space-xxl-o-b-n12 {
    margin-bottom: -3rem !important;
  }
  .space-xxl-o-l-n12 {
    margin-left: -3rem !important;
  }
  .space-xxl-o-r-n12 {
    margin-right: -3rem !important;
  }
  .space-xxl-o-x-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .space-xxl-o-y-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .space-xxl-i-16 {
    padding: 4rem !important;
  }
  .space-xxl-o-16 {
    margin: 4rem !important;
  }
  .space-xxl-i-t-16 {
    padding-top: 4rem !important;
  }
  .space-xxl-i-b-16 {
    padding-bottom: 4rem !important;
  }
  .space-xxl-i-l-16 {
    padding-left: 4rem !important;
  }
  .space-xxl-i-r-16 {
    padding-right: 4rem !important;
  }
  .space-xxl-o-t-16 {
    margin-top: 4rem !important;
  }
  .space-xxl-o-b-16 {
    margin-bottom: 4rem !important;
  }
  .space-xxl-o-l-16 {
    margin-left: 4rem !important;
  }
  .space-xxl-o-r-16 {
    margin-right: 4rem !important;
  }
  .space-xxl-i-x-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .space-xxl-i-y-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .space-xxl-o-x-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .space-xxl-o-y-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .space-xxl-o-n16 {
    margin: -4rem !important;
  }
  .space-xxl-o-t-n16 {
    margin-top: -4rem !important;
  }
  .space-xxl-o-b-n16 {
    margin-bottom: -4rem !important;
  }
  .space-xxl-o-l-n16 {
    margin-left: -4rem !important;
  }
  .space-xxl-o-r-n16 {
    margin-right: -4rem !important;
  }
  .space-xxl-o-x-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .space-xxl-o-y-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .space-xxl-i-20 {
    padding: 5rem !important;
  }
  .space-xxl-o-20 {
    margin: 5rem !important;
  }
  .space-xxl-i-t-20 {
    padding-top: 5rem !important;
  }
  .space-xxl-i-b-20 {
    padding-bottom: 5rem !important;
  }
  .space-xxl-i-l-20 {
    padding-left: 5rem !important;
  }
  .space-xxl-i-r-20 {
    padding-right: 5rem !important;
  }
  .space-xxl-o-t-20 {
    margin-top: 5rem !important;
  }
  .space-xxl-o-b-20 {
    margin-bottom: 5rem !important;
  }
  .space-xxl-o-l-20 {
    margin-left: 5rem !important;
  }
  .space-xxl-o-r-20 {
    margin-right: 5rem !important;
  }
  .space-xxl-i-x-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .space-xxl-i-y-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .space-xxl-o-x-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .space-xxl-o-y-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .space-xxl-o-n20 {
    margin: -5rem !important;
  }
  .space-xxl-o-t-n20 {
    margin-top: -5rem !important;
  }
  .space-xxl-o-b-n20 {
    margin-bottom: -5rem !important;
  }
  .space-xxl-o-l-n20 {
    margin-left: -5rem !important;
  }
  .space-xxl-o-r-n20 {
    margin-right: -5rem !important;
  }
  .space-xxl-o-x-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .space-xxl-o-y-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .space-xxl-i-24 {
    padding: 6rem !important;
  }
  .space-xxl-o-24 {
    margin: 6rem !important;
  }
  .space-xxl-i-t-24 {
    padding-top: 6rem !important;
  }
  .space-xxl-i-b-24 {
    padding-bottom: 6rem !important;
  }
  .space-xxl-i-l-24 {
    padding-left: 6rem !important;
  }
  .space-xxl-i-r-24 {
    padding-right: 6rem !important;
  }
  .space-xxl-o-t-24 {
    margin-top: 6rem !important;
  }
  .space-xxl-o-b-24 {
    margin-bottom: 6rem !important;
  }
  .space-xxl-o-l-24 {
    margin-left: 6rem !important;
  }
  .space-xxl-o-r-24 {
    margin-right: 6rem !important;
  }
  .space-xxl-i-x-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .space-xxl-i-y-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .space-xxl-o-x-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .space-xxl-o-y-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .space-xxl-o-n24 {
    margin: -6rem !important;
  }
  .space-xxl-o-t-n24 {
    margin-top: -6rem !important;
  }
  .space-xxl-o-b-n24 {
    margin-bottom: -6rem !important;
  }
  .space-xxl-o-l-n24 {
    margin-left: -6rem !important;
  }
  .space-xxl-o-r-n24 {
    margin-right: -6rem !important;
  }
  .space-xxl-o-x-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .space-xxl-o-y-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .space-xxl-i-32 {
    padding: 8rem !important;
  }
  .space-xxl-o-32 {
    margin: 8rem !important;
  }
  .space-xxl-i-t-32 {
    padding-top: 8rem !important;
  }
  .space-xxl-i-b-32 {
    padding-bottom: 8rem !important;
  }
  .space-xxl-i-l-32 {
    padding-left: 8rem !important;
  }
  .space-xxl-i-r-32 {
    padding-right: 8rem !important;
  }
  .space-xxl-o-t-32 {
    margin-top: 8rem !important;
  }
  .space-xxl-o-b-32 {
    margin-bottom: 8rem !important;
  }
  .space-xxl-o-l-32 {
    margin-left: 8rem !important;
  }
  .space-xxl-o-r-32 {
    margin-right: 8rem !important;
  }
  .space-xxl-i-x-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .space-xxl-i-y-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .space-xxl-o-x-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .space-xxl-o-y-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .space-xxl-o-n32 {
    margin: -8rem !important;
  }
  .space-xxl-o-t-n32 {
    margin-top: -8rem !important;
  }
  .space-xxl-o-b-n32 {
    margin-bottom: -8rem !important;
  }
  .space-xxl-o-l-n32 {
    margin-left: -8rem !important;
  }
  .space-xxl-o-r-n32 {
    margin-right: -8rem !important;
  }
  .space-xxl-o-x-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .space-xxl-o-y-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .space-xxl-o-auto {
    margin: auto !important;
  }
  .space-xxl-o-x-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .space-xxl-o-y-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .space-xxl-o-t-auto {
    margin-top: auto !important;
  }
  .space-xxl-o-b-auto {
    margin-bottom: auto !important;
  }
  .space-xxl-o-l-auto {
    margin-left: auto !important;
  }
  .space-xxl-o-r-auto {
    margin-right: auto !important;
  }
}
section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.section--tight {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.section--flush {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

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

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

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

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

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

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

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

.ms-1 {
  margin-left: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.m-n1 {
  margin: -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;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.m-n2 {
  margin: -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;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

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

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.ps-3 {
  padding-left: 0.75rem !important;
}

.pe-3 {
  padding-right: 0.75rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

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

.ms-3 {
  margin-left: 0.75rem !important;
}

.me-3 {
  margin-right: 0.75rem !important;
}

.m-n3 {
  margin: -0.75rem !important;
}

.mx-n3 {
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}

.my-n3 {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.mt-n3 {
  margin-top: -0.75rem !important;
}

.mb-n3 {
  margin-bottom: -0.75rem !important;
}

.ms-n3 {
  margin-left: -0.75rem !important;
}

.me-n3 {
  margin-right: -0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

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

.pb-4 {
  padding-bottom: 1rem !important;
}

.ps-4 {
  padding-left: 1rem !important;
}

.pe-4 {
  padding-right: 1rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

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

.mt-4 {
  margin-top: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ms-4 {
  margin-left: 1rem !important;
}

.me-4 {
  margin-right: 1rem !important;
}

.m-n4 {
  margin: -1rem !important;
}

.mx-n4 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.my-n4 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.mt-n4 {
  margin-top: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1rem !important;
}

.ms-n4 {
  margin-left: -1rem !important;
}

.me-n4 {
  margin-right: -1rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.ps-5 {
  padding-left: 1.25rem !important;
}

.pe-5 {
  padding-right: 1.25rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ms-5 {
  margin-left: 1.25rem !important;
}

.me-5 {
  margin-right: 1.25rem !important;
}

.m-n5 {
  margin: -1.25rem !important;
}

.mx-n5 {
  margin-left: -1.25rem !important;
  margin-right: -1.25rem !important;
}

.my-n5 {
  margin-top: -1.25rem !important;
  margin-bottom: -1.25rem !important;
}

.mt-n5 {
  margin-top: -1.25rem !important;
}

.mb-n5 {
  margin-bottom: -1.25rem !important;
}

.ms-n5 {
  margin-left: -1.25rem !important;
}

.me-n5 {
  margin-right: -1.25rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.ps-6 {
  padding-left: 1.5rem !important;
}

.pe-6 {
  padding-right: 1.5rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

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

.ms-6 {
  margin-left: 1.5rem !important;
}

.me-6 {
  margin-right: 1.5rem !important;
}

.m-n6 {
  margin: -1.5rem !important;
}

.mx-n6 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.my-n6 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.mt-n6 {
  margin-top: -1.5rem !important;
}

.mb-n6 {
  margin-bottom: -1.5rem !important;
}

.ms-n6 {
  margin-left: -1.5rem !important;
}

.me-n6 {
  margin-right: -1.5rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

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

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

.ps-8 {
  padding-left: 2rem !important;
}

.pe-8 {
  padding-right: 2rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

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

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

.ms-8 {
  margin-left: 2rem !important;
}

.me-8 {
  margin-right: 2rem !important;
}

.m-n8 {
  margin: -2rem !important;
}

.mx-n8 {
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}

.my-n8 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.mt-n8 {
  margin-top: -2rem !important;
}

.mb-n8 {
  margin-bottom: -2rem !important;
}

.ms-n8 {
  margin-left: -2rem !important;
}

.me-n8 {
  margin-right: -2rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.ps-10 {
  padding-left: 2.5rem !important;
}

.pe-10 {
  padding-right: 2.5rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ms-10 {
  margin-left: 2.5rem !important;
}

.me-10 {
  margin-right: 2.5rem !important;
}

.m-n10 {
  margin: -2.5rem !important;
}

.mx-n10 {
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
}

.my-n10 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.mt-n10 {
  margin-top: -2.5rem !important;
}

.mb-n10 {
  margin-bottom: -2.5rem !important;
}

.ms-n10 {
  margin-left: -2.5rem !important;
}

.me-n10 {
  margin-right: -2.5rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

.pb-12 {
  padding-bottom: 3rem !important;
}

.ps-12 {
  padding-left: 3rem !important;
}

.pe-12 {
  padding-right: 3rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

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

.ms-12 {
  margin-left: 3rem !important;
}

.me-12 {
  margin-right: 3rem !important;
}

.m-n12 {
  margin: -3rem !important;
}

.mx-n12 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.my-n12 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.mt-n12 {
  margin-top: -3rem !important;
}

.mb-n12 {
  margin-bottom: -3rem !important;
}

.ms-n12 {
  margin-left: -3rem !important;
}

.me-n12 {
  margin-right: -3rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

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

.pb-16 {
  padding-bottom: 4rem !important;
}

.ps-16 {
  padding-left: 4rem !important;
}

.pe-16 {
  padding-right: 4rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.ms-16 {
  margin-left: 4rem !important;
}

.me-16 {
  margin-right: 4rem !important;
}

.m-n16 {
  margin: -4rem !important;
}

.mx-n16 {
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}

.my-n16 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.mt-n16 {
  margin-top: -4rem !important;
}

.mb-n16 {
  margin-bottom: -4rem !important;
}

.ms-n16 {
  margin-left: -4rem !important;
}

.me-n16 {
  margin-right: -4rem !important;
}

.p-20 {
  padding: 5rem !important;
}

.px-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.ps-20 {
  padding-left: 5rem !important;
}

.pe-20 {
  padding-right: 5rem !important;
}

.m-20 {
  margin: 5rem !important;
}

.mx-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.ms-20 {
  margin-left: 5rem !important;
}

.me-20 {
  margin-right: 5rem !important;
}

.m-n20 {
  margin: -5rem !important;
}

.mx-n20 {
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}

.my-n20 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.mt-n20 {
  margin-top: -5rem !important;
}

.mb-n20 {
  margin-bottom: -5rem !important;
}

.ms-n20 {
  margin-left: -5rem !important;
}

.me-n20 {
  margin-right: -5rem !important;
}

.p-24 {
  padding: 6rem !important;
}

.px-24 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

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

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

.pb-24 {
  padding-bottom: 6rem !important;
}

.ps-24 {
  padding-left: 6rem !important;
}

.pe-24 {
  padding-right: 6rem !important;
}

.m-24 {
  margin: 6rem !important;
}

.mx-24 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.mt-24 {
  margin-top: 6rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.ms-24 {
  margin-left: 6rem !important;
}

.me-24 {
  margin-right: 6rem !important;
}

.m-n24 {
  margin: -6rem !important;
}

.mx-n24 {
  margin-left: -6rem !important;
  margin-right: -6rem !important;
}

.my-n24 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.mt-n24 {
  margin-top: -6rem !important;
}

.mb-n24 {
  margin-bottom: -6rem !important;
}

.ms-n24 {
  margin-left: -6rem !important;
}

.me-n24 {
  margin-right: -6rem !important;
}

.p-32 {
  padding: 8rem !important;
}

.px-32 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py-32 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.pt-32 {
  padding-top: 8rem !important;
}

.pb-32 {
  padding-bottom: 8rem !important;
}

.ps-32 {
  padding-left: 8rem !important;
}

.pe-32 {
  padding-right: 8rem !important;
}

.m-32 {
  margin: 8rem !important;
}

.mx-32 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-32 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.mt-32 {
  margin-top: 8rem !important;
}

.mb-32 {
  margin-bottom: 8rem !important;
}

.ms-32 {
  margin-left: 8rem !important;
}

.me-32 {
  margin-right: 8rem !important;
}

.m-n32 {
  margin: -8rem !important;
}

.mx-n32 {
  margin-left: -8rem !important;
  margin-right: -8rem !important;
}

.my-n32 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.mt-n32 {
  margin-top: -8rem !important;
}

.mb-n32 {
  margin-bottom: -8rem !important;
}

.ms-n32 {
  margin-left: -8rem !important;
}

.me-n32 {
  margin-right: -8rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

@media (min-width: 576px) {
  .sm-p-0 {
    padding: 0 !important;
  }
  .sm-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .sm-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .sm-pt-0 {
    padding-top: 0 !important;
  }
  .sm-pb-0 {
    padding-bottom: 0 !important;
  }
  .sm-ps-0 {
    padding-left: 0 !important;
  }
  .sm-pe-0 {
    padding-right: 0 !important;
  }
  .sm-m-0 {
    margin: 0 !important;
  }
  .sm-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .sm-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .sm-mt-0 {
    margin-top: 0 !important;
  }
  .sm-mb-0 {
    margin-bottom: 0 !important;
  }
  .sm-ms-0 {
    margin-left: 0 !important;
  }
  .sm-me-0 {
    margin-right: 0 !important;
  }
  .sm-p-1 {
    padding: 0.25rem !important;
  }
  .sm-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .sm-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .sm-pt-1 {
    padding-top: 0.25rem !important;
  }
  .sm-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .sm-ps-1 {
    padding-left: 0.25rem !important;
  }
  .sm-pe-1 {
    padding-right: 0.25rem !important;
  }
  .sm-m-1 {
    margin: 0.25rem !important;
  }
  .sm-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .sm-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .sm-mt-1 {
    margin-top: 0.25rem !important;
  }
  .sm-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .sm-ms-1 {
    margin-left: 0.25rem !important;
  }
  .sm-me-1 {
    margin-right: 0.25rem !important;
  }
  .sm-m-n1 {
    margin: -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-mt-n1 {
    margin-top: -0.25rem !important;
  }
  .sm-mb-n1 {
    margin-bottom: -0.25rem !important;
  }
  .sm-ms-n1 {
    margin-left: -0.25rem !important;
  }
  .sm-me-n1 {
    margin-right: -0.25rem !important;
  }
  .sm-p-2 {
    padding: 0.5rem !important;
  }
  .sm-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .sm-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .sm-pt-2 {
    padding-top: 0.5rem !important;
  }
  .sm-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .sm-ps-2 {
    padding-left: 0.5rem !important;
  }
  .sm-pe-2 {
    padding-right: 0.5rem !important;
  }
  .sm-m-2 {
    margin: 0.5rem !important;
  }
  .sm-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .sm-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .sm-mt-2 {
    margin-top: 0.5rem !important;
  }
  .sm-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .sm-ms-2 {
    margin-left: 0.5rem !important;
  }
  .sm-me-2 {
    margin-right: 0.5rem !important;
  }
  .sm-m-n2 {
    margin: -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-mt-n2 {
    margin-top: -0.5rem !important;
  }
  .sm-mb-n2 {
    margin-bottom: -0.5rem !important;
  }
  .sm-ms-n2 {
    margin-left: -0.5rem !important;
  }
  .sm-me-n2 {
    margin-right: -0.5rem !important;
  }
  .sm-p-3 {
    padding: 0.75rem !important;
  }
  .sm-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .sm-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .sm-pt-3 {
    padding-top: 0.75rem !important;
  }
  .sm-pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .sm-ps-3 {
    padding-left: 0.75rem !important;
  }
  .sm-pe-3 {
    padding-right: 0.75rem !important;
  }
  .sm-m-3 {
    margin: 0.75rem !important;
  }
  .sm-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .sm-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .sm-mt-3 {
    margin-top: 0.75rem !important;
  }
  .sm-mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .sm-ms-3 {
    margin-left: 0.75rem !important;
  }
  .sm-me-3 {
    margin-right: 0.75rem !important;
  }
  .sm-m-n3 {
    margin: -0.75rem !important;
  }
  .sm-mx-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .sm-my-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .sm-mt-n3 {
    margin-top: -0.75rem !important;
  }
  .sm-mb-n3 {
    margin-bottom: -0.75rem !important;
  }
  .sm-ms-n3 {
    margin-left: -0.75rem !important;
  }
  .sm-me-n3 {
    margin-right: -0.75rem !important;
  }
  .sm-p-4 {
    padding: 1rem !important;
  }
  .sm-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .sm-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .sm-pt-4 {
    padding-top: 1rem !important;
  }
  .sm-pb-4 {
    padding-bottom: 1rem !important;
  }
  .sm-ps-4 {
    padding-left: 1rem !important;
  }
  .sm-pe-4 {
    padding-right: 1rem !important;
  }
  .sm-m-4 {
    margin: 1rem !important;
  }
  .sm-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .sm-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .sm-mt-4 {
    margin-top: 1rem !important;
  }
  .sm-mb-4 {
    margin-bottom: 1rem !important;
  }
  .sm-ms-4 {
    margin-left: 1rem !important;
  }
  .sm-me-4 {
    margin-right: 1rem !important;
  }
  .sm-m-n4 {
    margin: -1rem !important;
  }
  .sm-mx-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .sm-my-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .sm-mt-n4 {
    margin-top: -1rem !important;
  }
  .sm-mb-n4 {
    margin-bottom: -1rem !important;
  }
  .sm-ms-n4 {
    margin-left: -1rem !important;
  }
  .sm-me-n4 {
    margin-right: -1rem !important;
  }
  .sm-p-5 {
    padding: 1.25rem !important;
  }
  .sm-px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .sm-py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .sm-pt-5 {
    padding-top: 1.25rem !important;
  }
  .sm-pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .sm-ps-5 {
    padding-left: 1.25rem !important;
  }
  .sm-pe-5 {
    padding-right: 1.25rem !important;
  }
  .sm-m-5 {
    margin: 1.25rem !important;
  }
  .sm-mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .sm-my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .sm-mt-5 {
    margin-top: 1.25rem !important;
  }
  .sm-mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .sm-ms-5 {
    margin-left: 1.25rem !important;
  }
  .sm-me-5 {
    margin-right: 1.25rem !important;
  }
  .sm-m-n5 {
    margin: -1.25rem !important;
  }
  .sm-mx-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .sm-my-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .sm-mt-n5 {
    margin-top: -1.25rem !important;
  }
  .sm-mb-n5 {
    margin-bottom: -1.25rem !important;
  }
  .sm-ms-n5 {
    margin-left: -1.25rem !important;
  }
  .sm-me-n5 {
    margin-right: -1.25rem !important;
  }
  .sm-p-6 {
    padding: 1.5rem !important;
  }
  .sm-px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .sm-py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .sm-pt-6 {
    padding-top: 1.5rem !important;
  }
  .sm-pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .sm-ps-6 {
    padding-left: 1.5rem !important;
  }
  .sm-pe-6 {
    padding-right: 1.5rem !important;
  }
  .sm-m-6 {
    margin: 1.5rem !important;
  }
  .sm-mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .sm-my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .sm-mt-6 {
    margin-top: 1.5rem !important;
  }
  .sm-mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .sm-ms-6 {
    margin-left: 1.5rem !important;
  }
  .sm-me-6 {
    margin-right: 1.5rem !important;
  }
  .sm-m-n6 {
    margin: -1.5rem !important;
  }
  .sm-mx-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .sm-my-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .sm-mt-n6 {
    margin-top: -1.5rem !important;
  }
  .sm-mb-n6 {
    margin-bottom: -1.5rem !important;
  }
  .sm-ms-n6 {
    margin-left: -1.5rem !important;
  }
  .sm-me-n6 {
    margin-right: -1.5rem !important;
  }
  .sm-p-8 {
    padding: 2rem !important;
  }
  .sm-px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .sm-py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .sm-pt-8 {
    padding-top: 2rem !important;
  }
  .sm-pb-8 {
    padding-bottom: 2rem !important;
  }
  .sm-ps-8 {
    padding-left: 2rem !important;
  }
  .sm-pe-8 {
    padding-right: 2rem !important;
  }
  .sm-m-8 {
    margin: 2rem !important;
  }
  .sm-mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .sm-my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .sm-mt-8 {
    margin-top: 2rem !important;
  }
  .sm-mb-8 {
    margin-bottom: 2rem !important;
  }
  .sm-ms-8 {
    margin-left: 2rem !important;
  }
  .sm-me-8 {
    margin-right: 2rem !important;
  }
  .sm-m-n8 {
    margin: -2rem !important;
  }
  .sm-mx-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .sm-my-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .sm-mt-n8 {
    margin-top: -2rem !important;
  }
  .sm-mb-n8 {
    margin-bottom: -2rem !important;
  }
  .sm-ms-n8 {
    margin-left: -2rem !important;
  }
  .sm-me-n8 {
    margin-right: -2rem !important;
  }
  .sm-p-10 {
    padding: 2.5rem !important;
  }
  .sm-px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .sm-py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .sm-pt-10 {
    padding-top: 2.5rem !important;
  }
  .sm-pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .sm-ps-10 {
    padding-left: 2.5rem !important;
  }
  .sm-pe-10 {
    padding-right: 2.5rem !important;
  }
  .sm-m-10 {
    margin: 2.5rem !important;
  }
  .sm-mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .sm-my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .sm-mt-10 {
    margin-top: 2.5rem !important;
  }
  .sm-mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .sm-ms-10 {
    margin-left: 2.5rem !important;
  }
  .sm-me-10 {
    margin-right: 2.5rem !important;
  }
  .sm-m-n10 {
    margin: -2.5rem !important;
  }
  .sm-mx-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .sm-my-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .sm-mt-n10 {
    margin-top: -2.5rem !important;
  }
  .sm-mb-n10 {
    margin-bottom: -2.5rem !important;
  }
  .sm-ms-n10 {
    margin-left: -2.5rem !important;
  }
  .sm-me-n10 {
    margin-right: -2.5rem !important;
  }
  .sm-p-12 {
    padding: 3rem !important;
  }
  .sm-px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .sm-py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .sm-pt-12 {
    padding-top: 3rem !important;
  }
  .sm-pb-12 {
    padding-bottom: 3rem !important;
  }
  .sm-ps-12 {
    padding-left: 3rem !important;
  }
  .sm-pe-12 {
    padding-right: 3rem !important;
  }
  .sm-m-12 {
    margin: 3rem !important;
  }
  .sm-mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .sm-my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .sm-mt-12 {
    margin-top: 3rem !important;
  }
  .sm-mb-12 {
    margin-bottom: 3rem !important;
  }
  .sm-ms-12 {
    margin-left: 3rem !important;
  }
  .sm-me-12 {
    margin-right: 3rem !important;
  }
  .sm-m-n12 {
    margin: -3rem !important;
  }
  .sm-mx-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .sm-my-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .sm-mt-n12 {
    margin-top: -3rem !important;
  }
  .sm-mb-n12 {
    margin-bottom: -3rem !important;
  }
  .sm-ms-n12 {
    margin-left: -3rem !important;
  }
  .sm-me-n12 {
    margin-right: -3rem !important;
  }
  .sm-p-16 {
    padding: 4rem !important;
  }
  .sm-px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .sm-py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .sm-pt-16 {
    padding-top: 4rem !important;
  }
  .sm-pb-16 {
    padding-bottom: 4rem !important;
  }
  .sm-ps-16 {
    padding-left: 4rem !important;
  }
  .sm-pe-16 {
    padding-right: 4rem !important;
  }
  .sm-m-16 {
    margin: 4rem !important;
  }
  .sm-mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .sm-my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .sm-mt-16 {
    margin-top: 4rem !important;
  }
  .sm-mb-16 {
    margin-bottom: 4rem !important;
  }
  .sm-ms-16 {
    margin-left: 4rem !important;
  }
  .sm-me-16 {
    margin-right: 4rem !important;
  }
  .sm-m-n16 {
    margin: -4rem !important;
  }
  .sm-mx-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .sm-my-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .sm-mt-n16 {
    margin-top: -4rem !important;
  }
  .sm-mb-n16 {
    margin-bottom: -4rem !important;
  }
  .sm-ms-n16 {
    margin-left: -4rem !important;
  }
  .sm-me-n16 {
    margin-right: -4rem !important;
  }
  .sm-p-20 {
    padding: 5rem !important;
  }
  .sm-px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .sm-py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .sm-pt-20 {
    padding-top: 5rem !important;
  }
  .sm-pb-20 {
    padding-bottom: 5rem !important;
  }
  .sm-ps-20 {
    padding-left: 5rem !important;
  }
  .sm-pe-20 {
    padding-right: 5rem !important;
  }
  .sm-m-20 {
    margin: 5rem !important;
  }
  .sm-mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .sm-my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .sm-mt-20 {
    margin-top: 5rem !important;
  }
  .sm-mb-20 {
    margin-bottom: 5rem !important;
  }
  .sm-ms-20 {
    margin-left: 5rem !important;
  }
  .sm-me-20 {
    margin-right: 5rem !important;
  }
  .sm-m-n20 {
    margin: -5rem !important;
  }
  .sm-mx-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .sm-my-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .sm-mt-n20 {
    margin-top: -5rem !important;
  }
  .sm-mb-n20 {
    margin-bottom: -5rem !important;
  }
  .sm-ms-n20 {
    margin-left: -5rem !important;
  }
  .sm-me-n20 {
    margin-right: -5rem !important;
  }
  .sm-p-24 {
    padding: 6rem !important;
  }
  .sm-px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .sm-py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .sm-pt-24 {
    padding-top: 6rem !important;
  }
  .sm-pb-24 {
    padding-bottom: 6rem !important;
  }
  .sm-ps-24 {
    padding-left: 6rem !important;
  }
  .sm-pe-24 {
    padding-right: 6rem !important;
  }
  .sm-m-24 {
    margin: 6rem !important;
  }
  .sm-mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .sm-my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .sm-mt-24 {
    margin-top: 6rem !important;
  }
  .sm-mb-24 {
    margin-bottom: 6rem !important;
  }
  .sm-ms-24 {
    margin-left: 6rem !important;
  }
  .sm-me-24 {
    margin-right: 6rem !important;
  }
  .sm-m-n24 {
    margin: -6rem !important;
  }
  .sm-mx-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .sm-my-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .sm-mt-n24 {
    margin-top: -6rem !important;
  }
  .sm-mb-n24 {
    margin-bottom: -6rem !important;
  }
  .sm-ms-n24 {
    margin-left: -6rem !important;
  }
  .sm-me-n24 {
    margin-right: -6rem !important;
  }
  .sm-p-32 {
    padding: 8rem !important;
  }
  .sm-px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .sm-py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .sm-pt-32 {
    padding-top: 8rem !important;
  }
  .sm-pb-32 {
    padding-bottom: 8rem !important;
  }
  .sm-ps-32 {
    padding-left: 8rem !important;
  }
  .sm-pe-32 {
    padding-right: 8rem !important;
  }
  .sm-m-32 {
    margin: 8rem !important;
  }
  .sm-mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .sm-my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .sm-mt-32 {
    margin-top: 8rem !important;
  }
  .sm-mb-32 {
    margin-bottom: 8rem !important;
  }
  .sm-ms-32 {
    margin-left: 8rem !important;
  }
  .sm-me-32 {
    margin-right: 8rem !important;
  }
  .sm-m-n32 {
    margin: -8rem !important;
  }
  .sm-mx-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .sm-my-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .sm-mt-n32 {
    margin-top: -8rem !important;
  }
  .sm-mb-n32 {
    margin-bottom: -8rem !important;
  }
  .sm-ms-n32 {
    margin-left: -8rem !important;
  }
  .sm-me-n32 {
    margin-right: -8rem !important;
  }
  .sm-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .sm-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .sm-mt-auto {
    margin-top: auto !important;
  }
  .sm-mb-auto {
    margin-bottom: auto !important;
  }
  .sm-ms-auto {
    margin-left: auto !important;
  }
  .sm-me-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 768px) {
  .md-p-0 {
    padding: 0 !important;
  }
  .md-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .md-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .md-pt-0 {
    padding-top: 0 !important;
  }
  .md-pb-0 {
    padding-bottom: 0 !important;
  }
  .md-ps-0 {
    padding-left: 0 !important;
  }
  .md-pe-0 {
    padding-right: 0 !important;
  }
  .md-m-0 {
    margin: 0 !important;
  }
  .md-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .md-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .md-mt-0 {
    margin-top: 0 !important;
  }
  .md-mb-0 {
    margin-bottom: 0 !important;
  }
  .md-ms-0 {
    margin-left: 0 !important;
  }
  .md-me-0 {
    margin-right: 0 !important;
  }
  .md-p-1 {
    padding: 0.25rem !important;
  }
  .md-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .md-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .md-pt-1 {
    padding-top: 0.25rem !important;
  }
  .md-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .md-ps-1 {
    padding-left: 0.25rem !important;
  }
  .md-pe-1 {
    padding-right: 0.25rem !important;
  }
  .md-m-1 {
    margin: 0.25rem !important;
  }
  .md-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .md-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .md-mt-1 {
    margin-top: 0.25rem !important;
  }
  .md-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .md-ms-1 {
    margin-left: 0.25rem !important;
  }
  .md-me-1 {
    margin-right: 0.25rem !important;
  }
  .md-m-n1 {
    margin: -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-mt-n1 {
    margin-top: -0.25rem !important;
  }
  .md-mb-n1 {
    margin-bottom: -0.25rem !important;
  }
  .md-ms-n1 {
    margin-left: -0.25rem !important;
  }
  .md-me-n1 {
    margin-right: -0.25rem !important;
  }
  .md-p-2 {
    padding: 0.5rem !important;
  }
  .md-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .md-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .md-pt-2 {
    padding-top: 0.5rem !important;
  }
  .md-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .md-ps-2 {
    padding-left: 0.5rem !important;
  }
  .md-pe-2 {
    padding-right: 0.5rem !important;
  }
  .md-m-2 {
    margin: 0.5rem !important;
  }
  .md-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .md-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .md-mt-2 {
    margin-top: 0.5rem !important;
  }
  .md-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .md-ms-2 {
    margin-left: 0.5rem !important;
  }
  .md-me-2 {
    margin-right: 0.5rem !important;
  }
  .md-m-n2 {
    margin: -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-mt-n2 {
    margin-top: -0.5rem !important;
  }
  .md-mb-n2 {
    margin-bottom: -0.5rem !important;
  }
  .md-ms-n2 {
    margin-left: -0.5rem !important;
  }
  .md-me-n2 {
    margin-right: -0.5rem !important;
  }
  .md-p-3 {
    padding: 0.75rem !important;
  }
  .md-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .md-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .md-pt-3 {
    padding-top: 0.75rem !important;
  }
  .md-pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .md-ps-3 {
    padding-left: 0.75rem !important;
  }
  .md-pe-3 {
    padding-right: 0.75rem !important;
  }
  .md-m-3 {
    margin: 0.75rem !important;
  }
  .md-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .md-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .md-mt-3 {
    margin-top: 0.75rem !important;
  }
  .md-mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .md-ms-3 {
    margin-left: 0.75rem !important;
  }
  .md-me-3 {
    margin-right: 0.75rem !important;
  }
  .md-m-n3 {
    margin: -0.75rem !important;
  }
  .md-mx-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .md-my-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .md-mt-n3 {
    margin-top: -0.75rem !important;
  }
  .md-mb-n3 {
    margin-bottom: -0.75rem !important;
  }
  .md-ms-n3 {
    margin-left: -0.75rem !important;
  }
  .md-me-n3 {
    margin-right: -0.75rem !important;
  }
  .md-p-4 {
    padding: 1rem !important;
  }
  .md-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .md-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .md-pt-4 {
    padding-top: 1rem !important;
  }
  .md-pb-4 {
    padding-bottom: 1rem !important;
  }
  .md-ps-4 {
    padding-left: 1rem !important;
  }
  .md-pe-4 {
    padding-right: 1rem !important;
  }
  .md-m-4 {
    margin: 1rem !important;
  }
  .md-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .md-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .md-mt-4 {
    margin-top: 1rem !important;
  }
  .md-mb-4 {
    margin-bottom: 1rem !important;
  }
  .md-ms-4 {
    margin-left: 1rem !important;
  }
  .md-me-4 {
    margin-right: 1rem !important;
  }
  .md-m-n4 {
    margin: -1rem !important;
  }
  .md-mx-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .md-my-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .md-mt-n4 {
    margin-top: -1rem !important;
  }
  .md-mb-n4 {
    margin-bottom: -1rem !important;
  }
  .md-ms-n4 {
    margin-left: -1rem !important;
  }
  .md-me-n4 {
    margin-right: -1rem !important;
  }
  .md-p-5 {
    padding: 1.25rem !important;
  }
  .md-px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .md-py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .md-pt-5 {
    padding-top: 1.25rem !important;
  }
  .md-pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .md-ps-5 {
    padding-left: 1.25rem !important;
  }
  .md-pe-5 {
    padding-right: 1.25rem !important;
  }
  .md-m-5 {
    margin: 1.25rem !important;
  }
  .md-mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .md-my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .md-mt-5 {
    margin-top: 1.25rem !important;
  }
  .md-mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .md-ms-5 {
    margin-left: 1.25rem !important;
  }
  .md-me-5 {
    margin-right: 1.25rem !important;
  }
  .md-m-n5 {
    margin: -1.25rem !important;
  }
  .md-mx-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .md-my-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .md-mt-n5 {
    margin-top: -1.25rem !important;
  }
  .md-mb-n5 {
    margin-bottom: -1.25rem !important;
  }
  .md-ms-n5 {
    margin-left: -1.25rem !important;
  }
  .md-me-n5 {
    margin-right: -1.25rem !important;
  }
  .md-p-6 {
    padding: 1.5rem !important;
  }
  .md-px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .md-py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .md-pt-6 {
    padding-top: 1.5rem !important;
  }
  .md-pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .md-ps-6 {
    padding-left: 1.5rem !important;
  }
  .md-pe-6 {
    padding-right: 1.5rem !important;
  }
  .md-m-6 {
    margin: 1.5rem !important;
  }
  .md-mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .md-my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .md-mt-6 {
    margin-top: 1.5rem !important;
  }
  .md-mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .md-ms-6 {
    margin-left: 1.5rem !important;
  }
  .md-me-6 {
    margin-right: 1.5rem !important;
  }
  .md-m-n6 {
    margin: -1.5rem !important;
  }
  .md-mx-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .md-my-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .md-mt-n6 {
    margin-top: -1.5rem !important;
  }
  .md-mb-n6 {
    margin-bottom: -1.5rem !important;
  }
  .md-ms-n6 {
    margin-left: -1.5rem !important;
  }
  .md-me-n6 {
    margin-right: -1.5rem !important;
  }
  .md-p-8 {
    padding: 2rem !important;
  }
  .md-px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .md-py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .md-pt-8 {
    padding-top: 2rem !important;
  }
  .md-pb-8 {
    padding-bottom: 2rem !important;
  }
  .md-ps-8 {
    padding-left: 2rem !important;
  }
  .md-pe-8 {
    padding-right: 2rem !important;
  }
  .md-m-8 {
    margin: 2rem !important;
  }
  .md-mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .md-my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .md-mt-8 {
    margin-top: 2rem !important;
  }
  .md-mb-8 {
    margin-bottom: 2rem !important;
  }
  .md-ms-8 {
    margin-left: 2rem !important;
  }
  .md-me-8 {
    margin-right: 2rem !important;
  }
  .md-m-n8 {
    margin: -2rem !important;
  }
  .md-mx-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .md-my-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .md-mt-n8 {
    margin-top: -2rem !important;
  }
  .md-mb-n8 {
    margin-bottom: -2rem !important;
  }
  .md-ms-n8 {
    margin-left: -2rem !important;
  }
  .md-me-n8 {
    margin-right: -2rem !important;
  }
  .md-p-10 {
    padding: 2.5rem !important;
  }
  .md-px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .md-py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .md-pt-10 {
    padding-top: 2.5rem !important;
  }
  .md-pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .md-ps-10 {
    padding-left: 2.5rem !important;
  }
  .md-pe-10 {
    padding-right: 2.5rem !important;
  }
  .md-m-10 {
    margin: 2.5rem !important;
  }
  .md-mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .md-my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .md-mt-10 {
    margin-top: 2.5rem !important;
  }
  .md-mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .md-ms-10 {
    margin-left: 2.5rem !important;
  }
  .md-me-10 {
    margin-right: 2.5rem !important;
  }
  .md-m-n10 {
    margin: -2.5rem !important;
  }
  .md-mx-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .md-my-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .md-mt-n10 {
    margin-top: -2.5rem !important;
  }
  .md-mb-n10 {
    margin-bottom: -2.5rem !important;
  }
  .md-ms-n10 {
    margin-left: -2.5rem !important;
  }
  .md-me-n10 {
    margin-right: -2.5rem !important;
  }
  .md-p-12 {
    padding: 3rem !important;
  }
  .md-px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .md-py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .md-pt-12 {
    padding-top: 3rem !important;
  }
  .md-pb-12 {
    padding-bottom: 3rem !important;
  }
  .md-ps-12 {
    padding-left: 3rem !important;
  }
  .md-pe-12 {
    padding-right: 3rem !important;
  }
  .md-m-12 {
    margin: 3rem !important;
  }
  .md-mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .md-my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .md-mt-12 {
    margin-top: 3rem !important;
  }
  .md-mb-12 {
    margin-bottom: 3rem !important;
  }
  .md-ms-12 {
    margin-left: 3rem !important;
  }
  .md-me-12 {
    margin-right: 3rem !important;
  }
  .md-m-n12 {
    margin: -3rem !important;
  }
  .md-mx-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .md-my-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .md-mt-n12 {
    margin-top: -3rem !important;
  }
  .md-mb-n12 {
    margin-bottom: -3rem !important;
  }
  .md-ms-n12 {
    margin-left: -3rem !important;
  }
  .md-me-n12 {
    margin-right: -3rem !important;
  }
  .md-p-16 {
    padding: 4rem !important;
  }
  .md-px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .md-py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .md-pt-16 {
    padding-top: 4rem !important;
  }
  .md-pb-16 {
    padding-bottom: 4rem !important;
  }
  .md-ps-16 {
    padding-left: 4rem !important;
  }
  .md-pe-16 {
    padding-right: 4rem !important;
  }
  .md-m-16 {
    margin: 4rem !important;
  }
  .md-mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .md-my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .md-mt-16 {
    margin-top: 4rem !important;
  }
  .md-mb-16 {
    margin-bottom: 4rem !important;
  }
  .md-ms-16 {
    margin-left: 4rem !important;
  }
  .md-me-16 {
    margin-right: 4rem !important;
  }
  .md-m-n16 {
    margin: -4rem !important;
  }
  .md-mx-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .md-my-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .md-mt-n16 {
    margin-top: -4rem !important;
  }
  .md-mb-n16 {
    margin-bottom: -4rem !important;
  }
  .md-ms-n16 {
    margin-left: -4rem !important;
  }
  .md-me-n16 {
    margin-right: -4rem !important;
  }
  .md-p-20 {
    padding: 5rem !important;
  }
  .md-px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .md-py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .md-pt-20 {
    padding-top: 5rem !important;
  }
  .md-pb-20 {
    padding-bottom: 5rem !important;
  }
  .md-ps-20 {
    padding-left: 5rem !important;
  }
  .md-pe-20 {
    padding-right: 5rem !important;
  }
  .md-m-20 {
    margin: 5rem !important;
  }
  .md-mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .md-my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .md-mt-20 {
    margin-top: 5rem !important;
  }
  .md-mb-20 {
    margin-bottom: 5rem !important;
  }
  .md-ms-20 {
    margin-left: 5rem !important;
  }
  .md-me-20 {
    margin-right: 5rem !important;
  }
  .md-m-n20 {
    margin: -5rem !important;
  }
  .md-mx-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .md-my-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .md-mt-n20 {
    margin-top: -5rem !important;
  }
  .md-mb-n20 {
    margin-bottom: -5rem !important;
  }
  .md-ms-n20 {
    margin-left: -5rem !important;
  }
  .md-me-n20 {
    margin-right: -5rem !important;
  }
  .md-p-24 {
    padding: 6rem !important;
  }
  .md-px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .md-py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .md-pt-24 {
    padding-top: 6rem !important;
  }
  .md-pb-24 {
    padding-bottom: 6rem !important;
  }
  .md-ps-24 {
    padding-left: 6rem !important;
  }
  .md-pe-24 {
    padding-right: 6rem !important;
  }
  .md-m-24 {
    margin: 6rem !important;
  }
  .md-mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .md-my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .md-mt-24 {
    margin-top: 6rem !important;
  }
  .md-mb-24 {
    margin-bottom: 6rem !important;
  }
  .md-ms-24 {
    margin-left: 6rem !important;
  }
  .md-me-24 {
    margin-right: 6rem !important;
  }
  .md-m-n24 {
    margin: -6rem !important;
  }
  .md-mx-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .md-my-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .md-mt-n24 {
    margin-top: -6rem !important;
  }
  .md-mb-n24 {
    margin-bottom: -6rem !important;
  }
  .md-ms-n24 {
    margin-left: -6rem !important;
  }
  .md-me-n24 {
    margin-right: -6rem !important;
  }
  .md-p-32 {
    padding: 8rem !important;
  }
  .md-px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .md-py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .md-pt-32 {
    padding-top: 8rem !important;
  }
  .md-pb-32 {
    padding-bottom: 8rem !important;
  }
  .md-ps-32 {
    padding-left: 8rem !important;
  }
  .md-pe-32 {
    padding-right: 8rem !important;
  }
  .md-m-32 {
    margin: 8rem !important;
  }
  .md-mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .md-my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .md-mt-32 {
    margin-top: 8rem !important;
  }
  .md-mb-32 {
    margin-bottom: 8rem !important;
  }
  .md-ms-32 {
    margin-left: 8rem !important;
  }
  .md-me-32 {
    margin-right: 8rem !important;
  }
  .md-m-n32 {
    margin: -8rem !important;
  }
  .md-mx-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .md-my-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .md-mt-n32 {
    margin-top: -8rem !important;
  }
  .md-mb-n32 {
    margin-bottom: -8rem !important;
  }
  .md-ms-n32 {
    margin-left: -8rem !important;
  }
  .md-me-n32 {
    margin-right: -8rem !important;
  }
  .md-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .md-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .md-mt-auto {
    margin-top: auto !important;
  }
  .md-mb-auto {
    margin-bottom: auto !important;
  }
  .md-ms-auto {
    margin-left: auto !important;
  }
  .md-me-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 992px) {
  .lg-p-0 {
    padding: 0 !important;
  }
  .lg-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .lg-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .lg-pt-0 {
    padding-top: 0 !important;
  }
  .lg-pb-0 {
    padding-bottom: 0 !important;
  }
  .lg-ps-0 {
    padding-left: 0 !important;
  }
  .lg-pe-0 {
    padding-right: 0 !important;
  }
  .lg-m-0 {
    margin: 0 !important;
  }
  .lg-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .lg-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .lg-mt-0 {
    margin-top: 0 !important;
  }
  .lg-mb-0 {
    margin-bottom: 0 !important;
  }
  .lg-ms-0 {
    margin-left: 0 !important;
  }
  .lg-me-0 {
    margin-right: 0 !important;
  }
  .lg-p-1 {
    padding: 0.25rem !important;
  }
  .lg-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .lg-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .lg-pt-1 {
    padding-top: 0.25rem !important;
  }
  .lg-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .lg-ps-1 {
    padding-left: 0.25rem !important;
  }
  .lg-pe-1 {
    padding-right: 0.25rem !important;
  }
  .lg-m-1 {
    margin: 0.25rem !important;
  }
  .lg-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .lg-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .lg-mt-1 {
    margin-top: 0.25rem !important;
  }
  .lg-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .lg-ms-1 {
    margin-left: 0.25rem !important;
  }
  .lg-me-1 {
    margin-right: 0.25rem !important;
  }
  .lg-m-n1 {
    margin: -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-mt-n1 {
    margin-top: -0.25rem !important;
  }
  .lg-mb-n1 {
    margin-bottom: -0.25rem !important;
  }
  .lg-ms-n1 {
    margin-left: -0.25rem !important;
  }
  .lg-me-n1 {
    margin-right: -0.25rem !important;
  }
  .lg-p-2 {
    padding: 0.5rem !important;
  }
  .lg-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .lg-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .lg-pt-2 {
    padding-top: 0.5rem !important;
  }
  .lg-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .lg-ps-2 {
    padding-left: 0.5rem !important;
  }
  .lg-pe-2 {
    padding-right: 0.5rem !important;
  }
  .lg-m-2 {
    margin: 0.5rem !important;
  }
  .lg-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .lg-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .lg-mt-2 {
    margin-top: 0.5rem !important;
  }
  .lg-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .lg-ms-2 {
    margin-left: 0.5rem !important;
  }
  .lg-me-2 {
    margin-right: 0.5rem !important;
  }
  .lg-m-n2 {
    margin: -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-mt-n2 {
    margin-top: -0.5rem !important;
  }
  .lg-mb-n2 {
    margin-bottom: -0.5rem !important;
  }
  .lg-ms-n2 {
    margin-left: -0.5rem !important;
  }
  .lg-me-n2 {
    margin-right: -0.5rem !important;
  }
  .lg-p-3 {
    padding: 0.75rem !important;
  }
  .lg-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .lg-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .lg-pt-3 {
    padding-top: 0.75rem !important;
  }
  .lg-pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .lg-ps-3 {
    padding-left: 0.75rem !important;
  }
  .lg-pe-3 {
    padding-right: 0.75rem !important;
  }
  .lg-m-3 {
    margin: 0.75rem !important;
  }
  .lg-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .lg-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .lg-mt-3 {
    margin-top: 0.75rem !important;
  }
  .lg-mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .lg-ms-3 {
    margin-left: 0.75rem !important;
  }
  .lg-me-3 {
    margin-right: 0.75rem !important;
  }
  .lg-m-n3 {
    margin: -0.75rem !important;
  }
  .lg-mx-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .lg-my-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .lg-mt-n3 {
    margin-top: -0.75rem !important;
  }
  .lg-mb-n3 {
    margin-bottom: -0.75rem !important;
  }
  .lg-ms-n3 {
    margin-left: -0.75rem !important;
  }
  .lg-me-n3 {
    margin-right: -0.75rem !important;
  }
  .lg-p-4 {
    padding: 1rem !important;
  }
  .lg-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .lg-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .lg-pt-4 {
    padding-top: 1rem !important;
  }
  .lg-pb-4 {
    padding-bottom: 1rem !important;
  }
  .lg-ps-4 {
    padding-left: 1rem !important;
  }
  .lg-pe-4 {
    padding-right: 1rem !important;
  }
  .lg-m-4 {
    margin: 1rem !important;
  }
  .lg-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .lg-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .lg-mt-4 {
    margin-top: 1rem !important;
  }
  .lg-mb-4 {
    margin-bottom: 1rem !important;
  }
  .lg-ms-4 {
    margin-left: 1rem !important;
  }
  .lg-me-4 {
    margin-right: 1rem !important;
  }
  .lg-m-n4 {
    margin: -1rem !important;
  }
  .lg-mx-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .lg-my-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .lg-mt-n4 {
    margin-top: -1rem !important;
  }
  .lg-mb-n4 {
    margin-bottom: -1rem !important;
  }
  .lg-ms-n4 {
    margin-left: -1rem !important;
  }
  .lg-me-n4 {
    margin-right: -1rem !important;
  }
  .lg-p-5 {
    padding: 1.25rem !important;
  }
  .lg-px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .lg-py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .lg-pt-5 {
    padding-top: 1.25rem !important;
  }
  .lg-pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .lg-ps-5 {
    padding-left: 1.25rem !important;
  }
  .lg-pe-5 {
    padding-right: 1.25rem !important;
  }
  .lg-m-5 {
    margin: 1.25rem !important;
  }
  .lg-mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .lg-my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .lg-mt-5 {
    margin-top: 1.25rem !important;
  }
  .lg-mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .lg-ms-5 {
    margin-left: 1.25rem !important;
  }
  .lg-me-5 {
    margin-right: 1.25rem !important;
  }
  .lg-m-n5 {
    margin: -1.25rem !important;
  }
  .lg-mx-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .lg-my-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .lg-mt-n5 {
    margin-top: -1.25rem !important;
  }
  .lg-mb-n5 {
    margin-bottom: -1.25rem !important;
  }
  .lg-ms-n5 {
    margin-left: -1.25rem !important;
  }
  .lg-me-n5 {
    margin-right: -1.25rem !important;
  }
  .lg-p-6 {
    padding: 1.5rem !important;
  }
  .lg-px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .lg-py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .lg-pt-6 {
    padding-top: 1.5rem !important;
  }
  .lg-pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .lg-ps-6 {
    padding-left: 1.5rem !important;
  }
  .lg-pe-6 {
    padding-right: 1.5rem !important;
  }
  .lg-m-6 {
    margin: 1.5rem !important;
  }
  .lg-mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .lg-my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .lg-mt-6 {
    margin-top: 1.5rem !important;
  }
  .lg-mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .lg-ms-6 {
    margin-left: 1.5rem !important;
  }
  .lg-me-6 {
    margin-right: 1.5rem !important;
  }
  .lg-m-n6 {
    margin: -1.5rem !important;
  }
  .lg-mx-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .lg-my-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .lg-mt-n6 {
    margin-top: -1.5rem !important;
  }
  .lg-mb-n6 {
    margin-bottom: -1.5rem !important;
  }
  .lg-ms-n6 {
    margin-left: -1.5rem !important;
  }
  .lg-me-n6 {
    margin-right: -1.5rem !important;
  }
  .lg-p-8 {
    padding: 2rem !important;
  }
  .lg-px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .lg-py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .lg-pt-8 {
    padding-top: 2rem !important;
  }
  .lg-pb-8 {
    padding-bottom: 2rem !important;
  }
  .lg-ps-8 {
    padding-left: 2rem !important;
  }
  .lg-pe-8 {
    padding-right: 2rem !important;
  }
  .lg-m-8 {
    margin: 2rem !important;
  }
  .lg-mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .lg-my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .lg-mt-8 {
    margin-top: 2rem !important;
  }
  .lg-mb-8 {
    margin-bottom: 2rem !important;
  }
  .lg-ms-8 {
    margin-left: 2rem !important;
  }
  .lg-me-8 {
    margin-right: 2rem !important;
  }
  .lg-m-n8 {
    margin: -2rem !important;
  }
  .lg-mx-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .lg-my-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .lg-mt-n8 {
    margin-top: -2rem !important;
  }
  .lg-mb-n8 {
    margin-bottom: -2rem !important;
  }
  .lg-ms-n8 {
    margin-left: -2rem !important;
  }
  .lg-me-n8 {
    margin-right: -2rem !important;
  }
  .lg-p-10 {
    padding: 2.5rem !important;
  }
  .lg-px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .lg-py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .lg-pt-10 {
    padding-top: 2.5rem !important;
  }
  .lg-pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .lg-ps-10 {
    padding-left: 2.5rem !important;
  }
  .lg-pe-10 {
    padding-right: 2.5rem !important;
  }
  .lg-m-10 {
    margin: 2.5rem !important;
  }
  .lg-mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .lg-my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .lg-mt-10 {
    margin-top: 2.5rem !important;
  }
  .lg-mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .lg-ms-10 {
    margin-left: 2.5rem !important;
  }
  .lg-me-10 {
    margin-right: 2.5rem !important;
  }
  .lg-m-n10 {
    margin: -2.5rem !important;
  }
  .lg-mx-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .lg-my-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .lg-mt-n10 {
    margin-top: -2.5rem !important;
  }
  .lg-mb-n10 {
    margin-bottom: -2.5rem !important;
  }
  .lg-ms-n10 {
    margin-left: -2.5rem !important;
  }
  .lg-me-n10 {
    margin-right: -2.5rem !important;
  }
  .lg-p-12 {
    padding: 3rem !important;
  }
  .lg-px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .lg-py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .lg-pt-12 {
    padding-top: 3rem !important;
  }
  .lg-pb-12 {
    padding-bottom: 3rem !important;
  }
  .lg-ps-12 {
    padding-left: 3rem !important;
  }
  .lg-pe-12 {
    padding-right: 3rem !important;
  }
  .lg-m-12 {
    margin: 3rem !important;
  }
  .lg-mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .lg-my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .lg-mt-12 {
    margin-top: 3rem !important;
  }
  .lg-mb-12 {
    margin-bottom: 3rem !important;
  }
  .lg-ms-12 {
    margin-left: 3rem !important;
  }
  .lg-me-12 {
    margin-right: 3rem !important;
  }
  .lg-m-n12 {
    margin: -3rem !important;
  }
  .lg-mx-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .lg-my-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .lg-mt-n12 {
    margin-top: -3rem !important;
  }
  .lg-mb-n12 {
    margin-bottom: -3rem !important;
  }
  .lg-ms-n12 {
    margin-left: -3rem !important;
  }
  .lg-me-n12 {
    margin-right: -3rem !important;
  }
  .lg-p-16 {
    padding: 4rem !important;
  }
  .lg-px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .lg-py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .lg-pt-16 {
    padding-top: 4rem !important;
  }
  .lg-pb-16 {
    padding-bottom: 4rem !important;
  }
  .lg-ps-16 {
    padding-left: 4rem !important;
  }
  .lg-pe-16 {
    padding-right: 4rem !important;
  }
  .lg-m-16 {
    margin: 4rem !important;
  }
  .lg-mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .lg-my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .lg-mt-16 {
    margin-top: 4rem !important;
  }
  .lg-mb-16 {
    margin-bottom: 4rem !important;
  }
  .lg-ms-16 {
    margin-left: 4rem !important;
  }
  .lg-me-16 {
    margin-right: 4rem !important;
  }
  .lg-m-n16 {
    margin: -4rem !important;
  }
  .lg-mx-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .lg-my-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .lg-mt-n16 {
    margin-top: -4rem !important;
  }
  .lg-mb-n16 {
    margin-bottom: -4rem !important;
  }
  .lg-ms-n16 {
    margin-left: -4rem !important;
  }
  .lg-me-n16 {
    margin-right: -4rem !important;
  }
  .lg-p-20 {
    padding: 5rem !important;
  }
  .lg-px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .lg-py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .lg-pt-20 {
    padding-top: 5rem !important;
  }
  .lg-pb-20 {
    padding-bottom: 5rem !important;
  }
  .lg-ps-20 {
    padding-left: 5rem !important;
  }
  .lg-pe-20 {
    padding-right: 5rem !important;
  }
  .lg-m-20 {
    margin: 5rem !important;
  }
  .lg-mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .lg-my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .lg-mt-20 {
    margin-top: 5rem !important;
  }
  .lg-mb-20 {
    margin-bottom: 5rem !important;
  }
  .lg-ms-20 {
    margin-left: 5rem !important;
  }
  .lg-me-20 {
    margin-right: 5rem !important;
  }
  .lg-m-n20 {
    margin: -5rem !important;
  }
  .lg-mx-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .lg-my-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .lg-mt-n20 {
    margin-top: -5rem !important;
  }
  .lg-mb-n20 {
    margin-bottom: -5rem !important;
  }
  .lg-ms-n20 {
    margin-left: -5rem !important;
  }
  .lg-me-n20 {
    margin-right: -5rem !important;
  }
  .lg-p-24 {
    padding: 6rem !important;
  }
  .lg-px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .lg-py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .lg-pt-24 {
    padding-top: 6rem !important;
  }
  .lg-pb-24 {
    padding-bottom: 6rem !important;
  }
  .lg-ps-24 {
    padding-left: 6rem !important;
  }
  .lg-pe-24 {
    padding-right: 6rem !important;
  }
  .lg-m-24 {
    margin: 6rem !important;
  }
  .lg-mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .lg-my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .lg-mt-24 {
    margin-top: 6rem !important;
  }
  .lg-mb-24 {
    margin-bottom: 6rem !important;
  }
  .lg-ms-24 {
    margin-left: 6rem !important;
  }
  .lg-me-24 {
    margin-right: 6rem !important;
  }
  .lg-m-n24 {
    margin: -6rem !important;
  }
  .lg-mx-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .lg-my-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .lg-mt-n24 {
    margin-top: -6rem !important;
  }
  .lg-mb-n24 {
    margin-bottom: -6rem !important;
  }
  .lg-ms-n24 {
    margin-left: -6rem !important;
  }
  .lg-me-n24 {
    margin-right: -6rem !important;
  }
  .lg-p-32 {
    padding: 8rem !important;
  }
  .lg-px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .lg-py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .lg-pt-32 {
    padding-top: 8rem !important;
  }
  .lg-pb-32 {
    padding-bottom: 8rem !important;
  }
  .lg-ps-32 {
    padding-left: 8rem !important;
  }
  .lg-pe-32 {
    padding-right: 8rem !important;
  }
  .lg-m-32 {
    margin: 8rem !important;
  }
  .lg-mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .lg-my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .lg-mt-32 {
    margin-top: 8rem !important;
  }
  .lg-mb-32 {
    margin-bottom: 8rem !important;
  }
  .lg-ms-32 {
    margin-left: 8rem !important;
  }
  .lg-me-32 {
    margin-right: 8rem !important;
  }
  .lg-m-n32 {
    margin: -8rem !important;
  }
  .lg-mx-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .lg-my-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .lg-mt-n32 {
    margin-top: -8rem !important;
  }
  .lg-mb-n32 {
    margin-bottom: -8rem !important;
  }
  .lg-ms-n32 {
    margin-left: -8rem !important;
  }
  .lg-me-n32 {
    margin-right: -8rem !important;
  }
  .lg-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .lg-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .lg-mt-auto {
    margin-top: auto !important;
  }
  .lg-mb-auto {
    margin-bottom: auto !important;
  }
  .lg-ms-auto {
    margin-left: auto !important;
  }
  .lg-me-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1200px) {
  .xl-p-0 {
    padding: 0 !important;
  }
  .xl-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xl-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xl-pt-0 {
    padding-top: 0 !important;
  }
  .xl-pb-0 {
    padding-bottom: 0 !important;
  }
  .xl-ps-0 {
    padding-left: 0 !important;
  }
  .xl-pe-0 {
    padding-right: 0 !important;
  }
  .xl-m-0 {
    margin: 0 !important;
  }
  .xl-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xl-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xl-mt-0 {
    margin-top: 0 !important;
  }
  .xl-mb-0 {
    margin-bottom: 0 !important;
  }
  .xl-ms-0 {
    margin-left: 0 !important;
  }
  .xl-me-0 {
    margin-right: 0 !important;
  }
  .xl-p-1 {
    padding: 0.25rem !important;
  }
  .xl-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xl-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xl-pt-1 {
    padding-top: 0.25rem !important;
  }
  .xl-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xl-ps-1 {
    padding-left: 0.25rem !important;
  }
  .xl-pe-1 {
    padding-right: 0.25rem !important;
  }
  .xl-m-1 {
    margin: 0.25rem !important;
  }
  .xl-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xl-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .xl-mt-1 {
    margin-top: 0.25rem !important;
  }
  .xl-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xl-ms-1 {
    margin-left: 0.25rem !important;
  }
  .xl-me-1 {
    margin-right: 0.25rem !important;
  }
  .xl-m-n1 {
    margin: -0.25rem !important;
  }
  .xl-mx-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .xl-my-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .xl-mt-n1 {
    margin-top: -0.25rem !important;
  }
  .xl-mb-n1 {
    margin-bottom: -0.25rem !important;
  }
  .xl-ms-n1 {
    margin-left: -0.25rem !important;
  }
  .xl-me-n1 {
    margin-right: -0.25rem !important;
  }
  .xl-p-2 {
    padding: 0.5rem !important;
  }
  .xl-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xl-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xl-pt-2 {
    padding-top: 0.5rem !important;
  }
  .xl-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xl-ps-2 {
    padding-left: 0.5rem !important;
  }
  .xl-pe-2 {
    padding-right: 0.5rem !important;
  }
  .xl-m-2 {
    margin: 0.5rem !important;
  }
  .xl-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xl-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xl-mt-2 {
    margin-top: 0.5rem !important;
  }
  .xl-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xl-ms-2 {
    margin-left: 0.5rem !important;
  }
  .xl-me-2 {
    margin-right: 0.5rem !important;
  }
  .xl-m-n2 {
    margin: -0.5rem !important;
  }
  .xl-mx-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xl-my-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .xl-mt-n2 {
    margin-top: -0.5rem !important;
  }
  .xl-mb-n2 {
    margin-bottom: -0.5rem !important;
  }
  .xl-ms-n2 {
    margin-left: -0.5rem !important;
  }
  .xl-me-n2 {
    margin-right: -0.5rem !important;
  }
  .xl-p-3 {
    padding: 0.75rem !important;
  }
  .xl-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .xl-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xl-pt-3 {
    padding-top: 0.75rem !important;
  }
  .xl-pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .xl-ps-3 {
    padding-left: 0.75rem !important;
  }
  .xl-pe-3 {
    padding-right: 0.75rem !important;
  }
  .xl-m-3 {
    margin: 0.75rem !important;
  }
  .xl-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .xl-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .xl-mt-3 {
    margin-top: 0.75rem !important;
  }
  .xl-mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .xl-ms-3 {
    margin-left: 0.75rem !important;
  }
  .xl-me-3 {
    margin-right: 0.75rem !important;
  }
  .xl-m-n3 {
    margin: -0.75rem !important;
  }
  .xl-mx-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .xl-my-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .xl-mt-n3 {
    margin-top: -0.75rem !important;
  }
  .xl-mb-n3 {
    margin-bottom: -0.75rem !important;
  }
  .xl-ms-n3 {
    margin-left: -0.75rem !important;
  }
  .xl-me-n3 {
    margin-right: -0.75rem !important;
  }
  .xl-p-4 {
    padding: 1rem !important;
  }
  .xl-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xl-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xl-pt-4 {
    padding-top: 1rem !important;
  }
  .xl-pb-4 {
    padding-bottom: 1rem !important;
  }
  .xl-ps-4 {
    padding-left: 1rem !important;
  }
  .xl-pe-4 {
    padding-right: 1rem !important;
  }
  .xl-m-4 {
    margin: 1rem !important;
  }
  .xl-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xl-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xl-mt-4 {
    margin-top: 1rem !important;
  }
  .xl-mb-4 {
    margin-bottom: 1rem !important;
  }
  .xl-ms-4 {
    margin-left: 1rem !important;
  }
  .xl-me-4 {
    margin-right: 1rem !important;
  }
  .xl-m-n4 {
    margin: -1rem !important;
  }
  .xl-mx-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .xl-my-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .xl-mt-n4 {
    margin-top: -1rem !important;
  }
  .xl-mb-n4 {
    margin-bottom: -1rem !important;
  }
  .xl-ms-n4 {
    margin-left: -1rem !important;
  }
  .xl-me-n4 {
    margin-right: -1rem !important;
  }
  .xl-p-5 {
    padding: 1.25rem !important;
  }
  .xl-px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .xl-py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .xl-pt-5 {
    padding-top: 1.25rem !important;
  }
  .xl-pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .xl-ps-5 {
    padding-left: 1.25rem !important;
  }
  .xl-pe-5 {
    padding-right: 1.25rem !important;
  }
  .xl-m-5 {
    margin: 1.25rem !important;
  }
  .xl-mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .xl-my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .xl-mt-5 {
    margin-top: 1.25rem !important;
  }
  .xl-mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .xl-ms-5 {
    margin-left: 1.25rem !important;
  }
  .xl-me-5 {
    margin-right: 1.25rem !important;
  }
  .xl-m-n5 {
    margin: -1.25rem !important;
  }
  .xl-mx-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .xl-my-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .xl-mt-n5 {
    margin-top: -1.25rem !important;
  }
  .xl-mb-n5 {
    margin-bottom: -1.25rem !important;
  }
  .xl-ms-n5 {
    margin-left: -1.25rem !important;
  }
  .xl-me-n5 {
    margin-right: -1.25rem !important;
  }
  .xl-p-6 {
    padding: 1.5rem !important;
  }
  .xl-px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xl-py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xl-pt-6 {
    padding-top: 1.5rem !important;
  }
  .xl-pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .xl-ps-6 {
    padding-left: 1.5rem !important;
  }
  .xl-pe-6 {
    padding-right: 1.5rem !important;
  }
  .xl-m-6 {
    margin: 1.5rem !important;
  }
  .xl-mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xl-my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xl-mt-6 {
    margin-top: 1.5rem !important;
  }
  .xl-mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .xl-ms-6 {
    margin-left: 1.5rem !important;
  }
  .xl-me-6 {
    margin-right: 1.5rem !important;
  }
  .xl-m-n6 {
    margin: -1.5rem !important;
  }
  .xl-mx-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .xl-my-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .xl-mt-n6 {
    margin-top: -1.5rem !important;
  }
  .xl-mb-n6 {
    margin-bottom: -1.5rem !important;
  }
  .xl-ms-n6 {
    margin-left: -1.5rem !important;
  }
  .xl-me-n6 {
    margin-right: -1.5rem !important;
  }
  .xl-p-8 {
    padding: 2rem !important;
  }
  .xl-px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xl-py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xl-pt-8 {
    padding-top: 2rem !important;
  }
  .xl-pb-8 {
    padding-bottom: 2rem !important;
  }
  .xl-ps-8 {
    padding-left: 2rem !important;
  }
  .xl-pe-8 {
    padding-right: 2rem !important;
  }
  .xl-m-8 {
    margin: 2rem !important;
  }
  .xl-mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xl-my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xl-mt-8 {
    margin-top: 2rem !important;
  }
  .xl-mb-8 {
    margin-bottom: 2rem !important;
  }
  .xl-ms-8 {
    margin-left: 2rem !important;
  }
  .xl-me-8 {
    margin-right: 2rem !important;
  }
  .xl-m-n8 {
    margin: -2rem !important;
  }
  .xl-mx-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .xl-my-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .xl-mt-n8 {
    margin-top: -2rem !important;
  }
  .xl-mb-n8 {
    margin-bottom: -2rem !important;
  }
  .xl-ms-n8 {
    margin-left: -2rem !important;
  }
  .xl-me-n8 {
    margin-right: -2rem !important;
  }
  .xl-p-10 {
    padding: 2.5rem !important;
  }
  .xl-px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .xl-py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xl-pt-10 {
    padding-top: 2.5rem !important;
  }
  .xl-pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .xl-ps-10 {
    padding-left: 2.5rem !important;
  }
  .xl-pe-10 {
    padding-right: 2.5rem !important;
  }
  .xl-m-10 {
    margin: 2.5rem !important;
  }
  .xl-mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xl-my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xl-mt-10 {
    margin-top: 2.5rem !important;
  }
  .xl-mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .xl-ms-10 {
    margin-left: 2.5rem !important;
  }
  .xl-me-10 {
    margin-right: 2.5rem !important;
  }
  .xl-m-n10 {
    margin: -2.5rem !important;
  }
  .xl-mx-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .xl-my-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .xl-mt-n10 {
    margin-top: -2.5rem !important;
  }
  .xl-mb-n10 {
    margin-bottom: -2.5rem !important;
  }
  .xl-ms-n10 {
    margin-left: -2.5rem !important;
  }
  .xl-me-n10 {
    margin-right: -2.5rem !important;
  }
  .xl-p-12 {
    padding: 3rem !important;
  }
  .xl-px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xl-py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xl-pt-12 {
    padding-top: 3rem !important;
  }
  .xl-pb-12 {
    padding-bottom: 3rem !important;
  }
  .xl-ps-12 {
    padding-left: 3rem !important;
  }
  .xl-pe-12 {
    padding-right: 3rem !important;
  }
  .xl-m-12 {
    margin: 3rem !important;
  }
  .xl-mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xl-my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xl-mt-12 {
    margin-top: 3rem !important;
  }
  .xl-mb-12 {
    margin-bottom: 3rem !important;
  }
  .xl-ms-12 {
    margin-left: 3rem !important;
  }
  .xl-me-12 {
    margin-right: 3rem !important;
  }
  .xl-m-n12 {
    margin: -3rem !important;
  }
  .xl-mx-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .xl-my-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .xl-mt-n12 {
    margin-top: -3rem !important;
  }
  .xl-mb-n12 {
    margin-bottom: -3rem !important;
  }
  .xl-ms-n12 {
    margin-left: -3rem !important;
  }
  .xl-me-n12 {
    margin-right: -3rem !important;
  }
  .xl-p-16 {
    padding: 4rem !important;
  }
  .xl-px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xl-py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xl-pt-16 {
    padding-top: 4rem !important;
  }
  .xl-pb-16 {
    padding-bottom: 4rem !important;
  }
  .xl-ps-16 {
    padding-left: 4rem !important;
  }
  .xl-pe-16 {
    padding-right: 4rem !important;
  }
  .xl-m-16 {
    margin: 4rem !important;
  }
  .xl-mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xl-my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xl-mt-16 {
    margin-top: 4rem !important;
  }
  .xl-mb-16 {
    margin-bottom: 4rem !important;
  }
  .xl-ms-16 {
    margin-left: 4rem !important;
  }
  .xl-me-16 {
    margin-right: 4rem !important;
  }
  .xl-m-n16 {
    margin: -4rem !important;
  }
  .xl-mx-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .xl-my-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .xl-mt-n16 {
    margin-top: -4rem !important;
  }
  .xl-mb-n16 {
    margin-bottom: -4rem !important;
  }
  .xl-ms-n16 {
    margin-left: -4rem !important;
  }
  .xl-me-n16 {
    margin-right: -4rem !important;
  }
  .xl-p-20 {
    padding: 5rem !important;
  }
  .xl-px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xl-py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xl-pt-20 {
    padding-top: 5rem !important;
  }
  .xl-pb-20 {
    padding-bottom: 5rem !important;
  }
  .xl-ps-20 {
    padding-left: 5rem !important;
  }
  .xl-pe-20 {
    padding-right: 5rem !important;
  }
  .xl-m-20 {
    margin: 5rem !important;
  }
  .xl-mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xl-my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xl-mt-20 {
    margin-top: 5rem !important;
  }
  .xl-mb-20 {
    margin-bottom: 5rem !important;
  }
  .xl-ms-20 {
    margin-left: 5rem !important;
  }
  .xl-me-20 {
    margin-right: 5rem !important;
  }
  .xl-m-n20 {
    margin: -5rem !important;
  }
  .xl-mx-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .xl-my-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .xl-mt-n20 {
    margin-top: -5rem !important;
  }
  .xl-mb-n20 {
    margin-bottom: -5rem !important;
  }
  .xl-ms-n20 {
    margin-left: -5rem !important;
  }
  .xl-me-n20 {
    margin-right: -5rem !important;
  }
  .xl-p-24 {
    padding: 6rem !important;
  }
  .xl-px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xl-py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xl-pt-24 {
    padding-top: 6rem !important;
  }
  .xl-pb-24 {
    padding-bottom: 6rem !important;
  }
  .xl-ps-24 {
    padding-left: 6rem !important;
  }
  .xl-pe-24 {
    padding-right: 6rem !important;
  }
  .xl-m-24 {
    margin: 6rem !important;
  }
  .xl-mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xl-my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xl-mt-24 {
    margin-top: 6rem !important;
  }
  .xl-mb-24 {
    margin-bottom: 6rem !important;
  }
  .xl-ms-24 {
    margin-left: 6rem !important;
  }
  .xl-me-24 {
    margin-right: 6rem !important;
  }
  .xl-m-n24 {
    margin: -6rem !important;
  }
  .xl-mx-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .xl-my-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .xl-mt-n24 {
    margin-top: -6rem !important;
  }
  .xl-mb-n24 {
    margin-bottom: -6rem !important;
  }
  .xl-ms-n24 {
    margin-left: -6rem !important;
  }
  .xl-me-n24 {
    margin-right: -6rem !important;
  }
  .xl-p-32 {
    padding: 8rem !important;
  }
  .xl-px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xl-py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xl-pt-32 {
    padding-top: 8rem !important;
  }
  .xl-pb-32 {
    padding-bottom: 8rem !important;
  }
  .xl-ps-32 {
    padding-left: 8rem !important;
  }
  .xl-pe-32 {
    padding-right: 8rem !important;
  }
  .xl-m-32 {
    margin: 8rem !important;
  }
  .xl-mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xl-my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xl-mt-32 {
    margin-top: 8rem !important;
  }
  .xl-mb-32 {
    margin-bottom: 8rem !important;
  }
  .xl-ms-32 {
    margin-left: 8rem !important;
  }
  .xl-me-32 {
    margin-right: 8rem !important;
  }
  .xl-m-n32 {
    margin: -8rem !important;
  }
  .xl-mx-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .xl-my-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .xl-mt-n32 {
    margin-top: -8rem !important;
  }
  .xl-mb-n32 {
    margin-bottom: -8rem !important;
  }
  .xl-ms-n32 {
    margin-left: -8rem !important;
  }
  .xl-me-n32 {
    margin-right: -8rem !important;
  }
  .xl-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .xl-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .xl-mt-auto {
    margin-top: auto !important;
  }
  .xl-mb-auto {
    margin-bottom: auto !important;
  }
  .xl-ms-auto {
    margin-left: auto !important;
  }
  .xl-me-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1600px) {
  .xxl-p-0 {
    padding: 0 !important;
  }
  .xxl-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xxl-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xxl-pt-0 {
    padding-top: 0 !important;
  }
  .xxl-pb-0 {
    padding-bottom: 0 !important;
  }
  .xxl-ps-0 {
    padding-left: 0 !important;
  }
  .xxl-pe-0 {
    padding-right: 0 !important;
  }
  .xxl-m-0 {
    margin: 0 !important;
  }
  .xxl-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xxl-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xxl-mt-0 {
    margin-top: 0 !important;
  }
  .xxl-mb-0 {
    margin-bottom: 0 !important;
  }
  .xxl-ms-0 {
    margin-left: 0 !important;
  }
  .xxl-me-0 {
    margin-right: 0 !important;
  }
  .xxl-p-1 {
    padding: 0.25rem !important;
  }
  .xxl-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xxl-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xxl-pt-1 {
    padding-top: 0.25rem !important;
  }
  .xxl-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xxl-ps-1 {
    padding-left: 0.25rem !important;
  }
  .xxl-pe-1 {
    padding-right: 0.25rem !important;
  }
  .xxl-m-1 {
    margin: 0.25rem !important;
  }
  .xxl-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xxl-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .xxl-mt-1 {
    margin-top: 0.25rem !important;
  }
  .xxl-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xxl-ms-1 {
    margin-left: 0.25rem !important;
  }
  .xxl-me-1 {
    margin-right: 0.25rem !important;
  }
  .xxl-m-n1 {
    margin: -0.25rem !important;
  }
  .xxl-mx-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .xxl-my-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .xxl-mt-n1 {
    margin-top: -0.25rem !important;
  }
  .xxl-mb-n1 {
    margin-bottom: -0.25rem !important;
  }
  .xxl-ms-n1 {
    margin-left: -0.25rem !important;
  }
  .xxl-me-n1 {
    margin-right: -0.25rem !important;
  }
  .xxl-p-2 {
    padding: 0.5rem !important;
  }
  .xxl-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xxl-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xxl-pt-2 {
    padding-top: 0.5rem !important;
  }
  .xxl-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xxl-ps-2 {
    padding-left: 0.5rem !important;
  }
  .xxl-pe-2 {
    padding-right: 0.5rem !important;
  }
  .xxl-m-2 {
    margin: 0.5rem !important;
  }
  .xxl-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xxl-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xxl-mt-2 {
    margin-top: 0.5rem !important;
  }
  .xxl-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xxl-ms-2 {
    margin-left: 0.5rem !important;
  }
  .xxl-me-2 {
    margin-right: 0.5rem !important;
  }
  .xxl-m-n2 {
    margin: -0.5rem !important;
  }
  .xxl-mx-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xxl-my-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .xxl-mt-n2 {
    margin-top: -0.5rem !important;
  }
  .xxl-mb-n2 {
    margin-bottom: -0.5rem !important;
  }
  .xxl-ms-n2 {
    margin-left: -0.5rem !important;
  }
  .xxl-me-n2 {
    margin-right: -0.5rem !important;
  }
  .xxl-p-3 {
    padding: 0.75rem !important;
  }
  .xxl-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .xxl-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xxl-pt-3 {
    padding-top: 0.75rem !important;
  }
  .xxl-pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .xxl-ps-3 {
    padding-left: 0.75rem !important;
  }
  .xxl-pe-3 {
    padding-right: 0.75rem !important;
  }
  .xxl-m-3 {
    margin: 0.75rem !important;
  }
  .xxl-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .xxl-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .xxl-mt-3 {
    margin-top: 0.75rem !important;
  }
  .xxl-mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .xxl-ms-3 {
    margin-left: 0.75rem !important;
  }
  .xxl-me-3 {
    margin-right: 0.75rem !important;
  }
  .xxl-m-n3 {
    margin: -0.75rem !important;
  }
  .xxl-mx-n3 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .xxl-my-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .xxl-mt-n3 {
    margin-top: -0.75rem !important;
  }
  .xxl-mb-n3 {
    margin-bottom: -0.75rem !important;
  }
  .xxl-ms-n3 {
    margin-left: -0.75rem !important;
  }
  .xxl-me-n3 {
    margin-right: -0.75rem !important;
  }
  .xxl-p-4 {
    padding: 1rem !important;
  }
  .xxl-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xxl-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xxl-pt-4 {
    padding-top: 1rem !important;
  }
  .xxl-pb-4 {
    padding-bottom: 1rem !important;
  }
  .xxl-ps-4 {
    padding-left: 1rem !important;
  }
  .xxl-pe-4 {
    padding-right: 1rem !important;
  }
  .xxl-m-4 {
    margin: 1rem !important;
  }
  .xxl-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xxl-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xxl-mt-4 {
    margin-top: 1rem !important;
  }
  .xxl-mb-4 {
    margin-bottom: 1rem !important;
  }
  .xxl-ms-4 {
    margin-left: 1rem !important;
  }
  .xxl-me-4 {
    margin-right: 1rem !important;
  }
  .xxl-m-n4 {
    margin: -1rem !important;
  }
  .xxl-mx-n4 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .xxl-my-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .xxl-mt-n4 {
    margin-top: -1rem !important;
  }
  .xxl-mb-n4 {
    margin-bottom: -1rem !important;
  }
  .xxl-ms-n4 {
    margin-left: -1rem !important;
  }
  .xxl-me-n4 {
    margin-right: -1rem !important;
  }
  .xxl-p-5 {
    padding: 1.25rem !important;
  }
  .xxl-px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .xxl-py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .xxl-pt-5 {
    padding-top: 1.25rem !important;
  }
  .xxl-pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .xxl-ps-5 {
    padding-left: 1.25rem !important;
  }
  .xxl-pe-5 {
    padding-right: 1.25rem !important;
  }
  .xxl-m-5 {
    margin: 1.25rem !important;
  }
  .xxl-mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .xxl-my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .xxl-mt-5 {
    margin-top: 1.25rem !important;
  }
  .xxl-mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .xxl-ms-5 {
    margin-left: 1.25rem !important;
  }
  .xxl-me-5 {
    margin-right: 1.25rem !important;
  }
  .xxl-m-n5 {
    margin: -1.25rem !important;
  }
  .xxl-mx-n5 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .xxl-my-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .xxl-mt-n5 {
    margin-top: -1.25rem !important;
  }
  .xxl-mb-n5 {
    margin-bottom: -1.25rem !important;
  }
  .xxl-ms-n5 {
    margin-left: -1.25rem !important;
  }
  .xxl-me-n5 {
    margin-right: -1.25rem !important;
  }
  .xxl-p-6 {
    padding: 1.5rem !important;
  }
  .xxl-px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xxl-py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xxl-pt-6 {
    padding-top: 1.5rem !important;
  }
  .xxl-pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .xxl-ps-6 {
    padding-left: 1.5rem !important;
  }
  .xxl-pe-6 {
    padding-right: 1.5rem !important;
  }
  .xxl-m-6 {
    margin: 1.5rem !important;
  }
  .xxl-mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xxl-my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xxl-mt-6 {
    margin-top: 1.5rem !important;
  }
  .xxl-mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .xxl-ms-6 {
    margin-left: 1.5rem !important;
  }
  .xxl-me-6 {
    margin-right: 1.5rem !important;
  }
  .xxl-m-n6 {
    margin: -1.5rem !important;
  }
  .xxl-mx-n6 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .xxl-my-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .xxl-mt-n6 {
    margin-top: -1.5rem !important;
  }
  .xxl-mb-n6 {
    margin-bottom: -1.5rem !important;
  }
  .xxl-ms-n6 {
    margin-left: -1.5rem !important;
  }
  .xxl-me-n6 {
    margin-right: -1.5rem !important;
  }
  .xxl-p-8 {
    padding: 2rem !important;
  }
  .xxl-px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xxl-py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xxl-pt-8 {
    padding-top: 2rem !important;
  }
  .xxl-pb-8 {
    padding-bottom: 2rem !important;
  }
  .xxl-ps-8 {
    padding-left: 2rem !important;
  }
  .xxl-pe-8 {
    padding-right: 2rem !important;
  }
  .xxl-m-8 {
    margin: 2rem !important;
  }
  .xxl-mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xxl-my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xxl-mt-8 {
    margin-top: 2rem !important;
  }
  .xxl-mb-8 {
    margin-bottom: 2rem !important;
  }
  .xxl-ms-8 {
    margin-left: 2rem !important;
  }
  .xxl-me-8 {
    margin-right: 2rem !important;
  }
  .xxl-m-n8 {
    margin: -2rem !important;
  }
  .xxl-mx-n8 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .xxl-my-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .xxl-mt-n8 {
    margin-top: -2rem !important;
  }
  .xxl-mb-n8 {
    margin-bottom: -2rem !important;
  }
  .xxl-ms-n8 {
    margin-left: -2rem !important;
  }
  .xxl-me-n8 {
    margin-right: -2rem !important;
  }
  .xxl-p-10 {
    padding: 2.5rem !important;
  }
  .xxl-px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .xxl-py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xxl-pt-10 {
    padding-top: 2.5rem !important;
  }
  .xxl-pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .xxl-ps-10 {
    padding-left: 2.5rem !important;
  }
  .xxl-pe-10 {
    padding-right: 2.5rem !important;
  }
  .xxl-m-10 {
    margin: 2.5rem !important;
  }
  .xxl-mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xxl-my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xxl-mt-10 {
    margin-top: 2.5rem !important;
  }
  .xxl-mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .xxl-ms-10 {
    margin-left: 2.5rem !important;
  }
  .xxl-me-10 {
    margin-right: 2.5rem !important;
  }
  .xxl-m-n10 {
    margin: -2.5rem !important;
  }
  .xxl-mx-n10 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .xxl-my-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .xxl-mt-n10 {
    margin-top: -2.5rem !important;
  }
  .xxl-mb-n10 {
    margin-bottom: -2.5rem !important;
  }
  .xxl-ms-n10 {
    margin-left: -2.5rem !important;
  }
  .xxl-me-n10 {
    margin-right: -2.5rem !important;
  }
  .xxl-p-12 {
    padding: 3rem !important;
  }
  .xxl-px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xxl-py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xxl-pt-12 {
    padding-top: 3rem !important;
  }
  .xxl-pb-12 {
    padding-bottom: 3rem !important;
  }
  .xxl-ps-12 {
    padding-left: 3rem !important;
  }
  .xxl-pe-12 {
    padding-right: 3rem !important;
  }
  .xxl-m-12 {
    margin: 3rem !important;
  }
  .xxl-mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xxl-my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xxl-mt-12 {
    margin-top: 3rem !important;
  }
  .xxl-mb-12 {
    margin-bottom: 3rem !important;
  }
  .xxl-ms-12 {
    margin-left: 3rem !important;
  }
  .xxl-me-12 {
    margin-right: 3rem !important;
  }
  .xxl-m-n12 {
    margin: -3rem !important;
  }
  .xxl-mx-n12 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .xxl-my-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .xxl-mt-n12 {
    margin-top: -3rem !important;
  }
  .xxl-mb-n12 {
    margin-bottom: -3rem !important;
  }
  .xxl-ms-n12 {
    margin-left: -3rem !important;
  }
  .xxl-me-n12 {
    margin-right: -3rem !important;
  }
  .xxl-p-16 {
    padding: 4rem !important;
  }
  .xxl-px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xxl-py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xxl-pt-16 {
    padding-top: 4rem !important;
  }
  .xxl-pb-16 {
    padding-bottom: 4rem !important;
  }
  .xxl-ps-16 {
    padding-left: 4rem !important;
  }
  .xxl-pe-16 {
    padding-right: 4rem !important;
  }
  .xxl-m-16 {
    margin: 4rem !important;
  }
  .xxl-mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xxl-my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xxl-mt-16 {
    margin-top: 4rem !important;
  }
  .xxl-mb-16 {
    margin-bottom: 4rem !important;
  }
  .xxl-ms-16 {
    margin-left: 4rem !important;
  }
  .xxl-me-16 {
    margin-right: 4rem !important;
  }
  .xxl-m-n16 {
    margin: -4rem !important;
  }
  .xxl-mx-n16 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .xxl-my-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .xxl-mt-n16 {
    margin-top: -4rem !important;
  }
  .xxl-mb-n16 {
    margin-bottom: -4rem !important;
  }
  .xxl-ms-n16 {
    margin-left: -4rem !important;
  }
  .xxl-me-n16 {
    margin-right: -4rem !important;
  }
  .xxl-p-20 {
    padding: 5rem !important;
  }
  .xxl-px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xxl-py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xxl-pt-20 {
    padding-top: 5rem !important;
  }
  .xxl-pb-20 {
    padding-bottom: 5rem !important;
  }
  .xxl-ps-20 {
    padding-left: 5rem !important;
  }
  .xxl-pe-20 {
    padding-right: 5rem !important;
  }
  .xxl-m-20 {
    margin: 5rem !important;
  }
  .xxl-mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xxl-my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xxl-mt-20 {
    margin-top: 5rem !important;
  }
  .xxl-mb-20 {
    margin-bottom: 5rem !important;
  }
  .xxl-ms-20 {
    margin-left: 5rem !important;
  }
  .xxl-me-20 {
    margin-right: 5rem !important;
  }
  .xxl-m-n20 {
    margin: -5rem !important;
  }
  .xxl-mx-n20 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .xxl-my-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .xxl-mt-n20 {
    margin-top: -5rem !important;
  }
  .xxl-mb-n20 {
    margin-bottom: -5rem !important;
  }
  .xxl-ms-n20 {
    margin-left: -5rem !important;
  }
  .xxl-me-n20 {
    margin-right: -5rem !important;
  }
  .xxl-p-24 {
    padding: 6rem !important;
  }
  .xxl-px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xxl-py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xxl-pt-24 {
    padding-top: 6rem !important;
  }
  .xxl-pb-24 {
    padding-bottom: 6rem !important;
  }
  .xxl-ps-24 {
    padding-left: 6rem !important;
  }
  .xxl-pe-24 {
    padding-right: 6rem !important;
  }
  .xxl-m-24 {
    margin: 6rem !important;
  }
  .xxl-mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xxl-my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xxl-mt-24 {
    margin-top: 6rem !important;
  }
  .xxl-mb-24 {
    margin-bottom: 6rem !important;
  }
  .xxl-ms-24 {
    margin-left: 6rem !important;
  }
  .xxl-me-24 {
    margin-right: 6rem !important;
  }
  .xxl-m-n24 {
    margin: -6rem !important;
  }
  .xxl-mx-n24 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .xxl-my-n24 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .xxl-mt-n24 {
    margin-top: -6rem !important;
  }
  .xxl-mb-n24 {
    margin-bottom: -6rem !important;
  }
  .xxl-ms-n24 {
    margin-left: -6rem !important;
  }
  .xxl-me-n24 {
    margin-right: -6rem !important;
  }
  .xxl-p-32 {
    padding: 8rem !important;
  }
  .xxl-px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xxl-py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xxl-pt-32 {
    padding-top: 8rem !important;
  }
  .xxl-pb-32 {
    padding-bottom: 8rem !important;
  }
  .xxl-ps-32 {
    padding-left: 8rem !important;
  }
  .xxl-pe-32 {
    padding-right: 8rem !important;
  }
  .xxl-m-32 {
    margin: 8rem !important;
  }
  .xxl-mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xxl-my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xxl-mt-32 {
    margin-top: 8rem !important;
  }
  .xxl-mb-32 {
    margin-bottom: 8rem !important;
  }
  .xxl-ms-32 {
    margin-left: 8rem !important;
  }
  .xxl-me-32 {
    margin-right: 8rem !important;
  }
  .xxl-m-n32 {
    margin: -8rem !important;
  }
  .xxl-mx-n32 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .xxl-my-n32 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .xxl-mt-n32 {
    margin-top: -8rem !important;
  }
  .xxl-mb-n32 {
    margin-bottom: -8rem !important;
  }
  .xxl-ms-n32 {
    margin-left: -8rem !important;
  }
  .xxl-me-n32 {
    margin-right: -8rem !important;
  }
  .xxl-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .xxl-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .xxl-mt-auto {
    margin-top: auto !important;
  }
  .xxl-mb-auto {
    margin-bottom: auto !important;
  }
  .xxl-ms-auto {
    margin-left: auto !important;
  }
  .xxl-me-auto {
    margin-right: auto !important;
  }
}
.nb {
  border-bottom: 1px solid var(--bs--color-border-dark);
  position: relative;
}

.nb--dark {
  background: #f16839;
  border-bottom: 1px solid var(--bs--color-border-dark);
  position: relative;
}

.nb--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nb--frosted {
  background: var(--bs--color-nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--bs--color-border);
}

.nb__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.nb--sm .nb__inner {
  height: 48px;
}

.nb--lg .nb__inner {
  height: 64px;
}

.nb__brand {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
}

.nb__brand img {
  display: block;
  height: 32px;
  width: auto;
}

.nb__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--bs--color-border-dark);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.nb__toggle:hover {
  border-color: rgba(100, 3, 11, 0.3);
}

@media (max-width: 991.98px) {
  .nb__toggle {
    display: flex;
  }
}
.nb__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #64030b;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nb__toggle[aria-expanded=true] .nb__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nb__toggle[aria-expanded=true] .nb__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nb__toggle[aria-expanded=true] .nb__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  .nb__menu {
    display: flex;
  }
}
@media (max-width: 991.98px) {
  .nb__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--bs--color-nav-bg);
    border-bottom: 1px solid var(--bs--color-border-dark);
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nb__menu.is-open {
    max-height: 100vh;
    overflow-y: auto;
  }
}
.nb__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .nb__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
  }
}
.nb__item {
  position: relative;
}

@media (max-width: 991.98px) {
  .nb__item {
    width: 100%;
  }
}
.nb__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #1D1D1F;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nb__link:hover, .nb__link:focus-visible {
  color: #1D1D1F;
  background: #f16839;
}

.nb__link:focus-visible {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

@media (max-width: 991.98px) {
  .nb__link {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
  }
}
.nb__link.is-active {
  color: #64030b;
}

.nb__link--cta {
  background: #64030b;
  color: #f16839;
  font-weight: 700;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
}

.nb__link--cta:hover, .nb__link--cta:focus-visible {
  background: #2E46D4;
  color: #f16839;
}

@media (max-width: 991.98px) {
  .nb__link--cta {
    margin-left: 0;
    margin-top: 0.5rem;
    justify-content: center;
  }
}
@media (max-width: 991.98px) {
  .nb__item--cta {
    margin-top: 0.5rem;
  }
}
.nb__caret {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nb__item--dropdown.is-open .nb__caret,
.nb__item--mega.is-open .nb__caret {
  transform: rotate(180deg);
}

.nb__dropdown {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

@media (min-width: 992px) {
  .nb__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: var(--bs--color-surface);
    border: 1px solid var(--bs--color-border);
    border-radius: 18px;
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.15);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    pointer-events: none;
  }
}
@media (max-width: 991.98px) {
  .nb__dropdown {
    display: none;
    padding-left: 1rem;
    border-left: 2px solid rgba(100, 3, 11, 0.2);
    margin-left: 0.75rem;
  }
}
@media (min-width: 992px) {
  .nb__item--dropdown.is-open .nb__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 991.98px) {
  .nb__item--dropdown.is-open .nb__dropdown {
    display: block;
  }
}
.nb__dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bs--color-text-on-dark-muted);
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nb__dropdown-link:hover, .nb__dropdown-link:focus-visible {
  color: #64030b;
  background: #f5f5f7;
}

.nb__dropdown-link:focus-visible {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

@media (max-width: 991.98px) {
  .nb__dropdown-link {
    padding: 0.5rem 0.5rem;
  }
}
.nb__dropdown-divider {
  height: 1px;
  background: var(--bs--color-border-dark);
  margin: 0.5rem 1rem;
}

@media (max-width: 991.98px) {
  .nb__dropdown-divider {
    margin: 0.5rem 0;
  }
}
.nb--light {
  background: var(--bs--color-surface);
  border-bottom: 1px solid var(--bs--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nb--light .nb__brand {
  color: #f16839;
}

.nb--light .nb__link {
  color: var(--bs--color-text-muted);
}

.nb--light .nb__link:hover, .nb--light .nb__link:focus-visible {
  color: #f16839;
  background: #F5F5F7;
}

.nb--light .nb__link.is-active {
  color: #64030b;
}

.nb--light .nb__toggle {
  border-color: var(--bs--color-border);
}

.nb--light .nb__toggle-bar {
  background: #f16839;
}

@media (max-width: 991.98px) {
  .nb--light .nb__menu {
    background: var(--bs--color-surface);
    border-bottom: 1px solid var(--bs--color-border);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
  }
}
@media (min-width: 992px) {
  .nb--light .nb__dropdown {
    background: var(--bs--color-surface);
    border: 1px solid var(--bs--color-border);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 991.98px) {
  .nb--light .nb__dropdown {
    border-left-color: rgba(100, 3, 11, 0.3);
  }
}
.nb--light .nb__dropdown-link {
  color: var(--bs--color-text-muted);
}

.nb--light .nb__dropdown-link:hover, .nb--light .nb__dropdown-link:focus-visible {
  color: #f16839;
  background: #F5F5F7;
}

.nb--light .nb__dropdown-divider {
  background: var(--bs--color-border);
}

.nb--grad-dark-light {
  background: linear-gradient(to bottom, #f16839, #FFB4AD);
  border-bottom: 1px solid var(--bs--color-border-dark);
  position: relative;
}

.nb--grad-dark-light .nb__brand {
  color: #FFFFFF;
}

.nb--grad-dark-light .nb__link {
  color: var(--bs--color-text-on-dark-muted);
}

.nb--grad-dark-light .nb__link:hover,
.nb--grad-dark-light .nb__link:focus-visible {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nb--grad-dark-light .nb__link.is-active {
  color: #64030b;
}

.nb--grad-dark-light .nb__toggle {
  border-color: var(--bs--color-border-dark);
}

.nb--grad-dark-light .nb__toggle-bar {
  background: #64030b;
}

@media (max-width: 991.98px) {
  .nb--grad-dark-light .nb__menu {
    background: linear-gradient(to bottom, #f16839, #FFB4AD);
    border-bottom: 1px solid var(--bs--color-border-dark);
  }
}
@media (min-width: 992px) {
  .nb--grad-dark-light .nb__dropdown {
    background: #FF8A80;
  }
}
.nb--grad-dark-light .nb__dropdown-link {
  color: var(--bs--color-text-on-dark-muted);
}

.nb--grad-dark-light .nb__dropdown-link:hover,
.nb--grad-dark-light .nb__dropdown-link:focus-visible {
  color: #64030b;
  background: rgba(100, 3, 11, 0.08);
}

.nb--grad-dark-light .nb__dropdown-divider {
  background: var(--bs--color-border-dark);
}

.nb--grad-dark-white {
  background: linear-gradient(to bottom, #f16839, #FFFFFF);
  border-bottom: 1px solid var(--bs--color-border);
  position: relative;
}

.nb--grad-dark-white .nb__brand {
  color: #FFFFFF;
}

.nb--grad-dark-white .nb__link {
  color: var(--bs--color-text-on-dark-muted);
}

.nb--grad-dark-white .nb__link:hover,
.nb--grad-dark-white .nb__link:focus-visible {
  color: #f16839;
  background: rgba(255, 255, 255, 0.1);
}

.nb--grad-dark-white .nb__link.is-active {
  color: #64030b;
}

.nb--grad-dark-white .nb__toggle {
  border-color: var(--bs--color-border);
}

.nb--grad-dark-white .nb__toggle-bar {
  background: #64030b;
}

@media (max-width: 991.98px) {
  .nb--grad-dark-white .nb__menu {
    background: linear-gradient(to bottom, #f16839, #FFFFFF);
    border-bottom: 1px solid var(--bs--color-border);
  }
}
@media (min-width: 992px) {
  .nb--grad-dark-white .nb__dropdown {
    background: #FFFFFF;
    border: 1px solid var(--bs--color-border);
  }
}
.nb--grad-dark-white .nb__dropdown-link {
  color: var(--bs--color-text-muted);
}

.nb--grad-dark-white .nb__dropdown-link:hover,
.nb--grad-dark-white .nb__dropdown-link:focus-visible {
  color: #f16839;
  background: #F5F5F7;
}

.nb--grad-dark-white .nb__dropdown-divider {
  background: var(--bs--color-border);
}

.nb--grad-light-dark {
  background: linear-gradient(to bottom, #FFFFFF, #f16839);
  border-bottom: 1px solid var(--bs--color-border);
  position: relative;
}

.nb--grad-light-dark .nb__brand {
  color: #f16839;
}

.nb--grad-light-dark .nb__link {
  color: var(--bs--color-text-muted);
}

.nb--grad-light-dark .nb__link:hover,
.nb--grad-light-dark .nb__link:focus-visible {
  color: #f16839;
  background: #F5F5F7;
}

.nb--grad-light-dark .nb__link.is-active {
  color: #64030b;
}

.nb--grad-light-dark .nb__toggle {
  border-color: var(--bs--color-border);
}

.nb--grad-light-dark .nb__toggle-bar {
  background: #f16839;
}

@media (max-width: 991.98px) {
  .nb--grad-light-dark .nb__menu {
    background: linear-gradient(to bottom, #FFFFFF, #f16839);
    border-bottom: 1px solid var(--bs--color-border);
  }
}
@media (min-width: 992px) {
  .nb--grad-light-dark .nb__dropdown {
    background: #FFFFFF;
    border: 1px solid var(--bs--color-border);
  }
}
.nb--grad-light-dark .nb__dropdown-link {
  color: var(--bs--color-text-muted);
}

.nb--grad-light-dark .nb__dropdown-link:hover,
.nb--grad-light-dark .nb__dropdown-link:focus-visible {
  color: #f16839;
  background: #F5F5F7;
}

.nb--grad-light-dark .nb__dropdown-divider {
  background: var(--bs--color-border);
}

.nb--grad-light-white {
  background: linear-gradient(to bottom, #F5F5F7, #FFFFFF);
  border-bottom: 1px solid var(--bs--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
}

.nb--grad-light-white .nb__brand {
  color: #f16839;
}

.nb--grad-light-white .nb__link {
  color: var(--bs--color-text-muted);
}

.nb--grad-light-white .nb__link:hover,
.nb--grad-light-white .nb__link:focus-visible {
  color: #f16839;
  background: rgba(241, 104, 57, 0.06);
}

.nb--grad-light-white .nb__link.is-active {
  color: #64030b;
}

.nb--grad-light-white .nb__toggle {
  border-color: var(--bs--color-border);
}

.nb--grad-light-white .nb__toggle-bar {
  background: #f16839;
}

@media (max-width: 991.98px) {
  .nb--grad-light-white .nb__menu {
    background: linear-gradient(to bottom, #F5F5F7, #FFFFFF);
    border-bottom: 1px solid var(--bs--color-border);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
  }
}
@media (min-width: 992px) {
  .nb--grad-light-white .nb__dropdown {
    background: #FFFFFF;
    border: 1px solid var(--bs--color-border);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
  }
}
.nb--grad-light-white .nb__dropdown-link {
  color: var(--bs--color-text-muted);
}

.nb--grad-light-white .nb__dropdown-link:hover,
.nb--grad-light-white .nb__dropdown-link:focus-visible {
  color: #f16839;
  background: #F5F5F7;
}

.nb--grad-light-white .nb__dropdown-divider {
  background: var(--bs--color-border);
}

.nb--grad-accent-primary {
  background: linear-gradient(to bottom, #f16839, #FF8A80);
  border-bottom: 1px solid var(--bs--color-border-dark);
  position: relative;
}

.nb--grad-accent-primary .nb__brand {
  color: #FFFFFF;
}

.nb--grad-accent-primary .nb__link {
  color: var(--bs--color-text-on-dark-muted);
}

.nb--grad-accent-primary .nb__link:hover,
.nb--grad-accent-primary .nb__link:focus-visible {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nb--grad-accent-primary .nb__link.is-active {
  color: #FFFFFF;
}

.nb--grad-accent-primary .nb__toggle {
  border-color: var(--bs--color-border-dark);
}

.nb--grad-accent-primary .nb__toggle-bar {
  background: #FFFFFF;
}

@media (max-width: 991.98px) {
  .nb--grad-accent-primary .nb__menu {
    background: linear-gradient(to bottom, #f16839, #FF8A80);
    border-bottom: 1px solid var(--bs--color-border-dark);
  }
}
@media (min-width: 992px) {
  .nb--grad-accent-primary .nb__dropdown {
    background: #f16839;
  }
}
.nb--grad-accent-primary .nb__dropdown-link {
  color: var(--bs--color-text-on-dark-muted);
}

.nb--grad-accent-primary .nb__dropdown-link:hover,
.nb--grad-accent-primary .nb__dropdown-link:focus-visible {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.nb--grad-accent-primary .nb__dropdown-divider {
  background: var(--bs--color-border-dark);
}

.nb--grad-accent-primary-white {
  background: linear-gradient(to bottom, #f16839, #FFFFFF);
  border-bottom: 1px solid var(--bs--color-border);
  position: relative;
}

.nb--grad-accent-primary-white .nb__brand {
  color: #FFFFFF;
}

.nb--grad-accent-primary-white .nb__link {
  color: var(--bs--color-text-on-dark-muted);
}

.nb--grad-accent-primary-white .nb__link:hover,
.nb--grad-accent-primary-white .nb__link:focus-visible {
  color: #f16839;
  background: rgba(255, 255, 255, 0.1);
}

.nb--grad-accent-primary-white .nb__link.is-active {
  color: #FFFFFF;
}

.nb--grad-accent-primary-white .nb__toggle {
  border-color: var(--bs--color-border);
}

.nb--grad-accent-primary-white .nb__toggle-bar {
  background: #FFFFFF;
}

@media (max-width: 991.98px) {
  .nb--grad-accent-primary-white .nb__menu {
    background: linear-gradient(to bottom, #f16839, #FFFFFF);
    border-bottom: 1px solid var(--bs--color-border);
  }
}
@media (min-width: 992px) {
  .nb--grad-accent-primary-white .nb__dropdown {
    background: #FFFFFF;
    border: 1px solid var(--bs--color-border);
  }
}
.nb--grad-accent-primary-white .nb__dropdown-link {
  color: var(--bs--color-text-muted);
}

.nb--grad-accent-primary-white .nb__dropdown-link:hover,
.nb--grad-accent-primary-white .nb__dropdown-link:focus-visible {
  color: #f16839;
  background: #F5F5F7;
}

.nb--grad-accent-primary-white .nb__dropdown-divider {
  background: var(--bs--color-border);
}

.nb--grad-white-accent-primary {
  background: linear-gradient(to bottom, #FFFFFF, #f16839);
  border-bottom: 1px solid var(--bs--color-border);
  position: relative;
}

.nb--grad-white-accent-primary .nb__brand {
  color: #f16839;
}

.nb--grad-white-accent-primary .nb__link {
  color: var(--bs--color-text-muted);
}

.nb--grad-white-accent-primary .nb__link:hover,
.nb--grad-white-accent-primary .nb__link:focus-visible {
  color: #f16839;
  background: #F5F5F7;
}

.nb--grad-white-accent-primary .nb__link.is-active {
  color: #FF8A80;
}

.nb--grad-white-accent-primary .nb__toggle {
  border-color: var(--bs--color-border);
}

.nb--grad-white-accent-primary .nb__toggle-bar {
  background: #f16839;
}

@media (max-width: 991.98px) {
  .nb--grad-white-accent-primary .nb__menu {
    background: linear-gradient(to bottom, #FFFFFF, #f16839);
    border-bottom: 1px solid var(--bs--color-border);
  }
}
@media (min-width: 992px) {
  .nb--grad-white-accent-primary .nb__dropdown {
    background: #FFFFFF;
    border: 1px solid var(--bs--color-border);
  }
}
.nb--grad-white-accent-primary .nb__dropdown-link {
  color: var(--bs--color-text-muted);
}

.nb--grad-white-accent-primary .nb__dropdown-link:hover,
.nb--grad-white-accent-primary .nb__dropdown-link:focus-visible {
  color: #f16839;
  background: #F5F5F7;
}

.nb--grad-white-accent-primary .nb__dropdown-divider {
  background: var(--bs--color-border);
}

.nb--grad-accent-secondary {
  background: linear-gradient(to bottom, #adadad, #dadada);
  border-bottom: 1px solid var(--bs--color-border-dark);
  position: relative;
}

.nb--grad-accent-secondary .nb__brand {
  color: #FFFFFF;
}

.nb--grad-accent-secondary .nb__link {
  color: var(--bs--color-text-on-dark-muted);
}

.nb--grad-accent-secondary .nb__link:hover,
.nb--grad-accent-secondary .nb__link:focus-visible {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nb--grad-accent-secondary .nb__link.is-active {
  color: #FFFFFF;
}

.nb--grad-accent-secondary .nb__toggle {
  border-color: var(--bs--color-border-dark);
}

.nb--grad-accent-secondary .nb__toggle-bar {
  background: #FFFFFF;
}

@media (max-width: 991.98px) {
  .nb--grad-accent-secondary .nb__menu {
    background: linear-gradient(to bottom, #adadad, #dadada);
    border-bottom: 1px solid var(--bs--color-border-dark);
  }
}
@media (min-width: 992px) {
  .nb--grad-accent-secondary .nb__dropdown {
    background: #adadad;
  }
}
.nb--grad-accent-secondary .nb__dropdown-link {
  color: var(--bs--color-text-on-dark-muted);
}

.nb--grad-accent-secondary .nb__dropdown-link:hover,
.nb--grad-accent-secondary .nb__dropdown-link:focus-visible {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.nb--grad-accent-secondary .nb__dropdown-divider {
  background: var(--bs--color-border-dark);
}

.nb--grad-accent-secondary-white {
  background: linear-gradient(to bottom, #adadad, #FFFFFF);
  border-bottom: 1px solid var(--bs--color-border);
  position: relative;
}

.nb--grad-accent-secondary-white .nb__brand {
  color: #FFFFFF;
}

.nb--grad-accent-secondary-white .nb__link {
  color: var(--bs--color-text-on-dark-muted);
}

.nb--grad-accent-secondary-white .nb__link:hover,
.nb--grad-accent-secondary-white .nb__link:focus-visible {
  color: #adadad;
  background: rgba(255, 255, 255, 0.1);
}

.nb--grad-accent-secondary-white .nb__link.is-active {
  color: #FFFFFF;
}

.nb--grad-accent-secondary-white .nb__toggle {
  border-color: var(--bs--color-border);
}

.nb--grad-accent-secondary-white .nb__toggle-bar {
  background: #FFFFFF;
}

@media (max-width: 991.98px) {
  .nb--grad-accent-secondary-white .nb__menu {
    background: linear-gradient(to bottom, #adadad, #FFFFFF);
    border-bottom: 1px solid var(--bs--color-border);
  }
}
@media (min-width: 992px) {
  .nb--grad-accent-secondary-white .nb__dropdown {
    background: #FFFFFF;
    border: 1px solid var(--bs--color-border);
  }
}
.nb--grad-accent-secondary-white .nb__dropdown-link {
  color: var(--bs--color-text-muted);
}

.nb--grad-accent-secondary-white .nb__dropdown-link:hover,
.nb--grad-accent-secondary-white .nb__dropdown-link:focus-visible {
  color: #adadad;
  background: #F5F5F7;
}

.nb--grad-accent-secondary-white .nb__dropdown-divider {
  background: var(--bs--color-border);
}

.nb--grad-white-accent-secondary {
  background: linear-gradient(to bottom, #FFFFFF, #adadad);
  border-bottom: 1px solid var(--bs--color-border);
  position: relative;
}

.nb--grad-white-accent-secondary .nb__brand {
  color: #adadad;
}

.nb--grad-white-accent-secondary .nb__link {
  color: var(--bs--color-text-muted);
}

.nb--grad-white-accent-secondary .nb__link:hover,
.nb--grad-white-accent-secondary .nb__link:focus-visible {
  color: #adadad;
  background: #F5F5F7;
}

.nb--grad-white-accent-secondary .nb__link.is-active {
  color: #dadada;
}

.nb--grad-white-accent-secondary .nb__toggle {
  border-color: var(--bs--color-border);
}

.nb--grad-white-accent-secondary .nb__toggle-bar {
  background: #adadad;
}

@media (max-width: 991.98px) {
  .nb--grad-white-accent-secondary .nb__menu {
    background: linear-gradient(to bottom, #FFFFFF, #adadad);
    border-bottom: 1px solid var(--bs--color-border);
  }
}
@media (min-width: 992px) {
  .nb--grad-white-accent-secondary .nb__dropdown {
    background: #FFFFFF;
    border: 1px solid var(--bs--color-border);
  }
}
.nb--grad-white-accent-secondary .nb__dropdown-link {
  color: var(--bs--color-text-muted);
}

.nb--grad-white-accent-secondary .nb__dropdown-link:hover,
.nb--grad-white-accent-secondary .nb__dropdown-link:focus-visible {
  color: #adadad;
  background: #F5F5F7;
}

.nb--grad-white-accent-secondary .nb__dropdown-divider {
  background: var(--bs--color-border);
}

@media (min-width: 992px) {
  .nb__mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    pointer-events: none;
  }
}
@media (max-width: 991.98px) {
  .nb__mega {
    display: none;
    padding: 0.75rem 0;
    border-left: 2px solid rgba(100, 3, 11, 0.2);
    margin-left: 0.75rem;
    background: var(--bs--color-surface);
    width: 100%;
  }
}
.nb__mega-frame {
  margin-top: 0.5rem;
  border-radius: 28px;
  background: var(--bs--color-surface);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
}

.nb__item--mega {
  position: static;
}

@media (min-width: 992px) {
  .nb__item--mega.is-open .nb__mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 991.98px) {
  .nb__item--mega.is-open .nb__mega {
    display: block;
  }
}
@media (min-width: 992px) {
  .nb__mega-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 1.5rem;
  }
}
.nb__mega-inner .nb__mega-inner p {
  color: #000000 !important;
}

@media (max-width: 991.98px) {
  .nb__mega-inner {
    padding: 0 1rem;
  }
}
.nb__mega-col {
  min-width: 0;
}

@media (max-width: 991.98px) {
  .nb__mega-col {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bs--color-border);
  }
  .nb__mega-col:last-child {
    border-bottom: none;
  }
}
.nb__mega-col-title {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bs--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #64030b;
}

.nb__mega-col-image {
  margin-bottom: 0.75rem;
  border-radius: 12px;
  overflow: hidden;
}

.nb__mega-col-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.nb__mega-col-content {
  font-size: 0.875rem;
  color: var(--bs--color-text-muted);
  line-height: 1.65;
}

.nb__mega-col-content a {
  color: #64030b;
  text-decoration: none;
  font-weight: 500;
}

.nb__mega-col-content a:hover, .nb__mega-col-content a:focus-visible {
  text-decoration: underline;
}

.nb__mega-col-content ul, .nb__mega-col-content ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nb__mega-col-content li {
  padding: 0.25rem 0;
}

.nb__mega-link {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bs--color-text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nb__mega-link:hover, .nb__mega-link:focus-visible {
  color: #64030b;
}

.nb__search {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  margin-right: 0.75rem;
}

@media (max-width: 991.98px) {
  .nb__search {
    margin: 0.75rem 0;
    width: 100%;
  }
}
.nb__search-input {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--bs--color-border-dark);
  border-radius: 12px 0 0 12px;
  background: var(--bs--color-input-bg);
  color: var(--bs--color-text);
  outline: none;
  min-width: 160px;
  transition: border-color 0.15s ease;
}

.nb__search-input:focus {
  border-color: #64030b;
}

@media (max-width: 991.98px) {
  .nb__search-input {
    flex: 1;
    min-width: 0;
  }
}
.nb__search-btn {
  padding: 0.5rem 0.75rem;
  background: #64030b;
  color: #FFFFFF;
  border: 1px solid #64030b;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  transition: background 0.15s ease;
}

.nb__search-btn:hover {
  background: #2E46D4;
}

.nb__lang {
  position: relative;
}

.nb__lang .nb__link {
  padding: 0.5rem;
}

.nb__lang .nb__dropdown {
  min-width: 140px;
  text-align: left;
}

.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.pp-btn:active {
  transform: translateY(1px);
}

.pp-btn:focus-visible {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

.pp-btn-primary {
  background-color: #f16839;
  border-color: #f16839;
  color: #FFFFFF;
}

.pp-btn-primary:hover, .pp-btn-primary:focus-visible {
  background-color: rgb(83.168627451%, 35.8901960784%, 19.6705882353%);
  border-color: rgb(83.168627451%, 35.8901960784%, 19.6705882353%);
  color: #FFFFFF;
}

.pp-btn-outline-primary {
  background-color: transparent;
  border-color: #f16839;
  color: #f16839;
}

.pp-btn-outline-primary:hover, .pp-btn-outline-primary:focus-visible {
  background-color: rgba(241, 104, 57, 0.08);
  border-color: #f16839;
  color: #f16839;
}

.pp-btn-ghost-primary {
  background-color: transparent;
  border-color: transparent;
  color: #f16839;
}

.pp-btn-ghost-primary:hover, .pp-btn-ghost-primary:focus-visible {
  background-color: rgba(241, 104, 57, 0.08);
  color: #f16839;
}

.pp-btn-secondary {
  background-color: #64030b;
  border-color: #64030b;
  color: #f16839;
}

.pp-btn-secondary:hover, .pp-btn-secondary:focus-visible {
  background-color: rgb(34.5098039216%, 1.0352941176%, 3.7960784314%);
  border-color: rgb(34.5098039216%, 1.0352941176%, 3.7960784314%);
  color: #f16839;
}

.pp-btn-outline-secondary {
  background-color: transparent;
  border-color: #64030b;
  color: #64030b;
}

.pp-btn-outline-secondary:hover, .pp-btn-outline-secondary:focus-visible {
  background-color: rgba(100, 3, 11, 0.08);
  border-color: #64030b;
  color: #64030b;
}

.pp-btn-ghost-secondary {
  background-color: transparent;
  border-color: transparent;
  color: #64030b;
}

.pp-btn-ghost-secondary:hover, .pp-btn-ghost-secondary:focus-visible {
  background-color: rgba(100, 3, 11, 0.08);
  color: #64030b;
}

.pp-btn-primary-light {
  background-color: #FFB4AD;
  border-color: #FFB4AD;
}

.pp-btn-primary-light:hover, .pp-btn-primary-light:focus-visible {
  background-color: rgb(88%, 62.1176470588%, 59.7019607843%);
  border-color: rgb(88%, 62.1176470588%, 59.7019607843%);
}

.pp-btn-outline-primary-light {
  background-color: transparent;
  border-color: #FFB4AD;
  color: #FFB4AD;
}

.pp-btn-outline-primary-light:hover, .pp-btn-outline-primary-light:focus-visible {
  background-color: rgba(255, 180, 173, 0.08);
  border-color: #FFB4AD;
  color: #FFB4AD;
}

.pp-btn-ghost-primary-light {
  background-color: transparent;
  border-color: transparent;
  color: #FFB4AD;
}

.pp-btn-ghost-primary-light:hover, .pp-btn-ghost-primary-light:focus-visible {
  background-color: rgba(255, 180, 173, 0.08);
  color: #FFB4AD;
}

.pp-btn-primary-mid {
  background-color: #FF8A80;
  border-color: #FF8A80;
}

.pp-btn-primary-mid:hover, .pp-btn-primary-mid:focus-visible {
  background-color: rgb(88%, 47.6235294118%, 44.1725490196%);
  border-color: rgb(88%, 47.6235294118%, 44.1725490196%);
}

.pp-btn-outline-primary-mid {
  background-color: transparent;
  border-color: #FF8A80;
  color: #FF8A80;
}

.pp-btn-outline-primary-mid:hover, .pp-btn-outline-primary-mid:focus-visible {
  background-color: rgba(255, 138, 128, 0.08);
  border-color: #FF8A80;
  color: #FF8A80;
}

.pp-btn-ghost-primary-mid {
  background-color: transparent;
  border-color: transparent;
  color: #FF8A80;
}

.pp-btn-ghost-primary-mid:hover, .pp-btn-ghost-primary-mid:focus-visible {
  background-color: rgba(255, 138, 128, 0.08);
  color: #FF8A80;
}

.pp-btn-light {
  background-color: #F5F5F7;
  border-color: #F5F5F7;
  color: #1D1D1F;
}

.pp-btn-light:hover, .pp-btn-light:focus-visible {
  background-color: rgb(84.5490196078%, 84.5490196078%, 85.2392156863%);
  border-color: rgb(84.5490196078%, 84.5490196078%, 85.2392156863%);
  color: #1D1D1F;
}

.pp-btn-dark {
  background-color: #1D1D1F;
  border-color: #1D1D1F;
  color: #FFFFFF;
}

.pp-btn-dark:hover, .pp-btn-dark:focus-visible {
  background-color: rgb(10.0078431373%, 10.0078431373%, 10.6980392157%);
  border-color: rgb(10.0078431373%, 10.0078431373%, 10.6980392157%);
  color: #FFFFFF;
}

.pp-btn-outline-dark {
  background-color: transparent;
  border-color: #1D1D1F;
  color: #1D1D1F;
}

.pp-btn-outline-dark:hover, .pp-btn-outline-dark:focus-visible {
  background-color: rgba(29, 29, 31, 0.08);
  border-color: #1D1D1F;
  color: #1D1D1F;
}

.pp-btn-ghost-dark {
  background-color: transparent;
  border-color: transparent;
  color: #1D1D1F;
}

.pp-btn-ghost-dark:hover, .pp-btn-ghost-dark:focus-visible {
  background-color: rgba(29, 29, 31, 0.08);
  color: #1D1D1F;
}

.pp-btn-muted {
  background-color: #6E6E73;
  border-color: #6E6E73;
  color: #F5F5F7;
}

.pp-btn-muted:hover, .pp-btn-muted:focus-visible {
  background-color: rgb(37.9607843137%, 37.9607843137%, 39.6862745098%);
  border-color: rgb(37.9607843137%, 37.9607843137%, 39.6862745098%);
  color: #F5F5F7;
}

.pp-btn-outline-muted {
  background-color: transparent;
  border-color: #6E6E73;
  color: #6E6E73;
}

.pp-btn-outline-muted:hover, .pp-btn-outline-muted:focus-visible {
  background-color: rgba(110, 110, 115, 0.08);
  border-color: #6E6E73;
  color: #6E6E73;
}

.pp-btn-ghost-muted {
  background-color: transparent;
  border-color: transparent;
  color: #6E6E73;
}

.pp-btn-ghost-muted:hover, .pp-btn-ghost-muted:focus-visible {
  background-color: rgba(110, 110, 115, 0.08);
  color: #6E6E73;
}

.pp-btn-white {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #f16839;
}

.pp-btn-white:hover, .pp-btn-white:focus-visible {
  background-color: rgb(88%, 88%, 88%);
  border-color: rgb(88%, 88%, 88%);
  color: #f16839;
}

.pp-btn-outline-white {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.pp-btn-outline-white:hover, .pp-btn-outline-white:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.pp-btn-ghost-white {
  background-color: transparent;
  border-color: transparent;
  color: #FFFFFF;
}

.pp-btn-ghost-white:hover, .pp-btn-ghost-white:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.pp-btn-black {
  background-color: #000000;
  border-color: #000000;
  color: #FFFFFF;
}

.pp-btn-black:hover, .pp-btn-black:focus-visible {
  background-color: black;
  border-color: black;
  color: #FFFFFF;
}

.pp-btn-outline-black {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
}

.pp-btn-outline-black:hover, .pp-btn-outline-black:focus-visible {
  background-color: rgba(0, 0, 0, 0.08);
  border-color: #000000;
  color: #000000;
}

.pp-btn-ghost-black {
  background-color: transparent;
  border-color: transparent;
  color: #000000;
}

.pp-btn-ghost-black:hover, .pp-btn-ghost-black:focus-visible {
  background-color: rgba(0, 0, 0, 0.08);
  color: #000000;
}

.pp-btn-accent-teal {
  background-color: #2DD4BF;
  border-color: #2DD4BF;
  color: #FFFFFF;
}

.pp-btn-accent-teal:hover, .pp-btn-accent-teal:focus-visible {
  background-color: rgb(15.5294117647%, 73.1607843137%, 65.9137254902%);
  border-color: rgb(15.5294117647%, 73.1607843137%, 65.9137254902%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-teal {
  background-color: transparent;
  border-color: #2DD4BF;
  color: #2DD4BF;
}

.pp-btn-outline-accent-teal:hover, .pp-btn-outline-accent-teal:focus-visible {
  background-color: rgba(45, 212, 191, 0.08);
  border-color: #2DD4BF;
  color: #2DD4BF;
}

.pp-btn-ghost-accent-teal {
  background-color: transparent;
  border-color: transparent;
  color: #2DD4BF;
}

.pp-btn-ghost-accent-teal:hover, .pp-btn-ghost-accent-teal:focus-visible {
  background-color: rgba(45, 212, 191, 0.08);
  color: #2DD4BF;
}

.pp-btn-accent-teal-light {
  background-color: #5EEAD4;
  border-color: #5EEAD4;
  color: #f16839;
}

.pp-btn-accent-teal-light:hover, .pp-btn-accent-teal-light:focus-visible {
  background-color: rgb(32.4392156863%, 80.7529411765%, 73.1607843137%);
  border-color: rgb(32.4392156863%, 80.7529411765%, 73.1607843137%);
  color: #f16839;
}

.pp-btn-outline-accent-teal-light {
  background-color: transparent;
  border-color: #5EEAD4;
  color: #5EEAD4;
}

.pp-btn-outline-accent-teal-light:hover, .pp-btn-outline-accent-teal-light:focus-visible {
  background-color: rgba(94, 234, 212, 0.08);
  border-color: #5EEAD4;
  color: #5EEAD4;
}

.pp-btn-ghost-accent-teal-light {
  background-color: transparent;
  border-color: transparent;
  color: #5EEAD4;
}

.pp-btn-ghost-accent-teal-light:hover, .pp-btn-ghost-accent-teal-light:focus-visible {
  background-color: rgba(94, 234, 212, 0.08);
  color: #5EEAD4;
}

.pp-btn-accent-teal-dark {
  background-color: #14B8A6;
  border-color: #14B8A6;
  color: #FFFFFF;
}

.pp-btn-accent-teal-dark:hover, .pp-btn-accent-teal-dark:focus-visible {
  background-color: rgb(6.9019607843%, 63.4980392157%, 57.2862745098%);
  border-color: rgb(6.9019607843%, 63.4980392157%, 57.2862745098%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-teal-dark {
  background-color: transparent;
  border-color: #14B8A6;
  color: #14B8A6;
}

.pp-btn-outline-accent-teal-dark:hover, .pp-btn-outline-accent-teal-dark:focus-visible {
  background-color: rgba(20, 184, 166, 0.08);
  border-color: #14B8A6;
  color: #14B8A6;
}

.pp-btn-ghost-accent-teal-dark {
  background-color: transparent;
  border-color: transparent;
  color: #14B8A6;
}

.pp-btn-ghost-accent-teal-dark:hover, .pp-btn-ghost-accent-teal-dark:focus-visible {
  background-color: rgba(20, 184, 166, 0.08);
  color: #14B8A6;
}

.pp-btn-accent-forest {
  background-color: #2D4A3E;
  border-color: #2D4A3E;
  color: #FFFFFF;
}

.pp-btn-accent-forest:hover, .pp-btn-accent-forest:focus-visible {
  background-color: rgb(15.5294117647%, 25.537254902%, 21.3960784314%);
  border-color: rgb(15.5294117647%, 25.537254902%, 21.3960784314%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-forest {
  background-color: transparent;
  border-color: #2D4A3E;
  color: #2D4A3E;
}

.pp-btn-outline-accent-forest:hover, .pp-btn-outline-accent-forest:focus-visible {
  background-color: rgba(45, 74, 62, 0.08);
  border-color: #2D4A3E;
  color: #2D4A3E;
}

.pp-btn-ghost-accent-forest {
  background-color: transparent;
  border-color: transparent;
  color: #2D4A3E;
}

.pp-btn-ghost-accent-forest:hover, .pp-btn-ghost-accent-forest:focus-visible {
  background-color: rgba(45, 74, 62, 0.08);
  color: #2D4A3E;
}

.pp-btn-accent-forest-light {
  background-color: #3D6B5A;
  border-color: #3D6B5A;
  color: #f16839;
}

.pp-btn-accent-forest-light:hover, .pp-btn-accent-forest-light:focus-visible {
  background-color: rgb(21.0509803922%, 36.9254901961%, 31.0588235294%);
  border-color: rgb(21.0509803922%, 36.9254901961%, 31.0588235294%);
  color: #f16839;
}

.pp-btn-outline-accent-forest-light {
  background-color: transparent;
  border-color: #3D6B5A;
  color: #3D6B5A;
}

.pp-btn-outline-accent-forest-light:hover, .pp-btn-outline-accent-forest-light:focus-visible {
  background-color: rgba(61, 107, 90, 0.08);
  border-color: #3D6B5A;
  color: #3D6B5A;
}

.pp-btn-ghost-accent-forest-light {
  background-color: transparent;
  border-color: transparent;
  color: #3D6B5A;
}

.pp-btn-ghost-accent-forest-light:hover, .pp-btn-ghost-accent-forest-light:focus-visible {
  background-color: rgba(61, 107, 90, 0.08);
  color: #3D6B5A;
}

.pp-btn-accent-forest-dark {
  background-color: #1E352C;
  border-color: #1E352C;
  color: #FFFFFF;
}

.pp-btn-accent-forest-dark:hover, .pp-btn-accent-forest-dark:focus-visible {
  background-color: rgb(10.3529411765%, 18.2901960784%, 15.1843137255%);
  border-color: rgb(10.3529411765%, 18.2901960784%, 15.1843137255%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-forest-dark {
  background-color: transparent;
  border-color: #1E352C;
  color: #1E352C;
}

.pp-btn-outline-accent-forest-dark:hover, .pp-btn-outline-accent-forest-dark:focus-visible {
  background-color: rgba(30, 53, 44, 0.08);
  border-color: #1E352C;
  color: #1E352C;
}

.pp-btn-ghost-accent-forest-dark {
  background-color: transparent;
  border-color: transparent;
  color: #1E352C;
}

.pp-btn-ghost-accent-forest-dark:hover, .pp-btn-ghost-accent-forest-dark:focus-visible {
  background-color: rgba(30, 53, 44, 0.08);
  color: #1E352C;
}

.pp-btn-accent-gold {
  background-color: #B8860B;
  border-color: #B8860B;
  color: #f16839;
}

.pp-btn-accent-gold:hover, .pp-btn-accent-gold:focus-visible {
  background-color: rgb(63.4980392157%, 46.2431372549%, 3.7960784314%);
  border-color: rgb(63.4980392157%, 46.2431372549%, 3.7960784314%);
  color: #f16839;
}

.pp-btn-outline-accent-gold {
  background-color: transparent;
  border-color: #B8860B;
  color: #B8860B;
}

.pp-btn-outline-accent-gold:hover, .pp-btn-outline-accent-gold:focus-visible {
  background-color: rgba(184, 134, 11, 0.08);
  border-color: #B8860B;
  color: #B8860B;
}

.pp-btn-ghost-accent-gold {
  background-color: transparent;
  border-color: transparent;
  color: #B8860B;
}

.pp-btn-ghost-accent-gold:hover, .pp-btn-ghost-accent-gold:focus-visible {
  background-color: rgba(184, 134, 11, 0.08);
  color: #B8860B;
}

.pp-btn-accent-gold-light {
  background-color: #D4A017;
  border-color: #D4A017;
  color: #f16839;
}

.pp-btn-accent-gold-light:hover, .pp-btn-accent-gold-light:focus-visible {
  background-color: rgb(73.1607843137%, 55.2156862745%, 7.937254902%);
  border-color: rgb(73.1607843137%, 55.2156862745%, 7.937254902%);
  color: #f16839;
}

.pp-btn-outline-accent-gold-light {
  background-color: transparent;
  border-color: #D4A017;
  color: #D4A017;
}

.pp-btn-outline-accent-gold-light:hover, .pp-btn-outline-accent-gold-light:focus-visible {
  background-color: rgba(212, 160, 23, 0.08);
  border-color: #D4A017;
  color: #D4A017;
}

.pp-btn-ghost-accent-gold-light {
  background-color: transparent;
  border-color: transparent;
  color: #D4A017;
}

.pp-btn-ghost-accent-gold-light:hover, .pp-btn-ghost-accent-gold-light:focus-visible {
  background-color: rgba(212, 160, 23, 0.08);
  color: #D4A017;
}

.pp-btn-accent-gold-dark {
  background-color: #8B6508;
  border-color: #8B6508;
  color: #FFFFFF;
}

.pp-btn-accent-gold-dark:hover, .pp-btn-accent-gold-dark:focus-visible {
  background-color: rgb(47.968627451%, 34.8549019608%, 2.7607843137%);
  border-color: rgb(47.968627451%, 34.8549019608%, 2.7607843137%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-gold-dark {
  background-color: transparent;
  border-color: #8B6508;
  color: #8B6508;
}

.pp-btn-outline-accent-gold-dark:hover, .pp-btn-outline-accent-gold-dark:focus-visible {
  background-color: rgba(139, 101, 8, 0.08);
  border-color: #8B6508;
  color: #8B6508;
}

.pp-btn-ghost-accent-gold-dark {
  background-color: transparent;
  border-color: transparent;
  color: #8B6508;
}

.pp-btn-ghost-accent-gold-dark:hover, .pp-btn-ghost-accent-gold-dark:focus-visible {
  background-color: rgba(139, 101, 8, 0.08);
  color: #8B6508;
}

.pp-btn-accent-rust {
  background-color: #C2410C;
  border-color: #C2410C;
  color: #FFFFFF;
}

.pp-btn-accent-rust:hover, .pp-btn-accent-rust:focus-visible {
  background-color: rgb(66.9490196078%, 22.431372549%, 4.1411764706%);
  border-color: rgb(66.9490196078%, 22.431372549%, 4.1411764706%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-rust {
  background-color: transparent;
  border-color: #C2410C;
  color: #C2410C;
}

.pp-btn-outline-accent-rust:hover, .pp-btn-outline-accent-rust:focus-visible {
  background-color: rgba(194, 65, 12, 0.08);
  border-color: #C2410C;
  color: #C2410C;
}

.pp-btn-ghost-accent-rust {
  background-color: transparent;
  border-color: transparent;
  color: #C2410C;
}

.pp-btn-ghost-accent-rust:hover, .pp-btn-ghost-accent-rust:focus-visible {
  background-color: rgba(194, 65, 12, 0.08);
  color: #C2410C;
}

.pp-btn-accent-rust-light {
  background-color: #EA580C;
  border-color: #EA580C;
  color: #FFFFFF;
}

.pp-btn-accent-rust-light:hover, .pp-btn-accent-rust-light:focus-visible {
  background-color: rgb(80.7529411765%, 30.368627451%, 4.1411764706%);
  border-color: rgb(80.7529411765%, 30.368627451%, 4.1411764706%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-rust-light {
  background-color: transparent;
  border-color: #EA580C;
  color: #EA580C;
}

.pp-btn-outline-accent-rust-light:hover, .pp-btn-outline-accent-rust-light:focus-visible {
  background-color: rgba(234, 88, 12, 0.08);
  border-color: #EA580C;
  color: #EA580C;
}

.pp-btn-ghost-accent-rust-light {
  background-color: transparent;
  border-color: transparent;
  color: #EA580C;
}

.pp-btn-ghost-accent-rust-light:hover, .pp-btn-ghost-accent-rust-light:focus-visible {
  background-color: rgba(234, 88, 12, 0.08);
  color: #EA580C;
}

.pp-btn-accent-rust-dark {
  background-color: #9A3412;
  border-color: #9A3412;
  color: #FFFFFF;
}

.pp-btn-accent-rust-dark:hover, .pp-btn-accent-rust-dark:focus-visible {
  background-color: rgb(53.1450980392%, 17.9450980392%, 6.2117647059%);
  border-color: rgb(53.1450980392%, 17.9450980392%, 6.2117647059%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-rust-dark {
  background-color: transparent;
  border-color: #9A3412;
  color: #9A3412;
}

.pp-btn-outline-accent-rust-dark:hover, .pp-btn-outline-accent-rust-dark:focus-visible {
  background-color: rgba(154, 52, 18, 0.08);
  border-color: #9A3412;
  color: #9A3412;
}

.pp-btn-ghost-accent-rust-dark {
  background-color: transparent;
  border-color: transparent;
  color: #9A3412;
}

.pp-btn-ghost-accent-rust-dark:hover, .pp-btn-ghost-accent-rust-dark:focus-visible {
  background-color: rgba(154, 52, 18, 0.08);
  color: #9A3412;
}

.pp-btn-accent-rose {
  background-color: #BE185D;
  border-color: #BE185D;
  color: #BE185D;
}

.pp-btn-accent-rose:hover, .pp-btn-accent-rose:focus-visible {
  background-color: rgb(65.568627451%, 8.2823529412%, 32.0941176471%);
  border-color: rgb(65.568627451%, 8.2823529412%, 32.0941176471%);
  color: #BE185D;
}

.pp-btn-outline-accent-rose {
  background-color: transparent;
  border-color: #BE185D;
  color: #BE185D;
}

.pp-btn-outline-accent-rose:hover, .pp-btn-outline-accent-rose:focus-visible {
  background-color: rgba(190, 24, 93, 0.08);
  border-color: #BE185D;
  color: #BE185D;
}

.pp-btn-ghost-accent-rose {
  background-color: transparent;
  border-color: transparent;
  color: #BE185D;
}

.pp-btn-ghost-accent-rose:hover, .pp-btn-ghost-accent-rose:focus-visible {
  background-color: rgba(190, 24, 93, 0.08);
  color: #BE185D;
}

.pp-btn-accent-rose-light {
  background-color: #DB2777;
  border-color: #DB2777;
  color: #f16839;
}

.pp-btn-accent-rose-light:hover, .pp-btn-accent-rose-light:focus-visible {
  background-color: rgb(75.5764705882%, 13.4588235294%, 41.0666666667%);
  border-color: rgb(75.5764705882%, 13.4588235294%, 41.0666666667%);
  color: #f16839;
}

.pp-btn-outline-accent-rose-light {
  background-color: transparent;
  border-color: #DB2777;
  color: #DB2777;
}

.pp-btn-outline-accent-rose-light:hover, .pp-btn-outline-accent-rose-light:focus-visible {
  background-color: rgba(219, 39, 119, 0.08);
  border-color: #DB2777;
  color: #DB2777;
}

.pp-btn-ghost-accent-rose-light {
  background-color: transparent;
  border-color: transparent;
  color: #DB2777;
}

.pp-btn-ghost-accent-rose-light:hover, .pp-btn-ghost-accent-rose-light:focus-visible {
  background-color: rgba(219, 39, 119, 0.08);
  color: #DB2777;
}

.pp-btn-accent-rose-dark {
  background-color: #9D174D;
  border-color: #9D174D;
  color: #FFFFFF;
}

.pp-btn-accent-rose-dark:hover, .pp-btn-accent-rose-dark:focus-visible {
  background-color: rgb(54.1803921569%, 7.937254902%, 26.5725490196%);
  border-color: rgb(54.1803921569%, 7.937254902%, 26.5725490196%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-rose-dark {
  background-color: transparent;
  border-color: #9D174D;
  color: #9D174D;
}

.pp-btn-outline-accent-rose-dark:hover, .pp-btn-outline-accent-rose-dark:focus-visible {
  background-color: rgba(157, 23, 77, 0.08);
  border-color: #9D174D;
  color: #9D174D;
}

.pp-btn-ghost-accent-rose-dark {
  background-color: transparent;
  border-color: transparent;
  color: #9D174D;
}

.pp-btn-ghost-accent-rose-dark:hover, .pp-btn-ghost-accent-rose-dark:focus-visible {
  background-color: rgba(157, 23, 77, 0.08);
  color: #9D174D;
}

.pp-btn-accent-primary {
  background-color: #f16839;
  border-color: #f16839;
  color: #FFFFFF;
}

.pp-btn-accent-primary:hover, .pp-btn-accent-primary:focus-visible {
  background-color: rgb(83.168627451%, 35.8901960784%, 19.6705882353%);
  border-color: rgb(83.168627451%, 35.8901960784%, 19.6705882353%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-primary {
  background-color: transparent;
  border-color: #f16839;
  color: #f16839;
}

.pp-btn-outline-accent-primary:hover, .pp-btn-outline-accent-primary:focus-visible {
  background-color: rgba(241, 104, 57, 0.08);
  border-color: #f16839;
  color: #f16839;
}

.pp-btn-ghost-accent-primary {
  background-color: transparent;
  border-color: transparent;
  color: #f16839;
}

.pp-btn-ghost-accent-primary:hover, .pp-btn-ghost-accent-primary:focus-visible {
  background-color: rgba(241, 104, 57, 0.08);
  color: #f16839;
}

.pp-btn-accent-primary-light {
  background-color: #FF8A80;
  border-color: #FF8A80;
  color: #f16839;
}

.pp-btn-accent-primary-light:hover, .pp-btn-accent-primary-light:focus-visible {
  background-color: rgb(88%, 47.6235294118%, 44.1725490196%);
  border-color: rgb(88%, 47.6235294118%, 44.1725490196%);
  color: #f16839;
}

.pp-btn-outline-accent-primary-light {
  background-color: transparent;
  border-color: #FF8A80;
  color: #FF8A80;
}

.pp-btn-outline-accent-primary-light:hover, .pp-btn-outline-accent-primary-light:focus-visible {
  background-color: rgba(255, 138, 128, 0.08);
  border-color: #FF8A80;
  color: #FF8A80;
}

.pp-btn-ghost-accent-primary-light {
  background-color: transparent;
  border-color: transparent;
  color: #FF8A80;
}

.pp-btn-ghost-accent-primary-light:hover, .pp-btn-ghost-accent-primary-light:focus-visible {
  background-color: rgba(255, 138, 128, 0.08);
  color: #FF8A80;
}

.pp-btn-accent-secondary {
  background-color: #adadad;
  border-color: #adadad;
  color: #FFFFFF;
}

.pp-btn-accent-secondary:hover, .pp-btn-accent-secondary:focus-visible {
  background-color: rgb(59.7019607843%, 59.7019607843%, 59.7019607843%);
  border-color: rgb(59.7019607843%, 59.7019607843%, 59.7019607843%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-secondary {
  background-color: transparent;
  border-color: #adadad;
  color: #adadad;
}

.pp-btn-outline-accent-secondary:hover, .pp-btn-outline-accent-secondary:focus-visible {
  background-color: rgba(173, 173, 173, 0.08);
  border-color: #adadad;
  color: #adadad;
}

.pp-btn-ghost-accent-secondary {
  background-color: transparent;
  border-color: transparent;
  color: #adadad;
}

.pp-btn-ghost-accent-secondary:hover, .pp-btn-ghost-accent-secondary:focus-visible {
  background-color: rgba(173, 173, 173, 0.08);
  color: #adadad;
}

.pp-btn-accent-secondary-light {
  background-color: #dadada;
  border-color: #dadada;
  color: #FFFFFF;
}

.pp-btn-accent-secondary-light:hover, .pp-btn-accent-secondary-light:focus-visible {
  background-color: rgb(75.231372549%, 75.231372549%, 75.231372549%);
  border-color: rgb(75.231372549%, 75.231372549%, 75.231372549%);
  color: #FFFFFF;
}

.pp-btn-outline-accent-secondary-light {
  background-color: transparent;
  border-color: #dadada;
  color: #dadada;
}

.pp-btn-outline-accent-secondary-light:hover, .pp-btn-outline-accent-secondary-light:focus-visible {
  background-color: rgba(218, 218, 218, 0.08);
  border-color: #dadada;
  color: #dadada;
}

.pp-btn-ghost-accent-secondary-light {
  background-color: transparent;
  border-color: transparent;
  color: #dadada;
}

.pp-btn-ghost-accent-secondary-light:hover, .pp-btn-ghost-accent-secondary-light:focus-visible {
  background-color: rgba(218, 218, 218, 0.08);
  color: #dadada;
}

.pp-btn-success {
  background-color: #16A34A;
  border-color: #16A34A;
  color: #FFFFFF;
}

.pp-btn-success:hover, .pp-btn-success:focus-visible {
  background-color: rgb(7.5921568627%, 56.2509803922%, 25.537254902%);
  border-color: rgb(7.5921568627%, 56.2509803922%, 25.537254902%);
  color: #FFFFFF;
}

.pp-btn-outline-success {
  background-color: transparent;
  border-color: #16A34A;
  color: #16A34A;
}

.pp-btn-outline-success:hover, .pp-btn-outline-success:focus-visible {
  background-color: rgba(22, 163, 74, 0.08);
  border-color: #16A34A;
  color: #16A34A;
}

.pp-btn-ghost-success {
  background-color: transparent;
  border-color: transparent;
  color: #16A34A;
}

.pp-btn-ghost-success:hover, .pp-btn-ghost-success:focus-visible {
  background-color: rgba(22, 163, 74, 0.08);
  color: #16A34A;
}

.pp-btn-danger {
  background-color: #DC2626;
  border-color: #DC2626;
  color: #FFFFFF;
}

.pp-btn-danger:hover, .pp-btn-danger:focus-visible {
  background-color: rgb(75.9215686275%, 13.1137254902%, 13.1137254902%);
  border-color: rgb(75.9215686275%, 13.1137254902%, 13.1137254902%);
  color: #FFFFFF;
}

.pp-btn-outline-danger {
  background-color: transparent;
  border-color: #DC2626;
  color: #DC2626;
}

.pp-btn-outline-danger:hover, .pp-btn-outline-danger:focus-visible {
  background-color: rgba(220, 38, 38, 0.08);
  border-color: #DC2626;
  color: #DC2626;
}

.pp-btn-ghost-danger {
  background-color: transparent;
  border-color: transparent;
  color: #DC2626;
}

.pp-btn-ghost-danger:hover, .pp-btn-ghost-danger:focus-visible {
  background-color: rgba(220, 38, 38, 0.08);
  color: #DC2626;
}

.pp-btn-warning {
  background-color: #F59E0B;
  border-color: #F59E0B;
  color: #f16839;
}

.pp-btn-warning:hover, .pp-btn-warning:focus-visible {
  background-color: rgb(84.5490196078%, 54.5254901961%, 3.7960784314%);
  border-color: rgb(84.5490196078%, 54.5254901961%, 3.7960784314%);
  color: #f16839;
}

.pp-btn-outline-warning {
  background-color: transparent;
  border-color: #F59E0B;
  color: #F59E0B;
}

.pp-btn-outline-warning:hover, .pp-btn-outline-warning:focus-visible {
  background-color: rgba(245, 158, 11, 0.08);
  border-color: #F59E0B;
  color: #F59E0B;
}

.pp-btn-ghost-warning {
  background-color: transparent;
  border-color: transparent;
  color: #F59E0B;
}

.pp-btn-ghost-warning:hover, .pp-btn-ghost-warning:focus-visible {
  background-color: rgba(245, 158, 11, 0.08);
  color: #F59E0B;
}

.pp-btn-info {
  background-color: #2DD4BF;
  border-color: #2DD4BF;
  color: #FFFFFF;
}

.pp-btn-info:hover, .pp-btn-info:focus-visible {
  background-color: rgb(15.5294117647%, 73.1607843137%, 65.9137254902%);
  border-color: rgb(15.5294117647%, 73.1607843137%, 65.9137254902%);
  color: #FFFFFF;
}

.pp-btn-outline-info {
  background-color: transparent;
  border-color: #2DD4BF;
  color: #2DD4BF;
}

.pp-btn-outline-info:hover, .pp-btn-outline-info:focus-visible {
  background-color: rgba(45, 212, 191, 0.08);
  border-color: #2DD4BF;
  color: #2DD4BF;
}

.pp-btn-ghost-info {
  background-color: transparent;
  border-color: transparent;
  color: #2DD4BF;
}

.pp-btn-ghost-info:hover, .pp-btn-ghost-info:focus-visible {
  background-color: rgba(45, 212, 191, 0.08);
  color: #2DD4BF;
}

.pp-btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--bs--color-text-on-dark-muted);
}

.pp-btn-outline-light:hover, .pp-btn-outline-light:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

.pp-btn-ghost-light {
  color: var(--bs--color-text-on-dark-muted);
}

.pp-btn-ghost-light:hover, .pp-btn-ghost-light:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.pp-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.pp-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.pp-btn-pill {
  border-radius: 999px;
}

.pp-btn-square {
  border-radius: 0;
}

.pp-btn-block {
  display: flex;
  width: 100%;
}

.pp-btn-link {
  background: transparent;
  border: none;
  padding: 0;
  color: #64030b;
  text-decoration: none;
  text-underline-offset: 2px;
}

.pp-btn-link:hover, .pp-btn-link:focus-visible {
  color: #2E46D4;
  background: transparent;
  text-decoration-thickness: 2px;
}

.pp-btn-link:focus-visible {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

.pp-btn-link:active {
  transform: none;
}

.pp-btn-icon {
  padding: 0.75rem;
  aspect-ratio: 1/1;
}

.pp-btn-icon svg, .pp-btn-icon i {
  width: 1.1em;
  height: 1.1em;
}

.pp-btn-icon.pp-btn-sm {
  padding: 0.5rem;
}

.pp-btn-icon.pp-btn-lg {
  padding: 1rem;
}

.pp-btn:disabled,
.pp-btn[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pp-btn-loading {
  position: relative;
  pointer-events: none;
}

.pp-btn-loading .pp-btn__label {
  opacity: 0;
}

.pp-btn-loading .pp-btn__spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-btn__spinner-icon {
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: pp-btn-spin 0.6s linear infinite;
}

@keyframes pp-btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.pp-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.pp-btn-group-center {
  justify-content: center;
}

.pp-btn-group-vertical {
  flex-direction: column;
  align-items: stretch;
}

.pp-btn-group-vertical .pp-btn {
  width: 100%;
}

.crd {
  display: flex;
  flex-direction: column;
  background: var(--bs--color-card-bg);
  border: 1px solid var(--bs--color-border);
  border-radius: 18px;
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 30;
}

.crd:not(.crd--static):hover {
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.crd--static:hover {
  box-shadow: none;
  transform: none;
}

.crd--flat {
  border: none;
  background: transparent;
  padding: 0;
}

.crd--flat:hover {
  box-shadow: none;
  transform: none;
}

.crd--accent-top {
  border-top: 3px solid #64030b;
}

.crd--accent-top-primary {
  border-top: 3px solid #f16839;
}

.crd--accent-top-secondary {
  border-top: 3px solid #64030b;
}

.crd--accent-top-primary-light {
  border-top: 3px solid #FFB4AD;
}

.crd--accent-top-primary-mid {
  border-top: 3px solid #FF8A80;
}

.crd--accent-top-light {
  border-top: 3px solid #F5F5F7;
}

.crd--accent-top-dark {
  border-top: 3px solid #1D1D1F;
}

.crd--accent-top-muted {
  border-top: 3px solid #6E6E73;
}

.crd--accent-top-white {
  border-top: 3px solid #FFFFFF;
}

.crd--accent-top-black {
  border-top: 3px solid #000000;
}

.crd--accent-top-accent-teal {
  border-top: 3px solid #2DD4BF;
}

.crd--accent-top-accent-teal-light {
  border-top: 3px solid #5EEAD4;
}

.crd--accent-top-accent-teal-dark {
  border-top: 3px solid #14B8A6;
}

.crd--accent-top-accent-forest {
  border-top: 3px solid #2D4A3E;
}

.crd--accent-top-accent-forest-light {
  border-top: 3px solid #3D6B5A;
}

.crd--accent-top-accent-forest-dark {
  border-top: 3px solid #1E352C;
}

.crd--accent-top-accent-gold {
  border-top: 3px solid #B8860B;
}

.crd--accent-top-accent-gold-light {
  border-top: 3px solid #D4A017;
}

.crd--accent-top-accent-gold-dark {
  border-top: 3px solid #8B6508;
}

.crd--accent-top-accent-rust {
  border-top: 3px solid #C2410C;
}

.crd--accent-top-accent-rust-light {
  border-top: 3px solid #EA580C;
}

.crd--accent-top-accent-rust-dark {
  border-top: 3px solid #9A3412;
}

.crd--accent-top-accent-rose {
  border-top: 3px solid #BE185D;
}

.crd--accent-top-accent-rose-light {
  border-top: 3px solid #DB2777;
}

.crd--accent-top-accent-rose-dark {
  border-top: 3px solid #9D174D;
}

.crd--accent-top-accent-primary {
  border-top: 3px solid #f16839;
}

.crd--accent-top-accent-primary-light {
  border-top: 3px solid #FF8A80;
}

.crd--accent-top-accent-secondary {
  border-top: 3px solid #adadad;
}

.crd--accent-top-accent-secondary-light {
  border-top: 3px solid #dadada;
}

.crd--accent-top-success {
  border-top: 3px solid #16A34A;
}

.crd--accent-top-danger {
  border-top: 3px solid #DC2626;
}

.crd--accent-top-warning {
  border-top: 3px solid #F59E0B;
}

.crd--accent-top-info {
  border-top: 3px solid #2DD4BF;
}

.crd--dark {
  background: #1D1D1F;
  border-color: var(--bs--color-border-dark);
  color: var(--bs--color-text-on-dark-muted);
}

.crd--dark .crd__title {
  color: #FFFFFF;
}

.crd--dark .crd__text {
  color: var(--bs--color-text-on-dark-muted);
}

.crd--dark:not(.crd--static):hover {
  background: rgb(18.462745098%, 18.462745098%, 19.1843137255%);
  box-shadow: none;
}

.crd__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bs--color-background-alt);
  font-size: 20px;
  color: #f16839;
  margin-bottom: 1rem;
}

.crd--dark .crd__icon {
  background: rgba(100, 3, 11, 0.12);
  color: #64030b;
}

.crd__title {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--bs--color-text);
  margin-bottom: 0.5rem;
}

.crd__text {
  font-size: 0.875rem;
  color: var(--bs--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

.crd__text + .crd__text {
  margin-top: 0.5rem;
}

.crd__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #64030b;
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.15s ease;
}

.crd__link:hover, .crd__link:focus-visible {
  text-decoration: underline;
}

.crd__link:focus-visible {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

.crd--dark .crd__link {
  color: #64030b;
}

.crd {
  position: relative;
}

.crd__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #EAEEFF;
  color: #f16839;
}

.crd__media {
  margin: calc(1.5rem * -1) calc(1.5rem * -1) 1.5rem;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.crd__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.crd--flat .crd__media {
  margin: 0 0 1rem;
  border-radius: 18px;
}

.crd__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: calc(1.5rem * -1) calc(1.5rem * -1) 1.25rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--bs--color-border);
  border-radius: 18px 18px 0 0;
  min-height: 56px;
}

.crd--flat .crd__header {
  margin: 0 0 1.25rem;
  padding: 0 0 1.25rem;
  border-radius: 0;
}

.crd__header-title {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bs--color-text);
  margin: 0;
  flex: 1;
  min-width: 0;
}

.crd__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--bs--color-background-alt);
  color: #f16839;
  flex-shrink: 0;
}

.crd__header-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.crd__header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.crd--dark .crd__header {
  border-bottom-color: var(--bs--color-border-dark);
}

.crd--dark .crd__header-title {
  color: #FFFFFF;
}

.crd--dark .crd__header-icon {
  background: rgba(100, 3, 11, 0.12);
  color: #64030b;
}

.crd__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bs--color-border);
}

.crd--flat .crd__footer {
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-radius: 0;
}

.crd--dark .crd__footer {
  border-top-color: var(--bs--color-border-dark);
}

.crd__footer-info {
  font-size: 0.75rem;
  color: var(--bs--color-text-muted);
}

.crd--dark .crd__footer-info {
  color: #86868B;
}

.crd__footer-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crd--horizontal {
  flex-direction: column;
}

@media (min-width: 768px) {
  .crd--horizontal {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.crd--horizontal .crd__media {
  margin: calc(1.5rem * -1) calc(1.5rem * -1) 1.5rem;
  border-radius: 18px 18px 0 0;
}

@media (min-width: 768px) {
  .crd--horizontal .crd__media {
    flex: 0 0 200px;
    margin: calc(1.5rem * -1) 0 0 calc(1.5rem * -1);
    border-radius: 18px 0 0 18px;
  }
  .crd--horizontal .crd__media img {
    aspect-ratio: 1/1;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .crd--horizontal .crd__icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
.crd--horizontal .crd__body {
  flex: 1;
}

.frm-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.frm-inline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .frm-inline {
    flex-direction: row;
    align-items: flex-start;
  }
  .frm-inline > .fld-group {
    flex: 1;
    margin-bottom: 0;
  }
  .frm-inline > .pp-btn {
    flex-shrink: 0;
  }
}
.frm-container {
  border: 1px solid var(--bs--color-border);
  border-radius: 18px;
  padding: 1.5rem;
}

.frm-container--card {
  background: var(--bs--color-card-bg);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
}

.frm-container--dark {
  background: #1D1D1F;
  border-color: var(--bs--color-border-dark);
}

.frm-container--dark .fld-label,
.frm-container--dark .fld-switch__label,
.frm-container--dark .fld-check__label {
  color: #FFFFFF;
}

.frm-container--dark .fld-hint {
  color: var(--bs--color-text-on-dark-muted);
}

.frm-container--dark .fld {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--bs--color-border-dark);
  color: #FFFFFF;
}

.frm-container--dark .fld::-moz-placeholder {
  color: var(--bs--color-text-on-dark-muted);
}

.frm-container--dark .fld::placeholder {
  color: var(--bs--color-text-on-dark-muted);
}

.frm-container--dark .fld:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.frm-container--dark .fld:focus {
  border-color: #64030b;
  box-shadow: 0 0 0 3px rgba(100, 3, 11, 0.16);
}

.frm-container--dark .fld-select-wrap::after {
  background-color: var(--bs--color-text-on-dark-muted);
}

.frm-container--dark .fld-check__box,
.frm-container--dark .fld-switch__track {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--bs--color-border-dark);
}

.frm-container--dark .fld-switch__track::after {
  background-color: #FFFFFF;
}

.frm-container--dark .fld-input-group__addon {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--bs--color-border-dark);
  color: var(--bs--color-text-on-dark-muted);
}

.frm-container--flush {
  border: none;
  padding: 1.5rem;
}

.frm-container--lg {
  padding: 2rem;
}

@media (max-width: 767.98px) {
  .frm-container {
    padding: 1rem;
  }
  .frm-container--lg {
    padding: 1.5rem;
  }
}
.fld-group {
  display: flex;
  flex-direction: column;
}

.fld-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .fld-row {
    flex-direction: row;
  }
  .fld-row > .fld-group {
    flex: 1;
  }
}
.fld-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bs--color-text);
  margin-bottom: 0.5rem;
}

.fld-required {
  color: #DC2626;
  margin-left: 0.25rem;
}

.fld {
  display: block;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: var(--bs--color-text);
  padding: 0.75rem 1rem;
  background-color: var(--bs--color-input-bg);
  border: 1px solid var(--bs--color-border);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fld::-moz-placeholder {
  color: #86868B;
}

.fld::placeholder {
  color: #86868B;
}

.fld:hover {
  border-color: #86868B;
}

.fld:focus {
  outline: none;
  border-color: #64030b;
  box-shadow: 0 0 0 3px rgba(100, 3, 11, 0.16);
}

.fld:focus-visible {
  outline: none;
}

.fld:disabled, .fld[aria-disabled=true] {
  background-color: #F5F5F7;
  border-color: var(--bs--color-border);
  color: #86868B;
  cursor: not-allowed;
  opacity: 1;
}

.fld:-moz-read-only {
  cursor: default;
}

.fld:read-only {
  cursor: default;
}

.fld--sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 4px;
}

.fld--lg {
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  border-radius: 18px;
}

.fld--textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.fld-select-wrap {
  position: relative;
}

.fld-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  pointer-events: none;
  background-color: #6E6E73;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.fld--select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.fld--select::-ms-expand {
  display: none;
}

.fld-hint {
  font-size: 0.75rem;
  color: var(--bs--color-text-muted);
  margin-top: 0.5rem;
}

.fld-message {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.fld-message--invalid {
  color: #DC2626;
}

.fld-message--valid {
  color: #16A34A;
}

.fld--invalid,
.fld[aria-invalid=true] {
  border-color: #DC2626;
}

.fld--invalid:focus,
.fld[aria-invalid=true]:focus {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.fld--valid {
  border-color: #16A34A;
}

.fld--valid:focus {
  border-color: #16A34A;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.fld-input-group {
  display: flex;
  align-items: stretch;
}

.fld-input-group .fld {
  border-radius: 0;
  flex: 1;
}

.fld-input-group > :first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.fld-input-group > :last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.fld-input-group > :not(:first-child) {
  border-left: none;
}

.fld-input-group .fld:focus {
  z-index: 1;
  position: relative;
}

.fld-input-group__addon {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background-color: #F5F5F7;
  border: 1px solid var(--bs--color-border);
  color: var(--bs--color-text-muted);
  font-size: 0.875rem;
  white-space: nowrap;
}

.fld-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fld-check + .fld-check {
  margin-top: 0.75rem;
}

.fld-check__box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--bs--color-input-bg);
  border: 1px solid var(--bs--color-border);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.fld-check__box::after {
  content: "";
  display: block;
  width: 10px;
  height: 7px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.15s ease;
}

.fld-check--radio .fld-check__box {
  border-radius: 999px;
}

.fld-check--radio .fld-check__box::after {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background-color: #FFFFFF;
  transform: scale(0);
  transition: transform 0.15s ease;
}

.fld-check__box:checked {
  background-color: #f16839;
  border-color: #f16839;
}

.fld-check__box:checked::after {
  transform: rotate(-45deg) scale(1);
}

.fld-check--radio .fld-check__box:checked::after {
  transform: scale(1);
}

.fld-check__box:focus-visible {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

.fld-check__box:disabled {
  background-color: #F5F5F7;
  border-color: var(--bs--color-border);
  cursor: not-allowed;
}

.fld-check__label {
  font-size: 0.875rem;
  color: var(--bs--color-text);
  line-height: 1.5;
  cursor: pointer;
}

.fld-check__box:disabled ~ .fld-check__label {
  color: #86868B;
  cursor: not-allowed;
}

.fld-switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fld-switch__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.fld-switch__track {
  flex-shrink: 0;
  position: relative;
  width: 40px;
  height: 24px;
  background-color: #D2D2D7;
  border-radius: 999px;
  transition: background-color 0.15s ease;
}

.fld-switch__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease;
}

.fld-switch__input:checked + .fld-switch__track {
  background-color: #f16839;
}

.fld-switch__input:checked + .fld-switch__track::after {
  transform: translateX(16px);
}

.fld-switch__input:focus-visible + .fld-switch__track {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

.fld-switch__input:disabled + .fld-switch__track {
  opacity: 0.5;
  cursor: not-allowed;
}

.fld-switch__label {
  font-size: 0.875rem;
  color: var(--bs--color-text);
}

.hr {
  position: relative;
  background: #f16839;
  color: #FFFFFF;
  overflow: hidden;
  padding: 6rem 0;
}

@media (max-width: 767.98px) {
  .hr {
    padding: 4rem 0;
  }
}
.hr__inner {
  position: relative;
  z-index: 2;
}

.hr--sm {
  padding: 4rem 0;
}

@media (max-width: 767.98px) {
  .hr--sm {
    padding: 3rem 0;
  }
}
.hr--lg {
  padding: 8rem 0;
}

@media (max-width: 767.98px) {
  .hr--lg {
    padding: 5rem 0;
  }
}
.hr--full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

@media (max-width: 767.98px) {
  .hr--full {
    min-height: auto;
    padding: 4rem 0;
  }
}
.hr__content {
  max-width: 720px;
}

.hr--centered .hr__content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hr--right .hr__content {
  margin-left: auto;
  text-align: right;
}

.hr__title {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
}

@media (max-width: 767.98px) {
  .hr__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}
.hr__title em,
.hr__title .tx--accent {
  color: #64030b;
  font-style: normal;
}

.hr__subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #86868B;
  margin-bottom: 2rem;
  max-width: 600px;
}

@media (max-width: 767.98px) {
  .hr__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.hr--centered .hr__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hr__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 767.98px) {
  .hr__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.hr--centered .hr__actions {
  justify-content: center;
}

.hr--right .hr__actions {
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .hr__actions > .pp-btn:only-child {
    width: auto;
  }
}
.hr--light {
  background: #F5F5F7;
  color: #f16839;
}

.hr--light .hr__title {
  color: #f16839;
}

.hr--light .hr__subtitle {
  color: #6E6E73;
}

.hr--gradient {
  background: linear-gradient(135deg, #f16839 0%, #FF8A80 50%, #FFB4AD 100%);
}

.hr--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hr__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hr__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(241, 104, 57, 0.85) 0%, rgba(241, 104, 57, 0.7) 50%, rgba(241, 104, 57, 0.9) 100%);
}

.hr__overlay--light {
  background: linear-gradient(180deg, rgba(241, 104, 57, 0.6) 0%, rgba(241, 104, 57, 0.45) 50%, rgba(241, 104, 57, 0.65) 100%);
}

.hr--split .hr__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hr--split .hr__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
.hr--split .hr__content {
  flex: 1;
  min-width: 0;
}

@media (max-width: 767.98px) {
  .hr--split .hr__content {
    text-align: center;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .hr--split .hr__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767.98px) {
  .hr--split .hr__actions {
    justify-content: center;
  }
}
.hr--split .hr__media {
  flex: 0 1 auto;
  max-width: 480px;
  width: 100%;
}

@media (max-width: 767.98px) {
  .hr--split .hr__media {
    max-width: 100%;
  }
}
.hr--split .hr__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.15);
}

.hr__trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.98px) {
  .hr__trust {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
}
.hr--light .hr__trust {
  border-top-color: #D2D2D7;
}

.hr__trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #86868B;
  margin-bottom: 1rem;
  text-align: center;
}

.hr__trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.hr__trust-logos img {
  height: 28px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.15s ease, filter 0.15s ease;
}

.hr__trust-logos img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

@media (max-width: 767.98px) {
  .hr__trust-logos {
    gap: 1.5rem;
  }
  .hr__trust-logos img {
    height: 22px;
  }
}
.ft {
  padding: 4rem 0 0;
}

@media (max-width: 767.98px) {
  .ft {
    padding: 2.5rem 0 0;
  }
}
.ft--darker {
  background: #1D1D1F;
}

.ft--bg {
  background-color: #F5F5F7;
  color: #000000;
}

.ft__top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--bs--color-border-dark);
}

@media (max-width: 767.98px) {
  .ft__top {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2rem;
  }
}
.ft__brand {
  max-width: 280px;
}

@media (max-width: 767.98px) {
  .ft__brand {
    max-width: 100%;
  }
}
.ft__logo {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.ft__tagline {
  font-size: 0.875rem;
  color: #86868B;
  line-height: 1.7;
}

.ft__links {
  display: flex;
  gap: 3rem;
}

@media (max-width: 767.98px) {
  .ft__links {
    gap: 2rem;
  }
}
.ft__col {
  min-width: 140px;
}

.ft__heading {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.ft__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft__link {
  display: block;
  font-size: 0.875rem;
  color: #86868B;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.15s ease;
}

.ft__link:hover, .ft__link:focus-visible {
  color: #64030b;
}

.ft__link:focus-visible {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

.ft__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

@media (max-width: 767.98px) {
  .ft__bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 0;
  }
}
.ft__copy {
  font-size: 0.75rem;
  color: #6E6E73;
}

.ft__social {
  display: flex;
  gap: 0.75rem;
}

.ft__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--bs--color-border-dark);
  color: #86868B;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.ft__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.ft__social-link:hover, .ft__social-link:focus-visible {
  color: #64030b;
  border-color: rgba(100, 3, 11, 0.3);
  background: rgba(100, 3, 11, 0.08);
}

.ft__social-link:focus-visible {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

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

.ft--centered .ft__top {
  flex-direction: column;
  align-items: center;
}

.ft--centered .ft__brand {
  max-width: 400px;
}

.ft--centered .ft__links {
  justify-content: center;
}

.ft--centered .ft__bottom {
  justify-content: center;
}

.ft--centered .ft__social {
  justify-content: center;
}

.ft--columns .ft__links {
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .ft--columns .ft__links {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .ft--columns .ft__col {
    flex: 1;
    min-width: 0;
  }
}
.ft--light {
  background: #F5F5F7;
  color: var(--bs--color-text);
}

.ft--light .ft__logo {
  color: #f16839;
}

.ft--light .ft__tagline {
  color: var(--bs--color-text-muted);
}

.ft--light .ft__heading {
  color: #f16839;
}

.ft--light .ft__link {
  color: var(--bs--color-text-muted);
}

.ft--light .ft__link:hover, .ft--light .ft__link:focus-visible {
  color: #64030b;
}

.ft--light .ft__bottom {
  border-top: 1px solid var(--bs--color-border);
}

.ft--light .ft__copy {
  color: #6E6E73;
}

.ft--light .ft__social-link {
  border-color: var(--bs--color-border);
  color: #6E6E73;
}

.ft--light .ft__social-link:hover, .ft--light .ft__social-link:focus-visible {
  color: #64030b;
  border-color: rgba(100, 3, 11, 0.3);
  background: rgba(100, 3, 11, 0.08);
}

.acc {
  width: 100%;
}

.acc__item {
  border-top: 1px solid var(--bs--color-border);
}

.acc__item:last-child {
  border-bottom: 1px solid var(--bs--color-border);
}

.acc--separated {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acc--separated .acc__item {
  border-top: none;
  border-bottom: none;
}

.acc__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs--color-text);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.acc__trigger:hover {
  color: #64030b;
  background: rgba(100, 3, 11, 0.04);
}

.acc__trigger:focus-visible {
  outline: 2px solid #64030b;
  outline-offset: 2px;
}

.acc__trigger--icon-left {
  flex-direction: row-reverse;
}

.acc__trigger--icon-left .acc__icon {
  order: -1;
}

.acc__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #86868B;
  transition: transform 0.2s ease, color 0.15s ease;
}

.acc__icon svg {
  width: 12px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.acc__item.is-open .acc__icon {
  transform: rotate(180deg);
  color: #64030b;
}

.acc__trigger:hover .acc__icon {
  color: #64030b;
}

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.acc__item.is-open .acc__panel {
  grid-template-rows: 1fr;
}

.acc__content {
  overflow: hidden;
}

.acc__content > * {
  padding: 0 1.25rem 1.25rem;
}

.acc__content > *:first-child {
  padding-top: 0;
}

.acc__content p {
  font-size: 0.875rem;
  color: var(--bs--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.acc__content p + p {
  margin-top: 0.75rem;
}

.acc__extra {
  padding: 0 1.25rem 1rem;
  border-top: 1px solid var(--bs--color-border);
}

.acc--bordered .acc__item {
  border-top: 1px solid var(--bs--color-border);
}

.acc--bordered .acc__item:last-child {
  border-bottom: 1px solid var(--bs--color-border);
}

.acc--flush .acc__item {
  border-top: none;
  border-bottom: none;
}

.acc--flush .acc__item + .acc__item {
  border-top: none;
}

.acc--card {
  background: var(--bs--color-card-bg);
  border: 1px solid var(--bs--color-border);
  border-radius: 18px;
  overflow: hidden;
}

.acc--card .acc__item {
  border-top: none;
}

.acc--card .acc__item:first-child {
  border-top: none;
}

.acc--card .acc__item:last-child {
  border-bottom: none;
}

.acc--card .acc__item + .acc__item {
  border-top: 1px solid var(--bs--color-border);
}

.acc--dark .acc__item {
  border-top-color: var(--bs--color-border-dark);
}

.acc--dark .acc__item:last-child {
  border-bottom-color: var(--bs--color-border-dark);
}

.acc--dark .acc__trigger {
  color: #FFFFFF;
}

.acc--dark .acc__trigger:hover {
  color: #64030b;
  background: rgba(100, 3, 11, 0.08);
}

.acc--dark .acc__content p {
  color: var(--bs--color-text-on-dark-muted);
}

.acc--dark .acc__extra {
  border-top-color: var(--bs--color-border-dark);
}

.acc--dark.acc--card {
  background: #1D1D1F;
  border-color: var(--bs--color-border-dark);
}

.acc--dark.acc--card .acc__item + .acc__item {
  border-top-color: var(--bs--color-border-dark);
}

.acc--sm .acc__trigger {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.acc--lg .acc__trigger {
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
}

[data-animate] {
  opacity: 0;
  transition-property: opacity, transform, filter;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

[data-animate].is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
@keyframes animateFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animateFadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animateFadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animateFadeRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animateFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animateZoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes animateZoomOut {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes animateSlideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animateSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animateSlideLeft {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animateSlideRight {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animateFlipUp {
  from {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateX(0);
  }
}
@keyframes animateFlipDown {
  from {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateX(0);
  }
}
@keyframes animateFlipLeft {
  from {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateY(0);
  }
}
@keyframes animateFlipRight {
  from {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateY(0);
  }
}
@keyframes animateBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes animateBounceUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  60% {
    opacity: 1;
    transform: translateY(-12px);
  }
  80% {
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animateRotateIn {
  from {
    opacity: 0;
    transform: rotate(-200deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}
@keyframes animateBlurIn {
  from {
    opacity: 0;
    filter: blur(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
[data-animate].is-visible[data-animate=fade-up] {
  animation: animateFadeUp var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=fade-down] {
  animation: animateFadeDown var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=fade-left] {
  animation: animateFadeLeft var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=fade-right] {
  animation: animateFadeRight var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=fade-in] {
  animation: animateFadeIn var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=zoom-in] {
  animation: animateZoomIn var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=zoom-out] {
  animation: animateZoomOut var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=slide-up] {
  animation: animateSlideUp var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=slide-down] {
  animation: animateSlideDown var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=slide-left] {
  animation: animateSlideLeft var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=slide-right] {
  animation: animateSlideRight var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=flip-up] {
  animation: animateFlipUp var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=flip-down] {
  animation: animateFlipDown var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=flip-left] {
  animation: animateFlipLeft var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=flip-right] {
  animation: animateFlipRight var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=bounce-in] {
  animation: animateBounceIn var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=bounce-up] {
  animation: animateBounceUp var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=rotate-in] {
  animation: animateRotateIn var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

[data-animate].is-visible[data-animate=blur-in] {
  animation: animateBlurIn var(--anim-duration, 600ms) var(--anim-delay, 0ms) both;
}

.stagger-delay-1 {
  --anim-delay: 100ms;
}

.stagger-delay-2 {
  --anim-delay: 200ms;
}

.stagger-delay-3 {
  --anim-delay: 300ms;
}

.stagger-delay-4 {
  --anim-delay: 400ms;
}

.stagger-delay-5 {
  --anim-delay: 500ms;
}

.stagger-delay-6 {
  --anim-delay: 600ms;
}

.stagger-delay-7 {
  --anim-delay: 700ms;
}

.stagger-delay-8 {
  --anim-delay: 800ms;
}

.stagger-delay-9 {
  --anim-delay: 900ms;
}

.stagger-delay-10 {
  --anim-delay: 1000ms;
}

fieldset {
  border: 0;
}

.site-wrapper {
  position: relative;
  min-height: 100vh;
}

.theme-passion-pure {
  position: relative;
}

.highlight-accent {
  color: #64030b;
}

.tx--gradient {
  background: linear-gradient(100deg, #f16839 0%, #64030b 65%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pp-btn-gradient {
  background: linear-gradient(135deg, #f16839, #64030b);
  border-color: transparent;
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px -8px rgba(100, 3, 11, 0.5);
}
.pp-btn-gradient:hover, .pp-btn-gradient:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(100, 3, 11, 0.6);
  background: linear-gradient(135deg, #f16839, #64030b);
  color: #FFFFFF;
}
.pp-btn-gradient:active {
  transform: translateY(1px);
}

.bg--mesh {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 720px;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
  background: radial-gradient(38% 45% at 22% 30%, #f16839 0%, transparent 70%), radial-gradient(42% 50% at 78% 20%, #64030b 0%, transparent 70%), radial-gradient(30% 40% at 55% 65%, #2DD4BF 0%, transparent 75%);
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

.bg--mesh-tr {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 720px;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
  background: radial-gradient(38% 45% at 22% 30%, #f16839 0%, transparent 70%), radial-gradient(42% 50% at 78% 20%, #64030b 0%, transparent 70%), radial-gradient(30% 40% at 55% 65%, #9D174D 0%, transparent 75%);
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

.bg--mesh-rt {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 720px;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
  background: radial-gradient(38% 45% at 22% 30%, #64030b 0%, transparent 70%), radial-gradient(42% 50% at 78% 20%, #9D174D 0%, transparent 70%), radial-gradient(30% 40% at 55% 65%, #f16839 0%, transparent 75%);
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

.bg--mesh-gt {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 720px;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
  background: radial-gradient(38% 45% at 22% 30%, #f16839 0%, transparent 70%), radial-gradient(42% 50% at 78% 20%, #64030b 0%, transparent 70%), radial-gradient(30% 40% at 55% 65%, #8B6508 0%, transparent 75%);
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

.bg--mesh-tg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 720px;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
  background: radial-gradient(38% 45% at 22% 30%, #f16839 0%, transparent 70%), radial-gradient(42% 50% at 78% 20%, #2DD4BF 0%, transparent 70%), radial-gradient(30% 40% at 55% 65%, #64030b 0%, transparent 75%);
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

.bg--mesh-fg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 720px;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
  background: radial-gradient(38% 45% at 22% 30%, #f16839 0%, transparent 70%), radial-gradient(42% 50% at 78% 20%, #2D4A3E 0%, transparent 70%), radial-gradient(30% 40% at 55% 65%, #64030b 0%, transparent 75%);
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(1%, 2%, 0) scale(1.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bg--mesh {
    animation: none;
  }
}
a {
  color: #64030b;
}

a:hover {
  color: #f16839;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cta-band {
  max-width: 100vw;
  margin: 0 auto;
  border-radius: 28px;
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none; /* Allow clicks through */
  background: radial-gradient(60% 80% at 20% 20%, rgba(255, 107, 94, 0.35), transparent 60%), radial-gradient(60% 80% at 80% 80%, rgba(61, 90, 254, 0.35), transparent 60%);
}

.cta-band h2, .cta-band p {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.cta-band .btn-primary {
  box-shadow: 0 8px 28px -6px rgba(0, 0, 0, 0.4);
}

.passion-cards-grid-body ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.passion-cards-grid-body ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-soft);
}

.passion-cards-grid-body ul li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bs--primary), var(--bs--secondary));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

table.quick-com {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  background: #fff;
  border: 1px solid #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", sans-serif;
}

.quick-com thead th {
  background: linear-gradient(135deg, #0078d4, #106ebe);
  color: #fff;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.quick-com thead th:first-child {
  width: 25%;
}

.quick-com tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #e8eef5;
  vertical-align: top;
  color: #323130;
}

.quick-com tbody tr:last-child td {
  border-bottom: none;
}

.quick-com tbody tr:nth-child(even) {
  background: #f8fafc;
}

.quick-com tbody tr:hover {
  background: #eef6ff;
  transition: background 0.2s ease;
}

.quick-com tbody td:first-child {
  font-weight: 600;
  color: #106ebe;
  background: rgba(0, 120, 212, 0.03);
}

.quick-com tbody td:nth-child(2) {
  border-left: 4px solid #50c878;
}

.quick-com tbody td:nth-child(3) {
  border-left: 4px solid #0078d4;
}

.quick-com strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  table.quick-com {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 12px;
  }
  .quick-com th,
  .quick-com td {
    padding: 12px 14px;
  }
}
.quick-com thead th:nth-child(3) {
  background: linear-gradient(135deg, #005a9e, #004578);
}

.quick-com tbody td:nth-child(3) {
  background: rgba(0, 120, 212, 0.04);
  font-weight: 500;
}

.quick-com tbody tr:last-child td {
  border-bottom: 1px solid #000;
}

.pass-megamenu .section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 10px;
}
.pass-megamenu .section-title span {
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.7em;
}
.pass-megamenu .section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #000;
}
.pass-megamenu a {
  color: #64030b;
  font-size: 0.9em;
}
.pass-megamenu a:hover {
  text-decoration: underline;
  color: #f16839;
}
.pass-megamenu h3 {
  font-size: 1em;
  padding-bottom: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 400;
}
.pass-megamenu h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
}
.pass-megamenu h2 {
  font-size: 1.5em;
  padding-bottom: 10px;
}
@media (max-width: 992px) {
  .pass-megamenu .section-title {
    padding-top: 10px;
  }
}

.pass-mega-col-1 p {
  font-size: 0.8em;
  color: #6E6E73;
}
@media (max-width: 1200px) {
  .pass-mega-col-1 {
    display: none;
  }
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
  background: #1e293b;
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table th:first-child {
  background: #16a34a;
}

.comparison-table th:last-child {
  background: #2563eb;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:nth-child(even) {
  background: #f8fafc;
}

.comparison-table tr:hover {
  background: #eef6ff;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: #166534;
}

.comparison-table td:last-child {
  font-weight: 500;
  color: #1d4ed8;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.9rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }
}
.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 10px;
}

.section-title span {
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.7em;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #000;
}
