@charset "UTF-8";
/*
>>================================================================================>
Main SCSS Project File
>>================================================================================>
*/
/*
This entry point now wires together two top-level SCSS areas:

1. Build – the reusable framework/build-owned layer
2. Site – the project-owned styling layer

Keep stable framework code inside /build and project customization inside /site.
*/
/*
>>================================================================================>
Build Layer
>>================================================================================>
*/
/*
The build layer owns the reusable styling framework: generated data, mixins,
resets, and utility classes. It loads site tokens first so shared utilities can
adapt to each project's brand settings.
*/
/*
>>================================================================================>
Theme Settings (site-specific tokens)
>>================================================================================>
*/
/*
This file aggregates site-tunable tokens so projects only need to
touch files inside /site/theme for brand adaptations.
*/
/*
>>================================================================================>
Theme Scale (layout, spacing, breakpoints)
>>================================================================================>
*/
/*
Breakpoints
>>------------->
*/
/*
Layout dimensions
>>------------->
*/
:root {
  --root-font-size: 16px;
}

/*
Spacing scale
>>------------->
*/
/*
>>================================================================================>
Theme Typography
>>================================================================================>
*/
/*
Font families
>>------------->
*/
/*
Font sizes
>>------------->
*/
/*
>>================================================================================>
Theme Colors
>>================================================================================>
*/
/*
Palette map (site-specific)
>>------------->
*/
/*
Expose palette as CSS custom properties
>>------------->
*/
:root {
  --white: #fff;
  --black: #000;
  --sage: #d4e5d5;
  --primary-green: #2c9942;
  --brand-orange: #e05a27;
  --brand-amber: #fbaf44;
  --blue: #164171;
}

/*
>>================================================================================>
Theme Motion Tokens
>>================================================================================>
*/
/*
Durations & easing (site-specific)
>>------------->
*/
:root {
  --motion-duration-fast: 150ms;
  --motion-duration-base: 300ms;
  --motion-duration-lg: 800ms;
  --motion-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --motion-stagger: 150ms;
}

/*
>>================================================================================>
Theme UI Tokens (links, focus)
>>================================================================================>
*/
/*
Text, links & focus colors
>>------------->
*/
:root {
  --text-primary: var(--blue);
  --link-color: var(--gsd-blue);
  --link-color-hover: var(--tertiary-blue);
  --link-color-visited: var(--gsd-blue);
  --focus-outline-color: var(--bright-blue);
}

/*
>>================================================================================>
Button Tokens (site-tunable)
>>================================================================================>
*/
/*
Buttons are UI primitives, not site components. Keep shared button colors,
spacing, and radius tokens here so "components" can stay reserved for actual
site modules like media players, toggles, or feature widgets.
*/
:root {
  --btn-bg: var(--gsd-blue);
  --btn-bg-hover: var(--dark-blue);
  --btn-border: var(--gsd-blue);
  --btn-text: var(--white);
  --btn-outline-bg: var(--white);
  --btn-outline-text: var(--gsd-blue);
  --btn-outline-border: var(--gsd-blue);
  --btn-outline-hover-bg: var(--dark-blue);
  --btn-outline-hover-border: var(--dark-blue);
  --btn-outline-hover-text: var(--white);
  --btn-radius: 6px;
  --btn-padding-y: 12px;
  --btn-padding-x: 20px;
}

/*
AMDI pill button base
>>------------->
*/
.btn-dark, .btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 25px;
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--white) !important;
  padding: 8px 20px;
  min-height: 38px;
  transition: opacity var(--motion-duration-base) var(--motion-ease);
}
.btn-dark:hover, .btn-orange:hover, .btn-dark:focus-visible, .btn-orange:focus-visible {
  opacity: 0.85;
  text-decoration: none;
}

.btn-orange {
  background: var(--brand-orange);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  will-change: opacity;
}
.btn-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 2px solid var(--white);
  background: var(--brand-orange);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  transform: translateZ(0);
}

.btn-dark {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  background: linear-gradient(90deg, #000 0%, var(--blue) 50%, #000 100%);
}

/*
>>================================================================================>
Palette Utility Classes (generated from theme colors)
>>================================================================================>
*/
/*
>>================================================================================>
Theme Colors
>>================================================================================>
*/
/*
Palette map (site-specific)
>>------------->
*/
/*
Expose palette as CSS custom properties
>>------------->
*/
:root {
  --white: #fff;
  --black: #000;
  --sage: #d4e5d5;
  --primary-green: #2c9942;
  --brand-orange: #e05a27;
  --brand-amber: #fbaf44;
  --blue: #164171;
}

/*
>>================================================================================>
Theme Scale (layout, spacing, breakpoints)
>>================================================================================>
*/
/*
Breakpoints
>>------------->
*/
/*
Layout dimensions
>>------------->
*/
:root {
  --root-font-size: 16px;
}

/*
Spacing scale
>>------------->
*/
.bg-white {
  background-color: var(--white) !important;
}

.text-white {
  color: var(--white) !important;
}

.fill-white {
  fill: var(--white) !important;
}

.border-white {
  border-color: var(--white) !important;
}

.text-white-persistant {
  color: var(--white) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.text-black {
  color: var(--black) !important;
}

.fill-black {
  fill: var(--black) !important;
}

.border-black {
  border-color: var(--black) !important;
}

.text-black-persistant {
  color: var(--black) !important;
}

.bg-sage {
  background-color: var(--sage) !important;
}

.text-sage {
  color: var(--sage) !important;
}

.fill-sage {
  fill: var(--sage) !important;
}

.border-sage {
  border-color: var(--sage) !important;
}

.text-sage-persistant {
  color: var(--sage) !important;
}

.bg-primary-green {
  background-color: var(--primary-green) !important;
}

.text-primary-green {
  color: var(--primary-green) !important;
}

.fill-primary-green {
  fill: var(--primary-green) !important;
}

.border-primary-green {
  border-color: var(--primary-green) !important;
}

.text-primary-green-persistant {
  color: var(--primary-green) !important;
}

.bg-brand-orange {
  background-color: var(--brand-orange) !important;
}

.text-brand-orange {
  color: var(--brand-orange) !important;
}

.fill-brand-orange {
  fill: var(--brand-orange) !important;
}

.border-brand-orange {
  border-color: var(--brand-orange) !important;
}

.text-brand-orange-persistant {
  color: var(--brand-orange) !important;
}

.bg-brand-amber {
  background-color: var(--brand-amber) !important;
}

.text-brand-amber {
  color: var(--brand-amber) !important;
}

.fill-brand-amber {
  fill: var(--brand-amber) !important;
}

.border-brand-amber {
  border-color: var(--brand-amber) !important;
}

.text-brand-amber-persistant {
  color: var(--brand-amber) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.fill-blue {
  fill: var(--blue) !important;
}

.border-blue {
  border-color: var(--blue) !important;
}

.text-blue-persistant {
  color: var(--blue) !important;
}

@media (min-width: 576px) {
  .bg-sm-white {
    background-color: var(--white) !important;
  }

  .text-sm-white {
    color: var(--white) !important;
  }

  .text-sm-white-persistant {
    color: var(--white) !important;
  }

  .bg-sm-black {
    background-color: var(--black) !important;
  }

  .text-sm-black {
    color: var(--black) !important;
  }

  .text-sm-black-persistant {
    color: var(--black) !important;
  }

  .bg-sm-sage {
    background-color: var(--sage) !important;
  }

  .text-sm-sage {
    color: var(--sage) !important;
  }

  .text-sm-sage-persistant {
    color: var(--sage) !important;
  }

  .bg-sm-primary-green {
    background-color: var(--primary-green) !important;
  }

  .text-sm-primary-green {
    color: var(--primary-green) !important;
  }

  .text-sm-primary-green-persistant {
    color: var(--primary-green) !important;
  }

  .bg-sm-brand-orange {
    background-color: var(--brand-orange) !important;
  }

  .text-sm-brand-orange {
    color: var(--brand-orange) !important;
  }

  .text-sm-brand-orange-persistant {
    color: var(--brand-orange) !important;
  }

  .bg-sm-brand-amber {
    background-color: var(--brand-amber) !important;
  }

  .text-sm-brand-amber {
    color: var(--brand-amber) !important;
  }

  .text-sm-brand-amber-persistant {
    color: var(--brand-amber) !important;
  }

  .bg-sm-blue {
    background-color: var(--blue) !important;
  }

  .text-sm-blue {
    color: var(--blue) !important;
  }

  .text-sm-blue-persistant {
    color: var(--blue) !important;
  }
}
@media (min-width: 950px) {
  .bg-md-white {
    background-color: var(--white) !important;
  }

  .text-md-white {
    color: var(--white) !important;
  }

  .text-md-white-persistant {
    color: var(--white) !important;
  }

  .bg-md-black {
    background-color: var(--black) !important;
  }

  .text-md-black {
    color: var(--black) !important;
  }

  .text-md-black-persistant {
    color: var(--black) !important;
  }

  .bg-md-sage {
    background-color: var(--sage) !important;
  }

  .text-md-sage {
    color: var(--sage) !important;
  }

  .text-md-sage-persistant {
    color: var(--sage) !important;
  }

  .bg-md-primary-green {
    background-color: var(--primary-green) !important;
  }

  .text-md-primary-green {
    color: var(--primary-green) !important;
  }

  .text-md-primary-green-persistant {
    color: var(--primary-green) !important;
  }

  .bg-md-brand-orange {
    background-color: var(--brand-orange) !important;
  }

  .text-md-brand-orange {
    color: var(--brand-orange) !important;
  }

  .text-md-brand-orange-persistant {
    color: var(--brand-orange) !important;
  }

  .bg-md-brand-amber {
    background-color: var(--brand-amber) !important;
  }

  .text-md-brand-amber {
    color: var(--brand-amber) !important;
  }

  .text-md-brand-amber-persistant {
    color: var(--brand-amber) !important;
  }

  .bg-md-blue {
    background-color: var(--blue) !important;
  }

  .text-md-blue {
    color: var(--blue) !important;
  }

  .text-md-blue-persistant {
    color: var(--blue) !important;
  }
}
@media (min-width: 1024px) {
  .bg-lg-white {
    background-color: var(--white) !important;
  }

  .text-lg-white {
    color: var(--white) !important;
  }

  .text-lg-white-persistant {
    color: var(--white) !important;
  }

  .bg-lg-black {
    background-color: var(--black) !important;
  }

  .text-lg-black {
    color: var(--black) !important;
  }

  .text-lg-black-persistant {
    color: var(--black) !important;
  }

  .bg-lg-sage {
    background-color: var(--sage) !important;
  }

  .text-lg-sage {
    color: var(--sage) !important;
  }

  .text-lg-sage-persistant {
    color: var(--sage) !important;
  }

  .bg-lg-primary-green {
    background-color: var(--primary-green) !important;
  }

  .text-lg-primary-green {
    color: var(--primary-green) !important;
  }

  .text-lg-primary-green-persistant {
    color: var(--primary-green) !important;
  }

  .bg-lg-brand-orange {
    background-color: var(--brand-orange) !important;
  }

  .text-lg-brand-orange {
    color: var(--brand-orange) !important;
  }

  .text-lg-brand-orange-persistant {
    color: var(--brand-orange) !important;
  }

  .bg-lg-brand-amber {
    background-color: var(--brand-amber) !important;
  }

  .text-lg-brand-amber {
    color: var(--brand-amber) !important;
  }

  .text-lg-brand-amber-persistant {
    color: var(--brand-amber) !important;
  }

  .bg-lg-blue {
    background-color: var(--blue) !important;
  }

  .text-lg-blue {
    color: var(--blue) !important;
  }

  .text-lg-blue-persistant {
    color: var(--blue) !important;
  }
}
@media (min-width: 1920px) {
  .bg-xl-white {
    background-color: var(--white) !important;
  }

  .text-xl-white {
    color: var(--white) !important;
  }

  .text-xl-white-persistant {
    color: var(--white) !important;
  }

  .bg-xl-black {
    background-color: var(--black) !important;
  }

  .text-xl-black {
    color: var(--black) !important;
  }

  .text-xl-black-persistant {
    color: var(--black) !important;
  }

  .bg-xl-sage {
    background-color: var(--sage) !important;
  }

  .text-xl-sage {
    color: var(--sage) !important;
  }

  .text-xl-sage-persistant {
    color: var(--sage) !important;
  }

  .bg-xl-primary-green {
    background-color: var(--primary-green) !important;
  }

  .text-xl-primary-green {
    color: var(--primary-green) !important;
  }

  .text-xl-primary-green-persistant {
    color: var(--primary-green) !important;
  }

  .bg-xl-brand-orange {
    background-color: var(--brand-orange) !important;
  }

  .text-xl-brand-orange {
    color: var(--brand-orange) !important;
  }

  .text-xl-brand-orange-persistant {
    color: var(--brand-orange) !important;
  }

  .bg-xl-brand-amber {
    background-color: var(--brand-amber) !important;
  }

  .text-xl-brand-amber {
    color: var(--brand-amber) !important;
  }

  .text-xl-brand-amber-persistant {
    color: var(--brand-amber) !important;
  }

  .bg-xl-blue {
    background-color: var(--blue) !important;
  }

  .text-xl-blue {
    color: var(--blue) !important;
  }

  .text-xl-blue-persistant {
    color: var(--blue) !important;
  }
}
/*
>>================================================================================>
Mixins
>>================================================================================>
*/
/*
Navigation highlighting driven by generated nav tree
*/
/*
Activate nav styles from generated map
*/
body.amdi-fast-pcr #site-header .primary-nav .amdi-fast-pcr::after {
  opacity: 1;
}

body.performance-and-value #site-header .primary-nav .performance-and-value::after {
  opacity: 1;
}

body.resources #site-header .primary-nav .resources::after {
  opacity: 1;
}

body.about #site-header .primary-nav .about::after {
  opacity: 1;
}

body.get-a-demo #site-header .primary-nav .get-a-demo::after {
  opacity: 1;
}

body.buy #site-header .primary-nav .buy::after {
  opacity: 1;
}

/*
Visually hide content but keep it accessible to screen readers
*/
/*
Clearfix (useful for legacy float contexts)
*/
/*
Maintain consistent aspect ratios for embeds/media
*/
/*
>>================================================================================>
Base Reset
>>================================================================================>
*/
/*
Minimal baseline: normalize box sizing, typography inheritance, form/media defaults,
and link styles. Keep this lean; site-specific styles belong elsewhere.
*/
/*
Global
>>------------->
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: var(--root-font-size);
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/*
Text elements
>>------------->
*/
b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.75em;
  line-height: 1.25em;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1em;
}

/*
Lists & headings
>>------------->
*/
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol,
ul,
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.5rem 0;
  font: inherit;
  line-height: inherit;
}

ul,
ol {
  padding-left: 20px;
}

/*
Tables & media
>>------------->
*/
table {
  border-collapse: collapse;
  border-color: currentcolor;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  overflow: visible;
}

svg {
  transition: fill var(--motion-duration-base) var(--motion-ease);
}

/*
Forms & controls
>>------------->
*/
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  line-height: 1.15;
  margin: 0;
}

input,
textarea,
button,
fieldset,
legend {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  text-align: left;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/*
Links & interaction
>>------------->
*/
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus-outline-color);
  outline-offset: 2px;
}

a,
a:active,
a:visited,
a:hover,
a:focus-visible {
  text-decoration: none;
}

input[type=submit],
button,
a {
  cursor: pointer;
  transition: background-color var(--motion-duration-base) var(--motion-ease), color var(--motion-duration-base) var(--motion-ease), border-color var(--motion-duration-base) var(--motion-ease), opacity var(--motion-duration-base) var(--motion-ease), box-shadow var(--motion-duration-base) var(--motion-ease), transform var(--motion-duration-base) var(--motion-ease);
}

/*
Misc
>>------------->
*/
hr {
  border: none;
  height: 1px;
  background: currentcolor;
  margin: 0 0 0.5rem 0;
}

summary {
  display: list-item;
}

/*
>>================================================================================>
Grid & Alignment Utilities
>>================================================================================>
*/
/*
Flex Grid
>>------------->
*/
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 950px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.col {
  flex: 1 0 0%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 950px) {
  .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}

[class*=col-] {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 950px) {
  [class*=col-] {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 950px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1920px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.offset-1 {
  margin-left: 8.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 950px) {
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1024px) {
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1920px) {
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
/*
>>================================================================================>
Alignment Utilities
>>================================================================================>
*/
.justify-content-start {
  justify-content: flex-start !important;
}

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

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

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

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

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

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

  .justify-content-sm-baseline {
    justify-content: baseline !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .justify-content-sm-stretch {
    justify-content: stretch !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 950px) {
  .justify-content-md-start {
    justify-content: flex-start !important;
  }

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

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

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

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

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

  .justify-content-md-baseline {
    justify-content: baseline !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .justify-content-md-stretch {
    justify-content: stretch !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 1024px) {
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

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

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

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

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

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

  .justify-content-lg-baseline {
    justify-content: baseline !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .justify-content-lg-stretch {
    justify-content: stretch !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 1920px) {
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

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

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

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

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

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

  .justify-content-xl-baseline {
    justify-content: baseline !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .justify-content-xl-stretch {
    justify-content: stretch !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }
}
/*
>>================================================================================>
Gutter Utilities (Bootstrap-style + Breakpoints)
>>================================================================================>
*/
.g-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}
.g-0 > [class*=col-] {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.g-5 {
  margin-left: -0.3125rem !important;
  margin-right: -0.3125rem !important;
}
.g-5 > [class*=col-] {
  padding-left: 0.3125rem !important;
  padding-right: 0.3125rem !important;
}

.g-10 {
  margin-left: -0.625rem !important;
  margin-right: -0.625rem !important;
}
.g-10 > [class*=col-] {
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}

.g-15 {
  margin-left: -0.9375rem !important;
  margin-right: -0.9375rem !important;
}
.g-15 > [class*=col-] {
  padding-left: 0.9375rem !important;
  padding-right: 0.9375rem !important;
}

.g-20 {
  margin-left: -1.25rem !important;
  margin-right: -1.25rem !important;
}
.g-20 > [class*=col-] {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.g-25 {
  margin-left: -1.5625rem !important;
  margin-right: -1.5625rem !important;
}
.g-25 > [class*=col-] {
  padding-left: 1.5625rem !important;
  padding-right: 1.5625rem !important;
}

.g-30 {
  margin-left: -1.875rem !important;
  margin-right: -1.875rem !important;
}
.g-30 > [class*=col-] {
  padding-left: 1.875rem !important;
  padding-right: 1.875rem !important;
}

.g-40 {
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
}
.g-40 > [class*=col-] {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.g-50 {
  margin-left: -3.125rem !important;
  margin-right: -3.125rem !important;
}
.g-50 > [class*=col-] {
  padding-left: 3.125rem !important;
  padding-right: 3.125rem !important;
}

.g-60 {
  margin-left: -3.75rem !important;
  margin-right: -3.75rem !important;
}
.g-60 > [class*=col-] {
  padding-left: 3.75rem !important;
  padding-right: 3.75rem !important;
}

.g-70 {
  margin-left: -4.375rem !important;
  margin-right: -4.375rem !important;
}
.g-70 > [class*=col-] {
  padding-left: 4.375rem !important;
  padding-right: 4.375rem !important;
}

.g-75 {
  margin-left: -4.6875rem !important;
  margin-right: -4.6875rem !important;
}
.g-75 > [class*=col-] {
  padding-left: 4.6875rem !important;
  padding-right: 4.6875rem !important;
}

.g-80 {
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}
.g-80 > [class*=col-] {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.g-90 {
  margin-left: -5.625rem !important;
  margin-right: -5.625rem !important;
}
.g-90 > [class*=col-] {
  padding-left: 5.625rem !important;
  padding-right: 5.625rem !important;
}

.g-100 {
  margin-left: -6.25rem !important;
  margin-right: -6.25rem !important;
}
.g-100 > [class*=col-] {
  padding-left: 6.25rem !important;
  padding-right: 6.25rem !important;
}

@media (min-width: 576px) {
  .g-sm-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .g-sm-0 > [class*=col-] {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }

  .g-sm-5 {
    margin-left: -0.3125rem !important;
    margin-right: -0.3125rem !important;
  }
  .g-sm-5 > [class*=col-] {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }

  .g-sm-10 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }
  .g-sm-10 > [class*=col-] {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .g-sm-15 {
    margin-left: -0.9375rem !important;
    margin-right: -0.9375rem !important;
  }
  .g-sm-15 > [class*=col-] {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }

  .g-sm-20 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .g-sm-20 > [class*=col-] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .g-sm-25 {
    margin-left: -1.5625rem !important;
    margin-right: -1.5625rem !important;
  }
  .g-sm-25 > [class*=col-] {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }

  .g-sm-30 {
    margin-left: -1.875rem !important;
    margin-right: -1.875rem !important;
  }
  .g-sm-30 > [class*=col-] {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }

  .g-sm-40 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .g-sm-40 > [class*=col-] {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .g-sm-50 {
    margin-left: -3.125rem !important;
    margin-right: -3.125rem !important;
  }
  .g-sm-50 > [class*=col-] {
    padding-left: 3.125rem !important;
    padding-right: 3.125rem !important;
  }

  .g-sm-60 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }
  .g-sm-60 > [class*=col-] {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .g-sm-70 {
    margin-left: -4.375rem !important;
    margin-right: -4.375rem !important;
  }
  .g-sm-70 > [class*=col-] {
    padding-left: 4.375rem !important;
    padding-right: 4.375rem !important;
  }

  .g-sm-75 {
    margin-left: -4.6875rem !important;
    margin-right: -4.6875rem !important;
  }
  .g-sm-75 > [class*=col-] {
    padding-left: 4.6875rem !important;
    padding-right: 4.6875rem !important;
  }

  .g-sm-80 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .g-sm-80 > [class*=col-] {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .g-sm-90 {
    margin-left: -5.625rem !important;
    margin-right: -5.625rem !important;
  }
  .g-sm-90 > [class*=col-] {
    padding-left: 5.625rem !important;
    padding-right: 5.625rem !important;
  }

  .g-sm-100 {
    margin-left: -6.25rem !important;
    margin-right: -6.25rem !important;
  }
  .g-sm-100 > [class*=col-] {
    padding-left: 6.25rem !important;
    padding-right: 6.25rem !important;
  }
}
@media (min-width: 950px) {
  .g-md-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .g-md-0 > [class*=col-] {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }

  .g-md-5 {
    margin-left: -0.3125rem !important;
    margin-right: -0.3125rem !important;
  }
  .g-md-5 > [class*=col-] {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }

  .g-md-10 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }
  .g-md-10 > [class*=col-] {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .g-md-15 {
    margin-left: -0.9375rem !important;
    margin-right: -0.9375rem !important;
  }
  .g-md-15 > [class*=col-] {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }

  .g-md-20 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .g-md-20 > [class*=col-] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .g-md-25 {
    margin-left: -1.5625rem !important;
    margin-right: -1.5625rem !important;
  }
  .g-md-25 > [class*=col-] {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }

  .g-md-30 {
    margin-left: -1.875rem !important;
    margin-right: -1.875rem !important;
  }
  .g-md-30 > [class*=col-] {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }

  .g-md-40 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .g-md-40 > [class*=col-] {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .g-md-50 {
    margin-left: -3.125rem !important;
    margin-right: -3.125rem !important;
  }
  .g-md-50 > [class*=col-] {
    padding-left: 3.125rem !important;
    padding-right: 3.125rem !important;
  }

  .g-md-60 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }
  .g-md-60 > [class*=col-] {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .g-md-70 {
    margin-left: -4.375rem !important;
    margin-right: -4.375rem !important;
  }
  .g-md-70 > [class*=col-] {
    padding-left: 4.375rem !important;
    padding-right: 4.375rem !important;
  }

  .g-md-75 {
    margin-left: -4.6875rem !important;
    margin-right: -4.6875rem !important;
  }
  .g-md-75 > [class*=col-] {
    padding-left: 4.6875rem !important;
    padding-right: 4.6875rem !important;
  }

  .g-md-80 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .g-md-80 > [class*=col-] {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .g-md-90 {
    margin-left: -5.625rem !important;
    margin-right: -5.625rem !important;
  }
  .g-md-90 > [class*=col-] {
    padding-left: 5.625rem !important;
    padding-right: 5.625rem !important;
  }

  .g-md-100 {
    margin-left: -6.25rem !important;
    margin-right: -6.25rem !important;
  }
  .g-md-100 > [class*=col-] {
    padding-left: 6.25rem !important;
    padding-right: 6.25rem !important;
  }
}
@media (min-width: 1024px) {
  .g-lg-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .g-lg-0 > [class*=col-] {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }

  .g-lg-5 {
    margin-left: -0.3125rem !important;
    margin-right: -0.3125rem !important;
  }
  .g-lg-5 > [class*=col-] {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }

  .g-lg-10 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }
  .g-lg-10 > [class*=col-] {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .g-lg-15 {
    margin-left: -0.9375rem !important;
    margin-right: -0.9375rem !important;
  }
  .g-lg-15 > [class*=col-] {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }

  .g-lg-20 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .g-lg-20 > [class*=col-] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .g-lg-25 {
    margin-left: -1.5625rem !important;
    margin-right: -1.5625rem !important;
  }
  .g-lg-25 > [class*=col-] {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }

  .g-lg-30 {
    margin-left: -1.875rem !important;
    margin-right: -1.875rem !important;
  }
  .g-lg-30 > [class*=col-] {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }

  .g-lg-40 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .g-lg-40 > [class*=col-] {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .g-lg-50 {
    margin-left: -3.125rem !important;
    margin-right: -3.125rem !important;
  }
  .g-lg-50 > [class*=col-] {
    padding-left: 3.125rem !important;
    padding-right: 3.125rem !important;
  }

  .g-lg-60 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }
  .g-lg-60 > [class*=col-] {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .g-lg-70 {
    margin-left: -4.375rem !important;
    margin-right: -4.375rem !important;
  }
  .g-lg-70 > [class*=col-] {
    padding-left: 4.375rem !important;
    padding-right: 4.375rem !important;
  }

  .g-lg-75 {
    margin-left: -4.6875rem !important;
    margin-right: -4.6875rem !important;
  }
  .g-lg-75 > [class*=col-] {
    padding-left: 4.6875rem !important;
    padding-right: 4.6875rem !important;
  }

  .g-lg-80 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .g-lg-80 > [class*=col-] {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .g-lg-90 {
    margin-left: -5.625rem !important;
    margin-right: -5.625rem !important;
  }
  .g-lg-90 > [class*=col-] {
    padding-left: 5.625rem !important;
    padding-right: 5.625rem !important;
  }

  .g-lg-100 {
    margin-left: -6.25rem !important;
    margin-right: -6.25rem !important;
  }
  .g-lg-100 > [class*=col-] {
    padding-left: 6.25rem !important;
    padding-right: 6.25rem !important;
  }
}
@media (min-width: 1920px) {
  .g-xl-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .g-xl-0 > [class*=col-] {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }

  .g-xl-5 {
    margin-left: -0.3125rem !important;
    margin-right: -0.3125rem !important;
  }
  .g-xl-5 > [class*=col-] {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }

  .g-xl-10 {
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }
  .g-xl-10 > [class*=col-] {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .g-xl-15 {
    margin-left: -0.9375rem !important;
    margin-right: -0.9375rem !important;
  }
  .g-xl-15 > [class*=col-] {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }

  .g-xl-20 {
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }
  .g-xl-20 > [class*=col-] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .g-xl-25 {
    margin-left: -1.5625rem !important;
    margin-right: -1.5625rem !important;
  }
  .g-xl-25 > [class*=col-] {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }

  .g-xl-30 {
    margin-left: -1.875rem !important;
    margin-right: -1.875rem !important;
  }
  .g-xl-30 > [class*=col-] {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }

  .g-xl-40 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .g-xl-40 > [class*=col-] {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .g-xl-50 {
    margin-left: -3.125rem !important;
    margin-right: -3.125rem !important;
  }
  .g-xl-50 > [class*=col-] {
    padding-left: 3.125rem !important;
    padding-right: 3.125rem !important;
  }

  .g-xl-60 {
    margin-left: -3.75rem !important;
    margin-right: -3.75rem !important;
  }
  .g-xl-60 > [class*=col-] {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .g-xl-70 {
    margin-left: -4.375rem !important;
    margin-right: -4.375rem !important;
  }
  .g-xl-70 > [class*=col-] {
    padding-left: 4.375rem !important;
    padding-right: 4.375rem !important;
  }

  .g-xl-75 {
    margin-left: -4.6875rem !important;
    margin-right: -4.6875rem !important;
  }
  .g-xl-75 > [class*=col-] {
    padding-left: 4.6875rem !important;
    padding-right: 4.6875rem !important;
  }

  .g-xl-80 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .g-xl-80 > [class*=col-] {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .g-xl-90 {
    margin-left: -5.625rem !important;
    margin-right: -5.625rem !important;
  }
  .g-xl-90 > [class*=col-] {
    padding-left: 5.625rem !important;
    padding-right: 5.625rem !important;
  }

  .g-xl-100 {
    margin-left: -6.25rem !important;
    margin-right: -6.25rem !important;
  }
  .g-xl-100 > [class*=col-] {
    padding-left: 6.25rem !important;
    padding-right: 6.25rem !important;
  }
}
/*
Gap Utilities
>>------------->
*/
.gap-0 {
  gap: 0rem !important;
}

.gx-0 {
  -moz-column-gap: 0rem !important;
       column-gap: 0rem !important;
}

.gy-0 {
  row-gap: 0rem !important;
}

.gap-5 {
  gap: 0.3125rem !important;
}

.gx-5 {
  -moz-column-gap: 0.3125rem !important;
       column-gap: 0.3125rem !important;
}

.gy-5 {
  row-gap: 0.3125rem !important;
}

.gap-10 {
  gap: 0.625rem !important;
}

.gx-10 {
  -moz-column-gap: 0.625rem !important;
       column-gap: 0.625rem !important;
}

.gy-10 {
  row-gap: 0.625rem !important;
}

.gap-15 {
  gap: 0.9375rem !important;
}

.gx-15 {
  -moz-column-gap: 0.9375rem !important;
       column-gap: 0.9375rem !important;
}

.gy-15 {
  row-gap: 0.9375rem !important;
}

.gap-20 {
  gap: 1.25rem !important;
}

.gx-20 {
  -moz-column-gap: 1.25rem !important;
       column-gap: 1.25rem !important;
}

.gy-20 {
  row-gap: 1.25rem !important;
}

.gap-25 {
  gap: 1.5625rem !important;
}

.gx-25 {
  -moz-column-gap: 1.5625rem !important;
       column-gap: 1.5625rem !important;
}

.gy-25 {
  row-gap: 1.5625rem !important;
}

.gap-30 {
  gap: 1.875rem !important;
}

.gx-30 {
  -moz-column-gap: 1.875rem !important;
       column-gap: 1.875rem !important;
}

.gy-30 {
  row-gap: 1.875rem !important;
}

.gap-35 {
  gap: 2.1875rem !important;
}

.gx-35 {
  -moz-column-gap: 2.1875rem !important;
       column-gap: 2.1875rem !important;
}

.gy-35 {
  row-gap: 2.1875rem !important;
}

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

.gx-40 {
  -moz-column-gap: 2.5rem !important;
       column-gap: 2.5rem !important;
}

.gy-40 {
  row-gap: 2.5rem !important;
}

.gap-45 {
  gap: 2.8125rem !important;
}

.gx-45 {
  -moz-column-gap: 2.8125rem !important;
       column-gap: 2.8125rem !important;
}

.gy-45 {
  row-gap: 2.8125rem !important;
}

.gap-50 {
  gap: 3.125rem !important;
}

.gx-50 {
  -moz-column-gap: 3.125rem !important;
       column-gap: 3.125rem !important;
}

.gy-50 {
  row-gap: 3.125rem !important;
}

.gap-55 {
  gap: 3.4375rem !important;
}

.gx-55 {
  -moz-column-gap: 3.4375rem !important;
       column-gap: 3.4375rem !important;
}

.gy-55 {
  row-gap: 3.4375rem !important;
}

.gap-60 {
  gap: 3.75rem !important;
}

.gx-60 {
  -moz-column-gap: 3.75rem !important;
       column-gap: 3.75rem !important;
}

.gy-60 {
  row-gap: 3.75rem !important;
}

.gap-65 {
  gap: 4.0625rem !important;
}

.gx-65 {
  -moz-column-gap: 4.0625rem !important;
       column-gap: 4.0625rem !important;
}

.gy-65 {
  row-gap: 4.0625rem !important;
}

.gap-70 {
  gap: 4.375rem !important;
}

.gx-70 {
  -moz-column-gap: 4.375rem !important;
       column-gap: 4.375rem !important;
}

.gy-70 {
  row-gap: 4.375rem !important;
}

.gap-75 {
  gap: 4.6875rem !important;
}

.gx-75 {
  -moz-column-gap: 4.6875rem !important;
       column-gap: 4.6875rem !important;
}

.gy-75 {
  row-gap: 4.6875rem !important;
}

.gap-80 {
  gap: 5rem !important;
}

.gx-80 {
  -moz-column-gap: 5rem !important;
       column-gap: 5rem !important;
}

.gy-80 {
  row-gap: 5rem !important;
}

.gap-85 {
  gap: 5.3125rem !important;
}

.gx-85 {
  -moz-column-gap: 5.3125rem !important;
       column-gap: 5.3125rem !important;
}

.gy-85 {
  row-gap: 5.3125rem !important;
}

.gap-90 {
  gap: 5.625rem !important;
}

.gx-90 {
  -moz-column-gap: 5.625rem !important;
       column-gap: 5.625rem !important;
}

.gy-90 {
  row-gap: 5.625rem !important;
}

.gap-95 {
  gap: 5.9375rem !important;
}

.gx-95 {
  -moz-column-gap: 5.9375rem !important;
       column-gap: 5.9375rem !important;
}

.gy-95 {
  row-gap: 5.9375rem !important;
}

.gap-100 {
  gap: 6.25rem !important;
}

.gx-100 {
  -moz-column-gap: 6.25rem !important;
       column-gap: 6.25rem !important;
}

.gy-100 {
  row-gap: 6.25rem !important;
}

/*
>>================================================================================>
Flex Utilities
>>================================================================================>
*/
/*
Direction
>>------------->
*/
.flex-row {
  flex-direction: row !important;
}

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

/*
Wrapping
>>------------->
*/
.flex-wrap {
  flex-wrap: wrap !important;
}

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

/*
Flex Grow / Shrink
>>------------->
*/
.flex-grow-0 {
  flex-grow: 0 !important;
}

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

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

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

/*
Justify Content (Bootstrap naming)
>>------------->
*/
.justify-content-start {
  justify-content: flex-start !important;
}

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

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

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

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

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

/*
Align Items (Bootstrap naming)
>>------------->
*/
.align-items-start {
  align-items: flex-start !important;
}

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

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

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

/*
Align Self (Bootstrap naming)
>>------------->
*/
.align-self-start {
  align-self: flex-start !important;
}

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

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

/*
Responsive Variants
>>------------->
*/
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

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

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

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

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

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

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

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

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }
}
@media (min-width: 950px) {
  .flex-md-row {
    flex-direction: row !important;
  }

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

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

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

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

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

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

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

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }
}
@media (min-width: 1024px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

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

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

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

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

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

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

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

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }
}
@media (min-width: 1920px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

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

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

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

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

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

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

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

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }
}
/*
>>================================================================================>
Order Utilities
>>================================================================================>
*/
.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

@media (min-width: 576px) {
  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }
}
@media (min-width: 950px) {
  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }
}
@media (min-width: 1024px) {
  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }
}
@media (min-width: 1920px) {
  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }
}
/*
>>================================================================================>
Text & Font Utilities
>>================================================================================>
*/
/*
Alignment
>>------------->
*/
.text-left {
  text-align: left !important;
}

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

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

.text-justify {
  text-align: justify !important;
}

/*
Transform
>>------------->
*/
.text-uppercase {
  text-transform: uppercase !important;
}

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

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

.text-none {
  text-transform: none !important;
}

/*
Font Weight
>>------------->
*/
.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

strong {
  font-weight: 800;
}

/*
Semantic size helpers (site-specific)
>>------------->
*/
.text-size-small {
  font-size: 0.95em !important;
}

.text-size-medium {
  font-size: 1.05em !important;
}

.text-size-large {
  font-size: 1.2em !important;
}

/*
Font Style
>>------------->
*/
.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

/*
Text Decoration
>>------------->
*/
.text-underline {
  text-decoration: underline !important;
}

.text-line-through {
  text-decoration: line-through !important;
}

.text-overline {
  text-decoration: overline !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

a.text-decoration-none:hover, a.text-decoration-none:focus-visible {
  text-decoration: underline !important;
}

/*
Responsive Variants
>>------------->
*/
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

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

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

  .text-sm-justify {
    text-align: justify !important;
  }

  .fw-sm-100 {
    font-weight: 100 !important;
  }

  .fw-sm-200 {
    font-weight: 200 !important;
  }

  .fw-sm-300 {
    font-weight: 300 !important;
  }

  .fw-sm-400 {
    font-weight: 400 !important;
  }

  .fw-sm-500 {
    font-weight: 500 !important;
  }

  .fw-sm-600 {
    font-weight: 600 !important;
  }

  .fw-sm-700 {
    font-weight: 700 !important;
  }

  .fw-sm-800 {
    font-weight: 800 !important;
  }

  .fw-sm-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 950px) {
  .text-md-left {
    text-align: left !important;
  }

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

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

  .text-md-justify {
    text-align: justify !important;
  }

  .fw-md-100 {
    font-weight: 100 !important;
  }

  .fw-md-200 {
    font-weight: 200 !important;
  }

  .fw-md-300 {
    font-weight: 300 !important;
  }

  .fw-md-400 {
    font-weight: 400 !important;
  }

  .fw-md-500 {
    font-weight: 500 !important;
  }

  .fw-md-600 {
    font-weight: 600 !important;
  }

  .fw-md-700 {
    font-weight: 700 !important;
  }

  .fw-md-800 {
    font-weight: 800 !important;
  }

  .fw-md-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1024px) {
  .text-lg-left {
    text-align: left !important;
  }

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

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

  .text-lg-justify {
    text-align: justify !important;
  }

  .fw-lg-100 {
    font-weight: 100 !important;
  }

  .fw-lg-200 {
    font-weight: 200 !important;
  }

  .fw-lg-300 {
    font-weight: 300 !important;
  }

  .fw-lg-400 {
    font-weight: 400 !important;
  }

  .fw-lg-500 {
    font-weight: 500 !important;
  }

  .fw-lg-600 {
    font-weight: 600 !important;
  }

  .fw-lg-700 {
    font-weight: 700 !important;
  }

  .fw-lg-800 {
    font-weight: 800 !important;
  }

  .fw-lg-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1920px) {
  .text-xl-left {
    text-align: left !important;
  }

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

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

  .text-xl-justify {
    text-align: justify !important;
  }

  .fw-xl-100 {
    font-weight: 100 !important;
  }

  .fw-xl-200 {
    font-weight: 200 !important;
  }

  .fw-xl-300 {
    font-weight: 300 !important;
  }

  .fw-xl-400 {
    font-weight: 400 !important;
  }

  .fw-xl-500 {
    font-weight: 500 !important;
  }

  .fw-xl-600 {
    font-weight: 600 !important;
  }

  .fw-xl-700 {
    font-weight: 700 !important;
  }

  .fw-xl-800 {
    font-weight: 800 !important;
  }

  .fw-xl-900 {
    font-weight: 900 !important;
  }
}
/*
Miscellaneous
>>------------->
*/
.text-nowrap {
  white-space: nowrap !important;
}

.text-break {
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

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

@media (max-width: 949px) {
  .text-nowrap-mobile {
    white-space: nowrap !important;
  }
}
@media (min-width: 950px) {
  .text-nowrap-desktop {
    white-space: nowrap !important;
  }
}
/*
>>================================================================================>
Display Utilities
>>================================================================================>
*/
/*
Base
>>------------->
*/
.d-none {
  display: none !important;
}

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

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

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

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

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

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

/*
Responsive
>>------------->
*/
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

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

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-inline-grid {
    display: inline-grid !important;
  }

  .d-sm-table {
    display: table !important;
  }
}
@media (min-width: 950px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-flex {
    display: flex !important;
  }

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

  .d-md-grid {
    display: grid !important;
  }

  .d-md-inline-grid {
    display: inline-grid !important;
  }

  .d-md-table {
    display: table !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

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

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-inline-grid {
    display: inline-grid !important;
  }

  .d-lg-table {
    display: table !important;
  }
}
@media (min-width: 1920px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

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

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-inline-grid {
    display: inline-grid !important;
  }

  .d-xl-table {
    display: table !important;
  }
}
/*
>>================================================================================>
Spacing Utilities
>>================================================================================>
*/
/*
Margins
>>------------->
*/
.m-0 {
  margin: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-10 {
  margin: 0.625rem !important;
}

.mt-10 {
  margin-top: 0.625rem !important;
}

.mb-10 {
  margin-bottom: 0.625rem !important;
}

.ms-10 {
  margin-left: 0.625rem !important;
}

.me-10 {
  margin-right: 0.625rem !important;
}

.mx-10 {
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
}

.my-10 {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.m-15 {
  margin: 0.9375rem !important;
}

.mt-15 {
  margin-top: 0.9375rem !important;
}

.mb-15 {
  margin-bottom: 0.9375rem !important;
}

.ms-15 {
  margin-left: 0.9375rem !important;
}

.me-15 {
  margin-right: 0.9375rem !important;
}

.mx-15 {
  margin-left: 0.9375rem !important;
  margin-right: 0.9375rem !important;
}

.my-15 {
  margin-top: 0.9375rem !important;
  margin-bottom: 0.9375rem !important;
}

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

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

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

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

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

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

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

.m-25 {
  margin: 1.5625rem !important;
}

.mt-25 {
  margin-top: 1.5625rem !important;
}

.mb-25 {
  margin-bottom: 1.5625rem !important;
}

.ms-25 {
  margin-left: 1.5625rem !important;
}

.me-25 {
  margin-right: 1.5625rem !important;
}

.mx-25 {
  margin-left: 1.5625rem !important;
  margin-right: 1.5625rem !important;
}

.my-25 {
  margin-top: 1.5625rem !important;
  margin-bottom: 1.5625rem !important;
}

.m-30 {
  margin: 1.875rem !important;
}

.mt-30 {
  margin-top: 1.875rem !important;
}

.mb-30 {
  margin-bottom: 1.875rem !important;
}

.ms-30 {
  margin-left: 1.875rem !important;
}

.me-30 {
  margin-right: 1.875rem !important;
}

.mx-30 {
  margin-left: 1.875rem !important;
  margin-right: 1.875rem !important;
}

.my-30 {
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !important;
}

.m-35 {
  margin: 2.1875rem !important;
}

.mt-35 {
  margin-top: 2.1875rem !important;
}

.mb-35 {
  margin-bottom: 2.1875rem !important;
}

.ms-35 {
  margin-left: 2.1875rem !important;
}

.me-35 {
  margin-right: 2.1875rem !important;
}

.mx-35 {
  margin-left: 2.1875rem !important;
  margin-right: 2.1875rem !important;
}

.my-35 {
  margin-top: 2.1875rem !important;
  margin-bottom: 2.1875rem !important;
}

.m-40 {
  margin: 2.5rem !important;
}

.mt-40 {
  margin-top: 2.5rem !important;
}

.mb-40 {
  margin-bottom: 2.5rem !important;
}

.ms-40 {
  margin-left: 2.5rem !important;
}

.me-40 {
  margin-right: 2.5rem !important;
}

.mx-40 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-40 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.m-45 {
  margin: 2.8125rem !important;
}

.mt-45 {
  margin-top: 2.8125rem !important;
}

.mb-45 {
  margin-bottom: 2.8125rem !important;
}

.ms-45 {
  margin-left: 2.8125rem !important;
}

.me-45 {
  margin-right: 2.8125rem !important;
}

.mx-45 {
  margin-left: 2.8125rem !important;
  margin-right: 2.8125rem !important;
}

.my-45 {
  margin-top: 2.8125rem !important;
  margin-bottom: 2.8125rem !important;
}

.m-50 {
  margin: 3.125rem !important;
}

.mt-50 {
  margin-top: 3.125rem !important;
}

.mb-50 {
  margin-bottom: 3.125rem !important;
}

.ms-50 {
  margin-left: 3.125rem !important;
}

.me-50 {
  margin-right: 3.125rem !important;
}

.mx-50 {
  margin-left: 3.125rem !important;
  margin-right: 3.125rem !important;
}

.my-50 {
  margin-top: 3.125rem !important;
  margin-bottom: 3.125rem !important;
}

.m-55 {
  margin: 3.4375rem !important;
}

.mt-55 {
  margin-top: 3.4375rem !important;
}

.mb-55 {
  margin-bottom: 3.4375rem !important;
}

.ms-55 {
  margin-left: 3.4375rem !important;
}

.me-55 {
  margin-right: 3.4375rem !important;
}

.mx-55 {
  margin-left: 3.4375rem !important;
  margin-right: 3.4375rem !important;
}

.my-55 {
  margin-top: 3.4375rem !important;
  margin-bottom: 3.4375rem !important;
}

.m-60 {
  margin: 3.75rem !important;
}

.mt-60 {
  margin-top: 3.75rem !important;
}

.mb-60 {
  margin-bottom: 3.75rem !important;
}

.ms-60 {
  margin-left: 3.75rem !important;
}

.me-60 {
  margin-right: 3.75rem !important;
}

.mx-60 {
  margin-left: 3.75rem !important;
  margin-right: 3.75rem !important;
}

.my-60 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.m-65 {
  margin: 4.0625rem !important;
}

.mt-65 {
  margin-top: 4.0625rem !important;
}

.mb-65 {
  margin-bottom: 4.0625rem !important;
}

.ms-65 {
  margin-left: 4.0625rem !important;
}

.me-65 {
  margin-right: 4.0625rem !important;
}

.mx-65 {
  margin-left: 4.0625rem !important;
  margin-right: 4.0625rem !important;
}

.my-65 {
  margin-top: 4.0625rem !important;
  margin-bottom: 4.0625rem !important;
}

.m-70 {
  margin: 4.375rem !important;
}

.mt-70 {
  margin-top: 4.375rem !important;
}

.mb-70 {
  margin-bottom: 4.375rem !important;
}

.ms-70 {
  margin-left: 4.375rem !important;
}

.me-70 {
  margin-right: 4.375rem !important;
}

.mx-70 {
  margin-left: 4.375rem !important;
  margin-right: 4.375rem !important;
}

.my-70 {
  margin-top: 4.375rem !important;
  margin-bottom: 4.375rem !important;
}

.m-75 {
  margin: 4.6875rem !important;
}

.mt-75 {
  margin-top: 4.6875rem !important;
}

.mb-75 {
  margin-bottom: 4.6875rem !important;
}

.ms-75 {
  margin-left: 4.6875rem !important;
}

.me-75 {
  margin-right: 4.6875rem !important;
}

.mx-75 {
  margin-left: 4.6875rem !important;
  margin-right: 4.6875rem !important;
}

.my-75 {
  margin-top: 4.6875rem !important;
  margin-bottom: 4.6875rem !important;
}

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

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

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

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

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

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

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

.m-85 {
  margin: 5.3125rem !important;
}

.mt-85 {
  margin-top: 5.3125rem !important;
}

.mb-85 {
  margin-bottom: 5.3125rem !important;
}

.ms-85 {
  margin-left: 5.3125rem !important;
}

.me-85 {
  margin-right: 5.3125rem !important;
}

.mx-85 {
  margin-left: 5.3125rem !important;
  margin-right: 5.3125rem !important;
}

.my-85 {
  margin-top: 5.3125rem !important;
  margin-bottom: 5.3125rem !important;
}

.m-90 {
  margin: 5.625rem !important;
}

.mt-90 {
  margin-top: 5.625rem !important;
}

.mb-90 {
  margin-bottom: 5.625rem !important;
}

.ms-90 {
  margin-left: 5.625rem !important;
}

.me-90 {
  margin-right: 5.625rem !important;
}

.mx-90 {
  margin-left: 5.625rem !important;
  margin-right: 5.625rem !important;
}

.my-90 {
  margin-top: 5.625rem !important;
  margin-bottom: 5.625rem !important;
}

.m-95 {
  margin: 5.9375rem !important;
}

.mt-95 {
  margin-top: 5.9375rem !important;
}

.mb-95 {
  margin-bottom: 5.9375rem !important;
}

.ms-95 {
  margin-left: 5.9375rem !important;
}

.me-95 {
  margin-right: 5.9375rem !important;
}

.mx-95 {
  margin-left: 5.9375rem !important;
  margin-right: 5.9375rem !important;
}

.my-95 {
  margin-top: 5.9375rem !important;
  margin-bottom: 5.9375rem !important;
}

.m-100 {
  margin: 6.25rem !important;
}

.mt-100 {
  margin-top: 6.25rem !important;
}

.mb-100 {
  margin-bottom: 6.25rem !important;
}

.ms-100 {
  margin-left: 6.25rem !important;
}

.me-100 {
  margin-right: 6.25rem !important;
}

.mx-100 {
  margin-left: 6.25rem !important;
  margin-right: 6.25rem !important;
}

.my-100 {
  margin-top: 6.25rem !important;
  margin-bottom: 6.25rem !important;
}

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

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

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

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

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

/*
Auto Margin Breakpoint Support
>>------------->
*/
@media (min-width: 576px) {
  .mt-sm-auto {
    margin-top: auto !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

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

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 950px) {
  .mt-md-auto {
    margin-top: auto !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

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

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 1024px) {
  .mt-lg-auto {
    margin-top: auto !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

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

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 1920px) {
  .mt-xl-auto {
    margin-top: auto !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

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

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
/*
Padding
>>------------->
*/
.p-0 {
  padding: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-10 {
  padding-top: 0.625rem !important;
}

.pb-10 {
  padding-bottom: 0.625rem !important;
}

.ps-10 {
  padding-left: 0.625rem !important;
}

.pe-10 {
  padding-right: 0.625rem !important;
}

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

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

.p-15 {
  padding: 0.9375rem !important;
}

.pt-15 {
  padding-top: 0.9375rem !important;
}

.pb-15 {
  padding-bottom: 0.9375rem !important;
}

.ps-15 {
  padding-left: 0.9375rem !important;
}

.pe-15 {
  padding-right: 0.9375rem !important;
}

.px-15 {
  padding-left: 0.9375rem !important;
  padding-right: 0.9375rem !important;
}

.py-15 {
  padding-top: 0.9375rem !important;
  padding-bottom: 0.9375rem !important;
}

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

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

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

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

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

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

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

.p-25 {
  padding: 1.5625rem !important;
}

.pt-25 {
  padding-top: 1.5625rem !important;
}

.pb-25 {
  padding-bottom: 1.5625rem !important;
}

.ps-25 {
  padding-left: 1.5625rem !important;
}

.pe-25 {
  padding-right: 1.5625rem !important;
}

.px-25 {
  padding-left: 1.5625rem !important;
  padding-right: 1.5625rem !important;
}

.py-25 {
  padding-top: 1.5625rem !important;
  padding-bottom: 1.5625rem !important;
}

.p-30 {
  padding: 1.875rem !important;
}

.pt-30 {
  padding-top: 1.875rem !important;
}

.pb-30 {
  padding-bottom: 1.875rem !important;
}

.ps-30 {
  padding-left: 1.875rem !important;
}

.pe-30 {
  padding-right: 1.875rem !important;
}

.px-30 {
  padding-left: 1.875rem !important;
  padding-right: 1.875rem !important;
}

.py-30 {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important;
}

.p-35 {
  padding: 2.1875rem !important;
}

.pt-35 {
  padding-top: 2.1875rem !important;
}

.pb-35 {
  padding-bottom: 2.1875rem !important;
}

.ps-35 {
  padding-left: 2.1875rem !important;
}

.pe-35 {
  padding-right: 2.1875rem !important;
}

.px-35 {
  padding-left: 2.1875rem !important;
  padding-right: 2.1875rem !important;
}

.py-35 {
  padding-top: 2.1875rem !important;
  padding-bottom: 2.1875rem !important;
}

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

.pt-40 {
  padding-top: 2.5rem !important;
}

.pb-40 {
  padding-bottom: 2.5rem !important;
}

.ps-40 {
  padding-left: 2.5rem !important;
}

.pe-40 {
  padding-right: 2.5rem !important;
}

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

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

.p-45 {
  padding: 2.8125rem !important;
}

.pt-45 {
  padding-top: 2.8125rem !important;
}

.pb-45 {
  padding-bottom: 2.8125rem !important;
}

.ps-45 {
  padding-left: 2.8125rem !important;
}

.pe-45 {
  padding-right: 2.8125rem !important;
}

.px-45 {
  padding-left: 2.8125rem !important;
  padding-right: 2.8125rem !important;
}

.py-45 {
  padding-top: 2.8125rem !important;
  padding-bottom: 2.8125rem !important;
}

.p-50 {
  padding: 3.125rem !important;
}

.pt-50 {
  padding-top: 3.125rem !important;
}

.pb-50 {
  padding-bottom: 3.125rem !important;
}

.ps-50 {
  padding-left: 3.125rem !important;
}

.pe-50 {
  padding-right: 3.125rem !important;
}

.px-50 {
  padding-left: 3.125rem !important;
  padding-right: 3.125rem !important;
}

.py-50 {
  padding-top: 3.125rem !important;
  padding-bottom: 3.125rem !important;
}

.p-55 {
  padding: 3.4375rem !important;
}

.pt-55 {
  padding-top: 3.4375rem !important;
}

.pb-55 {
  padding-bottom: 3.4375rem !important;
}

.ps-55 {
  padding-left: 3.4375rem !important;
}

.pe-55 {
  padding-right: 3.4375rem !important;
}

.px-55 {
  padding-left: 3.4375rem !important;
  padding-right: 3.4375rem !important;
}

.py-55 {
  padding-top: 3.4375rem !important;
  padding-bottom: 3.4375rem !important;
}

.p-60 {
  padding: 3.75rem !important;
}

.pt-60 {
  padding-top: 3.75rem !important;
}

.pb-60 {
  padding-bottom: 3.75rem !important;
}

.ps-60 {
  padding-left: 3.75rem !important;
}

.pe-60 {
  padding-right: 3.75rem !important;
}

.px-60 {
  padding-left: 3.75rem !important;
  padding-right: 3.75rem !important;
}

.py-60 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.p-65 {
  padding: 4.0625rem !important;
}

.pt-65 {
  padding-top: 4.0625rem !important;
}

.pb-65 {
  padding-bottom: 4.0625rem !important;
}

.ps-65 {
  padding-left: 4.0625rem !important;
}

.pe-65 {
  padding-right: 4.0625rem !important;
}

.px-65 {
  padding-left: 4.0625rem !important;
  padding-right: 4.0625rem !important;
}

.py-65 {
  padding-top: 4.0625rem !important;
  padding-bottom: 4.0625rem !important;
}

.p-70 {
  padding: 4.375rem !important;
}

.pt-70 {
  padding-top: 4.375rem !important;
}

.pb-70 {
  padding-bottom: 4.375rem !important;
}

.ps-70 {
  padding-left: 4.375rem !important;
}

.pe-70 {
  padding-right: 4.375rem !important;
}

.px-70 {
  padding-left: 4.375rem !important;
  padding-right: 4.375rem !important;
}

.py-70 {
  padding-top: 4.375rem !important;
  padding-bottom: 4.375rem !important;
}

.p-75 {
  padding: 4.6875rem !important;
}

.pt-75 {
  padding-top: 4.6875rem !important;
}

.pb-75 {
  padding-bottom: 4.6875rem !important;
}

.ps-75 {
  padding-left: 4.6875rem !important;
}

.pe-75 {
  padding-right: 4.6875rem !important;
}

.px-75 {
  padding-left: 4.6875rem !important;
  padding-right: 4.6875rem !important;
}

.py-75 {
  padding-top: 4.6875rem !important;
  padding-bottom: 4.6875rem !important;
}

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

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

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

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

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

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

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

.p-85 {
  padding: 5.3125rem !important;
}

.pt-85 {
  padding-top: 5.3125rem !important;
}

.pb-85 {
  padding-bottom: 5.3125rem !important;
}

.ps-85 {
  padding-left: 5.3125rem !important;
}

.pe-85 {
  padding-right: 5.3125rem !important;
}

.px-85 {
  padding-left: 5.3125rem !important;
  padding-right: 5.3125rem !important;
}

.py-85 {
  padding-top: 5.3125rem !important;
  padding-bottom: 5.3125rem !important;
}

.p-90 {
  padding: 5.625rem !important;
}

.pt-90 {
  padding-top: 5.625rem !important;
}

.pb-90 {
  padding-bottom: 5.625rem !important;
}

.ps-90 {
  padding-left: 5.625rem !important;
}

.pe-90 {
  padding-right: 5.625rem !important;
}

.px-90 {
  padding-left: 5.625rem !important;
  padding-right: 5.625rem !important;
}

.py-90 {
  padding-top: 5.625rem !important;
  padding-bottom: 5.625rem !important;
}

.p-95 {
  padding: 5.9375rem !important;
}

.pt-95 {
  padding-top: 5.9375rem !important;
}

.pb-95 {
  padding-bottom: 5.9375rem !important;
}

.ps-95 {
  padding-left: 5.9375rem !important;
}

.pe-95 {
  padding-right: 5.9375rem !important;
}

.px-95 {
  padding-left: 5.9375rem !important;
  padding-right: 5.9375rem !important;
}

.py-95 {
  padding-top: 5.9375rem !important;
  padding-bottom: 5.9375rem !important;
}

.p-100 {
  padding: 6.25rem !important;
}

.pt-100 {
  padding-top: 6.25rem !important;
}

.pb-100 {
  padding-bottom: 6.25rem !important;
}

.ps-100 {
  padding-left: 6.25rem !important;
}

.pe-100 {
  padding-right: 6.25rem !important;
}

.px-100 {
  padding-left: 6.25rem !important;
  padding-right: 6.25rem !important;
}

.py-100 {
  padding-top: 6.25rem !important;
  padding-bottom: 6.25rem !important;
}

/*
Responsive Spacing
>>------------->
*/
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-sm-10 {
    margin: 0.625rem !important;
  }

  .mt-sm-10 {
    margin-top: 0.625rem !important;
  }

  .mb-sm-10 {
    margin-bottom: 0.625rem !important;
  }

  .ms-sm-10 {
    margin-left: 0.625rem !important;
  }

  .me-sm-10 {
    margin-right: 0.625rem !important;
  }

  .mx-sm-10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .my-sm-10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

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

  .pt-sm-10 {
    padding-top: 0.625rem !important;
  }

  .pb-sm-10 {
    padding-bottom: 0.625rem !important;
  }

  .ps-sm-10 {
    padding-left: 0.625rem !important;
  }

  .pe-sm-10 {
    padding-right: 0.625rem !important;
  }

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

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

  .m-sm-15 {
    margin: 0.9375rem !important;
  }

  .mt-sm-15 {
    margin-top: 0.9375rem !important;
  }

  .mb-sm-15 {
    margin-bottom: 0.9375rem !important;
  }

  .ms-sm-15 {
    margin-left: 0.9375rem !important;
  }

  .me-sm-15 {
    margin-right: 0.9375rem !important;
  }

  .mx-sm-15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }

  .my-sm-15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }

  .p-sm-15 {
    padding: 0.9375rem !important;
  }

  .pt-sm-15 {
    padding-top: 0.9375rem !important;
  }

  .pb-sm-15 {
    padding-bottom: 0.9375rem !important;
  }

  .ps-sm-15 {
    padding-left: 0.9375rem !important;
  }

  .pe-sm-15 {
    padding-right: 0.9375rem !important;
  }

  .px-sm-15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }

  .py-sm-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-sm-25 {
    margin: 1.5625rem !important;
  }

  .mt-sm-25 {
    margin-top: 1.5625rem !important;
  }

  .mb-sm-25 {
    margin-bottom: 1.5625rem !important;
  }

  .ms-sm-25 {
    margin-left: 1.5625rem !important;
  }

  .me-sm-25 {
    margin-right: 1.5625rem !important;
  }

  .mx-sm-25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }

  .my-sm-25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }

  .p-sm-25 {
    padding: 1.5625rem !important;
  }

  .pt-sm-25 {
    padding-top: 1.5625rem !important;
  }

  .pb-sm-25 {
    padding-bottom: 1.5625rem !important;
  }

  .ps-sm-25 {
    padding-left: 1.5625rem !important;
  }

  .pe-sm-25 {
    padding-right: 1.5625rem !important;
  }

  .px-sm-25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }

  .py-sm-25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }

  .m-sm-30 {
    margin: 1.875rem !important;
  }

  .mt-sm-30 {
    margin-top: 1.875rem !important;
  }

  .mb-sm-30 {
    margin-bottom: 1.875rem !important;
  }

  .ms-sm-30 {
    margin-left: 1.875rem !important;
  }

  .me-sm-30 {
    margin-right: 1.875rem !important;
  }

  .mx-sm-30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }

  .my-sm-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }

  .p-sm-30 {
    padding: 1.875rem !important;
  }

  .pt-sm-30 {
    padding-top: 1.875rem !important;
  }

  .pb-sm-30 {
    padding-bottom: 1.875rem !important;
  }

  .ps-sm-30 {
    padding-left: 1.875rem !important;
  }

  .pe-sm-30 {
    padding-right: 1.875rem !important;
  }

  .px-sm-30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }

  .py-sm-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }

  .m-sm-35 {
    margin: 2.1875rem !important;
  }

  .mt-sm-35 {
    margin-top: 2.1875rem !important;
  }

  .mb-sm-35 {
    margin-bottom: 2.1875rem !important;
  }

  .ms-sm-35 {
    margin-left: 2.1875rem !important;
  }

  .me-sm-35 {
    margin-right: 2.1875rem !important;
  }

  .mx-sm-35 {
    margin-left: 2.1875rem !important;
    margin-right: 2.1875rem !important;
  }

  .my-sm-35 {
    margin-top: 2.1875rem !important;
    margin-bottom: 2.1875rem !important;
  }

  .p-sm-35 {
    padding: 2.1875rem !important;
  }

  .pt-sm-35 {
    padding-top: 2.1875rem !important;
  }

  .pb-sm-35 {
    padding-bottom: 2.1875rem !important;
  }

  .ps-sm-35 {
    padding-left: 2.1875rem !important;
  }

  .pe-sm-35 {
    padding-right: 2.1875rem !important;
  }

  .px-sm-35 {
    padding-left: 2.1875rem !important;
    padding-right: 2.1875rem !important;
  }

  .py-sm-35 {
    padding-top: 2.1875rem !important;
    padding-bottom: 2.1875rem !important;
  }

  .m-sm-40 {
    margin: 2.5rem !important;
  }

  .mt-sm-40 {
    margin-top: 2.5rem !important;
  }

  .mb-sm-40 {
    margin-bottom: 2.5rem !important;
  }

  .ms-sm-40 {
    margin-left: 2.5rem !important;
  }

  .me-sm-40 {
    margin-right: 2.5rem !important;
  }

  .mx-sm-40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .my-sm-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

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

  .pt-sm-40 {
    padding-top: 2.5rem !important;
  }

  .pb-sm-40 {
    padding-bottom: 2.5rem !important;
  }

  .ps-sm-40 {
    padding-left: 2.5rem !important;
  }

  .pe-sm-40 {
    padding-right: 2.5rem !important;
  }

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

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

  .m-sm-45 {
    margin: 2.8125rem !important;
  }

  .mt-sm-45 {
    margin-top: 2.8125rem !important;
  }

  .mb-sm-45 {
    margin-bottom: 2.8125rem !important;
  }

  .ms-sm-45 {
    margin-left: 2.8125rem !important;
  }

  .me-sm-45 {
    margin-right: 2.8125rem !important;
  }

  .mx-sm-45 {
    margin-left: 2.8125rem !important;
    margin-right: 2.8125rem !important;
  }

  .my-sm-45 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }

  .p-sm-45 {
    padding: 2.8125rem !important;
  }

  .pt-sm-45 {
    padding-top: 2.8125rem !important;
  }

  .pb-sm-45 {
    padding-bottom: 2.8125rem !important;
  }

  .ps-sm-45 {
    padding-left: 2.8125rem !important;
  }

  .pe-sm-45 {
    padding-right: 2.8125rem !important;
  }

  .px-sm-45 {
    padding-left: 2.8125rem !important;
    padding-right: 2.8125rem !important;
  }

  .py-sm-45 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }

  .m-sm-50 {
    margin: 3.125rem !important;
  }

  .mt-sm-50 {
    margin-top: 3.125rem !important;
  }

  .mb-sm-50 {
    margin-bottom: 3.125rem !important;
  }

  .ms-sm-50 {
    margin-left: 3.125rem !important;
  }

  .me-sm-50 {
    margin-right: 3.125rem !important;
  }

  .mx-sm-50 {
    margin-left: 3.125rem !important;
    margin-right: 3.125rem !important;
  }

  .my-sm-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }

  .p-sm-50 {
    padding: 3.125rem !important;
  }

  .pt-sm-50 {
    padding-top: 3.125rem !important;
  }

  .pb-sm-50 {
    padding-bottom: 3.125rem !important;
  }

  .ps-sm-50 {
    padding-left: 3.125rem !important;
  }

  .pe-sm-50 {
    padding-right: 3.125rem !important;
  }

  .px-sm-50 {
    padding-left: 3.125rem !important;
    padding-right: 3.125rem !important;
  }

  .py-sm-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }

  .m-sm-55 {
    margin: 3.4375rem !important;
  }

  .mt-sm-55 {
    margin-top: 3.4375rem !important;
  }

  .mb-sm-55 {
    margin-bottom: 3.4375rem !important;
  }

  .ms-sm-55 {
    margin-left: 3.4375rem !important;
  }

  .me-sm-55 {
    margin-right: 3.4375rem !important;
  }

  .mx-sm-55 {
    margin-left: 3.4375rem !important;
    margin-right: 3.4375rem !important;
  }

  .my-sm-55 {
    margin-top: 3.4375rem !important;
    margin-bottom: 3.4375rem !important;
  }

  .p-sm-55 {
    padding: 3.4375rem !important;
  }

  .pt-sm-55 {
    padding-top: 3.4375rem !important;
  }

  .pb-sm-55 {
    padding-bottom: 3.4375rem !important;
  }

  .ps-sm-55 {
    padding-left: 3.4375rem !important;
  }

  .pe-sm-55 {
    padding-right: 3.4375rem !important;
  }

  .px-sm-55 {
    padding-left: 3.4375rem !important;
    padding-right: 3.4375rem !important;
  }

  .py-sm-55 {
    padding-top: 3.4375rem !important;
    padding-bottom: 3.4375rem !important;
  }

  .m-sm-60 {
    margin: 3.75rem !important;
  }

  .mt-sm-60 {
    margin-top: 3.75rem !important;
  }

  .mb-sm-60 {
    margin-bottom: 3.75rem !important;
  }

  .ms-sm-60 {
    margin-left: 3.75rem !important;
  }

  .me-sm-60 {
    margin-right: 3.75rem !important;
  }

  .mx-sm-60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .my-sm-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .p-sm-60 {
    padding: 3.75rem !important;
  }

  .pt-sm-60 {
    padding-top: 3.75rem !important;
  }

  .pb-sm-60 {
    padding-bottom: 3.75rem !important;
  }

  .ps-sm-60 {
    padding-left: 3.75rem !important;
  }

  .pe-sm-60 {
    padding-right: 3.75rem !important;
  }

  .px-sm-60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .py-sm-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .m-sm-65 {
    margin: 4.0625rem !important;
  }

  .mt-sm-65 {
    margin-top: 4.0625rem !important;
  }

  .mb-sm-65 {
    margin-bottom: 4.0625rem !important;
  }

  .ms-sm-65 {
    margin-left: 4.0625rem !important;
  }

  .me-sm-65 {
    margin-right: 4.0625rem !important;
  }

  .mx-sm-65 {
    margin-left: 4.0625rem !important;
    margin-right: 4.0625rem !important;
  }

  .my-sm-65 {
    margin-top: 4.0625rem !important;
    margin-bottom: 4.0625rem !important;
  }

  .p-sm-65 {
    padding: 4.0625rem !important;
  }

  .pt-sm-65 {
    padding-top: 4.0625rem !important;
  }

  .pb-sm-65 {
    padding-bottom: 4.0625rem !important;
  }

  .ps-sm-65 {
    padding-left: 4.0625rem !important;
  }

  .pe-sm-65 {
    padding-right: 4.0625rem !important;
  }

  .px-sm-65 {
    padding-left: 4.0625rem !important;
    padding-right: 4.0625rem !important;
  }

  .py-sm-65 {
    padding-top: 4.0625rem !important;
    padding-bottom: 4.0625rem !important;
  }

  .m-sm-70 {
    margin: 4.375rem !important;
  }

  .mt-sm-70 {
    margin-top: 4.375rem !important;
  }

  .mb-sm-70 {
    margin-bottom: 4.375rem !important;
  }

  .ms-sm-70 {
    margin-left: 4.375rem !important;
  }

  .me-sm-70 {
    margin-right: 4.375rem !important;
  }

  .mx-sm-70 {
    margin-left: 4.375rem !important;
    margin-right: 4.375rem !important;
  }

  .my-sm-70 {
    margin-top: 4.375rem !important;
    margin-bottom: 4.375rem !important;
  }

  .p-sm-70 {
    padding: 4.375rem !important;
  }

  .pt-sm-70 {
    padding-top: 4.375rem !important;
  }

  .pb-sm-70 {
    padding-bottom: 4.375rem !important;
  }

  .ps-sm-70 {
    padding-left: 4.375rem !important;
  }

  .pe-sm-70 {
    padding-right: 4.375rem !important;
  }

  .px-sm-70 {
    padding-left: 4.375rem !important;
    padding-right: 4.375rem !important;
  }

  .py-sm-70 {
    padding-top: 4.375rem !important;
    padding-bottom: 4.375rem !important;
  }

  .m-sm-75 {
    margin: 4.6875rem !important;
  }

  .mt-sm-75 {
    margin-top: 4.6875rem !important;
  }

  .mb-sm-75 {
    margin-bottom: 4.6875rem !important;
  }

  .ms-sm-75 {
    margin-left: 4.6875rem !important;
  }

  .me-sm-75 {
    margin-right: 4.6875rem !important;
  }

  .mx-sm-75 {
    margin-left: 4.6875rem !important;
    margin-right: 4.6875rem !important;
  }

  .my-sm-75 {
    margin-top: 4.6875rem !important;
    margin-bottom: 4.6875rem !important;
  }

  .p-sm-75 {
    padding: 4.6875rem !important;
  }

  .pt-sm-75 {
    padding-top: 4.6875rem !important;
  }

  .pb-sm-75 {
    padding-bottom: 4.6875rem !important;
  }

  .ps-sm-75 {
    padding-left: 4.6875rem !important;
  }

  .pe-sm-75 {
    padding-right: 4.6875rem !important;
  }

  .px-sm-75 {
    padding-left: 4.6875rem !important;
    padding-right: 4.6875rem !important;
  }

  .py-sm-75 {
    padding-top: 4.6875rem !important;
    padding-bottom: 4.6875rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-sm-85 {
    margin: 5.3125rem !important;
  }

  .mt-sm-85 {
    margin-top: 5.3125rem !important;
  }

  .mb-sm-85 {
    margin-bottom: 5.3125rem !important;
  }

  .ms-sm-85 {
    margin-left: 5.3125rem !important;
  }

  .me-sm-85 {
    margin-right: 5.3125rem !important;
  }

  .mx-sm-85 {
    margin-left: 5.3125rem !important;
    margin-right: 5.3125rem !important;
  }

  .my-sm-85 {
    margin-top: 5.3125rem !important;
    margin-bottom: 5.3125rem !important;
  }

  .p-sm-85 {
    padding: 5.3125rem !important;
  }

  .pt-sm-85 {
    padding-top: 5.3125rem !important;
  }

  .pb-sm-85 {
    padding-bottom: 5.3125rem !important;
  }

  .ps-sm-85 {
    padding-left: 5.3125rem !important;
  }

  .pe-sm-85 {
    padding-right: 5.3125rem !important;
  }

  .px-sm-85 {
    padding-left: 5.3125rem !important;
    padding-right: 5.3125rem !important;
  }

  .py-sm-85 {
    padding-top: 5.3125rem !important;
    padding-bottom: 5.3125rem !important;
  }

  .m-sm-90 {
    margin: 5.625rem !important;
  }

  .mt-sm-90 {
    margin-top: 5.625rem !important;
  }

  .mb-sm-90 {
    margin-bottom: 5.625rem !important;
  }

  .ms-sm-90 {
    margin-left: 5.625rem !important;
  }

  .me-sm-90 {
    margin-right: 5.625rem !important;
  }

  .mx-sm-90 {
    margin-left: 5.625rem !important;
    margin-right: 5.625rem !important;
  }

  .my-sm-90 {
    margin-top: 5.625rem !important;
    margin-bottom: 5.625rem !important;
  }

  .p-sm-90 {
    padding: 5.625rem !important;
  }

  .pt-sm-90 {
    padding-top: 5.625rem !important;
  }

  .pb-sm-90 {
    padding-bottom: 5.625rem !important;
  }

  .ps-sm-90 {
    padding-left: 5.625rem !important;
  }

  .pe-sm-90 {
    padding-right: 5.625rem !important;
  }

  .px-sm-90 {
    padding-left: 5.625rem !important;
    padding-right: 5.625rem !important;
  }

  .py-sm-90 {
    padding-top: 5.625rem !important;
    padding-bottom: 5.625rem !important;
  }

  .m-sm-95 {
    margin: 5.9375rem !important;
  }

  .mt-sm-95 {
    margin-top: 5.9375rem !important;
  }

  .mb-sm-95 {
    margin-bottom: 5.9375rem !important;
  }

  .ms-sm-95 {
    margin-left: 5.9375rem !important;
  }

  .me-sm-95 {
    margin-right: 5.9375rem !important;
  }

  .mx-sm-95 {
    margin-left: 5.9375rem !important;
    margin-right: 5.9375rem !important;
  }

  .my-sm-95 {
    margin-top: 5.9375rem !important;
    margin-bottom: 5.9375rem !important;
  }

  .p-sm-95 {
    padding: 5.9375rem !important;
  }

  .pt-sm-95 {
    padding-top: 5.9375rem !important;
  }

  .pb-sm-95 {
    padding-bottom: 5.9375rem !important;
  }

  .ps-sm-95 {
    padding-left: 5.9375rem !important;
  }

  .pe-sm-95 {
    padding-right: 5.9375rem !important;
  }

  .px-sm-95 {
    padding-left: 5.9375rem !important;
    padding-right: 5.9375rem !important;
  }

  .py-sm-95 {
    padding-top: 5.9375rem !important;
    padding-bottom: 5.9375rem !important;
  }

  .m-sm-100 {
    margin: 6.25rem !important;
  }

  .mt-sm-100 {
    margin-top: 6.25rem !important;
  }

  .mb-sm-100 {
    margin-bottom: 6.25rem !important;
  }

  .ms-sm-100 {
    margin-left: 6.25rem !important;
  }

  .me-sm-100 {
    margin-right: 6.25rem !important;
  }

  .mx-sm-100 {
    margin-left: 6.25rem !important;
    margin-right: 6.25rem !important;
  }

  .my-sm-100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }

  .p-sm-100 {
    padding: 6.25rem !important;
  }

  .pt-sm-100 {
    padding-top: 6.25rem !important;
  }

  .pb-sm-100 {
    padding-bottom: 6.25rem !important;
  }

  .ps-sm-100 {
    padding-left: 6.25rem !important;
  }

  .pe-sm-100 {
    padding-right: 6.25rem !important;
  }

  .px-sm-100 {
    padding-left: 6.25rem !important;
    padding-right: 6.25rem !important;
  }

  .py-sm-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
}
@media (min-width: 950px) {
  .m-md-0 {
    margin: 0rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-md-10 {
    margin: 0.625rem !important;
  }

  .mt-md-10 {
    margin-top: 0.625rem !important;
  }

  .mb-md-10 {
    margin-bottom: 0.625rem !important;
  }

  .ms-md-10 {
    margin-left: 0.625rem !important;
  }

  .me-md-10 {
    margin-right: 0.625rem !important;
  }

  .mx-md-10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .my-md-10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

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

  .pt-md-10 {
    padding-top: 0.625rem !important;
  }

  .pb-md-10 {
    padding-bottom: 0.625rem !important;
  }

  .ps-md-10 {
    padding-left: 0.625rem !important;
  }

  .pe-md-10 {
    padding-right: 0.625rem !important;
  }

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

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

  .m-md-15 {
    margin: 0.9375rem !important;
  }

  .mt-md-15 {
    margin-top: 0.9375rem !important;
  }

  .mb-md-15 {
    margin-bottom: 0.9375rem !important;
  }

  .ms-md-15 {
    margin-left: 0.9375rem !important;
  }

  .me-md-15 {
    margin-right: 0.9375rem !important;
  }

  .mx-md-15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }

  .my-md-15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }

  .p-md-15 {
    padding: 0.9375rem !important;
  }

  .pt-md-15 {
    padding-top: 0.9375rem !important;
  }

  .pb-md-15 {
    padding-bottom: 0.9375rem !important;
  }

  .ps-md-15 {
    padding-left: 0.9375rem !important;
  }

  .pe-md-15 {
    padding-right: 0.9375rem !important;
  }

  .px-md-15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }

  .py-md-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-md-25 {
    margin: 1.5625rem !important;
  }

  .mt-md-25 {
    margin-top: 1.5625rem !important;
  }

  .mb-md-25 {
    margin-bottom: 1.5625rem !important;
  }

  .ms-md-25 {
    margin-left: 1.5625rem !important;
  }

  .me-md-25 {
    margin-right: 1.5625rem !important;
  }

  .mx-md-25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }

  .my-md-25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }

  .p-md-25 {
    padding: 1.5625rem !important;
  }

  .pt-md-25 {
    padding-top: 1.5625rem !important;
  }

  .pb-md-25 {
    padding-bottom: 1.5625rem !important;
  }

  .ps-md-25 {
    padding-left: 1.5625rem !important;
  }

  .pe-md-25 {
    padding-right: 1.5625rem !important;
  }

  .px-md-25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }

  .py-md-25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }

  .m-md-30 {
    margin: 1.875rem !important;
  }

  .mt-md-30 {
    margin-top: 1.875rem !important;
  }

  .mb-md-30 {
    margin-bottom: 1.875rem !important;
  }

  .ms-md-30 {
    margin-left: 1.875rem !important;
  }

  .me-md-30 {
    margin-right: 1.875rem !important;
  }

  .mx-md-30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }

  .my-md-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }

  .p-md-30 {
    padding: 1.875rem !important;
  }

  .pt-md-30 {
    padding-top: 1.875rem !important;
  }

  .pb-md-30 {
    padding-bottom: 1.875rem !important;
  }

  .ps-md-30 {
    padding-left: 1.875rem !important;
  }

  .pe-md-30 {
    padding-right: 1.875rem !important;
  }

  .px-md-30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }

  .py-md-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }

  .m-md-35 {
    margin: 2.1875rem !important;
  }

  .mt-md-35 {
    margin-top: 2.1875rem !important;
  }

  .mb-md-35 {
    margin-bottom: 2.1875rem !important;
  }

  .ms-md-35 {
    margin-left: 2.1875rem !important;
  }

  .me-md-35 {
    margin-right: 2.1875rem !important;
  }

  .mx-md-35 {
    margin-left: 2.1875rem !important;
    margin-right: 2.1875rem !important;
  }

  .my-md-35 {
    margin-top: 2.1875rem !important;
    margin-bottom: 2.1875rem !important;
  }

  .p-md-35 {
    padding: 2.1875rem !important;
  }

  .pt-md-35 {
    padding-top: 2.1875rem !important;
  }

  .pb-md-35 {
    padding-bottom: 2.1875rem !important;
  }

  .ps-md-35 {
    padding-left: 2.1875rem !important;
  }

  .pe-md-35 {
    padding-right: 2.1875rem !important;
  }

  .px-md-35 {
    padding-left: 2.1875rem !important;
    padding-right: 2.1875rem !important;
  }

  .py-md-35 {
    padding-top: 2.1875rem !important;
    padding-bottom: 2.1875rem !important;
  }

  .m-md-40 {
    margin: 2.5rem !important;
  }

  .mt-md-40 {
    margin-top: 2.5rem !important;
  }

  .mb-md-40 {
    margin-bottom: 2.5rem !important;
  }

  .ms-md-40 {
    margin-left: 2.5rem !important;
  }

  .me-md-40 {
    margin-right: 2.5rem !important;
  }

  .mx-md-40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .my-md-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

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

  .pt-md-40 {
    padding-top: 2.5rem !important;
  }

  .pb-md-40 {
    padding-bottom: 2.5rem !important;
  }

  .ps-md-40 {
    padding-left: 2.5rem !important;
  }

  .pe-md-40 {
    padding-right: 2.5rem !important;
  }

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

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

  .m-md-45 {
    margin: 2.8125rem !important;
  }

  .mt-md-45 {
    margin-top: 2.8125rem !important;
  }

  .mb-md-45 {
    margin-bottom: 2.8125rem !important;
  }

  .ms-md-45 {
    margin-left: 2.8125rem !important;
  }

  .me-md-45 {
    margin-right: 2.8125rem !important;
  }

  .mx-md-45 {
    margin-left: 2.8125rem !important;
    margin-right: 2.8125rem !important;
  }

  .my-md-45 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }

  .p-md-45 {
    padding: 2.8125rem !important;
  }

  .pt-md-45 {
    padding-top: 2.8125rem !important;
  }

  .pb-md-45 {
    padding-bottom: 2.8125rem !important;
  }

  .ps-md-45 {
    padding-left: 2.8125rem !important;
  }

  .pe-md-45 {
    padding-right: 2.8125rem !important;
  }

  .px-md-45 {
    padding-left: 2.8125rem !important;
    padding-right: 2.8125rem !important;
  }

  .py-md-45 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }

  .m-md-50 {
    margin: 3.125rem !important;
  }

  .mt-md-50 {
    margin-top: 3.125rem !important;
  }

  .mb-md-50 {
    margin-bottom: 3.125rem !important;
  }

  .ms-md-50 {
    margin-left: 3.125rem !important;
  }

  .me-md-50 {
    margin-right: 3.125rem !important;
  }

  .mx-md-50 {
    margin-left: 3.125rem !important;
    margin-right: 3.125rem !important;
  }

  .my-md-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }

  .p-md-50 {
    padding: 3.125rem !important;
  }

  .pt-md-50 {
    padding-top: 3.125rem !important;
  }

  .pb-md-50 {
    padding-bottom: 3.125rem !important;
  }

  .ps-md-50 {
    padding-left: 3.125rem !important;
  }

  .pe-md-50 {
    padding-right: 3.125rem !important;
  }

  .px-md-50 {
    padding-left: 3.125rem !important;
    padding-right: 3.125rem !important;
  }

  .py-md-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }

  .m-md-55 {
    margin: 3.4375rem !important;
  }

  .mt-md-55 {
    margin-top: 3.4375rem !important;
  }

  .mb-md-55 {
    margin-bottom: 3.4375rem !important;
  }

  .ms-md-55 {
    margin-left: 3.4375rem !important;
  }

  .me-md-55 {
    margin-right: 3.4375rem !important;
  }

  .mx-md-55 {
    margin-left: 3.4375rem !important;
    margin-right: 3.4375rem !important;
  }

  .my-md-55 {
    margin-top: 3.4375rem !important;
    margin-bottom: 3.4375rem !important;
  }

  .p-md-55 {
    padding: 3.4375rem !important;
  }

  .pt-md-55 {
    padding-top: 3.4375rem !important;
  }

  .pb-md-55 {
    padding-bottom: 3.4375rem !important;
  }

  .ps-md-55 {
    padding-left: 3.4375rem !important;
  }

  .pe-md-55 {
    padding-right: 3.4375rem !important;
  }

  .px-md-55 {
    padding-left: 3.4375rem !important;
    padding-right: 3.4375rem !important;
  }

  .py-md-55 {
    padding-top: 3.4375rem !important;
    padding-bottom: 3.4375rem !important;
  }

  .m-md-60 {
    margin: 3.75rem !important;
  }

  .mt-md-60 {
    margin-top: 3.75rem !important;
  }

  .mb-md-60 {
    margin-bottom: 3.75rem !important;
  }

  .ms-md-60 {
    margin-left: 3.75rem !important;
  }

  .me-md-60 {
    margin-right: 3.75rem !important;
  }

  .mx-md-60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .my-md-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .p-md-60 {
    padding: 3.75rem !important;
  }

  .pt-md-60 {
    padding-top: 3.75rem !important;
  }

  .pb-md-60 {
    padding-bottom: 3.75rem !important;
  }

  .ps-md-60 {
    padding-left: 3.75rem !important;
  }

  .pe-md-60 {
    padding-right: 3.75rem !important;
  }

  .px-md-60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .py-md-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .m-md-65 {
    margin: 4.0625rem !important;
  }

  .mt-md-65 {
    margin-top: 4.0625rem !important;
  }

  .mb-md-65 {
    margin-bottom: 4.0625rem !important;
  }

  .ms-md-65 {
    margin-left: 4.0625rem !important;
  }

  .me-md-65 {
    margin-right: 4.0625rem !important;
  }

  .mx-md-65 {
    margin-left: 4.0625rem !important;
    margin-right: 4.0625rem !important;
  }

  .my-md-65 {
    margin-top: 4.0625rem !important;
    margin-bottom: 4.0625rem !important;
  }

  .p-md-65 {
    padding: 4.0625rem !important;
  }

  .pt-md-65 {
    padding-top: 4.0625rem !important;
  }

  .pb-md-65 {
    padding-bottom: 4.0625rem !important;
  }

  .ps-md-65 {
    padding-left: 4.0625rem !important;
  }

  .pe-md-65 {
    padding-right: 4.0625rem !important;
  }

  .px-md-65 {
    padding-left: 4.0625rem !important;
    padding-right: 4.0625rem !important;
  }

  .py-md-65 {
    padding-top: 4.0625rem !important;
    padding-bottom: 4.0625rem !important;
  }

  .m-md-70 {
    margin: 4.375rem !important;
  }

  .mt-md-70 {
    margin-top: 4.375rem !important;
  }

  .mb-md-70 {
    margin-bottom: 4.375rem !important;
  }

  .ms-md-70 {
    margin-left: 4.375rem !important;
  }

  .me-md-70 {
    margin-right: 4.375rem !important;
  }

  .mx-md-70 {
    margin-left: 4.375rem !important;
    margin-right: 4.375rem !important;
  }

  .my-md-70 {
    margin-top: 4.375rem !important;
    margin-bottom: 4.375rem !important;
  }

  .p-md-70 {
    padding: 4.375rem !important;
  }

  .pt-md-70 {
    padding-top: 4.375rem !important;
  }

  .pb-md-70 {
    padding-bottom: 4.375rem !important;
  }

  .ps-md-70 {
    padding-left: 4.375rem !important;
  }

  .pe-md-70 {
    padding-right: 4.375rem !important;
  }

  .px-md-70 {
    padding-left: 4.375rem !important;
    padding-right: 4.375rem !important;
  }

  .py-md-70 {
    padding-top: 4.375rem !important;
    padding-bottom: 4.375rem !important;
  }

  .m-md-75 {
    margin: 4.6875rem !important;
  }

  .mt-md-75 {
    margin-top: 4.6875rem !important;
  }

  .mb-md-75 {
    margin-bottom: 4.6875rem !important;
  }

  .ms-md-75 {
    margin-left: 4.6875rem !important;
  }

  .me-md-75 {
    margin-right: 4.6875rem !important;
  }

  .mx-md-75 {
    margin-left: 4.6875rem !important;
    margin-right: 4.6875rem !important;
  }

  .my-md-75 {
    margin-top: 4.6875rem !important;
    margin-bottom: 4.6875rem !important;
  }

  .p-md-75 {
    padding: 4.6875rem !important;
  }

  .pt-md-75 {
    padding-top: 4.6875rem !important;
  }

  .pb-md-75 {
    padding-bottom: 4.6875rem !important;
  }

  .ps-md-75 {
    padding-left: 4.6875rem !important;
  }

  .pe-md-75 {
    padding-right: 4.6875rem !important;
  }

  .px-md-75 {
    padding-left: 4.6875rem !important;
    padding-right: 4.6875rem !important;
  }

  .py-md-75 {
    padding-top: 4.6875rem !important;
    padding-bottom: 4.6875rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-md-85 {
    margin: 5.3125rem !important;
  }

  .mt-md-85 {
    margin-top: 5.3125rem !important;
  }

  .mb-md-85 {
    margin-bottom: 5.3125rem !important;
  }

  .ms-md-85 {
    margin-left: 5.3125rem !important;
  }

  .me-md-85 {
    margin-right: 5.3125rem !important;
  }

  .mx-md-85 {
    margin-left: 5.3125rem !important;
    margin-right: 5.3125rem !important;
  }

  .my-md-85 {
    margin-top: 5.3125rem !important;
    margin-bottom: 5.3125rem !important;
  }

  .p-md-85 {
    padding: 5.3125rem !important;
  }

  .pt-md-85 {
    padding-top: 5.3125rem !important;
  }

  .pb-md-85 {
    padding-bottom: 5.3125rem !important;
  }

  .ps-md-85 {
    padding-left: 5.3125rem !important;
  }

  .pe-md-85 {
    padding-right: 5.3125rem !important;
  }

  .px-md-85 {
    padding-left: 5.3125rem !important;
    padding-right: 5.3125rem !important;
  }

  .py-md-85 {
    padding-top: 5.3125rem !important;
    padding-bottom: 5.3125rem !important;
  }

  .m-md-90 {
    margin: 5.625rem !important;
  }

  .mt-md-90 {
    margin-top: 5.625rem !important;
  }

  .mb-md-90 {
    margin-bottom: 5.625rem !important;
  }

  .ms-md-90 {
    margin-left: 5.625rem !important;
  }

  .me-md-90 {
    margin-right: 5.625rem !important;
  }

  .mx-md-90 {
    margin-left: 5.625rem !important;
    margin-right: 5.625rem !important;
  }

  .my-md-90 {
    margin-top: 5.625rem !important;
    margin-bottom: 5.625rem !important;
  }

  .p-md-90 {
    padding: 5.625rem !important;
  }

  .pt-md-90 {
    padding-top: 5.625rem !important;
  }

  .pb-md-90 {
    padding-bottom: 5.625rem !important;
  }

  .ps-md-90 {
    padding-left: 5.625rem !important;
  }

  .pe-md-90 {
    padding-right: 5.625rem !important;
  }

  .px-md-90 {
    padding-left: 5.625rem !important;
    padding-right: 5.625rem !important;
  }

  .py-md-90 {
    padding-top: 5.625rem !important;
    padding-bottom: 5.625rem !important;
  }

  .m-md-95 {
    margin: 5.9375rem !important;
  }

  .mt-md-95 {
    margin-top: 5.9375rem !important;
  }

  .mb-md-95 {
    margin-bottom: 5.9375rem !important;
  }

  .ms-md-95 {
    margin-left: 5.9375rem !important;
  }

  .me-md-95 {
    margin-right: 5.9375rem !important;
  }

  .mx-md-95 {
    margin-left: 5.9375rem !important;
    margin-right: 5.9375rem !important;
  }

  .my-md-95 {
    margin-top: 5.9375rem !important;
    margin-bottom: 5.9375rem !important;
  }

  .p-md-95 {
    padding: 5.9375rem !important;
  }

  .pt-md-95 {
    padding-top: 5.9375rem !important;
  }

  .pb-md-95 {
    padding-bottom: 5.9375rem !important;
  }

  .ps-md-95 {
    padding-left: 5.9375rem !important;
  }

  .pe-md-95 {
    padding-right: 5.9375rem !important;
  }

  .px-md-95 {
    padding-left: 5.9375rem !important;
    padding-right: 5.9375rem !important;
  }

  .py-md-95 {
    padding-top: 5.9375rem !important;
    padding-bottom: 5.9375rem !important;
  }

  .m-md-100 {
    margin: 6.25rem !important;
  }

  .mt-md-100 {
    margin-top: 6.25rem !important;
  }

  .mb-md-100 {
    margin-bottom: 6.25rem !important;
  }

  .ms-md-100 {
    margin-left: 6.25rem !important;
  }

  .me-md-100 {
    margin-right: 6.25rem !important;
  }

  .mx-md-100 {
    margin-left: 6.25rem !important;
    margin-right: 6.25rem !important;
  }

  .my-md-100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }

  .p-md-100 {
    padding: 6.25rem !important;
  }

  .pt-md-100 {
    padding-top: 6.25rem !important;
  }

  .pb-md-100 {
    padding-bottom: 6.25rem !important;
  }

  .ps-md-100 {
    padding-left: 6.25rem !important;
  }

  .pe-md-100 {
    padding-right: 6.25rem !important;
  }

  .px-md-100 {
    padding-left: 6.25rem !important;
    padding-right: 6.25rem !important;
  }

  .py-md-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-0 {
    margin: 0rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-lg-10 {
    margin: 0.625rem !important;
  }

  .mt-lg-10 {
    margin-top: 0.625rem !important;
  }

  .mb-lg-10 {
    margin-bottom: 0.625rem !important;
  }

  .ms-lg-10 {
    margin-left: 0.625rem !important;
  }

  .me-lg-10 {
    margin-right: 0.625rem !important;
  }

  .mx-lg-10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .my-lg-10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

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

  .pt-lg-10 {
    padding-top: 0.625rem !important;
  }

  .pb-lg-10 {
    padding-bottom: 0.625rem !important;
  }

  .ps-lg-10 {
    padding-left: 0.625rem !important;
  }

  .pe-lg-10 {
    padding-right: 0.625rem !important;
  }

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

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

  .m-lg-15 {
    margin: 0.9375rem !important;
  }

  .mt-lg-15 {
    margin-top: 0.9375rem !important;
  }

  .mb-lg-15 {
    margin-bottom: 0.9375rem !important;
  }

  .ms-lg-15 {
    margin-left: 0.9375rem !important;
  }

  .me-lg-15 {
    margin-right: 0.9375rem !important;
  }

  .mx-lg-15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }

  .my-lg-15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }

  .p-lg-15 {
    padding: 0.9375rem !important;
  }

  .pt-lg-15 {
    padding-top: 0.9375rem !important;
  }

  .pb-lg-15 {
    padding-bottom: 0.9375rem !important;
  }

  .ps-lg-15 {
    padding-left: 0.9375rem !important;
  }

  .pe-lg-15 {
    padding-right: 0.9375rem !important;
  }

  .px-lg-15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }

  .py-lg-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-lg-25 {
    margin: 1.5625rem !important;
  }

  .mt-lg-25 {
    margin-top: 1.5625rem !important;
  }

  .mb-lg-25 {
    margin-bottom: 1.5625rem !important;
  }

  .ms-lg-25 {
    margin-left: 1.5625rem !important;
  }

  .me-lg-25 {
    margin-right: 1.5625rem !important;
  }

  .mx-lg-25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }

  .my-lg-25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }

  .p-lg-25 {
    padding: 1.5625rem !important;
  }

  .pt-lg-25 {
    padding-top: 1.5625rem !important;
  }

  .pb-lg-25 {
    padding-bottom: 1.5625rem !important;
  }

  .ps-lg-25 {
    padding-left: 1.5625rem !important;
  }

  .pe-lg-25 {
    padding-right: 1.5625rem !important;
  }

  .px-lg-25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }

  .py-lg-25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }

  .m-lg-30 {
    margin: 1.875rem !important;
  }

  .mt-lg-30 {
    margin-top: 1.875rem !important;
  }

  .mb-lg-30 {
    margin-bottom: 1.875rem !important;
  }

  .ms-lg-30 {
    margin-left: 1.875rem !important;
  }

  .me-lg-30 {
    margin-right: 1.875rem !important;
  }

  .mx-lg-30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }

  .my-lg-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }

  .p-lg-30 {
    padding: 1.875rem !important;
  }

  .pt-lg-30 {
    padding-top: 1.875rem !important;
  }

  .pb-lg-30 {
    padding-bottom: 1.875rem !important;
  }

  .ps-lg-30 {
    padding-left: 1.875rem !important;
  }

  .pe-lg-30 {
    padding-right: 1.875rem !important;
  }

  .px-lg-30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }

  .py-lg-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }

  .m-lg-35 {
    margin: 2.1875rem !important;
  }

  .mt-lg-35 {
    margin-top: 2.1875rem !important;
  }

  .mb-lg-35 {
    margin-bottom: 2.1875rem !important;
  }

  .ms-lg-35 {
    margin-left: 2.1875rem !important;
  }

  .me-lg-35 {
    margin-right: 2.1875rem !important;
  }

  .mx-lg-35 {
    margin-left: 2.1875rem !important;
    margin-right: 2.1875rem !important;
  }

  .my-lg-35 {
    margin-top: 2.1875rem !important;
    margin-bottom: 2.1875rem !important;
  }

  .p-lg-35 {
    padding: 2.1875rem !important;
  }

  .pt-lg-35 {
    padding-top: 2.1875rem !important;
  }

  .pb-lg-35 {
    padding-bottom: 2.1875rem !important;
  }

  .ps-lg-35 {
    padding-left: 2.1875rem !important;
  }

  .pe-lg-35 {
    padding-right: 2.1875rem !important;
  }

  .px-lg-35 {
    padding-left: 2.1875rem !important;
    padding-right: 2.1875rem !important;
  }

  .py-lg-35 {
    padding-top: 2.1875rem !important;
    padding-bottom: 2.1875rem !important;
  }

  .m-lg-40 {
    margin: 2.5rem !important;
  }

  .mt-lg-40 {
    margin-top: 2.5rem !important;
  }

  .mb-lg-40 {
    margin-bottom: 2.5rem !important;
  }

  .ms-lg-40 {
    margin-left: 2.5rem !important;
  }

  .me-lg-40 {
    margin-right: 2.5rem !important;
  }

  .mx-lg-40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .my-lg-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

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

  .pt-lg-40 {
    padding-top: 2.5rem !important;
  }

  .pb-lg-40 {
    padding-bottom: 2.5rem !important;
  }

  .ps-lg-40 {
    padding-left: 2.5rem !important;
  }

  .pe-lg-40 {
    padding-right: 2.5rem !important;
  }

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

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

  .m-lg-45 {
    margin: 2.8125rem !important;
  }

  .mt-lg-45 {
    margin-top: 2.8125rem !important;
  }

  .mb-lg-45 {
    margin-bottom: 2.8125rem !important;
  }

  .ms-lg-45 {
    margin-left: 2.8125rem !important;
  }

  .me-lg-45 {
    margin-right: 2.8125rem !important;
  }

  .mx-lg-45 {
    margin-left: 2.8125rem !important;
    margin-right: 2.8125rem !important;
  }

  .my-lg-45 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }

  .p-lg-45 {
    padding: 2.8125rem !important;
  }

  .pt-lg-45 {
    padding-top: 2.8125rem !important;
  }

  .pb-lg-45 {
    padding-bottom: 2.8125rem !important;
  }

  .ps-lg-45 {
    padding-left: 2.8125rem !important;
  }

  .pe-lg-45 {
    padding-right: 2.8125rem !important;
  }

  .px-lg-45 {
    padding-left: 2.8125rem !important;
    padding-right: 2.8125rem !important;
  }

  .py-lg-45 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }

  .m-lg-50 {
    margin: 3.125rem !important;
  }

  .mt-lg-50 {
    margin-top: 3.125rem !important;
  }

  .mb-lg-50 {
    margin-bottom: 3.125rem !important;
  }

  .ms-lg-50 {
    margin-left: 3.125rem !important;
  }

  .me-lg-50 {
    margin-right: 3.125rem !important;
  }

  .mx-lg-50 {
    margin-left: 3.125rem !important;
    margin-right: 3.125rem !important;
  }

  .my-lg-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }

  .p-lg-50 {
    padding: 3.125rem !important;
  }

  .pt-lg-50 {
    padding-top: 3.125rem !important;
  }

  .pb-lg-50 {
    padding-bottom: 3.125rem !important;
  }

  .ps-lg-50 {
    padding-left: 3.125rem !important;
  }

  .pe-lg-50 {
    padding-right: 3.125rem !important;
  }

  .px-lg-50 {
    padding-left: 3.125rem !important;
    padding-right: 3.125rem !important;
  }

  .py-lg-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }

  .m-lg-55 {
    margin: 3.4375rem !important;
  }

  .mt-lg-55 {
    margin-top: 3.4375rem !important;
  }

  .mb-lg-55 {
    margin-bottom: 3.4375rem !important;
  }

  .ms-lg-55 {
    margin-left: 3.4375rem !important;
  }

  .me-lg-55 {
    margin-right: 3.4375rem !important;
  }

  .mx-lg-55 {
    margin-left: 3.4375rem !important;
    margin-right: 3.4375rem !important;
  }

  .my-lg-55 {
    margin-top: 3.4375rem !important;
    margin-bottom: 3.4375rem !important;
  }

  .p-lg-55 {
    padding: 3.4375rem !important;
  }

  .pt-lg-55 {
    padding-top: 3.4375rem !important;
  }

  .pb-lg-55 {
    padding-bottom: 3.4375rem !important;
  }

  .ps-lg-55 {
    padding-left: 3.4375rem !important;
  }

  .pe-lg-55 {
    padding-right: 3.4375rem !important;
  }

  .px-lg-55 {
    padding-left: 3.4375rem !important;
    padding-right: 3.4375rem !important;
  }

  .py-lg-55 {
    padding-top: 3.4375rem !important;
    padding-bottom: 3.4375rem !important;
  }

  .m-lg-60 {
    margin: 3.75rem !important;
  }

  .mt-lg-60 {
    margin-top: 3.75rem !important;
  }

  .mb-lg-60 {
    margin-bottom: 3.75rem !important;
  }

  .ms-lg-60 {
    margin-left: 3.75rem !important;
  }

  .me-lg-60 {
    margin-right: 3.75rem !important;
  }

  .mx-lg-60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .my-lg-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .p-lg-60 {
    padding: 3.75rem !important;
  }

  .pt-lg-60 {
    padding-top: 3.75rem !important;
  }

  .pb-lg-60 {
    padding-bottom: 3.75rem !important;
  }

  .ps-lg-60 {
    padding-left: 3.75rem !important;
  }

  .pe-lg-60 {
    padding-right: 3.75rem !important;
  }

  .px-lg-60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .py-lg-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .m-lg-65 {
    margin: 4.0625rem !important;
  }

  .mt-lg-65 {
    margin-top: 4.0625rem !important;
  }

  .mb-lg-65 {
    margin-bottom: 4.0625rem !important;
  }

  .ms-lg-65 {
    margin-left: 4.0625rem !important;
  }

  .me-lg-65 {
    margin-right: 4.0625rem !important;
  }

  .mx-lg-65 {
    margin-left: 4.0625rem !important;
    margin-right: 4.0625rem !important;
  }

  .my-lg-65 {
    margin-top: 4.0625rem !important;
    margin-bottom: 4.0625rem !important;
  }

  .p-lg-65 {
    padding: 4.0625rem !important;
  }

  .pt-lg-65 {
    padding-top: 4.0625rem !important;
  }

  .pb-lg-65 {
    padding-bottom: 4.0625rem !important;
  }

  .ps-lg-65 {
    padding-left: 4.0625rem !important;
  }

  .pe-lg-65 {
    padding-right: 4.0625rem !important;
  }

  .px-lg-65 {
    padding-left: 4.0625rem !important;
    padding-right: 4.0625rem !important;
  }

  .py-lg-65 {
    padding-top: 4.0625rem !important;
    padding-bottom: 4.0625rem !important;
  }

  .m-lg-70 {
    margin: 4.375rem !important;
  }

  .mt-lg-70 {
    margin-top: 4.375rem !important;
  }

  .mb-lg-70 {
    margin-bottom: 4.375rem !important;
  }

  .ms-lg-70 {
    margin-left: 4.375rem !important;
  }

  .me-lg-70 {
    margin-right: 4.375rem !important;
  }

  .mx-lg-70 {
    margin-left: 4.375rem !important;
    margin-right: 4.375rem !important;
  }

  .my-lg-70 {
    margin-top: 4.375rem !important;
    margin-bottom: 4.375rem !important;
  }

  .p-lg-70 {
    padding: 4.375rem !important;
  }

  .pt-lg-70 {
    padding-top: 4.375rem !important;
  }

  .pb-lg-70 {
    padding-bottom: 4.375rem !important;
  }

  .ps-lg-70 {
    padding-left: 4.375rem !important;
  }

  .pe-lg-70 {
    padding-right: 4.375rem !important;
  }

  .px-lg-70 {
    padding-left: 4.375rem !important;
    padding-right: 4.375rem !important;
  }

  .py-lg-70 {
    padding-top: 4.375rem !important;
    padding-bottom: 4.375rem !important;
  }

  .m-lg-75 {
    margin: 4.6875rem !important;
  }

  .mt-lg-75 {
    margin-top: 4.6875rem !important;
  }

  .mb-lg-75 {
    margin-bottom: 4.6875rem !important;
  }

  .ms-lg-75 {
    margin-left: 4.6875rem !important;
  }

  .me-lg-75 {
    margin-right: 4.6875rem !important;
  }

  .mx-lg-75 {
    margin-left: 4.6875rem !important;
    margin-right: 4.6875rem !important;
  }

  .my-lg-75 {
    margin-top: 4.6875rem !important;
    margin-bottom: 4.6875rem !important;
  }

  .p-lg-75 {
    padding: 4.6875rem !important;
  }

  .pt-lg-75 {
    padding-top: 4.6875rem !important;
  }

  .pb-lg-75 {
    padding-bottom: 4.6875rem !important;
  }

  .ps-lg-75 {
    padding-left: 4.6875rem !important;
  }

  .pe-lg-75 {
    padding-right: 4.6875rem !important;
  }

  .px-lg-75 {
    padding-left: 4.6875rem !important;
    padding-right: 4.6875rem !important;
  }

  .py-lg-75 {
    padding-top: 4.6875rem !important;
    padding-bottom: 4.6875rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-lg-85 {
    margin: 5.3125rem !important;
  }

  .mt-lg-85 {
    margin-top: 5.3125rem !important;
  }

  .mb-lg-85 {
    margin-bottom: 5.3125rem !important;
  }

  .ms-lg-85 {
    margin-left: 5.3125rem !important;
  }

  .me-lg-85 {
    margin-right: 5.3125rem !important;
  }

  .mx-lg-85 {
    margin-left: 5.3125rem !important;
    margin-right: 5.3125rem !important;
  }

  .my-lg-85 {
    margin-top: 5.3125rem !important;
    margin-bottom: 5.3125rem !important;
  }

  .p-lg-85 {
    padding: 5.3125rem !important;
  }

  .pt-lg-85 {
    padding-top: 5.3125rem !important;
  }

  .pb-lg-85 {
    padding-bottom: 5.3125rem !important;
  }

  .ps-lg-85 {
    padding-left: 5.3125rem !important;
  }

  .pe-lg-85 {
    padding-right: 5.3125rem !important;
  }

  .px-lg-85 {
    padding-left: 5.3125rem !important;
    padding-right: 5.3125rem !important;
  }

  .py-lg-85 {
    padding-top: 5.3125rem !important;
    padding-bottom: 5.3125rem !important;
  }

  .m-lg-90 {
    margin: 5.625rem !important;
  }

  .mt-lg-90 {
    margin-top: 5.625rem !important;
  }

  .mb-lg-90 {
    margin-bottom: 5.625rem !important;
  }

  .ms-lg-90 {
    margin-left: 5.625rem !important;
  }

  .me-lg-90 {
    margin-right: 5.625rem !important;
  }

  .mx-lg-90 {
    margin-left: 5.625rem !important;
    margin-right: 5.625rem !important;
  }

  .my-lg-90 {
    margin-top: 5.625rem !important;
    margin-bottom: 5.625rem !important;
  }

  .p-lg-90 {
    padding: 5.625rem !important;
  }

  .pt-lg-90 {
    padding-top: 5.625rem !important;
  }

  .pb-lg-90 {
    padding-bottom: 5.625rem !important;
  }

  .ps-lg-90 {
    padding-left: 5.625rem !important;
  }

  .pe-lg-90 {
    padding-right: 5.625rem !important;
  }

  .px-lg-90 {
    padding-left: 5.625rem !important;
    padding-right: 5.625rem !important;
  }

  .py-lg-90 {
    padding-top: 5.625rem !important;
    padding-bottom: 5.625rem !important;
  }

  .m-lg-95 {
    margin: 5.9375rem !important;
  }

  .mt-lg-95 {
    margin-top: 5.9375rem !important;
  }

  .mb-lg-95 {
    margin-bottom: 5.9375rem !important;
  }

  .ms-lg-95 {
    margin-left: 5.9375rem !important;
  }

  .me-lg-95 {
    margin-right: 5.9375rem !important;
  }

  .mx-lg-95 {
    margin-left: 5.9375rem !important;
    margin-right: 5.9375rem !important;
  }

  .my-lg-95 {
    margin-top: 5.9375rem !important;
    margin-bottom: 5.9375rem !important;
  }

  .p-lg-95 {
    padding: 5.9375rem !important;
  }

  .pt-lg-95 {
    padding-top: 5.9375rem !important;
  }

  .pb-lg-95 {
    padding-bottom: 5.9375rem !important;
  }

  .ps-lg-95 {
    padding-left: 5.9375rem !important;
  }

  .pe-lg-95 {
    padding-right: 5.9375rem !important;
  }

  .px-lg-95 {
    padding-left: 5.9375rem !important;
    padding-right: 5.9375rem !important;
  }

  .py-lg-95 {
    padding-top: 5.9375rem !important;
    padding-bottom: 5.9375rem !important;
  }

  .m-lg-100 {
    margin: 6.25rem !important;
  }

  .mt-lg-100 {
    margin-top: 6.25rem !important;
  }

  .mb-lg-100 {
    margin-bottom: 6.25rem !important;
  }

  .ms-lg-100 {
    margin-left: 6.25rem !important;
  }

  .me-lg-100 {
    margin-right: 6.25rem !important;
  }

  .mx-lg-100 {
    margin-left: 6.25rem !important;
    margin-right: 6.25rem !important;
  }

  .my-lg-100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }

  .p-lg-100 {
    padding: 6.25rem !important;
  }

  .pt-lg-100 {
    padding-top: 6.25rem !important;
  }

  .pb-lg-100 {
    padding-bottom: 6.25rem !important;
  }

  .ps-lg-100 {
    padding-left: 6.25rem !important;
  }

  .pe-lg-100 {
    padding-right: 6.25rem !important;
  }

  .px-lg-100 {
    padding-left: 6.25rem !important;
    padding-right: 6.25rem !important;
  }

  .py-lg-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
}
@media (min-width: 1920px) {
  .m-xl-0 {
    margin: 0rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xl-10 {
    margin: 0.625rem !important;
  }

  .mt-xl-10 {
    margin-top: 0.625rem !important;
  }

  .mb-xl-10 {
    margin-bottom: 0.625rem !important;
  }

  .ms-xl-10 {
    margin-left: 0.625rem !important;
  }

  .me-xl-10 {
    margin-right: 0.625rem !important;
  }

  .mx-xl-10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .my-xl-10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

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

  .pt-xl-10 {
    padding-top: 0.625rem !important;
  }

  .pb-xl-10 {
    padding-bottom: 0.625rem !important;
  }

  .ps-xl-10 {
    padding-left: 0.625rem !important;
  }

  .pe-xl-10 {
    padding-right: 0.625rem !important;
  }

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

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

  .m-xl-15 {
    margin: 0.9375rem !important;
  }

  .mt-xl-15 {
    margin-top: 0.9375rem !important;
  }

  .mb-xl-15 {
    margin-bottom: 0.9375rem !important;
  }

  .ms-xl-15 {
    margin-left: 0.9375rem !important;
  }

  .me-xl-15 {
    margin-right: 0.9375rem !important;
  }

  .mx-xl-15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }

  .my-xl-15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }

  .p-xl-15 {
    padding: 0.9375rem !important;
  }

  .pt-xl-15 {
    padding-top: 0.9375rem !important;
  }

  .pb-xl-15 {
    padding-bottom: 0.9375rem !important;
  }

  .ps-xl-15 {
    padding-left: 0.9375rem !important;
  }

  .pe-xl-15 {
    padding-right: 0.9375rem !important;
  }

  .px-xl-15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }

  .py-xl-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xl-25 {
    margin: 1.5625rem !important;
  }

  .mt-xl-25 {
    margin-top: 1.5625rem !important;
  }

  .mb-xl-25 {
    margin-bottom: 1.5625rem !important;
  }

  .ms-xl-25 {
    margin-left: 1.5625rem !important;
  }

  .me-xl-25 {
    margin-right: 1.5625rem !important;
  }

  .mx-xl-25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }

  .my-xl-25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }

  .p-xl-25 {
    padding: 1.5625rem !important;
  }

  .pt-xl-25 {
    padding-top: 1.5625rem !important;
  }

  .pb-xl-25 {
    padding-bottom: 1.5625rem !important;
  }

  .ps-xl-25 {
    padding-left: 1.5625rem !important;
  }

  .pe-xl-25 {
    padding-right: 1.5625rem !important;
  }

  .px-xl-25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }

  .py-xl-25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }

  .m-xl-30 {
    margin: 1.875rem !important;
  }

  .mt-xl-30 {
    margin-top: 1.875rem !important;
  }

  .mb-xl-30 {
    margin-bottom: 1.875rem !important;
  }

  .ms-xl-30 {
    margin-left: 1.875rem !important;
  }

  .me-xl-30 {
    margin-right: 1.875rem !important;
  }

  .mx-xl-30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }

  .my-xl-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }

  .p-xl-30 {
    padding: 1.875rem !important;
  }

  .pt-xl-30 {
    padding-top: 1.875rem !important;
  }

  .pb-xl-30 {
    padding-bottom: 1.875rem !important;
  }

  .ps-xl-30 {
    padding-left: 1.875rem !important;
  }

  .pe-xl-30 {
    padding-right: 1.875rem !important;
  }

  .px-xl-30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }

  .py-xl-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }

  .m-xl-35 {
    margin: 2.1875rem !important;
  }

  .mt-xl-35 {
    margin-top: 2.1875rem !important;
  }

  .mb-xl-35 {
    margin-bottom: 2.1875rem !important;
  }

  .ms-xl-35 {
    margin-left: 2.1875rem !important;
  }

  .me-xl-35 {
    margin-right: 2.1875rem !important;
  }

  .mx-xl-35 {
    margin-left: 2.1875rem !important;
    margin-right: 2.1875rem !important;
  }

  .my-xl-35 {
    margin-top: 2.1875rem !important;
    margin-bottom: 2.1875rem !important;
  }

  .p-xl-35 {
    padding: 2.1875rem !important;
  }

  .pt-xl-35 {
    padding-top: 2.1875rem !important;
  }

  .pb-xl-35 {
    padding-bottom: 2.1875rem !important;
  }

  .ps-xl-35 {
    padding-left: 2.1875rem !important;
  }

  .pe-xl-35 {
    padding-right: 2.1875rem !important;
  }

  .px-xl-35 {
    padding-left: 2.1875rem !important;
    padding-right: 2.1875rem !important;
  }

  .py-xl-35 {
    padding-top: 2.1875rem !important;
    padding-bottom: 2.1875rem !important;
  }

  .m-xl-40 {
    margin: 2.5rem !important;
  }

  .mt-xl-40 {
    margin-top: 2.5rem !important;
  }

  .mb-xl-40 {
    margin-bottom: 2.5rem !important;
  }

  .ms-xl-40 {
    margin-left: 2.5rem !important;
  }

  .me-xl-40 {
    margin-right: 2.5rem !important;
  }

  .mx-xl-40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .my-xl-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

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

  .pt-xl-40 {
    padding-top: 2.5rem !important;
  }

  .pb-xl-40 {
    padding-bottom: 2.5rem !important;
  }

  .ps-xl-40 {
    padding-left: 2.5rem !important;
  }

  .pe-xl-40 {
    padding-right: 2.5rem !important;
  }

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

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

  .m-xl-45 {
    margin: 2.8125rem !important;
  }

  .mt-xl-45 {
    margin-top: 2.8125rem !important;
  }

  .mb-xl-45 {
    margin-bottom: 2.8125rem !important;
  }

  .ms-xl-45 {
    margin-left: 2.8125rem !important;
  }

  .me-xl-45 {
    margin-right: 2.8125rem !important;
  }

  .mx-xl-45 {
    margin-left: 2.8125rem !important;
    margin-right: 2.8125rem !important;
  }

  .my-xl-45 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }

  .p-xl-45 {
    padding: 2.8125rem !important;
  }

  .pt-xl-45 {
    padding-top: 2.8125rem !important;
  }

  .pb-xl-45 {
    padding-bottom: 2.8125rem !important;
  }

  .ps-xl-45 {
    padding-left: 2.8125rem !important;
  }

  .pe-xl-45 {
    padding-right: 2.8125rem !important;
  }

  .px-xl-45 {
    padding-left: 2.8125rem !important;
    padding-right: 2.8125rem !important;
  }

  .py-xl-45 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }

  .m-xl-50 {
    margin: 3.125rem !important;
  }

  .mt-xl-50 {
    margin-top: 3.125rem !important;
  }

  .mb-xl-50 {
    margin-bottom: 3.125rem !important;
  }

  .ms-xl-50 {
    margin-left: 3.125rem !important;
  }

  .me-xl-50 {
    margin-right: 3.125rem !important;
  }

  .mx-xl-50 {
    margin-left: 3.125rem !important;
    margin-right: 3.125rem !important;
  }

  .my-xl-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }

  .p-xl-50 {
    padding: 3.125rem !important;
  }

  .pt-xl-50 {
    padding-top: 3.125rem !important;
  }

  .pb-xl-50 {
    padding-bottom: 3.125rem !important;
  }

  .ps-xl-50 {
    padding-left: 3.125rem !important;
  }

  .pe-xl-50 {
    padding-right: 3.125rem !important;
  }

  .px-xl-50 {
    padding-left: 3.125rem !important;
    padding-right: 3.125rem !important;
  }

  .py-xl-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }

  .m-xl-55 {
    margin: 3.4375rem !important;
  }

  .mt-xl-55 {
    margin-top: 3.4375rem !important;
  }

  .mb-xl-55 {
    margin-bottom: 3.4375rem !important;
  }

  .ms-xl-55 {
    margin-left: 3.4375rem !important;
  }

  .me-xl-55 {
    margin-right: 3.4375rem !important;
  }

  .mx-xl-55 {
    margin-left: 3.4375rem !important;
    margin-right: 3.4375rem !important;
  }

  .my-xl-55 {
    margin-top: 3.4375rem !important;
    margin-bottom: 3.4375rem !important;
  }

  .p-xl-55 {
    padding: 3.4375rem !important;
  }

  .pt-xl-55 {
    padding-top: 3.4375rem !important;
  }

  .pb-xl-55 {
    padding-bottom: 3.4375rem !important;
  }

  .ps-xl-55 {
    padding-left: 3.4375rem !important;
  }

  .pe-xl-55 {
    padding-right: 3.4375rem !important;
  }

  .px-xl-55 {
    padding-left: 3.4375rem !important;
    padding-right: 3.4375rem !important;
  }

  .py-xl-55 {
    padding-top: 3.4375rem !important;
    padding-bottom: 3.4375rem !important;
  }

  .m-xl-60 {
    margin: 3.75rem !important;
  }

  .mt-xl-60 {
    margin-top: 3.75rem !important;
  }

  .mb-xl-60 {
    margin-bottom: 3.75rem !important;
  }

  .ms-xl-60 {
    margin-left: 3.75rem !important;
  }

  .me-xl-60 {
    margin-right: 3.75rem !important;
  }

  .mx-xl-60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }

  .my-xl-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .p-xl-60 {
    padding: 3.75rem !important;
  }

  .pt-xl-60 {
    padding-top: 3.75rem !important;
  }

  .pb-xl-60 {
    padding-bottom: 3.75rem !important;
  }

  .ps-xl-60 {
    padding-left: 3.75rem !important;
  }

  .pe-xl-60 {
    padding-right: 3.75rem !important;
  }

  .px-xl-60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .py-xl-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .m-xl-65 {
    margin: 4.0625rem !important;
  }

  .mt-xl-65 {
    margin-top: 4.0625rem !important;
  }

  .mb-xl-65 {
    margin-bottom: 4.0625rem !important;
  }

  .ms-xl-65 {
    margin-left: 4.0625rem !important;
  }

  .me-xl-65 {
    margin-right: 4.0625rem !important;
  }

  .mx-xl-65 {
    margin-left: 4.0625rem !important;
    margin-right: 4.0625rem !important;
  }

  .my-xl-65 {
    margin-top: 4.0625rem !important;
    margin-bottom: 4.0625rem !important;
  }

  .p-xl-65 {
    padding: 4.0625rem !important;
  }

  .pt-xl-65 {
    padding-top: 4.0625rem !important;
  }

  .pb-xl-65 {
    padding-bottom: 4.0625rem !important;
  }

  .ps-xl-65 {
    padding-left: 4.0625rem !important;
  }

  .pe-xl-65 {
    padding-right: 4.0625rem !important;
  }

  .px-xl-65 {
    padding-left: 4.0625rem !important;
    padding-right: 4.0625rem !important;
  }

  .py-xl-65 {
    padding-top: 4.0625rem !important;
    padding-bottom: 4.0625rem !important;
  }

  .m-xl-70 {
    margin: 4.375rem !important;
  }

  .mt-xl-70 {
    margin-top: 4.375rem !important;
  }

  .mb-xl-70 {
    margin-bottom: 4.375rem !important;
  }

  .ms-xl-70 {
    margin-left: 4.375rem !important;
  }

  .me-xl-70 {
    margin-right: 4.375rem !important;
  }

  .mx-xl-70 {
    margin-left: 4.375rem !important;
    margin-right: 4.375rem !important;
  }

  .my-xl-70 {
    margin-top: 4.375rem !important;
    margin-bottom: 4.375rem !important;
  }

  .p-xl-70 {
    padding: 4.375rem !important;
  }

  .pt-xl-70 {
    padding-top: 4.375rem !important;
  }

  .pb-xl-70 {
    padding-bottom: 4.375rem !important;
  }

  .ps-xl-70 {
    padding-left: 4.375rem !important;
  }

  .pe-xl-70 {
    padding-right: 4.375rem !important;
  }

  .px-xl-70 {
    padding-left: 4.375rem !important;
    padding-right: 4.375rem !important;
  }

  .py-xl-70 {
    padding-top: 4.375rem !important;
    padding-bottom: 4.375rem !important;
  }

  .m-xl-75 {
    margin: 4.6875rem !important;
  }

  .mt-xl-75 {
    margin-top: 4.6875rem !important;
  }

  .mb-xl-75 {
    margin-bottom: 4.6875rem !important;
  }

  .ms-xl-75 {
    margin-left: 4.6875rem !important;
  }

  .me-xl-75 {
    margin-right: 4.6875rem !important;
  }

  .mx-xl-75 {
    margin-left: 4.6875rem !important;
    margin-right: 4.6875rem !important;
  }

  .my-xl-75 {
    margin-top: 4.6875rem !important;
    margin-bottom: 4.6875rem !important;
  }

  .p-xl-75 {
    padding: 4.6875rem !important;
  }

  .pt-xl-75 {
    padding-top: 4.6875rem !important;
  }

  .pb-xl-75 {
    padding-bottom: 4.6875rem !important;
  }

  .ps-xl-75 {
    padding-left: 4.6875rem !important;
  }

  .pe-xl-75 {
    padding-right: 4.6875rem !important;
  }

  .px-xl-75 {
    padding-left: 4.6875rem !important;
    padding-right: 4.6875rem !important;
  }

  .py-xl-75 {
    padding-top: 4.6875rem !important;
    padding-bottom: 4.6875rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xl-85 {
    margin: 5.3125rem !important;
  }

  .mt-xl-85 {
    margin-top: 5.3125rem !important;
  }

  .mb-xl-85 {
    margin-bottom: 5.3125rem !important;
  }

  .ms-xl-85 {
    margin-left: 5.3125rem !important;
  }

  .me-xl-85 {
    margin-right: 5.3125rem !important;
  }

  .mx-xl-85 {
    margin-left: 5.3125rem !important;
    margin-right: 5.3125rem !important;
  }

  .my-xl-85 {
    margin-top: 5.3125rem !important;
    margin-bottom: 5.3125rem !important;
  }

  .p-xl-85 {
    padding: 5.3125rem !important;
  }

  .pt-xl-85 {
    padding-top: 5.3125rem !important;
  }

  .pb-xl-85 {
    padding-bottom: 5.3125rem !important;
  }

  .ps-xl-85 {
    padding-left: 5.3125rem !important;
  }

  .pe-xl-85 {
    padding-right: 5.3125rem !important;
  }

  .px-xl-85 {
    padding-left: 5.3125rem !important;
    padding-right: 5.3125rem !important;
  }

  .py-xl-85 {
    padding-top: 5.3125rem !important;
    padding-bottom: 5.3125rem !important;
  }

  .m-xl-90 {
    margin: 5.625rem !important;
  }

  .mt-xl-90 {
    margin-top: 5.625rem !important;
  }

  .mb-xl-90 {
    margin-bottom: 5.625rem !important;
  }

  .ms-xl-90 {
    margin-left: 5.625rem !important;
  }

  .me-xl-90 {
    margin-right: 5.625rem !important;
  }

  .mx-xl-90 {
    margin-left: 5.625rem !important;
    margin-right: 5.625rem !important;
  }

  .my-xl-90 {
    margin-top: 5.625rem !important;
    margin-bottom: 5.625rem !important;
  }

  .p-xl-90 {
    padding: 5.625rem !important;
  }

  .pt-xl-90 {
    padding-top: 5.625rem !important;
  }

  .pb-xl-90 {
    padding-bottom: 5.625rem !important;
  }

  .ps-xl-90 {
    padding-left: 5.625rem !important;
  }

  .pe-xl-90 {
    padding-right: 5.625rem !important;
  }

  .px-xl-90 {
    padding-left: 5.625rem !important;
    padding-right: 5.625rem !important;
  }

  .py-xl-90 {
    padding-top: 5.625rem !important;
    padding-bottom: 5.625rem !important;
  }

  .m-xl-95 {
    margin: 5.9375rem !important;
  }

  .mt-xl-95 {
    margin-top: 5.9375rem !important;
  }

  .mb-xl-95 {
    margin-bottom: 5.9375rem !important;
  }

  .ms-xl-95 {
    margin-left: 5.9375rem !important;
  }

  .me-xl-95 {
    margin-right: 5.9375rem !important;
  }

  .mx-xl-95 {
    margin-left: 5.9375rem !important;
    margin-right: 5.9375rem !important;
  }

  .my-xl-95 {
    margin-top: 5.9375rem !important;
    margin-bottom: 5.9375rem !important;
  }

  .p-xl-95 {
    padding: 5.9375rem !important;
  }

  .pt-xl-95 {
    padding-top: 5.9375rem !important;
  }

  .pb-xl-95 {
    padding-bottom: 5.9375rem !important;
  }

  .ps-xl-95 {
    padding-left: 5.9375rem !important;
  }

  .pe-xl-95 {
    padding-right: 5.9375rem !important;
  }

  .px-xl-95 {
    padding-left: 5.9375rem !important;
    padding-right: 5.9375rem !important;
  }

  .py-xl-95 {
    padding-top: 5.9375rem !important;
    padding-bottom: 5.9375rem !important;
  }

  .m-xl-100 {
    margin: 6.25rem !important;
  }

  .mt-xl-100 {
    margin-top: 6.25rem !important;
  }

  .mb-xl-100 {
    margin-bottom: 6.25rem !important;
  }

  .ms-xl-100 {
    margin-left: 6.25rem !important;
  }

  .me-xl-100 {
    margin-right: 6.25rem !important;
  }

  .mx-xl-100 {
    margin-left: 6.25rem !important;
    margin-right: 6.25rem !important;
  }

  .my-xl-100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }

  .p-xl-100 {
    padding: 6.25rem !important;
  }

  .pt-xl-100 {
    padding-top: 6.25rem !important;
  }

  .pb-xl-100 {
    padding-bottom: 6.25rem !important;
  }

  .ps-xl-100 {
    padding-left: 6.25rem !important;
  }

  .pe-xl-100 {
    padding-right: 6.25rem !important;
  }

  .px-xl-100 {
    padding-left: 6.25rem !important;
    padding-right: 6.25rem !important;
  }

  .py-xl-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
}
/*
>>================================================================================>
Width & Height Utilities
>>================================================================================>
*/
/*
Base Widths
>>------------->
*/
.w-auto {
  width: auto !important;
}

.w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.w-min {
  width: -moz-min-content !important;
  width: min-content !important;
}

.w-max {
  width: -moz-max-content !important;
  width: max-content !important;
}

.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-50 {
  width: 50% !important;
}

.w-55 {
  width: 55% !important;
}

.w-60 {
  width: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-85 {
  width: 85% !important;
}

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

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

/*
Base Heights
>>------------->
*/
.h-100 {
  height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

/*
Responsive Widths & Heights
>>------------->
*/
@media (min-width: 576px) {
  .w-sm-auto {
    width: auto !important;
  }

  .w-sm-fit {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }

  .w-sm-min {
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .w-sm-max {
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .w-sm-5 {
    width: 5% !important;
  }

  .w-sm-10 {
    width: 10% !important;
  }

  .w-sm-15 {
    width: 15% !important;
  }

  .w-sm-20 {
    width: 20% !important;
  }

  .w-sm-25 {
    width: 25% !important;
  }

  .w-sm-30 {
    width: 30% !important;
  }

  .w-sm-35 {
    width: 35% !important;
  }

  .w-sm-40 {
    width: 40% !important;
  }

  .w-sm-45 {
    width: 45% !important;
  }

  .w-sm-50 {
    width: 50% !important;
  }

  .w-sm-55 {
    width: 55% !important;
  }

  .w-sm-60 {
    width: 60% !important;
  }

  .w-sm-65 {
    width: 65% !important;
  }

  .w-sm-70 {
    width: 70% !important;
  }

  .w-sm-75 {
    width: 75% !important;
  }

  .w-sm-80 {
    width: 80% !important;
  }

  .w-sm-85 {
    width: 85% !important;
  }

  .w-sm-90 {
    width: 90% !important;
  }

  .w-sm-95 {
    width: 95% !important;
  }

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

  .h-sm-100 {
    height: 100% !important;
  }

  .vh-sm-100 {
    height: 100vh !important;
  }

  .min-vh-sm-100 {
    min-height: 100vh !important;
  }
}
@media (min-width: 950px) {
  .w-md-auto {
    width: auto !important;
  }

  .w-md-fit {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }

  .w-md-min {
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .w-md-max {
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .w-md-5 {
    width: 5% !important;
  }

  .w-md-10 {
    width: 10% !important;
  }

  .w-md-15 {
    width: 15% !important;
  }

  .w-md-20 {
    width: 20% !important;
  }

  .w-md-25 {
    width: 25% !important;
  }

  .w-md-30 {
    width: 30% !important;
  }

  .w-md-35 {
    width: 35% !important;
  }

  .w-md-40 {
    width: 40% !important;
  }

  .w-md-45 {
    width: 45% !important;
  }

  .w-md-50 {
    width: 50% !important;
  }

  .w-md-55 {
    width: 55% !important;
  }

  .w-md-60 {
    width: 60% !important;
  }

  .w-md-65 {
    width: 65% !important;
  }

  .w-md-70 {
    width: 70% !important;
  }

  .w-md-75 {
    width: 75% !important;
  }

  .w-md-80 {
    width: 80% !important;
  }

  .w-md-85 {
    width: 85% !important;
  }

  .w-md-90 {
    width: 90% !important;
  }

  .w-md-95 {
    width: 95% !important;
  }

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

  .h-md-100 {
    height: 100% !important;
  }

  .vh-md-100 {
    height: 100vh !important;
  }

  .min-vh-md-100 {
    min-height: 100vh !important;
  }
}
@media (min-width: 1024px) {
  .w-lg-auto {
    width: auto !important;
  }

  .w-lg-fit {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }

  .w-lg-min {
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .w-lg-max {
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .w-lg-5 {
    width: 5% !important;
  }

  .w-lg-10 {
    width: 10% !important;
  }

  .w-lg-15 {
    width: 15% !important;
  }

  .w-lg-20 {
    width: 20% !important;
  }

  .w-lg-25 {
    width: 25% !important;
  }

  .w-lg-30 {
    width: 30% !important;
  }

  .w-lg-35 {
    width: 35% !important;
  }

  .w-lg-40 {
    width: 40% !important;
  }

  .w-lg-45 {
    width: 45% !important;
  }

  .w-lg-50 {
    width: 50% !important;
  }

  .w-lg-55 {
    width: 55% !important;
  }

  .w-lg-60 {
    width: 60% !important;
  }

  .w-lg-65 {
    width: 65% !important;
  }

  .w-lg-70 {
    width: 70% !important;
  }

  .w-lg-75 {
    width: 75% !important;
  }

  .w-lg-80 {
    width: 80% !important;
  }

  .w-lg-85 {
    width: 85% !important;
  }

  .w-lg-90 {
    width: 90% !important;
  }

  .w-lg-95 {
    width: 95% !important;
  }

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

  .h-lg-100 {
    height: 100% !important;
  }

  .vh-lg-100 {
    height: 100vh !important;
  }

  .min-vh-lg-100 {
    min-height: 100vh !important;
  }
}
@media (min-width: 1920px) {
  .w-xl-auto {
    width: auto !important;
  }

  .w-xl-fit {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }

  .w-xl-min {
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .w-xl-max {
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .w-xl-5 {
    width: 5% !important;
  }

  .w-xl-10 {
    width: 10% !important;
  }

  .w-xl-15 {
    width: 15% !important;
  }

  .w-xl-20 {
    width: 20% !important;
  }

  .w-xl-25 {
    width: 25% !important;
  }

  .w-xl-30 {
    width: 30% !important;
  }

  .w-xl-35 {
    width: 35% !important;
  }

  .w-xl-40 {
    width: 40% !important;
  }

  .w-xl-45 {
    width: 45% !important;
  }

  .w-xl-50 {
    width: 50% !important;
  }

  .w-xl-55 {
    width: 55% !important;
  }

  .w-xl-60 {
    width: 60% !important;
  }

  .w-xl-65 {
    width: 65% !important;
  }

  .w-xl-70 {
    width: 70% !important;
  }

  .w-xl-75 {
    width: 75% !important;
  }

  .w-xl-80 {
    width: 80% !important;
  }

  .w-xl-85 {
    width: 85% !important;
  }

  .w-xl-90 {
    width: 90% !important;
  }

  .w-xl-95 {
    width: 95% !important;
  }

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

  .h-xl-100 {
    height: 100% !important;
  }

  .vh-xl-100 {
    height: 100vh !important;
  }

  .min-vh-xl-100 {
    min-height: 100vh !important;
  }
}
/*
>>================================================================================>
Static Width Utilities
>>================================================================================>
*/
.w-120 {
  width: 120px !important;
}

.w-150 {
  width: 150px !important;
}

.w-160 {
  width: 160px !important;
}

.w-200 {
  width: 200px !important;
}

.w-220 {
  width: 220px !important;
}

.w-230 {
  width: 230px !important;
}

.w-250 {
  width: 250px !important;
}

.w-280 {
  width: 280px !important;
}

.w-300 {
  width: 300px !important;
}

.w-320 {
  width: 320px !important;
}

.w-350 {
  width: 350px !important;
}

.w-360 {
  width: 360px !important;
}

.w-380 {
  width: 380px !important;
}

.w-400 {
  width: 400px !important;
}

.w-420 {
  width: 420px !important;
}

.w-430 {
  width: 430px !important;
}

.w-450 {
  width: 450px !important;
}

.w-480 {
  width: 480px !important;
}

.w-500 {
  width: 500px !important;
}

.w-520 {
  width: 520px !important;
}

.w-540 {
  width: 540px !important;
}

.w-550 {
  width: 550px !important;
}

.w-560 {
  width: 560px !important;
}

.w-570 {
  width: 570px !important;
}

.w-600 {
  width: 600px !important;
}

.w-620 {
  width: 620px !important;
}

.w-640 {
  width: 640px !important;
}

.w-650 {
  width: 650px !important;
}

.w-670 {
  width: 670px !important;
}

.w-700 {
  width: 700px !important;
}

.w-720 {
  width: 720px !important;
}

.w-750 {
  width: 750px !important;
}

.w-800 {
  width: 800px !important;
}

.w-850 {
  width: 850px !important;
}

.w-960 {
  width: 960px !important;
}

.w-1000 {
  width: 1000px !important;
}

.w-1024 {
  width: 1024px !important;
}

.w-1080 {
  width: 1080px !important;
}

.w-1140 {
  width: 1140px !important;
}

.w-1176 {
  width: 1176px !important;
}

.w-1280 {
  width: 1280px !important;
}

.w-1320 {
  width: 1320px !important;
}

.w-1400 {
  width: 1400px !important;
}

.w-1440 {
  width: 1440px !important;
}

@media (min-width: 576px) {
  .w-sm-120 {
    width: 120px !important;
  }

  .w-sm-150 {
    width: 150px !important;
  }

  .w-sm-160 {
    width: 160px !important;
  }

  .w-sm-200 {
    width: 200px !important;
  }

  .w-sm-220 {
    width: 220px !important;
  }

  .w-sm-230 {
    width: 230px !important;
  }

  .w-sm-250 {
    width: 250px !important;
  }

  .w-sm-280 {
    width: 280px !important;
  }

  .w-sm-300 {
    width: 300px !important;
  }

  .w-sm-320 {
    width: 320px !important;
  }

  .w-sm-350 {
    width: 350px !important;
  }

  .w-sm-360 {
    width: 360px !important;
  }

  .w-sm-380 {
    width: 380px !important;
  }

  .w-sm-400 {
    width: 400px !important;
  }

  .w-sm-420 {
    width: 420px !important;
  }

  .w-sm-430 {
    width: 430px !important;
  }

  .w-sm-450 {
    width: 450px !important;
  }

  .w-sm-480 {
    width: 480px !important;
  }

  .w-sm-500 {
    width: 500px !important;
  }

  .w-sm-520 {
    width: 520px !important;
  }

  .w-sm-540 {
    width: 540px !important;
  }

  .w-sm-550 {
    width: 550px !important;
  }

  .w-sm-560 {
    width: 560px !important;
  }

  .w-sm-570 {
    width: 570px !important;
  }

  .w-sm-600 {
    width: 600px !important;
  }

  .w-sm-620 {
    width: 620px !important;
  }

  .w-sm-640 {
    width: 640px !important;
  }

  .w-sm-650 {
    width: 650px !important;
  }

  .w-sm-670 {
    width: 670px !important;
  }

  .w-sm-700 {
    width: 700px !important;
  }

  .w-sm-720 {
    width: 720px !important;
  }

  .w-sm-750 {
    width: 750px !important;
  }

  .w-sm-800 {
    width: 800px !important;
  }

  .w-sm-850 {
    width: 850px !important;
  }

  .w-sm-960 {
    width: 960px !important;
  }

  .w-sm-1000 {
    width: 1000px !important;
  }

  .w-sm-1024 {
    width: 1024px !important;
  }

  .w-sm-1080 {
    width: 1080px !important;
  }

  .w-sm-1140 {
    width: 1140px !important;
  }

  .w-sm-1176 {
    width: 1176px !important;
  }

  .w-sm-1280 {
    width: 1280px !important;
  }

  .w-sm-1320 {
    width: 1320px !important;
  }

  .w-sm-1400 {
    width: 1400px !important;
  }

  .w-sm-1440 {
    width: 1440px !important;
  }
}
@media (min-width: 950px) {
  .w-md-120 {
    width: 120px !important;
  }

  .w-md-150 {
    width: 150px !important;
  }

  .w-md-160 {
    width: 160px !important;
  }

  .w-md-200 {
    width: 200px !important;
  }

  .w-md-220 {
    width: 220px !important;
  }

  .w-md-230 {
    width: 230px !important;
  }

  .w-md-250 {
    width: 250px !important;
  }

  .w-md-280 {
    width: 280px !important;
  }

  .w-md-300 {
    width: 300px !important;
  }

  .w-md-320 {
    width: 320px !important;
  }

  .w-md-350 {
    width: 350px !important;
  }

  .w-md-360 {
    width: 360px !important;
  }

  .w-md-380 {
    width: 380px !important;
  }

  .w-md-400 {
    width: 400px !important;
  }

  .w-md-420 {
    width: 420px !important;
  }

  .w-md-430 {
    width: 430px !important;
  }

  .w-md-450 {
    width: 450px !important;
  }

  .w-md-480 {
    width: 480px !important;
  }

  .w-md-500 {
    width: 500px !important;
  }

  .w-md-520 {
    width: 520px !important;
  }

  .w-md-540 {
    width: 540px !important;
  }

  .w-md-550 {
    width: 550px !important;
  }

  .w-md-560 {
    width: 560px !important;
  }

  .w-md-570 {
    width: 570px !important;
  }

  .w-md-600 {
    width: 600px !important;
  }

  .w-md-620 {
    width: 620px !important;
  }

  .w-md-640 {
    width: 640px !important;
  }

  .w-md-650 {
    width: 650px !important;
  }

  .w-md-670 {
    width: 670px !important;
  }

  .w-md-700 {
    width: 700px !important;
  }

  .w-md-720 {
    width: 720px !important;
  }

  .w-md-750 {
    width: 750px !important;
  }

  .w-md-800 {
    width: 800px !important;
  }

  .w-md-850 {
    width: 850px !important;
  }

  .w-md-960 {
    width: 960px !important;
  }

  .w-md-1000 {
    width: 1000px !important;
  }

  .w-md-1024 {
    width: 1024px !important;
  }

  .w-md-1080 {
    width: 1080px !important;
  }

  .w-md-1140 {
    width: 1140px !important;
  }

  .w-md-1176 {
    width: 1176px !important;
  }

  .w-md-1280 {
    width: 1280px !important;
  }

  .w-md-1320 {
    width: 1320px !important;
  }

  .w-md-1400 {
    width: 1400px !important;
  }

  .w-md-1440 {
    width: 1440px !important;
  }
}
@media (min-width: 1024px) {
  .w-lg-120 {
    width: 120px !important;
  }

  .w-lg-150 {
    width: 150px !important;
  }

  .w-lg-160 {
    width: 160px !important;
  }

  .w-lg-200 {
    width: 200px !important;
  }

  .w-lg-220 {
    width: 220px !important;
  }

  .w-lg-230 {
    width: 230px !important;
  }

  .w-lg-250 {
    width: 250px !important;
  }

  .w-lg-280 {
    width: 280px !important;
  }

  .w-lg-300 {
    width: 300px !important;
  }

  .w-lg-320 {
    width: 320px !important;
  }

  .w-lg-350 {
    width: 350px !important;
  }

  .w-lg-360 {
    width: 360px !important;
  }

  .w-lg-380 {
    width: 380px !important;
  }

  .w-lg-400 {
    width: 400px !important;
  }

  .w-lg-420 {
    width: 420px !important;
  }

  .w-lg-430 {
    width: 430px !important;
  }

  .w-lg-450 {
    width: 450px !important;
  }

  .w-lg-480 {
    width: 480px !important;
  }

  .w-lg-500 {
    width: 500px !important;
  }

  .w-lg-520 {
    width: 520px !important;
  }

  .w-lg-540 {
    width: 540px !important;
  }

  .w-lg-550 {
    width: 550px !important;
  }

  .w-lg-560 {
    width: 560px !important;
  }

  .w-lg-570 {
    width: 570px !important;
  }

  .w-lg-600 {
    width: 600px !important;
  }

  .w-lg-620 {
    width: 620px !important;
  }

  .w-lg-640 {
    width: 640px !important;
  }

  .w-lg-650 {
    width: 650px !important;
  }

  .w-lg-670 {
    width: 670px !important;
  }

  .w-lg-700 {
    width: 700px !important;
  }

  .w-lg-720 {
    width: 720px !important;
  }

  .w-lg-750 {
    width: 750px !important;
  }

  .w-lg-800 {
    width: 800px !important;
  }

  .w-lg-850 {
    width: 850px !important;
  }

  .w-lg-960 {
    width: 960px !important;
  }

  .w-lg-1000 {
    width: 1000px !important;
  }

  .w-lg-1024 {
    width: 1024px !important;
  }

  .w-lg-1080 {
    width: 1080px !important;
  }

  .w-lg-1140 {
    width: 1140px !important;
  }

  .w-lg-1176 {
    width: 1176px !important;
  }

  .w-lg-1280 {
    width: 1280px !important;
  }

  .w-lg-1320 {
    width: 1320px !important;
  }

  .w-lg-1400 {
    width: 1400px !important;
  }

  .w-lg-1440 {
    width: 1440px !important;
  }
}
@media (min-width: 1920px) {
  .w-xl-120 {
    width: 120px !important;
  }

  .w-xl-150 {
    width: 150px !important;
  }

  .w-xl-160 {
    width: 160px !important;
  }

  .w-xl-200 {
    width: 200px !important;
  }

  .w-xl-220 {
    width: 220px !important;
  }

  .w-xl-230 {
    width: 230px !important;
  }

  .w-xl-250 {
    width: 250px !important;
  }

  .w-xl-280 {
    width: 280px !important;
  }

  .w-xl-300 {
    width: 300px !important;
  }

  .w-xl-320 {
    width: 320px !important;
  }

  .w-xl-350 {
    width: 350px !important;
  }

  .w-xl-360 {
    width: 360px !important;
  }

  .w-xl-380 {
    width: 380px !important;
  }

  .w-xl-400 {
    width: 400px !important;
  }

  .w-xl-420 {
    width: 420px !important;
  }

  .w-xl-430 {
    width: 430px !important;
  }

  .w-xl-450 {
    width: 450px !important;
  }

  .w-xl-480 {
    width: 480px !important;
  }

  .w-xl-500 {
    width: 500px !important;
  }

  .w-xl-520 {
    width: 520px !important;
  }

  .w-xl-540 {
    width: 540px !important;
  }

  .w-xl-550 {
    width: 550px !important;
  }

  .w-xl-560 {
    width: 560px !important;
  }

  .w-xl-570 {
    width: 570px !important;
  }

  .w-xl-600 {
    width: 600px !important;
  }

  .w-xl-620 {
    width: 620px !important;
  }

  .w-xl-640 {
    width: 640px !important;
  }

  .w-xl-650 {
    width: 650px !important;
  }

  .w-xl-670 {
    width: 670px !important;
  }

  .w-xl-700 {
    width: 700px !important;
  }

  .w-xl-720 {
    width: 720px !important;
  }

  .w-xl-750 {
    width: 750px !important;
  }

  .w-xl-800 {
    width: 800px !important;
  }

  .w-xl-850 {
    width: 850px !important;
  }

  .w-xl-960 {
    width: 960px !important;
  }

  .w-xl-1000 {
    width: 1000px !important;
  }

  .w-xl-1024 {
    width: 1024px !important;
  }

  .w-xl-1080 {
    width: 1080px !important;
  }

  .w-xl-1140 {
    width: 1140px !important;
  }

  .w-xl-1176 {
    width: 1176px !important;
  }

  .w-xl-1280 {
    width: 1280px !important;
  }

  .w-xl-1320 {
    width: 1320px !important;
  }

  .w-xl-1400 {
    width: 1400px !important;
  }

  .w-xl-1440 {
    width: 1440px !important;
  }
}
/*
>>================================================================================>
Max-Width Utilities
>>================================================================================>
*/
.mw-auto {
  max-width: none !important;
}

.mw-fit {
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}

.mw-min {
  max-width: -moz-min-content !important;
  max-width: min-content !important;
}

.mw-max {
  max-width: -moz-max-content !important;
  max-width: max-content !important;
}

.mw-10 {
  max-width: 10% !important;
}

.mw-15 {
  max-width: 15% !important;
}

.mw-20 {
  max-width: 20% !important;
}

.mw-25 {
  max-width: 25% !important;
}

.mw-30 {
  max-width: 30% !important;
}

.mw-33 {
  max-width: 33% !important;
}

.mw-40 {
  max-width: 40% !important;
}

.mw-50 {
  max-width: 50% !important;
}

.mw-60 {
  max-width: 60% !important;
}

.mw-66 {
  max-width: 66% !important;
}

.mw-70 {
  max-width: 70% !important;
}

.mw-75 {
  max-width: 75% !important;
}

.mw-80 {
  max-width: 80% !important;
}

.mw-85 {
  max-width: 85% !important;
}

.mw-90 {
  max-width: 90% !important;
}

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

.mw-120 {
  max-width: 120px !important;
}

.mw-150 {
  max-width: 150px !important;
}

.mw-160 {
  max-width: 160px !important;
}

.mw-200 {
  max-width: 200px !important;
}

.mw-220 {
  max-width: 220px !important;
}

.mw-230 {
  max-width: 230px !important;
}

.mw-250 {
  max-width: 250px !important;
}

.mw-280 {
  max-width: 280px !important;
}

.mw-300 {
  max-width: 300px !important;
}

.mw-320 {
  max-width: 320px !important;
}

.mw-350 {
  max-width: 350px !important;
}

.mw-360 {
  max-width: 360px !important;
}

.mw-380 {
  max-width: 380px !important;
}

.mw-400 {
  max-width: 400px !important;
}

.mw-420 {
  max-width: 420px !important;
}

.mw-430 {
  max-width: 430px !important;
}

.mw-450 {
  max-width: 450px !important;
}

.mw-480 {
  max-width: 480px !important;
}

.mw-500 {
  max-width: 500px !important;
}

.mw-520 {
  max-width: 520px !important;
}

.mw-540 {
  max-width: 540px !important;
}

.mw-550 {
  max-width: 550px !important;
}

.mw-560 {
  max-width: 560px !important;
}

.mw-570 {
  max-width: 570px !important;
}

.mw-600 {
  max-width: 600px !important;
}

.mw-620 {
  max-width: 620px !important;
}

.mw-640 {
  max-width: 640px !important;
}

.mw-650 {
  max-width: 650px !important;
}

.mw-670 {
  max-width: 670px !important;
}

.mw-700 {
  max-width: 700px !important;
}

.mw-720 {
  max-width: 720px !important;
}

.mw-750 {
  max-width: 750px !important;
}

.mw-800 {
  max-width: 800px !important;
}

.mw-850 {
  max-width: 850px !important;
}

.mw-960 {
  max-width: 960px !important;
}

.mw-1000 {
  max-width: 1000px !important;
}

.mw-1024 {
  max-width: 1024px !important;
}

.mw-1080 {
  max-width: 1080px !important;
}

.mw-1140 {
  max-width: 1140px !important;
}

.mw-1176 {
  max-width: 1176px !important;
}

.mw-1280 {
  max-width: 1280px !important;
}

.mw-1320 {
  max-width: 1320px !important;
}

.mw-1400 {
  max-width: 1400px !important;
}

.mw-1440 {
  max-width: 1440px !important;
}

@media (min-width: 576px) {
  .mw-sm-10 {
    max-width: 10% !important;
  }

  .mw-sm-15 {
    max-width: 15% !important;
  }

  .mw-sm-20 {
    max-width: 20% !important;
  }

  .mw-sm-25 {
    max-width: 25% !important;
  }

  .mw-sm-30 {
    max-width: 30% !important;
  }

  .mw-sm-33 {
    max-width: 33% !important;
  }

  .mw-sm-40 {
    max-width: 40% !important;
  }

  .mw-sm-50 {
    max-width: 50% !important;
  }

  .mw-sm-60 {
    max-width: 60% !important;
  }

  .mw-sm-66 {
    max-width: 66% !important;
  }

  .mw-sm-70 {
    max-width: 70% !important;
  }

  .mw-sm-75 {
    max-width: 75% !important;
  }

  .mw-sm-80 {
    max-width: 80% !important;
  }

  .mw-sm-85 {
    max-width: 85% !important;
  }

  .mw-sm-90 {
    max-width: 90% !important;
  }

  .mw-sm-100 {
    max-width: 100% !important;
  }

  .mw-sm-120 {
    max-width: 120px !important;
  }

  .mw-sm-150 {
    max-width: 150px !important;
  }

  .mw-sm-160 {
    max-width: 160px !important;
  }

  .mw-sm-200 {
    max-width: 200px !important;
  }

  .mw-sm-220 {
    max-width: 220px !important;
  }

  .mw-sm-230 {
    max-width: 230px !important;
  }

  .mw-sm-250 {
    max-width: 250px !important;
  }

  .mw-sm-280 {
    max-width: 280px !important;
  }

  .mw-sm-300 {
    max-width: 300px !important;
  }

  .mw-sm-320 {
    max-width: 320px !important;
  }

  .mw-sm-350 {
    max-width: 350px !important;
  }

  .mw-sm-360 {
    max-width: 360px !important;
  }

  .mw-sm-380 {
    max-width: 380px !important;
  }

  .mw-sm-400 {
    max-width: 400px !important;
  }

  .mw-sm-420 {
    max-width: 420px !important;
  }

  .mw-sm-430 {
    max-width: 430px !important;
  }

  .mw-sm-450 {
    max-width: 450px !important;
  }

  .mw-sm-480 {
    max-width: 480px !important;
  }

  .mw-sm-500 {
    max-width: 500px !important;
  }

  .mw-sm-520 {
    max-width: 520px !important;
  }

  .mw-sm-540 {
    max-width: 540px !important;
  }

  .mw-sm-550 {
    max-width: 550px !important;
  }

  .mw-sm-560 {
    max-width: 560px !important;
  }

  .mw-sm-570 {
    max-width: 570px !important;
  }

  .mw-sm-600 {
    max-width: 600px !important;
  }

  .mw-sm-620 {
    max-width: 620px !important;
  }

  .mw-sm-640 {
    max-width: 640px !important;
  }

  .mw-sm-650 {
    max-width: 650px !important;
  }

  .mw-sm-670 {
    max-width: 670px !important;
  }

  .mw-sm-700 {
    max-width: 700px !important;
  }

  .mw-sm-720 {
    max-width: 720px !important;
  }

  .mw-sm-750 {
    max-width: 750px !important;
  }

  .mw-sm-800 {
    max-width: 800px !important;
  }

  .mw-sm-850 {
    max-width: 850px !important;
  }

  .mw-sm-960 {
    max-width: 960px !important;
  }

  .mw-sm-1000 {
    max-width: 1000px !important;
  }

  .mw-sm-1024 {
    max-width: 1024px !important;
  }

  .mw-sm-1080 {
    max-width: 1080px !important;
  }

  .mw-sm-1140 {
    max-width: 1140px !important;
  }

  .mw-sm-1176 {
    max-width: 1176px !important;
  }

  .mw-sm-1280 {
    max-width: 1280px !important;
  }

  .mw-sm-1320 {
    max-width: 1320px !important;
  }

  .mw-sm-1400 {
    max-width: 1400px !important;
  }

  .mw-sm-1440 {
    max-width: 1440px !important;
  }
}
@media (min-width: 950px) {
  .mw-md-10 {
    max-width: 10% !important;
  }

  .mw-md-15 {
    max-width: 15% !important;
  }

  .mw-md-20 {
    max-width: 20% !important;
  }

  .mw-md-25 {
    max-width: 25% !important;
  }

  .mw-md-30 {
    max-width: 30% !important;
  }

  .mw-md-33 {
    max-width: 33% !important;
  }

  .mw-md-40 {
    max-width: 40% !important;
  }

  .mw-md-50 {
    max-width: 50% !important;
  }

  .mw-md-60 {
    max-width: 60% !important;
  }

  .mw-md-66 {
    max-width: 66% !important;
  }

  .mw-md-70 {
    max-width: 70% !important;
  }

  .mw-md-75 {
    max-width: 75% !important;
  }

  .mw-md-80 {
    max-width: 80% !important;
  }

  .mw-md-85 {
    max-width: 85% !important;
  }

  .mw-md-90 {
    max-width: 90% !important;
  }

  .mw-md-100 {
    max-width: 100% !important;
  }

  .mw-md-120 {
    max-width: 120px !important;
  }

  .mw-md-150 {
    max-width: 150px !important;
  }

  .mw-md-160 {
    max-width: 160px !important;
  }

  .mw-md-200 {
    max-width: 200px !important;
  }

  .mw-md-220 {
    max-width: 220px !important;
  }

  .mw-md-230 {
    max-width: 230px !important;
  }

  .mw-md-250 {
    max-width: 250px !important;
  }

  .mw-md-280 {
    max-width: 280px !important;
  }

  .mw-md-300 {
    max-width: 300px !important;
  }

  .mw-md-320 {
    max-width: 320px !important;
  }

  .mw-md-350 {
    max-width: 350px !important;
  }

  .mw-md-360 {
    max-width: 360px !important;
  }

  .mw-md-380 {
    max-width: 380px !important;
  }

  .mw-md-400 {
    max-width: 400px !important;
  }

  .mw-md-420 {
    max-width: 420px !important;
  }

  .mw-md-430 {
    max-width: 430px !important;
  }

  .mw-md-450 {
    max-width: 450px !important;
  }

  .mw-md-480 {
    max-width: 480px !important;
  }

  .mw-md-500 {
    max-width: 500px !important;
  }

  .mw-md-520 {
    max-width: 520px !important;
  }

  .mw-md-540 {
    max-width: 540px !important;
  }

  .mw-md-550 {
    max-width: 550px !important;
  }

  .mw-md-560 {
    max-width: 560px !important;
  }

  .mw-md-570 {
    max-width: 570px !important;
  }

  .mw-md-600 {
    max-width: 600px !important;
  }

  .mw-md-620 {
    max-width: 620px !important;
  }

  .mw-md-640 {
    max-width: 640px !important;
  }

  .mw-md-650 {
    max-width: 650px !important;
  }

  .mw-md-670 {
    max-width: 670px !important;
  }

  .mw-md-700 {
    max-width: 700px !important;
  }

  .mw-md-720 {
    max-width: 720px !important;
  }

  .mw-md-750 {
    max-width: 750px !important;
  }

  .mw-md-800 {
    max-width: 800px !important;
  }

  .mw-md-850 {
    max-width: 850px !important;
  }

  .mw-md-960 {
    max-width: 960px !important;
  }

  .mw-md-1000 {
    max-width: 1000px !important;
  }

  .mw-md-1024 {
    max-width: 1024px !important;
  }

  .mw-md-1080 {
    max-width: 1080px !important;
  }

  .mw-md-1140 {
    max-width: 1140px !important;
  }

  .mw-md-1176 {
    max-width: 1176px !important;
  }

  .mw-md-1280 {
    max-width: 1280px !important;
  }

  .mw-md-1320 {
    max-width: 1320px !important;
  }

  .mw-md-1400 {
    max-width: 1400px !important;
  }

  .mw-md-1440 {
    max-width: 1440px !important;
  }
}
@media (min-width: 1024px) {
  .mw-lg-10 {
    max-width: 10% !important;
  }

  .mw-lg-15 {
    max-width: 15% !important;
  }

  .mw-lg-20 {
    max-width: 20% !important;
  }

  .mw-lg-25 {
    max-width: 25% !important;
  }

  .mw-lg-30 {
    max-width: 30% !important;
  }

  .mw-lg-33 {
    max-width: 33% !important;
  }

  .mw-lg-40 {
    max-width: 40% !important;
  }

  .mw-lg-50 {
    max-width: 50% !important;
  }

  .mw-lg-60 {
    max-width: 60% !important;
  }

  .mw-lg-66 {
    max-width: 66% !important;
  }

  .mw-lg-70 {
    max-width: 70% !important;
  }

  .mw-lg-75 {
    max-width: 75% !important;
  }

  .mw-lg-80 {
    max-width: 80% !important;
  }

  .mw-lg-85 {
    max-width: 85% !important;
  }

  .mw-lg-90 {
    max-width: 90% !important;
  }

  .mw-lg-100 {
    max-width: 100% !important;
  }

  .mw-lg-120 {
    max-width: 120px !important;
  }

  .mw-lg-150 {
    max-width: 150px !important;
  }

  .mw-lg-160 {
    max-width: 160px !important;
  }

  .mw-lg-200 {
    max-width: 200px !important;
  }

  .mw-lg-220 {
    max-width: 220px !important;
  }

  .mw-lg-230 {
    max-width: 230px !important;
  }

  .mw-lg-250 {
    max-width: 250px !important;
  }

  .mw-lg-280 {
    max-width: 280px !important;
  }

  .mw-lg-300 {
    max-width: 300px !important;
  }

  .mw-lg-320 {
    max-width: 320px !important;
  }

  .mw-lg-350 {
    max-width: 350px !important;
  }

  .mw-lg-360 {
    max-width: 360px !important;
  }

  .mw-lg-380 {
    max-width: 380px !important;
  }

  .mw-lg-400 {
    max-width: 400px !important;
  }

  .mw-lg-420 {
    max-width: 420px !important;
  }

  .mw-lg-430 {
    max-width: 430px !important;
  }

  .mw-lg-450 {
    max-width: 450px !important;
  }

  .mw-lg-480 {
    max-width: 480px !important;
  }

  .mw-lg-500 {
    max-width: 500px !important;
  }

  .mw-lg-520 {
    max-width: 520px !important;
  }

  .mw-lg-540 {
    max-width: 540px !important;
  }

  .mw-lg-550 {
    max-width: 550px !important;
  }

  .mw-lg-560 {
    max-width: 560px !important;
  }

  .mw-lg-570 {
    max-width: 570px !important;
  }

  .mw-lg-600 {
    max-width: 600px !important;
  }

  .mw-lg-620 {
    max-width: 620px !important;
  }

  .mw-lg-640 {
    max-width: 640px !important;
  }

  .mw-lg-650 {
    max-width: 650px !important;
  }

  .mw-lg-670 {
    max-width: 670px !important;
  }

  .mw-lg-700 {
    max-width: 700px !important;
  }

  .mw-lg-720 {
    max-width: 720px !important;
  }

  .mw-lg-750 {
    max-width: 750px !important;
  }

  .mw-lg-800 {
    max-width: 800px !important;
  }

  .mw-lg-850 {
    max-width: 850px !important;
  }

  .mw-lg-960 {
    max-width: 960px !important;
  }

  .mw-lg-1000 {
    max-width: 1000px !important;
  }

  .mw-lg-1024 {
    max-width: 1024px !important;
  }

  .mw-lg-1080 {
    max-width: 1080px !important;
  }

  .mw-lg-1140 {
    max-width: 1140px !important;
  }

  .mw-lg-1176 {
    max-width: 1176px !important;
  }

  .mw-lg-1280 {
    max-width: 1280px !important;
  }

  .mw-lg-1320 {
    max-width: 1320px !important;
  }

  .mw-lg-1400 {
    max-width: 1400px !important;
  }

  .mw-lg-1440 {
    max-width: 1440px !important;
  }
}
@media (min-width: 1920px) {
  .mw-xl-10 {
    max-width: 10% !important;
  }

  .mw-xl-15 {
    max-width: 15% !important;
  }

  .mw-xl-20 {
    max-width: 20% !important;
  }

  .mw-xl-25 {
    max-width: 25% !important;
  }

  .mw-xl-30 {
    max-width: 30% !important;
  }

  .mw-xl-33 {
    max-width: 33% !important;
  }

  .mw-xl-40 {
    max-width: 40% !important;
  }

  .mw-xl-50 {
    max-width: 50% !important;
  }

  .mw-xl-60 {
    max-width: 60% !important;
  }

  .mw-xl-66 {
    max-width: 66% !important;
  }

  .mw-xl-70 {
    max-width: 70% !important;
  }

  .mw-xl-75 {
    max-width: 75% !important;
  }

  .mw-xl-80 {
    max-width: 80% !important;
  }

  .mw-xl-85 {
    max-width: 85% !important;
  }

  .mw-xl-90 {
    max-width: 90% !important;
  }

  .mw-xl-100 {
    max-width: 100% !important;
  }

  .mw-xl-120 {
    max-width: 120px !important;
  }

  .mw-xl-150 {
    max-width: 150px !important;
  }

  .mw-xl-160 {
    max-width: 160px !important;
  }

  .mw-xl-200 {
    max-width: 200px !important;
  }

  .mw-xl-220 {
    max-width: 220px !important;
  }

  .mw-xl-230 {
    max-width: 230px !important;
  }

  .mw-xl-250 {
    max-width: 250px !important;
  }

  .mw-xl-280 {
    max-width: 280px !important;
  }

  .mw-xl-300 {
    max-width: 300px !important;
  }

  .mw-xl-320 {
    max-width: 320px !important;
  }

  .mw-xl-350 {
    max-width: 350px !important;
  }

  .mw-xl-360 {
    max-width: 360px !important;
  }

  .mw-xl-380 {
    max-width: 380px !important;
  }

  .mw-xl-400 {
    max-width: 400px !important;
  }

  .mw-xl-420 {
    max-width: 420px !important;
  }

  .mw-xl-430 {
    max-width: 430px !important;
  }

  .mw-xl-450 {
    max-width: 450px !important;
  }

  .mw-xl-480 {
    max-width: 480px !important;
  }

  .mw-xl-500 {
    max-width: 500px !important;
  }

  .mw-xl-520 {
    max-width: 520px !important;
  }

  .mw-xl-540 {
    max-width: 540px !important;
  }

  .mw-xl-550 {
    max-width: 550px !important;
  }

  .mw-xl-560 {
    max-width: 560px !important;
  }

  .mw-xl-570 {
    max-width: 570px !important;
  }

  .mw-xl-600 {
    max-width: 600px !important;
  }

  .mw-xl-620 {
    max-width: 620px !important;
  }

  .mw-xl-640 {
    max-width: 640px !important;
  }

  .mw-xl-650 {
    max-width: 650px !important;
  }

  .mw-xl-670 {
    max-width: 670px !important;
  }

  .mw-xl-700 {
    max-width: 700px !important;
  }

  .mw-xl-720 {
    max-width: 720px !important;
  }

  .mw-xl-750 {
    max-width: 750px !important;
  }

  .mw-xl-800 {
    max-width: 800px !important;
  }

  .mw-xl-850 {
    max-width: 850px !important;
  }

  .mw-xl-960 {
    max-width: 960px !important;
  }

  .mw-xl-1000 {
    max-width: 1000px !important;
  }

  .mw-xl-1024 {
    max-width: 1024px !important;
  }

  .mw-xl-1080 {
    max-width: 1080px !important;
  }

  .mw-xl-1140 {
    max-width: 1140px !important;
  }

  .mw-xl-1176 {
    max-width: 1176px !important;
  }

  .mw-xl-1280 {
    max-width: 1280px !important;
  }

  .mw-xl-1320 {
    max-width: 1320px !important;
  }

  .mw-xl-1400 {
    max-width: 1400px !important;
  }

  .mw-xl-1440 {
    max-width: 1440px !important;
  }
}
/*
>>================================================================================>
Min-Width Utilities
>>================================================================================>
*/
.minw-auto {
  min-width: auto !important;
}

.minw-fit {
  min-width: -moz-fit-content !important;
  min-width: fit-content !important;
}

.minw-min {
  min-width: -moz-min-content !important;
  min-width: min-content !important;
}

.minw-max {
  min-width: -moz-max-content !important;
  min-width: max-content !important;
}

.minw-10 {
  min-width: 10% !important;
}

.minw-15 {
  min-width: 15% !important;
}

.minw-20 {
  min-width: 20% !important;
}

.minw-25 {
  min-width: 25% !important;
}

.minw-30 {
  min-width: 30% !important;
}

.minw-33 {
  min-width: 33% !important;
}

.minw-40 {
  min-width: 40% !important;
}

.minw-50 {
  min-width: 50% !important;
}

.minw-60 {
  min-width: 60% !important;
}

.minw-66 {
  min-width: 66% !important;
}

.minw-70 {
  min-width: 70% !important;
}

.minw-75 {
  min-width: 75% !important;
}

.minw-80 {
  min-width: 80% !important;
}

.minw-85 {
  min-width: 85% !important;
}

.minw-90 {
  min-width: 90% !important;
}

.minw-100 {
  min-width: 100% !important;
}

.minw-120 {
  min-width: 120px !important;
}

.minw-150 {
  min-width: 150px !important;
}

.minw-160 {
  min-width: 160px !important;
}

.minw-200 {
  min-width: 200px !important;
}

.minw-220 {
  min-width: 220px !important;
}

.minw-230 {
  min-width: 230px !important;
}

.minw-250 {
  min-width: 250px !important;
}

.minw-280 {
  min-width: 280px !important;
}

.minw-300 {
  min-width: 300px !important;
}

.minw-320 {
  min-width: 320px !important;
}

.minw-350 {
  min-width: 350px !important;
}

.minw-360 {
  min-width: 360px !important;
}

.minw-380 {
  min-width: 380px !important;
}

.minw-400 {
  min-width: 400px !important;
}

.minw-420 {
  min-width: 420px !important;
}

.minw-430 {
  min-width: 430px !important;
}

.minw-450 {
  min-width: 450px !important;
}

.minw-480 {
  min-width: 480px !important;
}

.minw-500 {
  min-width: 500px !important;
}

.minw-520 {
  min-width: 520px !important;
}

.minw-540 {
  min-width: 540px !important;
}

.minw-550 {
  min-width: 550px !important;
}

.minw-560 {
  min-width: 560px !important;
}

.minw-570 {
  min-width: 570px !important;
}

.minw-600 {
  min-width: 600px !important;
}

.minw-620 {
  min-width: 620px !important;
}

.minw-640 {
  min-width: 640px !important;
}

.minw-650 {
  min-width: 650px !important;
}

.minw-670 {
  min-width: 670px !important;
}

.minw-700 {
  min-width: 700px !important;
}

.minw-720 {
  min-width: 720px !important;
}

.minw-750 {
  min-width: 750px !important;
}

.minw-800 {
  min-width: 800px !important;
}

.minw-850 {
  min-width: 850px !important;
}

.minw-960 {
  min-width: 960px !important;
}

.minw-1000 {
  min-width: 1000px !important;
}

.minw-1024 {
  min-width: 1024px !important;
}

.minw-1080 {
  min-width: 1080px !important;
}

.minw-1140 {
  min-width: 1140px !important;
}

.minw-1176 {
  min-width: 1176px !important;
}

.minw-1280 {
  min-width: 1280px !important;
}

.minw-1320 {
  min-width: 1320px !important;
}

.minw-1400 {
  min-width: 1400px !important;
}

.minw-1440 {
  min-width: 1440px !important;
}

@media (min-width: 576px) {
  .minw-sm-10 {
    min-width: 10% !important;
  }

  .minw-sm-15 {
    min-width: 15% !important;
  }

  .minw-sm-20 {
    min-width: 20% !important;
  }

  .minw-sm-25 {
    min-width: 25% !important;
  }

  .minw-sm-30 {
    min-width: 30% !important;
  }

  .minw-sm-33 {
    min-width: 33% !important;
  }

  .minw-sm-40 {
    min-width: 40% !important;
  }

  .minw-sm-50 {
    min-width: 50% !important;
  }

  .minw-sm-60 {
    min-width: 60% !important;
  }

  .minw-sm-66 {
    min-width: 66% !important;
  }

  .minw-sm-70 {
    min-width: 70% !important;
  }

  .minw-sm-75 {
    min-width: 75% !important;
  }

  .minw-sm-80 {
    min-width: 80% !important;
  }

  .minw-sm-85 {
    min-width: 85% !important;
  }

  .minw-sm-90 {
    min-width: 90% !important;
  }

  .minw-sm-100 {
    min-width: 100% !important;
  }

  .minw-sm-120 {
    min-width: 120px !important;
  }

  .minw-sm-150 {
    min-width: 150px !important;
  }

  .minw-sm-160 {
    min-width: 160px !important;
  }

  .minw-sm-200 {
    min-width: 200px !important;
  }

  .minw-sm-220 {
    min-width: 220px !important;
  }

  .minw-sm-230 {
    min-width: 230px !important;
  }

  .minw-sm-250 {
    min-width: 250px !important;
  }

  .minw-sm-280 {
    min-width: 280px !important;
  }

  .minw-sm-300 {
    min-width: 300px !important;
  }

  .minw-sm-320 {
    min-width: 320px !important;
  }

  .minw-sm-350 {
    min-width: 350px !important;
  }

  .minw-sm-360 {
    min-width: 360px !important;
  }

  .minw-sm-380 {
    min-width: 380px !important;
  }

  .minw-sm-400 {
    min-width: 400px !important;
  }

  .minw-sm-420 {
    min-width: 420px !important;
  }

  .minw-sm-430 {
    min-width: 430px !important;
  }

  .minw-sm-450 {
    min-width: 450px !important;
  }

  .minw-sm-480 {
    min-width: 480px !important;
  }

  .minw-sm-500 {
    min-width: 500px !important;
  }

  .minw-sm-520 {
    min-width: 520px !important;
  }

  .minw-sm-540 {
    min-width: 540px !important;
  }

  .minw-sm-550 {
    min-width: 550px !important;
  }

  .minw-sm-560 {
    min-width: 560px !important;
  }

  .minw-sm-570 {
    min-width: 570px !important;
  }

  .minw-sm-600 {
    min-width: 600px !important;
  }

  .minw-sm-620 {
    min-width: 620px !important;
  }

  .minw-sm-640 {
    min-width: 640px !important;
  }

  .minw-sm-650 {
    min-width: 650px !important;
  }

  .minw-sm-670 {
    min-width: 670px !important;
  }

  .minw-sm-700 {
    min-width: 700px !important;
  }

  .minw-sm-720 {
    min-width: 720px !important;
  }

  .minw-sm-750 {
    min-width: 750px !important;
  }

  .minw-sm-800 {
    min-width: 800px !important;
  }

  .minw-sm-850 {
    min-width: 850px !important;
  }

  .minw-sm-960 {
    min-width: 960px !important;
  }

  .minw-sm-1000 {
    min-width: 1000px !important;
  }

  .minw-sm-1024 {
    min-width: 1024px !important;
  }

  .minw-sm-1080 {
    min-width: 1080px !important;
  }

  .minw-sm-1140 {
    min-width: 1140px !important;
  }

  .minw-sm-1176 {
    min-width: 1176px !important;
  }

  .minw-sm-1280 {
    min-width: 1280px !important;
  }

  .minw-sm-1320 {
    min-width: 1320px !important;
  }

  .minw-sm-1400 {
    min-width: 1400px !important;
  }

  .minw-sm-1440 {
    min-width: 1440px !important;
  }
}
@media (min-width: 950px) {
  .minw-md-10 {
    min-width: 10% !important;
  }

  .minw-md-15 {
    min-width: 15% !important;
  }

  .minw-md-20 {
    min-width: 20% !important;
  }

  .minw-md-25 {
    min-width: 25% !important;
  }

  .minw-md-30 {
    min-width: 30% !important;
  }

  .minw-md-33 {
    min-width: 33% !important;
  }

  .minw-md-40 {
    min-width: 40% !important;
  }

  .minw-md-50 {
    min-width: 50% !important;
  }

  .minw-md-60 {
    min-width: 60% !important;
  }

  .minw-md-66 {
    min-width: 66% !important;
  }

  .minw-md-70 {
    min-width: 70% !important;
  }

  .minw-md-75 {
    min-width: 75% !important;
  }

  .minw-md-80 {
    min-width: 80% !important;
  }

  .minw-md-85 {
    min-width: 85% !important;
  }

  .minw-md-90 {
    min-width: 90% !important;
  }

  .minw-md-100 {
    min-width: 100% !important;
  }

  .minw-md-120 {
    min-width: 120px !important;
  }

  .minw-md-150 {
    min-width: 150px !important;
  }

  .minw-md-160 {
    min-width: 160px !important;
  }

  .minw-md-200 {
    min-width: 200px !important;
  }

  .minw-md-220 {
    min-width: 220px !important;
  }

  .minw-md-230 {
    min-width: 230px !important;
  }

  .minw-md-250 {
    min-width: 250px !important;
  }

  .minw-md-280 {
    min-width: 280px !important;
  }

  .minw-md-300 {
    min-width: 300px !important;
  }

  .minw-md-320 {
    min-width: 320px !important;
  }

  .minw-md-350 {
    min-width: 350px !important;
  }

  .minw-md-360 {
    min-width: 360px !important;
  }

  .minw-md-380 {
    min-width: 380px !important;
  }

  .minw-md-400 {
    min-width: 400px !important;
  }

  .minw-md-420 {
    min-width: 420px !important;
  }

  .minw-md-430 {
    min-width: 430px !important;
  }

  .minw-md-450 {
    min-width: 450px !important;
  }

  .minw-md-480 {
    min-width: 480px !important;
  }

  .minw-md-500 {
    min-width: 500px !important;
  }

  .minw-md-520 {
    min-width: 520px !important;
  }

  .minw-md-540 {
    min-width: 540px !important;
  }

  .minw-md-550 {
    min-width: 550px !important;
  }

  .minw-md-560 {
    min-width: 560px !important;
  }

  .minw-md-570 {
    min-width: 570px !important;
  }

  .minw-md-600 {
    min-width: 600px !important;
  }

  .minw-md-620 {
    min-width: 620px !important;
  }

  .minw-md-640 {
    min-width: 640px !important;
  }

  .minw-md-650 {
    min-width: 650px !important;
  }

  .minw-md-670 {
    min-width: 670px !important;
  }

  .minw-md-700 {
    min-width: 700px !important;
  }

  .minw-md-720 {
    min-width: 720px !important;
  }

  .minw-md-750 {
    min-width: 750px !important;
  }

  .minw-md-800 {
    min-width: 800px !important;
  }

  .minw-md-850 {
    min-width: 850px !important;
  }

  .minw-md-960 {
    min-width: 960px !important;
  }

  .minw-md-1000 {
    min-width: 1000px !important;
  }

  .minw-md-1024 {
    min-width: 1024px !important;
  }

  .minw-md-1080 {
    min-width: 1080px !important;
  }

  .minw-md-1140 {
    min-width: 1140px !important;
  }

  .minw-md-1176 {
    min-width: 1176px !important;
  }

  .minw-md-1280 {
    min-width: 1280px !important;
  }

  .minw-md-1320 {
    min-width: 1320px !important;
  }

  .minw-md-1400 {
    min-width: 1400px !important;
  }

  .minw-md-1440 {
    min-width: 1440px !important;
  }
}
@media (min-width: 1024px) {
  .minw-lg-10 {
    min-width: 10% !important;
  }

  .minw-lg-15 {
    min-width: 15% !important;
  }

  .minw-lg-20 {
    min-width: 20% !important;
  }

  .minw-lg-25 {
    min-width: 25% !important;
  }

  .minw-lg-30 {
    min-width: 30% !important;
  }

  .minw-lg-33 {
    min-width: 33% !important;
  }

  .minw-lg-40 {
    min-width: 40% !important;
  }

  .minw-lg-50 {
    min-width: 50% !important;
  }

  .minw-lg-60 {
    min-width: 60% !important;
  }

  .minw-lg-66 {
    min-width: 66% !important;
  }

  .minw-lg-70 {
    min-width: 70% !important;
  }

  .minw-lg-75 {
    min-width: 75% !important;
  }

  .minw-lg-80 {
    min-width: 80% !important;
  }

  .minw-lg-85 {
    min-width: 85% !important;
  }

  .minw-lg-90 {
    min-width: 90% !important;
  }

  .minw-lg-100 {
    min-width: 100% !important;
  }

  .minw-lg-120 {
    min-width: 120px !important;
  }

  .minw-lg-150 {
    min-width: 150px !important;
  }

  .minw-lg-160 {
    min-width: 160px !important;
  }

  .minw-lg-200 {
    min-width: 200px !important;
  }

  .minw-lg-220 {
    min-width: 220px !important;
  }

  .minw-lg-230 {
    min-width: 230px !important;
  }

  .minw-lg-250 {
    min-width: 250px !important;
  }

  .minw-lg-280 {
    min-width: 280px !important;
  }

  .minw-lg-300 {
    min-width: 300px !important;
  }

  .minw-lg-320 {
    min-width: 320px !important;
  }

  .minw-lg-350 {
    min-width: 350px !important;
  }

  .minw-lg-360 {
    min-width: 360px !important;
  }

  .minw-lg-380 {
    min-width: 380px !important;
  }

  .minw-lg-400 {
    min-width: 400px !important;
  }

  .minw-lg-420 {
    min-width: 420px !important;
  }

  .minw-lg-430 {
    min-width: 430px !important;
  }

  .minw-lg-450 {
    min-width: 450px !important;
  }

  .minw-lg-480 {
    min-width: 480px !important;
  }

  .minw-lg-500 {
    min-width: 500px !important;
  }

  .minw-lg-520 {
    min-width: 520px !important;
  }

  .minw-lg-540 {
    min-width: 540px !important;
  }

  .minw-lg-550 {
    min-width: 550px !important;
  }

  .minw-lg-560 {
    min-width: 560px !important;
  }

  .minw-lg-570 {
    min-width: 570px !important;
  }

  .minw-lg-600 {
    min-width: 600px !important;
  }

  .minw-lg-620 {
    min-width: 620px !important;
  }

  .minw-lg-640 {
    min-width: 640px !important;
  }

  .minw-lg-650 {
    min-width: 650px !important;
  }

  .minw-lg-670 {
    min-width: 670px !important;
  }

  .minw-lg-700 {
    min-width: 700px !important;
  }

  .minw-lg-720 {
    min-width: 720px !important;
  }

  .minw-lg-750 {
    min-width: 750px !important;
  }

  .minw-lg-800 {
    min-width: 800px !important;
  }

  .minw-lg-850 {
    min-width: 850px !important;
  }

  .minw-lg-960 {
    min-width: 960px !important;
  }

  .minw-lg-1000 {
    min-width: 1000px !important;
  }

  .minw-lg-1024 {
    min-width: 1024px !important;
  }

  .minw-lg-1080 {
    min-width: 1080px !important;
  }

  .minw-lg-1140 {
    min-width: 1140px !important;
  }

  .minw-lg-1176 {
    min-width: 1176px !important;
  }

  .minw-lg-1280 {
    min-width: 1280px !important;
  }

  .minw-lg-1320 {
    min-width: 1320px !important;
  }

  .minw-lg-1400 {
    min-width: 1400px !important;
  }

  .minw-lg-1440 {
    min-width: 1440px !important;
  }
}
@media (min-width: 1920px) {
  .minw-xl-10 {
    min-width: 10% !important;
  }

  .minw-xl-15 {
    min-width: 15% !important;
  }

  .minw-xl-20 {
    min-width: 20% !important;
  }

  .minw-xl-25 {
    min-width: 25% !important;
  }

  .minw-xl-30 {
    min-width: 30% !important;
  }

  .minw-xl-33 {
    min-width: 33% !important;
  }

  .minw-xl-40 {
    min-width: 40% !important;
  }

  .minw-xl-50 {
    min-width: 50% !important;
  }

  .minw-xl-60 {
    min-width: 60% !important;
  }

  .minw-xl-66 {
    min-width: 66% !important;
  }

  .minw-xl-70 {
    min-width: 70% !important;
  }

  .minw-xl-75 {
    min-width: 75% !important;
  }

  .minw-xl-80 {
    min-width: 80% !important;
  }

  .minw-xl-85 {
    min-width: 85% !important;
  }

  .minw-xl-90 {
    min-width: 90% !important;
  }

  .minw-xl-100 {
    min-width: 100% !important;
  }

  .minw-xl-120 {
    min-width: 120px !important;
  }

  .minw-xl-150 {
    min-width: 150px !important;
  }

  .minw-xl-160 {
    min-width: 160px !important;
  }

  .minw-xl-200 {
    min-width: 200px !important;
  }

  .minw-xl-220 {
    min-width: 220px !important;
  }

  .minw-xl-230 {
    min-width: 230px !important;
  }

  .minw-xl-250 {
    min-width: 250px !important;
  }

  .minw-xl-280 {
    min-width: 280px !important;
  }

  .minw-xl-300 {
    min-width: 300px !important;
  }

  .minw-xl-320 {
    min-width: 320px !important;
  }

  .minw-xl-350 {
    min-width: 350px !important;
  }

  .minw-xl-360 {
    min-width: 360px !important;
  }

  .minw-xl-380 {
    min-width: 380px !important;
  }

  .minw-xl-400 {
    min-width: 400px !important;
  }

  .minw-xl-420 {
    min-width: 420px !important;
  }

  .minw-xl-430 {
    min-width: 430px !important;
  }

  .minw-xl-450 {
    min-width: 450px !important;
  }

  .minw-xl-480 {
    min-width: 480px !important;
  }

  .minw-xl-500 {
    min-width: 500px !important;
  }

  .minw-xl-520 {
    min-width: 520px !important;
  }

  .minw-xl-540 {
    min-width: 540px !important;
  }

  .minw-xl-550 {
    min-width: 550px !important;
  }

  .minw-xl-560 {
    min-width: 560px !important;
  }

  .minw-xl-570 {
    min-width: 570px !important;
  }

  .minw-xl-600 {
    min-width: 600px !important;
  }

  .minw-xl-620 {
    min-width: 620px !important;
  }

  .minw-xl-640 {
    min-width: 640px !important;
  }

  .minw-xl-650 {
    min-width: 650px !important;
  }

  .minw-xl-670 {
    min-width: 670px !important;
  }

  .minw-xl-700 {
    min-width: 700px !important;
  }

  .minw-xl-720 {
    min-width: 720px !important;
  }

  .minw-xl-750 {
    min-width: 750px !important;
  }

  .minw-xl-800 {
    min-width: 800px !important;
  }

  .minw-xl-850 {
    min-width: 850px !important;
  }

  .minw-xl-960 {
    min-width: 960px !important;
  }

  .minw-xl-1000 {
    min-width: 1000px !important;
  }

  .minw-xl-1024 {
    min-width: 1024px !important;
  }

  .minw-xl-1080 {
    min-width: 1080px !important;
  }

  .minw-xl-1140 {
    min-width: 1140px !important;
  }

  .minw-xl-1176 {
    min-width: 1176px !important;
  }

  .minw-xl-1280 {
    min-width: 1280px !important;
  }

  .minw-xl-1320 {
    min-width: 1320px !important;
  }

  .minw-xl-1400 {
    min-width: 1400px !important;
  }

  .minw-xl-1440 {
    min-width: 1440px !important;
  }
}
@media (min-width: 576px) {
  .minw-sm-0 {
    min-width: 0 !important;
  }
}
@media (min-width: 950px) {
  .minw-md-0 {
    min-width: 0 !important;
  }
}
@media (min-width: 1024px) {
  .minw-lg-0 {
    min-width: 0 !important;
  }
}
@media (min-width: 1920px) {
  .minw-xl-0 {
    min-width: 0 !important;
  }
}
/*
>>================================================================================>
Animate Row
>>================================================================================>
*/
.animate-row {
  /*
  Desktop
  >>------------->
  */
}
@media screen and (min-width: 950px) {
  .animate-row > * {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--motion-duration-lg) var(--motion-ease), transform var(--motion-duration-lg) var(--motion-ease);
  }
  .animate-row.is-visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  .animate-row.is-visible > *:not(.d-none):nth-child(1) {
    transition-delay: 0ms;
  }
  .animate-row.is-visible > *:not(.d-none):nth-child(2) {
    transition-delay: var(--motion-stagger);
  }
  .animate-row.is-visible > *:not(.d-none):nth-child(3) {
    transition-delay: calc(var(--motion-stagger) * 2);
  }
  .animate-row.is-visible > *:not(.d-none):nth-child(4) {
    transition-delay: calc(var(--motion-stagger) * 3);
  }
  .animate-row.is-visible > *:not(.d-none):nth-child(5) {
    transition-delay: calc(var(--motion-stagger) * 4);
  }
}

/*
>>================================================================================>
Effects
>>================================================================================>
*/
/*
Shadows
>>------------->
*/
.text-shadow {
  text-shadow: rgba(0, 0, 0, 0.7) 1px 0 7px;
}

/*
Base Shadow Utilities
>>------------->
*/
.shadow-none {
  box-shadow: none !important;
}

.shadow-xs {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-md {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0.2rem 0.2rem 0.7rem rgba(0, 0, 0, 0.3) !important;
}

.shadow-xl {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-inset {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075) !important;
}

/*
Directional Shadows
>>------------->
*/
.shadow-top {
  box-shadow: 0 -0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-bottom {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-left {
  box-shadow: -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-right {
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

/*
Shadow Responsive Variants
>>------------->
*/
@media (min-width: 576px) {
  .shadow-sm-none {
    box-shadow: none !important;
  }

  .shadow-sm-xs {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  }

  .shadow-sm-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }

  .shadow-sm-md {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
  }

  .shadow-sm-lg {
    box-shadow: 0.2rem 0.2rem 0.7rem rgba(0, 0, 0, 0.3) !important;
  }

  .shadow-sm-xl {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  }

  .shadow-sm-inset {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075) !important;
  }

  .shadow-sm-top {
    box-shadow: 0 -0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-sm-bottom {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-sm-left {
    box-shadow: -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-sm-right {
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }
}
@media (min-width: 950px) {
  .shadow-md-none {
    box-shadow: none !important;
  }

  .shadow-md-xs {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  }

  .shadow-md-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }

  .shadow-md-md {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
  }

  .shadow-md-lg {
    box-shadow: 0.2rem 0.2rem 0.7rem rgba(0, 0, 0, 0.3) !important;
  }

  .shadow-md-xl {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  }

  .shadow-md-inset {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075) !important;
  }

  .shadow-md-top {
    box-shadow: 0 -0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-md-bottom {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-md-left {
    box-shadow: -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-md-right {
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }
}
@media (min-width: 1024px) {
  .shadow-lg-none {
    box-shadow: none !important;
  }

  .shadow-lg-xs {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  }

  .shadow-lg-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }

  .shadow-lg-md {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
  }

  .shadow-lg-lg {
    box-shadow: 0.2rem 0.2rem 0.7rem rgba(0, 0, 0, 0.3) !important;
  }

  .shadow-lg-xl {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  }

  .shadow-lg-inset {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075) !important;
  }

  .shadow-lg-top {
    box-shadow: 0 -0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-lg-bottom {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-lg-left {
    box-shadow: -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-lg-right {
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }
}
@media (min-width: 1920px) {
  .shadow-xl-none {
    box-shadow: none !important;
  }

  .shadow-xl-xs {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  }

  .shadow-xl-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }

  .shadow-xl-md {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
  }

  .shadow-xl-lg {
    box-shadow: 0.2rem 0.2rem 0.7rem rgba(0, 0, 0, 0.3) !important;
  }

  .shadow-xl-xl {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  }

  .shadow-xl-inset {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075) !important;
  }

  .shadow-xl-top {
    box-shadow: 0 -0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-xl-bottom {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-xl-left {
    box-shadow: -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }

  .shadow-xl-right {
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }
}
/*
>>================================================================================>
Border + Radius Utilities (Minimal + Breakpoints)
>>================================================================================>
*/
/*
Global border toggle (all sides)
--------------------------------------------
*/
.border {
  border-width: 1px !important;
  border-style: solid !important;
}

.border-0 {
  border-width: 0 !important;
}

/*
Side toggles — ONLY modify that side
--------------------------------------------
*/
.border-top {
  border-top-width: 1px !important;
  border-top-style: solid !important;
}

.border-top-0 {
  border-top-width: 0 !important;
}

.border-end {
  border-right-width: 1px !important;
  border-right-style: solid !important;
}

.border-end-0 {
  border-right-width: 0 !important;
}

.border-bottom {
  border-bottom-width: 1px !important;
  border-bottom-style: solid !important;
}

.border-bottom-0 {
  border-bottom-width: 0 !important;
}

.border-start {
  border-left-width: 1px !important;
  border-left-style: solid !important;
}

.border-start-0 {
  border-left-width: 0 !important;
}

/*
Width utilities — side-safe
--------------------------------------------
*/
.border-0 {
  border-width: 0 !important;
  border-style: solid !important;
}

.border-top-0 {
  border-top-width: 0 !important;
  border-top-style: solid !important;
}

.border-end-0 {
  border-right-width: 0 !important;
  border-right-style: solid !important;
}

.border-bottom-0 {
  border-bottom-width: 0 !important;
  border-bottom-style: solid !important;
}

.border-start-0 {
  border-left-width: 0 !important;
  border-left-style: solid !important;
}

.border-1 {
  border-width: 1px !important;
  border-style: solid !important;
}

.border-top-1 {
  border-top-width: 1px !important;
  border-top-style: solid !important;
}

.border-end-1 {
  border-right-width: 1px !important;
  border-right-style: solid !important;
}

.border-bottom-1 {
  border-bottom-width: 1px !important;
  border-bottom-style: solid !important;
}

.border-start-1 {
  border-left-width: 1px !important;
  border-left-style: solid !important;
}

.border-2 {
  border-width: 2px !important;
  border-style: solid !important;
}

.border-top-2 {
  border-top-width: 2px !important;
  border-top-style: solid !important;
}

.border-end-2 {
  border-right-width: 2px !important;
  border-right-style: solid !important;
}

.border-bottom-2 {
  border-bottom-width: 2px !important;
  border-bottom-style: solid !important;
}

.border-start-2 {
  border-left-width: 2px !important;
  border-left-style: solid !important;
}

.border-3 {
  border-width: 3px !important;
  border-style: solid !important;
}

.border-top-3 {
  border-top-width: 3px !important;
  border-top-style: solid !important;
}

.border-end-3 {
  border-right-width: 3px !important;
  border-right-style: solid !important;
}

.border-bottom-3 {
  border-bottom-width: 3px !important;
  border-bottom-style: solid !important;
}

.border-start-3 {
  border-left-width: 3px !important;
  border-left-style: solid !important;
}

.border-4 {
  border-width: 4px !important;
  border-style: solid !important;
}

.border-top-4 {
  border-top-width: 4px !important;
  border-top-style: solid !important;
}

.border-end-4 {
  border-right-width: 4px !important;
  border-right-style: solid !important;
}

.border-bottom-4 {
  border-bottom-width: 4px !important;
  border-bottom-style: solid !important;
}

.border-start-4 {
  border-left-width: 4px !important;
  border-left-style: solid !important;
}

.border-5 {
  border-width: 5px !important;
  border-style: solid !important;
}

.border-top-5 {
  border-top-width: 5px !important;
  border-top-style: solid !important;
}

.border-end-5 {
  border-right-width: 5px !important;
  border-right-style: solid !important;
}

.border-bottom-5 {
  border-bottom-width: 5px !important;
  border-bottom-style: solid !important;
}

.border-start-5 {
  border-left-width: 5px !important;
  border-left-style: solid !important;
}

/*
Responsive variants
--------------------------------------------
*/
@media (min-width: 576px) {
  .border-sm {
    border-width: 1px !important;
    border-style: solid !important;
  }

  .border-sm-0 {
    border-width: 0 !important;
  }

  .border-top-sm {
    border-top-width: 1px !important;
    border-top-style: solid !important;
  }

  .border-top-sm-0 {
    border-top-width: 0 !important;
  }

  .border-end-sm {
    border-right-width: 1px !important;
    border-right-style: solid !important;
  }

  .border-end-sm-0 {
    border-right-width: 0 !important;
  }

  .border-bottom-sm {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
  }

  .border-bottom-sm-0 {
    border-bottom-width: 0 !important;
  }

  .border-start-sm {
    border-left-width: 1px !important;
    border-left-style: solid !important;
  }

  .border-start-sm-0 {
    border-left-width: 0 !important;
  }

  .border-sm-0 {
    border-width: 0 !important;
    border-style: solid !important;
  }

  .border-top-sm-0 {
    border-top-width: 0 !important;
    border-top-style: solid !important;
  }

  .border-end-sm-0 {
    border-right-width: 0 !important;
    border-right-style: solid !important;
  }

  .border-bottom-sm-0 {
    border-bottom-width: 0 !important;
    border-bottom-style: solid !important;
  }

  .border-start-sm-0 {
    border-left-width: 0 !important;
    border-left-style: solid !important;
  }

  .border-sm-1 {
    border-width: 1px !important;
    border-style: solid !important;
  }

  .border-top-sm-1 {
    border-top-width: 1px !important;
    border-top-style: solid !important;
  }

  .border-end-sm-1 {
    border-right-width: 1px !important;
    border-right-style: solid !important;
  }

  .border-bottom-sm-1 {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
  }

  .border-start-sm-1 {
    border-left-width: 1px !important;
    border-left-style: solid !important;
  }

  .border-sm-2 {
    border-width: 2px !important;
    border-style: solid !important;
  }

  .border-top-sm-2 {
    border-top-width: 2px !important;
    border-top-style: solid !important;
  }

  .border-end-sm-2 {
    border-right-width: 2px !important;
    border-right-style: solid !important;
  }

  .border-bottom-sm-2 {
    border-bottom-width: 2px !important;
    border-bottom-style: solid !important;
  }

  .border-start-sm-2 {
    border-left-width: 2px !important;
    border-left-style: solid !important;
  }

  .border-sm-3 {
    border-width: 3px !important;
    border-style: solid !important;
  }

  .border-top-sm-3 {
    border-top-width: 3px !important;
    border-top-style: solid !important;
  }

  .border-end-sm-3 {
    border-right-width: 3px !important;
    border-right-style: solid !important;
  }

  .border-bottom-sm-3 {
    border-bottom-width: 3px !important;
    border-bottom-style: solid !important;
  }

  .border-start-sm-3 {
    border-left-width: 3px !important;
    border-left-style: solid !important;
  }

  .border-sm-4 {
    border-width: 4px !important;
    border-style: solid !important;
  }

  .border-top-sm-4 {
    border-top-width: 4px !important;
    border-top-style: solid !important;
  }

  .border-end-sm-4 {
    border-right-width: 4px !important;
    border-right-style: solid !important;
  }

  .border-bottom-sm-4 {
    border-bottom-width: 4px !important;
    border-bottom-style: solid !important;
  }

  .border-start-sm-4 {
    border-left-width: 4px !important;
    border-left-style: solid !important;
  }

  .border-sm-5 {
    border-width: 5px !important;
    border-style: solid !important;
  }

  .border-top-sm-5 {
    border-top-width: 5px !important;
    border-top-style: solid !important;
  }

  .border-end-sm-5 {
    border-right-width: 5px !important;
    border-right-style: solid !important;
  }

  .border-bottom-sm-5 {
    border-bottom-width: 5px !important;
    border-bottom-style: solid !important;
  }

  .border-start-sm-5 {
    border-left-width: 5px !important;
    border-left-style: solid !important;
  }
}
@media (min-width: 950px) {
  .border-md {
    border-width: 1px !important;
    border-style: solid !important;
  }

  .border-md-0 {
    border-width: 0 !important;
  }

  .border-top-md {
    border-top-width: 1px !important;
    border-top-style: solid !important;
  }

  .border-top-md-0 {
    border-top-width: 0 !important;
  }

  .border-end-md {
    border-right-width: 1px !important;
    border-right-style: solid !important;
  }

  .border-end-md-0 {
    border-right-width: 0 !important;
  }

  .border-bottom-md {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
  }

  .border-bottom-md-0 {
    border-bottom-width: 0 !important;
  }

  .border-start-md {
    border-left-width: 1px !important;
    border-left-style: solid !important;
  }

  .border-start-md-0 {
    border-left-width: 0 !important;
  }

  .border-md-0 {
    border-width: 0 !important;
    border-style: solid !important;
  }

  .border-top-md-0 {
    border-top-width: 0 !important;
    border-top-style: solid !important;
  }

  .border-end-md-0 {
    border-right-width: 0 !important;
    border-right-style: solid !important;
  }

  .border-bottom-md-0 {
    border-bottom-width: 0 !important;
    border-bottom-style: solid !important;
  }

  .border-start-md-0 {
    border-left-width: 0 !important;
    border-left-style: solid !important;
  }

  .border-md-1 {
    border-width: 1px !important;
    border-style: solid !important;
  }

  .border-top-md-1 {
    border-top-width: 1px !important;
    border-top-style: solid !important;
  }

  .border-end-md-1 {
    border-right-width: 1px !important;
    border-right-style: solid !important;
  }

  .border-bottom-md-1 {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
  }

  .border-start-md-1 {
    border-left-width: 1px !important;
    border-left-style: solid !important;
  }

  .border-md-2 {
    border-width: 2px !important;
    border-style: solid !important;
  }

  .border-top-md-2 {
    border-top-width: 2px !important;
    border-top-style: solid !important;
  }

  .border-end-md-2 {
    border-right-width: 2px !important;
    border-right-style: solid !important;
  }

  .border-bottom-md-2 {
    border-bottom-width: 2px !important;
    border-bottom-style: solid !important;
  }

  .border-start-md-2 {
    border-left-width: 2px !important;
    border-left-style: solid !important;
  }

  .border-md-3 {
    border-width: 3px !important;
    border-style: solid !important;
  }

  .border-top-md-3 {
    border-top-width: 3px !important;
    border-top-style: solid !important;
  }

  .border-end-md-3 {
    border-right-width: 3px !important;
    border-right-style: solid !important;
  }

  .border-bottom-md-3 {
    border-bottom-width: 3px !important;
    border-bottom-style: solid !important;
  }

  .border-start-md-3 {
    border-left-width: 3px !important;
    border-left-style: solid !important;
  }

  .border-md-4 {
    border-width: 4px !important;
    border-style: solid !important;
  }

  .border-top-md-4 {
    border-top-width: 4px !important;
    border-top-style: solid !important;
  }

  .border-end-md-4 {
    border-right-width: 4px !important;
    border-right-style: solid !important;
  }

  .border-bottom-md-4 {
    border-bottom-width: 4px !important;
    border-bottom-style: solid !important;
  }

  .border-start-md-4 {
    border-left-width: 4px !important;
    border-left-style: solid !important;
  }

  .border-md-5 {
    border-width: 5px !important;
    border-style: solid !important;
  }

  .border-top-md-5 {
    border-top-width: 5px !important;
    border-top-style: solid !important;
  }

  .border-end-md-5 {
    border-right-width: 5px !important;
    border-right-style: solid !important;
  }

  .border-bottom-md-5 {
    border-bottom-width: 5px !important;
    border-bottom-style: solid !important;
  }

  .border-start-md-5 {
    border-left-width: 5px !important;
    border-left-style: solid !important;
  }
}
@media (min-width: 1024px) {
  .border-lg {
    border-width: 1px !important;
    border-style: solid !important;
  }

  .border-lg-0 {
    border-width: 0 !important;
  }

  .border-top-lg {
    border-top-width: 1px !important;
    border-top-style: solid !important;
  }

  .border-top-lg-0 {
    border-top-width: 0 !important;
  }

  .border-end-lg {
    border-right-width: 1px !important;
    border-right-style: solid !important;
  }

  .border-end-lg-0 {
    border-right-width: 0 !important;
  }

  .border-bottom-lg {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
  }

  .border-bottom-lg-0 {
    border-bottom-width: 0 !important;
  }

  .border-start-lg {
    border-left-width: 1px !important;
    border-left-style: solid !important;
  }

  .border-start-lg-0 {
    border-left-width: 0 !important;
  }

  .border-lg-0 {
    border-width: 0 !important;
    border-style: solid !important;
  }

  .border-top-lg-0 {
    border-top-width: 0 !important;
    border-top-style: solid !important;
  }

  .border-end-lg-0 {
    border-right-width: 0 !important;
    border-right-style: solid !important;
  }

  .border-bottom-lg-0 {
    border-bottom-width: 0 !important;
    border-bottom-style: solid !important;
  }

  .border-start-lg-0 {
    border-left-width: 0 !important;
    border-left-style: solid !important;
  }

  .border-lg-1 {
    border-width: 1px !important;
    border-style: solid !important;
  }

  .border-top-lg-1 {
    border-top-width: 1px !important;
    border-top-style: solid !important;
  }

  .border-end-lg-1 {
    border-right-width: 1px !important;
    border-right-style: solid !important;
  }

  .border-bottom-lg-1 {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
  }

  .border-start-lg-1 {
    border-left-width: 1px !important;
    border-left-style: solid !important;
  }

  .border-lg-2 {
    border-width: 2px !important;
    border-style: solid !important;
  }

  .border-top-lg-2 {
    border-top-width: 2px !important;
    border-top-style: solid !important;
  }

  .border-end-lg-2 {
    border-right-width: 2px !important;
    border-right-style: solid !important;
  }

  .border-bottom-lg-2 {
    border-bottom-width: 2px !important;
    border-bottom-style: solid !important;
  }

  .border-start-lg-2 {
    border-left-width: 2px !important;
    border-left-style: solid !important;
  }

  .border-lg-3 {
    border-width: 3px !important;
    border-style: solid !important;
  }

  .border-top-lg-3 {
    border-top-width: 3px !important;
    border-top-style: solid !important;
  }

  .border-end-lg-3 {
    border-right-width: 3px !important;
    border-right-style: solid !important;
  }

  .border-bottom-lg-3 {
    border-bottom-width: 3px !important;
    border-bottom-style: solid !important;
  }

  .border-start-lg-3 {
    border-left-width: 3px !important;
    border-left-style: solid !important;
  }

  .border-lg-4 {
    border-width: 4px !important;
    border-style: solid !important;
  }

  .border-top-lg-4 {
    border-top-width: 4px !important;
    border-top-style: solid !important;
  }

  .border-end-lg-4 {
    border-right-width: 4px !important;
    border-right-style: solid !important;
  }

  .border-bottom-lg-4 {
    border-bottom-width: 4px !important;
    border-bottom-style: solid !important;
  }

  .border-start-lg-4 {
    border-left-width: 4px !important;
    border-left-style: solid !important;
  }

  .border-lg-5 {
    border-width: 5px !important;
    border-style: solid !important;
  }

  .border-top-lg-5 {
    border-top-width: 5px !important;
    border-top-style: solid !important;
  }

  .border-end-lg-5 {
    border-right-width: 5px !important;
    border-right-style: solid !important;
  }

  .border-bottom-lg-5 {
    border-bottom-width: 5px !important;
    border-bottom-style: solid !important;
  }

  .border-start-lg-5 {
    border-left-width: 5px !important;
    border-left-style: solid !important;
  }
}
@media (min-width: 1920px) {
  .border-xl {
    border-width: 1px !important;
    border-style: solid !important;
  }

  .border-xl-0 {
    border-width: 0 !important;
  }

  .border-top-xl {
    border-top-width: 1px !important;
    border-top-style: solid !important;
  }

  .border-top-xl-0 {
    border-top-width: 0 !important;
  }

  .border-end-xl {
    border-right-width: 1px !important;
    border-right-style: solid !important;
  }

  .border-end-xl-0 {
    border-right-width: 0 !important;
  }

  .border-bottom-xl {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
  }

  .border-bottom-xl-0 {
    border-bottom-width: 0 !important;
  }

  .border-start-xl {
    border-left-width: 1px !important;
    border-left-style: solid !important;
  }

  .border-start-xl-0 {
    border-left-width: 0 !important;
  }

  .border-xl-0 {
    border-width: 0 !important;
    border-style: solid !important;
  }

  .border-top-xl-0 {
    border-top-width: 0 !important;
    border-top-style: solid !important;
  }

  .border-end-xl-0 {
    border-right-width: 0 !important;
    border-right-style: solid !important;
  }

  .border-bottom-xl-0 {
    border-bottom-width: 0 !important;
    border-bottom-style: solid !important;
  }

  .border-start-xl-0 {
    border-left-width: 0 !important;
    border-left-style: solid !important;
  }

  .border-xl-1 {
    border-width: 1px !important;
    border-style: solid !important;
  }

  .border-top-xl-1 {
    border-top-width: 1px !important;
    border-top-style: solid !important;
  }

  .border-end-xl-1 {
    border-right-width: 1px !important;
    border-right-style: solid !important;
  }

  .border-bottom-xl-1 {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
  }

  .border-start-xl-1 {
    border-left-width: 1px !important;
    border-left-style: solid !important;
  }

  .border-xl-2 {
    border-width: 2px !important;
    border-style: solid !important;
  }

  .border-top-xl-2 {
    border-top-width: 2px !important;
    border-top-style: solid !important;
  }

  .border-end-xl-2 {
    border-right-width: 2px !important;
    border-right-style: solid !important;
  }

  .border-bottom-xl-2 {
    border-bottom-width: 2px !important;
    border-bottom-style: solid !important;
  }

  .border-start-xl-2 {
    border-left-width: 2px !important;
    border-left-style: solid !important;
  }

  .border-xl-3 {
    border-width: 3px !important;
    border-style: solid !important;
  }

  .border-top-xl-3 {
    border-top-width: 3px !important;
    border-top-style: solid !important;
  }

  .border-end-xl-3 {
    border-right-width: 3px !important;
    border-right-style: solid !important;
  }

  .border-bottom-xl-3 {
    border-bottom-width: 3px !important;
    border-bottom-style: solid !important;
  }

  .border-start-xl-3 {
    border-left-width: 3px !important;
    border-left-style: solid !important;
  }

  .border-xl-4 {
    border-width: 4px !important;
    border-style: solid !important;
  }

  .border-top-xl-4 {
    border-top-width: 4px !important;
    border-top-style: solid !important;
  }

  .border-end-xl-4 {
    border-right-width: 4px !important;
    border-right-style: solid !important;
  }

  .border-bottom-xl-4 {
    border-bottom-width: 4px !important;
    border-bottom-style: solid !important;
  }

  .border-start-xl-4 {
    border-left-width: 4px !important;
    border-left-style: solid !important;
  }

  .border-xl-5 {
    border-width: 5px !important;
    border-style: solid !important;
  }

  .border-top-xl-5 {
    border-top-width: 5px !important;
    border-top-style: solid !important;
  }

  .border-end-xl-5 {
    border-right-width: 5px !important;
    border-right-style: solid !important;
  }

  .border-bottom-xl-5 {
    border-bottom-width: 5px !important;
    border-bottom-style: solid !important;
  }

  .border-start-xl-5 {
    border-left-width: 5px !important;
    border-left-style: solid !important;
  }
}
/*
>>================================================================================>
Radius Utilities
>>================================================================================>
*/
.rounded {
  border-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.375rem !important;
}

.rounded-4 {
  border-radius: 0.5rem !important;
}

.rounded-5 {
  border-radius: 1rem !important;
}

.rounded-6 {
  border-radius: 1.25rem !important;
}

.rounded-top {
  border-top-left-radius: inherit !important;
  border-top-right-radius: inherit !important;
}

.rounded-bottom {
  border-bottom-left-radius: inherit !important;
  border-bottom-right-radius: inherit !important;
}

.rounded-start {
  border-top-left-radius: inherit !important;
  border-bottom-left-radius: inherit !important;
}

.rounded-end {
  border-top-right-radius: inherit !important;
  border-bottom-right-radius: inherit !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-bottom-0 {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-start-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/*
Responsive radius
--------------------------------------------
*/
@media (min-width: 576px) {
  .rounded-sm-0 {
    border-radius: 0 !important;
  }

  .rounded-sm-1 {
    border-radius: 0.2rem !important;
  }

  .rounded-sm-2 {
    border-radius: 0.25rem !important;
  }

  .rounded-sm-3 {
    border-radius: 0.375rem !important;
  }

  .rounded-sm-4 {
    border-radius: 0.5rem !important;
  }

  .rounded-sm-5 {
    border-radius: 1rem !important;
  }

  .rounded-sm-6 {
    border-radius: 1.25rem !important;
  }

  .rounded-top-sm {
    border-top-left-radius: inherit !important;
    border-top-right-radius: inherit !important;
  }

  .rounded-bottom-sm {
    border-bottom-left-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
  }

  .rounded-start-sm {
    border-top-left-radius: inherit !important;
    border-bottom-left-radius: inherit !important;
  }

  .rounded-end-sm {
    border-top-right-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
  }
}
@media (min-width: 950px) {
  .rounded-md-0 {
    border-radius: 0 !important;
  }

  .rounded-md-1 {
    border-radius: 0.2rem !important;
  }

  .rounded-md-2 {
    border-radius: 0.25rem !important;
  }

  .rounded-md-3 {
    border-radius: 0.375rem !important;
  }

  .rounded-md-4 {
    border-radius: 0.5rem !important;
  }

  .rounded-md-5 {
    border-radius: 1rem !important;
  }

  .rounded-md-6 {
    border-radius: 1.25rem !important;
  }

  .rounded-top-md {
    border-top-left-radius: inherit !important;
    border-top-right-radius: inherit !important;
  }

  .rounded-bottom-md {
    border-bottom-left-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
  }

  .rounded-start-md {
    border-top-left-radius: inherit !important;
    border-bottom-left-radius: inherit !important;
  }

  .rounded-end-md {
    border-top-right-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
  }
}
@media (min-width: 1024px) {
  .rounded-lg-0 {
    border-radius: 0 !important;
  }

  .rounded-lg-1 {
    border-radius: 0.2rem !important;
  }

  .rounded-lg-2 {
    border-radius: 0.25rem !important;
  }

  .rounded-lg-3 {
    border-radius: 0.375rem !important;
  }

  .rounded-lg-4 {
    border-radius: 0.5rem !important;
  }

  .rounded-lg-5 {
    border-radius: 1rem !important;
  }

  .rounded-lg-6 {
    border-radius: 1.25rem !important;
  }

  .rounded-top-lg {
    border-top-left-radius: inherit !important;
    border-top-right-radius: inherit !important;
  }

  .rounded-bottom-lg {
    border-bottom-left-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
  }

  .rounded-start-lg {
    border-top-left-radius: inherit !important;
    border-bottom-left-radius: inherit !important;
  }

  .rounded-end-lg {
    border-top-right-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
  }
}
@media (min-width: 1920px) {
  .rounded-xl-0 {
    border-radius: 0 !important;
  }

  .rounded-xl-1 {
    border-radius: 0.2rem !important;
  }

  .rounded-xl-2 {
    border-radius: 0.25rem !important;
  }

  .rounded-xl-3 {
    border-radius: 0.375rem !important;
  }

  .rounded-xl-4 {
    border-radius: 0.5rem !important;
  }

  .rounded-xl-5 {
    border-radius: 1rem !important;
  }

  .rounded-xl-6 {
    border-radius: 1.25rem !important;
  }

  .rounded-top-xl {
    border-top-left-radius: inherit !important;
    border-top-right-radius: inherit !important;
  }

  .rounded-bottom-xl {
    border-bottom-left-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
  }

  .rounded-start-xl {
    border-top-left-radius: inherit !important;
    border-bottom-left-radius: inherit !important;
  }

  .rounded-end-xl {
    border-top-right-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
  }
}
/*
Other
>>------------->
*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

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

.full-height {
  height: 100% !important;
}

.object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

/*
Aspect Ratio
>>------------->
*/
.ratio-1x1 {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ratio-1x1 > iframe,
.ratio-1x1 > video,
.ratio-1x1 > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio-1x1::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.ratio-1x1 > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ratio-4x3 {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ratio-4x3 > iframe,
.ratio-4x3 > video,
.ratio-4x3 > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio-4x3::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.ratio-4x3 > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ratio-16x9 {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ratio-16x9 > iframe,
.ratio-16x9 > video,
.ratio-16x9 > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio-16x9::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.ratio-16x9 > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ratio-21x9 {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ratio-21x9 > iframe,
.ratio-21x9 > video,
.ratio-21x9 > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio-21x9::before {
  content: "";
  display: block;
  padding-top: 42.8571428571%;
}
.ratio-21x9 > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/*
>>================================================================================>
Position Utilities
>>================================================================================>
*/
/*
Vertical Alignment
--------------------------------------------
*/
.align-middle {
  vertical-align: middle;
}

/*
Translate Utilities (Base)
--------------------------------------------
*/
.translate-middle-y {
  transform: translateY(-50%) !important;
}

.translate-top-y {
  transform: translateY(-100%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-top-x {
  transform: translateX(-100%) !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

/*
Translate Utilities (Responsive)
--------------------------------------------
*/
@media (min-width: 576px) {
  .translate-sm-middle-y {
    transform: translateY(-50%) !important;
  }

  .translate-sm-top-y {
    transform: translateY(-100%) !important;
  }

  .translate-sm-middle-x {
    transform: translateX(-50%) !important;
  }

  .translate-sm-top-x {
    transform: translateX(-100%) !important;
  }

  .translate-sm-middle {
    transform: translate(-50%, -50%) !important;
  }
}
@media (min-width: 950px) {
  .translate-md-middle-y {
    transform: translateY(-50%) !important;
  }

  .translate-md-top-y {
    transform: translateY(-100%) !important;
  }

  .translate-md-middle-x {
    transform: translateX(-50%) !important;
  }

  .translate-md-top-x {
    transform: translateX(-100%) !important;
  }

  .translate-md-middle {
    transform: translate(-50%, -50%) !important;
  }
}
@media (min-width: 1024px) {
  .translate-lg-middle-y {
    transform: translateY(-50%) !important;
  }

  .translate-lg-top-y {
    transform: translateY(-100%) !important;
  }

  .translate-lg-middle-x {
    transform: translateX(-50%) !important;
  }

  .translate-lg-top-x {
    transform: translateX(-100%) !important;
  }

  .translate-lg-middle {
    transform: translate(-50%, -50%) !important;
  }
}
@media (min-width: 1920px) {
  .translate-xl-middle-y {
    transform: translateY(-50%) !important;
  }

  .translate-xl-top-y {
    transform: translateY(-100%) !important;
  }

  .translate-xl-middle-x {
    transform: translateX(-50%) !important;
  }

  .translate-xl-top-x {
    transform: translateX(-100%) !important;
  }

  .translate-xl-middle {
    transform: translate(-50%, -50%) !important;
  }
}
/*
>>================================================================================>
Position & Offset Utilities
>>================================================================================>
*/
/*
Position Utilities (Base)
--------------------------------------------
*/
.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

/*
Offset Utilities (Base)
--------------------------------------------
*/
.top-0 {
  top: 0 !important;
}

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

.start-0 {
  left: 0 !important;
}

.end-0 {
  right: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.start-50 {
  left: 50% !important;
}

.end-50 {
  right: 50% !important;
}

/*
Auto Offsets
--------------------------------------------
*/
.top-auto {
  top: auto !important;
}

.bottom-auto {
  bottom: auto !important;
}

.start-auto {
  left: auto !important;
}

.end-auto {
  right: auto !important;
}

/*
Responsive Position & Offsets
--------------------------------------------
*/
@media (min-width: 576px) {
  .position-sm-static {
    position: static !important;
  }

  .position-sm-relative {
    position: relative !important;
  }

  .position-sm-absolute {
    position: absolute !important;
  }

  .position-sm-fixed {
    position: fixed !important;
  }

  .position-sm-sticky {
    position: sticky !important;
  }

  .top-sm-0 {
    top: 0 !important;
  }

  .bottom-sm-0 {
    bottom: 0 !important;
  }

  .start-sm-0 {
    left: 0 !important;
  }

  .end-sm-0 {
    right: 0 !important;
  }

  .top-sm-50 {
    top: 50% !important;
  }

  .bottom-sm-50 {
    bottom: 50% !important;
  }

  .start-sm-50 {
    left: 50% !important;
  }

  .end-sm-50 {
    right: 50% !important;
  }

  .top-sm-auto {
    top: auto !important;
  }

  .bottom-sm-auto {
    bottom: auto !important;
  }

  .start-sm-auto {
    left: auto !important;
  }

  .end-sm-auto {
    right: auto !important;
  }
}
@media (min-width: 950px) {
  .position-md-static {
    position: static !important;
  }

  .position-md-relative {
    position: relative !important;
  }

  .position-md-absolute {
    position: absolute !important;
  }

  .position-md-fixed {
    position: fixed !important;
  }

  .position-md-sticky {
    position: sticky !important;
  }

  .top-md-0 {
    top: 0 !important;
  }

  .bottom-md-0 {
    bottom: 0 !important;
  }

  .start-md-0 {
    left: 0 !important;
  }

  .end-md-0 {
    right: 0 !important;
  }

  .top-md-50 {
    top: 50% !important;
  }

  .bottom-md-50 {
    bottom: 50% !important;
  }

  .start-md-50 {
    left: 50% !important;
  }

  .end-md-50 {
    right: 50% !important;
  }

  .top-md-auto {
    top: auto !important;
  }

  .bottom-md-auto {
    bottom: auto !important;
  }

  .start-md-auto {
    left: auto !important;
  }

  .end-md-auto {
    right: auto !important;
  }
}
@media (min-width: 1024px) {
  .position-lg-static {
    position: static !important;
  }

  .position-lg-relative {
    position: relative !important;
  }

  .position-lg-absolute {
    position: absolute !important;
  }

  .position-lg-fixed {
    position: fixed !important;
  }

  .position-lg-sticky {
    position: sticky !important;
  }

  .top-lg-0 {
    top: 0 !important;
  }

  .bottom-lg-0 {
    bottom: 0 !important;
  }

  .start-lg-0 {
    left: 0 !important;
  }

  .end-lg-0 {
    right: 0 !important;
  }

  .top-lg-50 {
    top: 50% !important;
  }

  .bottom-lg-50 {
    bottom: 50% !important;
  }

  .start-lg-50 {
    left: 50% !important;
  }

  .end-lg-50 {
    right: 50% !important;
  }

  .top-lg-auto {
    top: auto !important;
  }

  .bottom-lg-auto {
    bottom: auto !important;
  }

  .start-lg-auto {
    left: auto !important;
  }

  .end-lg-auto {
    right: auto !important;
  }
}
@media (min-width: 1920px) {
  .position-xl-static {
    position: static !important;
  }

  .position-xl-relative {
    position: relative !important;
  }

  .position-xl-absolute {
    position: absolute !important;
  }

  .position-xl-fixed {
    position: fixed !important;
  }

  .position-xl-sticky {
    position: sticky !important;
  }

  .top-xl-0 {
    top: 0 !important;
  }

  .bottom-xl-0 {
    bottom: 0 !important;
  }

  .start-xl-0 {
    left: 0 !important;
  }

  .end-xl-0 {
    right: 0 !important;
  }

  .top-xl-50 {
    top: 50% !important;
  }

  .bottom-xl-50 {
    bottom: 50% !important;
  }

  .start-xl-50 {
    left: 50% !important;
  }

  .end-xl-50 {
    right: 50% !important;
  }

  .top-xl-auto {
    top: auto !important;
  }

  .bottom-xl-auto {
    bottom: auto !important;
  }

  .start-xl-auto {
    left: auto !important;
  }

  .end-xl-auto {
    right: auto !important;
  }
}
/*
>>================================================================================>
Z-Index Utilities
>>================================================================================>
*/
.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

.z-4 {
  z-index: 4 !important;
}

.z-5 {
  z-index: 5 !important;
}

@media (min-width: 576px) {
  .z-sm-n1 {
    z-index: -1 !important;
  }

  .z-sm-0 {
    z-index: 0 !important;
  }

  .z-sm-1 {
    z-index: 1 !important;
  }

  .z-sm-2 {
    z-index: 2 !important;
  }

  .z-sm-3 {
    z-index: 3 !important;
  }

  .z-sm-4 {
    z-index: 4 !important;
  }

  .z-sm-5 {
    z-index: 5 !important;
  }
}
@media (min-width: 950px) {
  .z-md-n1 {
    z-index: -1 !important;
  }

  .z-md-0 {
    z-index: 0 !important;
  }

  .z-md-1 {
    z-index: 1 !important;
  }

  .z-md-2 {
    z-index: 2 !important;
  }

  .z-md-3 {
    z-index: 3 !important;
  }

  .z-md-4 {
    z-index: 4 !important;
  }

  .z-md-5 {
    z-index: 5 !important;
  }
}
@media (min-width: 1024px) {
  .z-lg-n1 {
    z-index: -1 !important;
  }

  .z-lg-0 {
    z-index: 0 !important;
  }

  .z-lg-1 {
    z-index: 1 !important;
  }

  .z-lg-2 {
    z-index: 2 !important;
  }

  .z-lg-3 {
    z-index: 3 !important;
  }

  .z-lg-4 {
    z-index: 4 !important;
  }

  .z-lg-5 {
    z-index: 5 !important;
  }
}
@media (min-width: 1920px) {
  .z-xl-n1 {
    z-index: -1 !important;
  }

  .z-xl-0 {
    z-index: 0 !important;
  }

  .z-xl-1 {
    z-index: 1 !important;
  }

  .z-xl-2 {
    z-index: 2 !important;
  }

  .z-xl-3 {
    z-index: 3 !important;
  }

  .z-xl-4 {
    z-index: 4 !important;
  }

  .z-xl-5 {
    z-index: 5 !important;
  }
}
/*
>>================================================================================>
Visibility & Overflow Utilities
>>================================================================================>
*/
/*
Provides visibility, display, overflow, and z-index helpers
Includes responsive visibility variants (.visible-md, .hidden-lg)
*/
/*
Visibility
>>------------->
*/
.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/*
Display
>>------------->
*/
.hidden {
  display: none !important;
}

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

/*
Overflow
>>------------->
*/
.overflow-visible {
  overflow: visible !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

/*
Responsive Visibility
>>------------->
*/
@media (min-width: 576px) {
  .visible-sm {
    visibility: visible !important;
  }

  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 950px) {
  .visible-md {
    visibility: visible !important;
  }

  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .visible-lg {
    visibility: visible !important;
  }

  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1920px) {
  .visible-xl {
    visibility: visible !important;
  }

  .hidden-xl {
    display: none !important;
  }
}
/*
>>================================================================================>
Site Layer
>>================================================================================>
*/
/*
The site layer owns project-specific styling. These files are the expected
editing surface for branding, template chrome, components, sections, and
one-off overrides.
*/
/*
>>================================================================================>
Structure
>>================================================================================>
*/
html {
  overflow-x: clip;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  overflow-x: clip;
  position: relative;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: var(--white);
  transition: opacity var(--motion-duration-lg) var(--motion-ease), visibility var(--motion-duration-lg) var(--motion-ease);
}
body.page-loaded:before {
  opacity: 0;
  visibility: hidden;
}

body::after {
  display: none;
  content: "xs";
}
@media screen and (min-width: 576px) {
  body::after {
    content: "sm";
  }
}
@media screen and (min-width: 950px) {
  body::after {
    content: "md";
  }
}
@media screen and (min-width: 1024px) {
  body::after {
    content: "lg";
  }
}
@media screen and (min-width: 1920px) {
  body::after {
    content: "xl";
  }
}

.container {
  width: 100%;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
main .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: calc(950px - 1px)) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  main .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/*
>>================================================================================>
Typography
>>================================================================================>
*/
/*
Text Utilities
>>------------->
*/
.no-bullets {
  list-style: none;
  padding-left: 0;
}

.small {
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1.2;
}

/*
Global Application
>>------------->
*/
main ul,
main ~ *:not(footer) ul {
  margin-bottom: 0.5em;
}
main li:not(:last-child),
main ~ *:not(footer) li:not(:last-child) {
  margin-bottom: 0.9375rem;
}
main p,
main ~ *:not(footer) p {
  color: var(--text-primary);
}
main p a,
main ~ *:not(footer) p a {
  color: var(--link-color);
  text-decoration: underline;
  transition: color var(--motion-duration-base) var(--motion-ease);
}
main p a:hover,
main p a:focus,
main ~ *:not(footer) p a:hover,
main ~ *:not(footer) p a:focus {
  color: var(--link-color-hover);
}
main p a:visited,
main ~ *:not(footer) p a:visited {
  color: var(--link-color);
}

/*
>>================================================================================>
Font Size Utilities
>>================================================================================>
*/
.fs-120 {
  font-size: 7.5rem !important;
}

.fs-90 {
  font-size: 5.29412rem !important;
}

.fs-64 {
  font-size: 4rem !important;
}

.fs-50 {
  font-size: 3.125rem !important;
}

.fs-48 {
  font-size: 2.875rem !important;
}

.fs-40 {
  font-size: 2.5rem !important;
}

.fs-36 {
  font-size: 2.25rem !important;
}

.fs-30 {
  font-size: 1.875rem !important;
}

.fs-28 {
  font-size: 1.75rem !important;
}

.fs-26 {
  font-size: 1.625rem !important;
}

.fs-25 {
  font-size: 1.5625rem !important;
}

.fs-24 {
  font-size: 1.5rem !important;
}

.fs-22 {
  font-size: 1.375rem !important;
}

.fs-20 {
  font-size: 1.25rem !important;
}

.fs-18 {
  font-size: 1.125rem !important;
}

.fs-16 {
  font-size: 1rem !important;
}

.fs-14 {
  font-size: 0.9em !important;
}

.fs-12 {
  font-size: 0.75em !important;
}

.fs-10 {
  font-size: 0.625em !important;
}

@media (min-width: 576px) {
  .fs-sm-120 {
    font-size: 7.5rem !important;
  }

  .fs-sm-90 {
    font-size: 5.29412rem !important;
  }

  .fs-sm-64 {
    font-size: 4rem !important;
  }

  .fs-sm-50 {
    font-size: 3.125rem !important;
  }

  .fs-sm-48 {
    font-size: 2.875rem !important;
  }

  .fs-sm-40 {
    font-size: 2.5rem !important;
  }

  .fs-sm-36 {
    font-size: 2.25rem !important;
  }

  .fs-sm-30 {
    font-size: 1.875rem !important;
  }

  .fs-sm-28 {
    font-size: 1.75rem !important;
  }

  .fs-sm-26 {
    font-size: 1.625rem !important;
  }

  .fs-sm-25 {
    font-size: 1.5625rem !important;
  }

  .fs-sm-24 {
    font-size: 1.5rem !important;
  }

  .fs-sm-22 {
    font-size: 1.375rem !important;
  }

  .fs-sm-20 {
    font-size: 1.25rem !important;
  }

  .fs-sm-18 {
    font-size: 1.125rem !important;
  }

  .fs-sm-16 {
    font-size: 1rem !important;
  }

  .fs-sm-14 {
    font-size: 0.9em !important;
  }

  .fs-sm-12 {
    font-size: 0.75em !important;
  }

  .fs-sm-10 {
    font-size: 0.625em !important;
  }
}
@media (min-width: 950px) {
  .fs-md-120 {
    font-size: 7.5rem !important;
  }

  .fs-md-90 {
    font-size: 5.29412rem !important;
  }

  .fs-md-64 {
    font-size: 4rem !important;
  }

  .fs-md-50 {
    font-size: 3.125rem !important;
  }

  .fs-md-48 {
    font-size: 2.875rem !important;
  }

  .fs-md-40 {
    font-size: 2.5rem !important;
  }

  .fs-md-36 {
    font-size: 2.25rem !important;
  }

  .fs-md-30 {
    font-size: 1.875rem !important;
  }

  .fs-md-28 {
    font-size: 1.75rem !important;
  }

  .fs-md-26 {
    font-size: 1.625rem !important;
  }

  .fs-md-25 {
    font-size: 1.5625rem !important;
  }

  .fs-md-24 {
    font-size: 1.5rem !important;
  }

  .fs-md-22 {
    font-size: 1.375rem !important;
  }

  .fs-md-20 {
    font-size: 1.25rem !important;
  }

  .fs-md-18 {
    font-size: 1.125rem !important;
  }

  .fs-md-16 {
    font-size: 1rem !important;
  }

  .fs-md-14 {
    font-size: 0.9em !important;
  }

  .fs-md-12 {
    font-size: 0.75em !important;
  }

  .fs-md-10 {
    font-size: 0.625em !important;
  }
}
@media (min-width: 1024px) {
  .fs-lg-120 {
    font-size: 7.5rem !important;
  }

  .fs-lg-90 {
    font-size: 5.29412rem !important;
  }

  .fs-lg-64 {
    font-size: 4rem !important;
  }

  .fs-lg-50 {
    font-size: 3.125rem !important;
  }

  .fs-lg-48 {
    font-size: 2.875rem !important;
  }

  .fs-lg-40 {
    font-size: 2.5rem !important;
  }

  .fs-lg-36 {
    font-size: 2.25rem !important;
  }

  .fs-lg-30 {
    font-size: 1.875rem !important;
  }

  .fs-lg-28 {
    font-size: 1.75rem !important;
  }

  .fs-lg-26 {
    font-size: 1.625rem !important;
  }

  .fs-lg-25 {
    font-size: 1.5625rem !important;
  }

  .fs-lg-24 {
    font-size: 1.5rem !important;
  }

  .fs-lg-22 {
    font-size: 1.375rem !important;
  }

  .fs-lg-20 {
    font-size: 1.25rem !important;
  }

  .fs-lg-18 {
    font-size: 1.125rem !important;
  }

  .fs-lg-16 {
    font-size: 1rem !important;
  }

  .fs-lg-14 {
    font-size: 0.9em !important;
  }

  .fs-lg-12 {
    font-size: 0.75em !important;
  }

  .fs-lg-10 {
    font-size: 0.625em !important;
  }
}
@media (min-width: 1920px) {
  .fs-xl-120 {
    font-size: 7.5rem !important;
  }

  .fs-xl-90 {
    font-size: 5.29412rem !important;
  }

  .fs-xl-64 {
    font-size: 4rem !important;
  }

  .fs-xl-50 {
    font-size: 3.125rem !important;
  }

  .fs-xl-48 {
    font-size: 2.875rem !important;
  }

  .fs-xl-40 {
    font-size: 2.5rem !important;
  }

  .fs-xl-36 {
    font-size: 2.25rem !important;
  }

  .fs-xl-30 {
    font-size: 1.875rem !important;
  }

  .fs-xl-28 {
    font-size: 1.75rem !important;
  }

  .fs-xl-26 {
    font-size: 1.625rem !important;
  }

  .fs-xl-25 {
    font-size: 1.5625rem !important;
  }

  .fs-xl-24 {
    font-size: 1.5rem !important;
  }

  .fs-xl-22 {
    font-size: 1.375rem !important;
  }

  .fs-xl-20 {
    font-size: 1.25rem !important;
  }

  .fs-xl-18 {
    font-size: 1.125rem !important;
  }

  .fs-xl-16 {
    font-size: 1rem !important;
  }

  .fs-xl-14 {
    font-size: 0.9em !important;
  }

  .fs-xl-12 {
    font-size: 0.75em !important;
  }

  .fs-xl-10 {
    font-size: 0.625em !important;
  }
}
/*
Selection
>>------------->
*/
::-moz-selection {
  background: var(--blue);
  color: var(--white);
}
::selection {
  background: var(--blue);
  color: var(--white);
}

/*
>>================================================================================>
Buttons
>>================================================================================>
*/
.btn {
  /*
  All Resolutions
  >>------------->
  */
  color: var(--btn-text) !important;
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  background-color: var(--btn-bg);
  display: inline-flex;
  align-items: center;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-radius);
  border: 2px solid var(--btn-border);
  text-decoration: none !important;
  transition: all var(--motion-duration-fast) var(--motion-ease);
  gap: 0.625rem;
  /*
  Outline variant
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.btn:hover, .btn:focus-visible {
  text-decoration: none;
  background-color: var(--btn-bg-hover);
  border-color: var(--btn-bg-hover);
}
.btn.btn-outline {
  color: var(--btn-outline-text) !important;
  background-color: var(--btn-outline-bg);
}
.btn.btn-outline path {
  fill: var(--btn-outline-text);
}
.btn.btn-outline:hover, .btn.btn-outline:focus-visible {
  background-color: var(--btn-outline-hover-bg);
  border-color: var(--btn-outline-hover-border);
  color: var(--btn-outline-hover-text) !important;
}
.btn.btn-outline:hover path, .btn.btn-outline:focus-visible path {
  fill: var(--btn-outline-hover-text) !important;
}
.btn[aria-selected=true] {
  pointer-events: none;
  text-decoration: none;
  background-color: var(--btn-bg);
  border-color: var(--btn-border);
  color: var(--btn-text) !important;
}
@media screen and (min-width: 950px) {
  .btn {
    font-size: 1rem;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  .btn {
    font-size: 0.8125rem;
  }
}

/*
>>================================================================================>
Forms
>>================================================================================>
*/
/*
All Resolutions
>>------------->
*/
input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  background: var(--white);
  position: relative;
  cursor: pointer;
  vertical-align: middle;
}

input[type=radio]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}

input[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border: 1px solid rgba(22, 65, 113, 0.5);
  border-radius: 0;
  background: var(--white);
  position: relative;
  cursor: pointer;
  vertical-align: middle;
}

input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 2px;
  transform: translate(-50%, -50%) scale(0);
}

input[type=checkbox]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

input[type=text][data-com-onepassword-filled=light],
input[type=email][data-com-onepassword-filled=light],
input[type=password][data-com-onepassword-filled=light],
input[type=search][data-com-onepassword-filled=light],
input[type=tel][data-com-onepassword-filled=light],
textarea[data-com-onepassword-filled=light] {
  background-color: transparent !important;
}

.error {
  border-color: red !important;
}

/*
Site Form Fields
>>------------->
*/
.stay-informed-form {
  max-width: 491px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5625rem;
}

.form-checkbox-field {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.form-checkbox-field label {
  font-size: 13px;
  line-height: 140%;
  color: var(--black);
}
.form-checkbox-field a {
  color: var(--blue);
  text-decoration: underline;
}

.form-field-row {
  display: flex;
  gap: 18px;
  margin-bottom: 1.5625rem;
}
.form-field-row .form-field {
  margin-bottom: 0;
}
.form-field-row .form-field--state {
  flex: 0 0 257px;
}
.form-field-row .form-field--zip {
  flex: 1;
}
@media (max-width: calc(950px - 1px)) {
  .form-field-row {
    flex-direction: column;
    gap: 0;
  }
  .form-field-row .form-field {
    margin-bottom: 1.5625rem;
  }
  .form-field-row .form-field--state,
.form-field-row .form-field--zip {
    flex: none;
  }
}

.form-label {
  display: block;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.3125rem;
}

.form-input {
  display: block;
  width: 100%;
  height: 35px;
  padding: 4px 8px;
  background: var(--white);
  border: 1px solid rgba(22, 65, 113, 0.5);
  border-radius: 0;
  color: var(--blue);
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color var(--motion-duration-base) var(--motion-ease);
}
.form-input:focus {
  outline: none;
  border-color: var(--blue);
}
.form-input.is-invalid {
  border-color: #c0392b;
}

.form-error {
  display: block;
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 4px;
}

.stay-informed-thanks {
  padding: 30px 0;
}

.form-textarea {
  height: auto;
  resize: vertical;
}

.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--blue);
  pointer-events: none;
}

.form-select {
  cursor: pointer;
  padding-right: 30px;
}

/*
Desktop
>>------------->
*/
/*
Mobile
>>------------->
*/
/*
>>================================================================================>
Site Header
>>================================================================================>
*/
#site-header {
  /*
  All Resolutions
  >>------------->
  */
  position: sticky;
  top: 29px;
  z-index: 1000;
  height: 50px;
  background: var(--primary-green);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow var(--motion-duration-base) var(--motion-ease);
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#site-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}
#site-header .container {
  height: 100%;
}
#site-header .site-logo {
  background: var(--white);
  align-self: stretch;
  padding-right: 60px;
  flex-shrink: 0;
  position: relative;
}
#site-header .site-logo::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 100vw;
  background: var(--white);
  pointer-events: none;
}
#site-header .site-logo img {
  height: 39px;
  width: auto;
}
#site-header .site-nav-toggle {
  display: none;
}
#site-header .primary-nav {
  width: 100%;
  height: 100%;
}
#site-header .primary-nav .main-menu {
  display: flex;
  height: 100%;
  align-items: stretch;
  justify-content: flex-end;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#site-header .primary-nav .main-menu-item {
  display: flex;
  align-items: center;
  position: relative;
}
#site-header .primary-nav .main-menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, var(--brand-amber) 50.48%, var(--primary-green) 100%);
  opacity: 0;
  transition: opacity var(--motion-duration-base) var(--motion-ease);
}
#site-header .primary-nav .main-menu-item:hover::after, #site-header .primary-nav .main-menu-item:focus-within::after {
  opacity: 1;
}
#site-header .primary-nav .main-menu-link {
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
#site-header .primary-nav .get-a-demo::after,
#site-header .primary-nav .buy::after {
  display: none;
}
#site-header .primary-nav .get-a-demo .main-menu-link,
#site-header .primary-nav .buy .main-menu-link {
  border: 2px solid var(--white);
  border-radius: 25px;
  padding: 2px 13px;
  line-height: 20px;
  transition: background-color var(--motion-duration-base) var(--motion-ease), filter var(--motion-duration-base) var(--motion-ease);
}
#site-header .primary-nav .get-a-demo .main-menu-link:hover,
#site-header .primary-nav .get-a-demo .main-menu-link:focus-visible {
  background-color: rgba(255, 255, 255, 0.14);
}
#site-header .primary-nav .buy .main-menu-link {
  background: var(--brand-orange);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
}
#site-header .primary-nav .buy .main-menu-link:hover, #site-header .primary-nav .buy .main-menu-link:focus-visible {
  filter: brightness(1.12);
}
@media screen and (min-width: 950px) {
  #site-header .site-nav-toggle {
    display: none;
  }
}
@media screen and (min-width: 950px) and (max-width: 1280px) {
  #site-header .site-logo {
    padding-right: 15px;
  }
  #site-header .site-logo img {
    height: 25px;
  }
  #site-header .primary-nav .main-menu {
    padding-left: 10px;
    gap: 12px;
  }
  #site-header .primary-nav .main-menu-link {
    font-size: 14px;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  #site-header .site-logo {
    padding-right: 20px;
  }
  #site-header .site-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  #site-header .site-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--motion-duration-base) var(--motion-ease), opacity var(--motion-duration-base) var(--motion-ease);
  }
  #site-header .site-nav-toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #site-header .site-nav-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  #site-header .site-nav-toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #site-header .primary-nav .main-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 30px;
  }
  #site-header .primary-nav .main-menu .main-menu-link {
    display: block;
    padding: 12px 0;
  }
  #site-header .primary-nav .main-menu .get-a-demo .main-menu-link,
#site-header .primary-nav .main-menu .buy .main-menu-link {
    display: inline-block;
    padding: 2px 10px;
    margin-top: 16px;
  }
}

body.modal-active #site-header {
  position: fixed;
  top: 29px;
  left: 0;
  right: 0;
  z-index: 1002;
}

body.modal-active #main {
  margin-top: 79px;
}

#site-nav {
  display: flex;
  align-items: stretch;
  flex: 1;
  height: 100%;
}
@media screen and (max-width: calc(950px - 1px)) {
  #site-nav {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: auto;
    background: var(--primary-green);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--motion-duration-base) var(--motion-ease);
  }
}

/*
>>================================================================================>
Site Footer
>>================================================================================>
*/
#site-footer {
  background: var(--white);
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
}
#site-footer .container {
  padding-top: 44px;
  padding-bottom: 26px;
}
#site-footer .footer-nav .main-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
#site-footer .footer-nav .main-menu-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#site-footer .footer-nav .main-menu-link:hover, #site-footer .footer-nav .main-menu-link:focus-visible {
  text-decoration: none;
}
#site-footer .footer-nav .main-menu-item + .main-menu-item::before {
  content: "|";
  padding: 0 14px;
  color: var(--black);
  font-size: 14px;
  line-height: 130%;
}
#site-footer p {
  margin: 22px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: var(--black);
}
@media screen and (max-width: calc(950px - 1px)) {
  #site-footer .container {
    padding-top: 30px;
    padding-bottom: 24px;
  }
  #site-footer .footer-nav .main-menu {
    row-gap: 8px;
  }
}
@media screen and (max-width: 660px) {
  #site-footer .footer-nav .main-menu {
    flex-direction: column;
    align-items: flex-start;
  }
  #site-footer .footer-nav .main-menu-item + .main-menu-item::before {
    display: none;
  }
}

/*
>>================================================================================>
Utility Bar
>>================================================================================>
*/
#utility-bar {
  position: sticky;
  top: 0;
  z-index: 1001;
  height: 29px;
  display: flex;
  align-items: center;
}
#utility-bar a {
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--black);
  text-decoration: underline;
}
#utility-bar a:hover, #utility-bar a:focus-visible {
  text-decoration: none;
}
#utility-bar nav ul {
  display: flex;
  align-items: center;
  gap: 46px;
}
@media screen and (max-width: calc(576px - 1px)) {
  #utility-bar {
    height: auto;
    min-height: 29px;
  }
  #utility-bar li {
    text-align: center;
  }
  #utility-bar .container {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  #utility-bar nav ul {
    gap: 20px;
  }
}

body.modal-active #utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1003;
}

/*
Component and section partials are globbed so new files are picked up
automatically by the Gulp Sass pipeline.
*/
/*
>>================================================================================>
Cookiebot
>>================================================================================>
*/
#CybotCookiebotDialog,
#CookiebotWidget {
  --cookiebot-amdi-button: #4f974d;
  --cookiebot-amdi-decline-button: #e05a27;
}

#CybotCookiebotDialog #CybotCookiebotDialogBodyButtonAccept,
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonAccept,
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection,
#CybotCookiebotDialog #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:not(:first-child):not(#CybotCookiebotDialogBodyButtonDecline):not([aria-label*=Deny]) {
  background-color: var(--cookiebot-amdi-button) !important;
  border-color: var(--cookiebot-amdi-button) !important;
  color: var(--white) !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonCustomize {
  border-color: var(--cookiebot-amdi-button) !important;
  color: var(--cookiebot-amdi-button) !important;
}
#CybotCookiebotDialog input:checked + .CybotCookiebotDialogBodyLevelButtonSlider,
#CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonSliderWrapper input:checked + .CybotCookiebotDialogBodyLevelButtonSlider {
  background-color: var(--cookiebot-amdi-button) !important;
}
#CybotCookiebotDialog .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
  border-color: var(--cookiebot-amdi-button) !important;
  color: var(--cookiebot-amdi-button) !important;
}
#CybotCookiebotDialog [style*="background-color: #1032CF"],
#CybotCookiebotDialog [style*="background-color:#1032CF"],
#CybotCookiebotDialog [style*="background: #1032CF"],
#CybotCookiebotDialog [style*="background:#1032CF"],
#CybotCookiebotDialog [style*="background-color: #1032cf"],
#CybotCookiebotDialog [style*="background-color:#1032cf"],
#CybotCookiebotDialog [style*="background: #1032cf"],
#CybotCookiebotDialog [style*="background:#1032cf"] {
  background-color: var(--cookiebot-amdi-button) !important;
}
#CybotCookiebotDialog [style*="border-color: #1032CF"],
#CybotCookiebotDialog [style*="border-color:#1032CF"],
#CybotCookiebotDialog [style*="border-color: #1032cf"],
#CybotCookiebotDialog [style*="border-color:#1032cf"] {
  border-color: var(--cookiebot-amdi-button) !important;
}
#CybotCookiebotDialog [style*="color: #1032CF"],
#CybotCookiebotDialog [style*="color:#1032CF"],
#CybotCookiebotDialog [style*="color: #1032cf"],
#CybotCookiebotDialog [style*="color:#1032cf"] {
  color: var(--cookiebot-amdi-button) !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyButtonDecline,
#CybotCookiebotDialog #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonDecline.CybotCookiebotDialogBodyButton,
#CybotCookiebotDialog #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:first-child,
#CybotCookiebotDialog #CybotCookiebotDialogFooter button:first-child,
#CybotCookiebotDialog #CybotCookiebotDialogFooter button[aria-label*=Deny] {
  background-color: var(--cookiebot-amdi-decline-button) !important;
  border-color: var(--cookiebot-amdi-decline-button) !important;
  color: var(--white) !important;
}

#CookiebotWidget #CookiebotWidget-btn-change,
#CookiebotWidget .CookiebotWidget-btn-change,
#CookiebotWidget .CookiebotWidget-button-primary,
#CookiebotWidget button[id*=change] {
  background-color: var(--cookiebot-amdi-button) !important;
  border-color: var(--cookiebot-amdi-button) !important;
  color: var(--white) !important;
}
#CookiebotWidget #CookiebotWidget-btn-withdraw,
#CookiebotWidget #CookiebotWidget-close,
#CookiebotWidget .CookiebotWidget-btn-withdraw,
#CookiebotWidget .CookiebotWidget-button-secondary,
#CookiebotWidget button[id*=withdraw],
#CookiebotWidget button[id*=close] {
  border-color: var(--cookiebot-amdi-button) !important;
  color: var(--cookiebot-amdi-button) !important;
}
#CookiebotWidget [style*="background-color: #1032CF"],
#CookiebotWidget [style*="background-color:#1032CF"],
#CookiebotWidget [style*="background: #1032CF"],
#CookiebotWidget [style*="background:#1032CF"],
#CookiebotWidget [style*="background-color: #1032cf"],
#CookiebotWidget [style*="background-color:#1032cf"],
#CookiebotWidget [style*="background: #1032cf"],
#CookiebotWidget [style*="background:#1032cf"] {
  background-color: var(--cookiebot-amdi-button) !important;
}
#CookiebotWidget [style*="border-color: #1032CF"],
#CookiebotWidget [style*="border-color:#1032CF"],
#CookiebotWidget [style*="border-color: #1032cf"],
#CookiebotWidget [style*="border-color:#1032cf"] {
  border-color: var(--cookiebot-amdi-button) !important;
}
#CookiebotWidget [style*="color: #1032CF"],
#CookiebotWidget [style*="color:#1032CF"],
#CookiebotWidget [style*="color: #1032cf"],
#CookiebotWidget [style*="color:#1032cf"] {
  color: var(--cookiebot-amdi-button) !important;
}
#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-consents-list li.CookiebotWidget-approved svg,
#CookiebotWidget .CookiebotWidget-consent-details button,
#CookiebotWidget .CookiebotWidget-main-logo svg circle {
  fill: var(--cookiebot-amdi-button) !important;
}
#CookiebotWidget .CookiebotWidget-consent-details button {
  color: var(--cookiebot-amdi-button) !important;
}

/*
>>================================================================================>
Modal Windows
>>================================================================================>
*/
body {
  /*
  All Resolutions
  >>------------->
  */
}
body.modal-active {
  overflow-y: hidden;
}

.modal {
  /*
  All Resolutions
  >>------------->
  */
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: visibility 300ms ease-in-out, opacity 300ms ease-in-out;
  background-color: rgba(0, 0, 0, 0.6);
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.modal.active {
  pointer-events: auto;
}
.modal-overflow .modal {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.modal-overflow .modal .modal-window {
  top: 90px;
  transform: translateX(-50%) !important;
  margin-bottom: 20px;
}

.modal .modal-window {
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 720px;
  overflow: hidden;
  transition: margin 500ms ease, opacity 300ms ease-in-out, visibility 300ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  margin-top: -50px;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}
.modal.active .modal-window {
  margin: 0;
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
}
.modal .modal-content {
  background-color: var(--white);
}
.modal .close-x {
  position: absolute;
  right: 20px;
  top: 20px;
  margin-left: auto;
  width: 70px;
  height: 70px;
}
.modal .close-x circle {
  transition: all 300ms ease;
}
.modal .close-x:hover circle {
  fill: var(--dark-blue);
}
@media screen and (min-width: 950px) {
  .modal .modal-content {
    padding: 30px;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  .modal .modal-content {
    padding: 20px;
  }
  .modal .close-x {
    width: 40px;
    height: 40px;
  }
}

/*
>>================================================================================>
Section Label
>>================================================================================>
*/
.section-label {
  /*
  All Resolutions
  >>------------->
  */
  display: inline-flex;
  align-items: center;
  position: relative;
  filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.25));
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.section-label::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}
.section-label .section-label-bar,
.section-label .section-label-text {
  position: relative;
  z-index: 1;
}
.section-label .section-label-bar {
  display: block;
  width: 11px;
  height: 30px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #e05a27 0%, #fbaf44 48.077%, #2c9942 100%);
  border-radius: 2px;
}
.section-label .section-label-text {
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  padding: 0 20px 0 15px;
}
/*
>>================================================================================>
Skip Link
>>================================================================================>
*/
.skip-link {
  /*
  All Resolutions
  >>------------->
  */
  background-color: var(--blue);
  color: #fff;
  font-weight: 700;
  left: 50%;
  padding: 10px;
  position: fixed;
  transform: translate(-50%, -100%);
  transition: all 0.3s;
  z-index: 1002;
  opacity: 0;
  top: 0;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
body:not(.page-loaded) .skip-link {
  display: none;
}

.skip-link:focus {
  transform: translate(-50%, 0%);
  opacity: 100;
}
/*
>>================================================================================>
Stay Informed
>>================================================================================>
*/
#stay-informed {
  /*
  All Resolutions
  >>------------->
  */
  background: linear-gradient(90deg, #000 2.404%, var(--blue) 51.923%, #000 100%);
  height: 75px;
  display: flex;
  align-items: center;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.stay-informed-btn {
  /*
  All Resolutions
  >>------------->
  */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 20px;
  background: var(--brand-orange);
  border: 2px solid var(--white);
  border-radius: 30px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
/*
>>================================================================================>
Time of Care™ Callout
>>================================================================================>
*/
.toc-callout {
  /*
  All Resolutions
  >>------------->
  */
  background: url("../img/toc-callout@2x.png") center center/cover no-repeat;
  border-radius: 15px;
  padding: 14px 20px;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.toc-callout p {
  color: var(--white);
  font-size: 16px;
  margin: 0;
}
.toc-callout p strong {
  font-weight: 700;
}
.toc-callout p em {
  font-style: italic;
  font-weight: 400;
}
.toc-callout.toc-callout-center {
  text-align: center;
}
/*
>>================================================================================>
About — Leadership Team + Bio Modals
>>================================================================================>
*/
#leadership-team {
  /*
  All Resolutions
  >>------------->
  */
  background: linear-gradient(90deg, #000 0%, var(--blue) 50%, #000 100%);
  /*
  Mobile
  >>------------->
  */
}
#leadership-team .leader-card {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  transition: opacity var(--motion-duration-base) var(--motion-ease);
}
#leadership-team .leader-card:hover, #leadership-team .leader-card:focus-visible {
  opacity: 0.9;
}
#leadership-team .leader-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 251px;
  height: 251px;
  border: 6px solid;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
#leadership-team .leader-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 15%;
     object-position: center 15%;
  background: #d9d9d9;
}
#leadership-team .ring-orange {
  border-color: var(--brand-orange);
}
#leadership-team .ring-green {
  border-color: var(--primary-green);
}
#leadership-team .ring-amber {
  border-color: var(--brand-amber);
}
#leadership-team .leader-name {
  max-width: 258px;
  text-align: center;
  color: var(--white);
}
#leadership-team .leader-name-text {
  display: block;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 30px;
}
#leadership-team .leader-title {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 30px;
}
/*
Bio modal
>>------------->
*/
.bio-modal .modal-content {
  padding: 40px;
}
.bio-modal .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  transition: background var(--motion-duration-base) var(--motion-ease);
}
.bio-modal .modal-close:hover, .bio-modal .modal-close:focus-visible {
  background: var(--primary-green);
}
.bio-modal .bio-modal-title {
  margin: 0;
  padding-right: 60px;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  color: var(--black);
}
.bio-modal .bio-modal-title strong {
  font-weight: 700;
}
.bio-modal .bio-modal-bar {
  display: block;
  width: 200px;
  height: 7px;
  background: var(--primary-green);
  margin: 18px 0 22px;
}
.bio-modal p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 160%;
  color: var(--black);
}
.bio-modal p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: calc(950px - 1px)) {
  .bio-modal .modal-content {
    padding: 25px 20px;
  }
}

/*
>>================================================================================>
About — Our Mission Cards
>>================================================================================>
*/
.mission-card {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  max-width: 323px;
  margin: 0 auto;
  /*
  Accent variants
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.mission-card .mission-card-bar {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 8px;
}
.mission-card .mission-card-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.mission-card .mission-card-body {
  margin-top: -44px;
  padding: 70px 12px 30px;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(180deg, #fff 0%, #e7e7e7 100%);
  min-height: 320px;
}
.mission-card .mission-card-body h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 100%;
}
.mission-card .mission-card-body p {
  margin: 0 0 10px;
  font-size: 16px;
  text-align: center;
  line-height: 19px;
  color: var(--black);
}
.mission-card .mission-card-body p:last-child {
  margin-bottom: 0;
}
.mission-card.mission-card-orange .mission-card-bar {
  background: var(--brand-orange);
}
.mission-card.mission-card-orange h3 {
  color: var(--brand-orange);
}
.mission-card.mission-card-green .mission-card-bar {
  background: var(--primary-green);
}
.mission-card.mission-card-green h3 {
  color: var(--primary-green);
}
.mission-card.mission-card-amber .mission-card-bar {
  background: var(--brand-amber);
}
.mission-card.mission-card-amber h3 {
  color: var(--brand-amber);
}
.mission-card.mission-card-blue .mission-card-bar {
  background: var(--blue);
}
.mission-card.mission-card-blue h3 {
  color: var(--blue);
}
@media screen and (max-width: calc(950px - 1px)) {
  .mission-card .mission-card-body {
    min-height: 0;
  }
}

/*
>>================================================================================>
About — News, Events, Media CTA
>>================================================================================>
*/
#about-news {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  overflow: hidden;
  /*
  Mobile
  >>------------->
  */
}
#about-news .news-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about-news .container {
  position: relative;
}
#about-news .news-list {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 1;
  transition: opacity var(--motion-duration-base) var(--motion-ease);
}
#about-news .news-list.is-fading {
  opacity: 0;
}
#about-news .news-item[hidden] {
  display: none;
}
#about-news .news-date {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
#about-news .news-title {
  margin: 6px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  color: var(--blue);
}
#about-news .news-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-orange);
  text-decoration: none;
}
#about-news .news-link:hover, #about-news .news-link:focus-visible {
  text-decoration: underline;
}
#about-news .news-arrows {
  display: flex;
  gap: 18px;
}
#about-news .news-arrows .news-arrow {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 37px;
  font-weight: 400;
  line-height: 100%;
  color: var(--brand-orange);
  text-decoration: none;
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  transition: color var(--motion-duration-base) var(--motion-ease), opacity var(--motion-duration-base) var(--motion-ease);
}
#about-news .news-arrows .news-arrow:hover, #about-news .news-arrows .news-arrow:focus-visible {
  color: var(--primary-green);
}
#about-news .news-arrows .news-arrow:disabled {
  cursor: default;
  opacity: 0.35;
  color: var(--brand-orange);
}
@media screen and (max-width: calc(950px - 1px)) {
  #about-news .news-bg {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: initial;
       object-fit: initial;
  }
}
@media (prefers-reduced-motion: reduce) {
  #about-news .news-list {
    transition: none;
  }
}

#about-events {
  /*
  All Resolutions
  >>------------->
  */
  background: linear-gradient(90deg, #000 2.4%, var(--blue) 51.92%, #000 100%);
}
#about-events .events-grid {
  margin: 50px auto 0;
  max-width: 1140px;
  display: flex;
  flex-wrap: wrap;
  gap: 45px 64px;
}

.event-card {
  /*
  All Resolutions
  >>------------->
  */
  width: 336px;
  flex-shrink: 0;
}
.event-card .event-date {
  position: relative;
  z-index: 1;
  margin-bottom: -15px;
  display: flex;
  justify-content: center;
  filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.25));
}
.event-card .event-date span {
  display: inline-block;
  background: var(--white);
  clip-path: polygon(9px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  padding: 5px 22px;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  white-space: nowrap;
}
.event-card .event-body {
  position: relative;
  height: 182px;
  border-radius: 15px;
  overflow: hidden;
}
.event-card .event-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-card .event-overlay {
  position: absolute;
  inset: 0;
}
.event-card.event-green .event-overlay {
  background: rgba(44, 153, 66, 0.85);
}
.event-card.event-orange .event-overlay {
  background: rgba(224, 90, 39, 0.85);
}
.event-card .event-info {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}
.event-card .event-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 100%;
  color: var(--white);
}
.event-card .event-location {
  margin: 0;
  font-size: 16px;
  text-align: center;
  line-height: 130%;
  color: var(--white);
}
.event-card .event-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.event-card .event-link:hover, .event-card .event-link:focus-visible {
  text-decoration: underline;
}

#media-cta {
  /*
  All Resolutions
  >>------------->
  */
  background: linear-gradient(90deg, #000 2.4%, var(--blue) 51.92%, #000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  /*
  Mobile
  >>------------->
  */
}
#media-cta .container {
  gap: 25px;
}
#media-cta p {
  margin: 0;
}
@media screen and (max-width: calc(950px - 1px)) {
  #media-cta .container {
    flex-direction: column;
    gap: 15px;
  }
}

/*
>>================================================================================>
About — Vision Hero + About Band
>>================================================================================>
*/
#about-vision {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  height: 572px;
  overflow: hidden;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#about-vision img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
}
#about-vision .container {
  position: relative;
  padding-top: 75px;
}
#about-vision .about-vision-statement {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  max-width: 900px;
  margin-top: 20px;
}
@media screen and (max-width: calc(950px - 1px)) {
  #about-vision {
    height: 380px;
  }
  #about-vision .container {
    padding-top: 50px;
  }
}

#about-band {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  margin-top: -225px;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#about-band .about-band-arc {
  display: block;
  width: 100%;
  height: 108px;
}
#about-band .about-band-body {
  background: linear-gradient(90deg, #000 0%, var(--blue) 50%, #000 100%);
  margin-top: -1px;
}
#about-band .mw-1142 {
  max-width: 1142px;
}
#about-band .about-band-body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}
@media screen and (max-width: calc(950px - 1px)) {
  #about-band {
    margin-top: -80px;
  }
  #about-band .about-band-arc {
    height: 40px;
  }
}

/*
>>================================================================================>
AMDI Fast PCR Hero
>>================================================================================>
*/
#amdi-fast-pcr-hero {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  overflow: hidden;
  /*
  XL and above — image right-aligned
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#amdi-fast-pcr-hero picture {
  position: absolute;
  inset: 0;
}
#amdi-fast-pcr-hero picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#amdi-fast-pcr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.87) 0%, rgba(255, 255, 255, 0) 56%);
  z-index: 1;
  pointer-events: none;
}
#amdi-fast-pcr-hero .amdi-fast-pcr-hero-logo {
  margin-top: 25px;
}
#amdi-fast-pcr-hero .amdi-fast-pcr-hero-logo img {
  width: 180px;
  height: auto;
}
@media screen and (min-width: 1920px) {
  #amdi-fast-pcr-hero picture img {
    -o-object-position: right top;
       object-position: right top;
  }
}
@media screen and (min-width: 950px) {
  #amdi-fast-pcr-hero picture img {
    -o-object-position: center top;
       object-position: center top;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  #amdi-fast-pcr-hero {
    min-height: 700px;
    height: 100vw;
  }
  #amdi-fast-pcr-hero picture img {
    -o-object-position: bottom center;
       object-position: bottom center;
  }
  #amdi-fast-pcr-hero::before {
    background: linear-gradient(180deg, #eaeef5 0%, rgba(234, 238, 245, 0) 50%);
  }
}

/*
>>================================================================================>
AMDI Fast PCR Intro
>>================================================================================>
*/
#amdi-fast-pcr-intro {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #031728 0%, #0a3d6e 100%);
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.amdi-intro-arc {
  /*
  All Resolutions
  >>------------->
  */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  transform: translateY(-100%);
  display: block;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.amdi-intro-arc path {
  fill: #031728;
}
@media screen and (min-width: 950px) {
  .amdi-intro-arc {
    z-index: -1;
    top: 30px;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  .amdi-intro-arc {
    height: 50px;
  }
}

/*
>>================================================================================>
Analytical Sensitivity
>>================================================================================>
*/
#analytical-sensitivity {
  /*
  All Resolutions
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.analytical-sensitivity-cta {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  display: flex;
  align-items: center;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (max-width: calc(950px - 1px)) {
  .analytical-sensitivity-cta {
    flex-direction: column;
    align-items: center;
  }
}

/*
Analyte Chart Table
>>------------->
*/
.analyte-chart {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  border: 2px solid var(--white);
}
.analyte-chart thead tr {
  background: var(--blue);
}
.analyte-chart thead tr th {
  color: var(--white);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  border: 2px solid var(--white);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.15);
}
.analyte-chart thead tr th:not(:first-child) {
  text-align: center;
}
.analyte-chart thead tr th:first-child {
  width: 25%;
}
.analyte-chart thead tr th:last-child {
  width: 35%;
}
.analyte-chart tbody tr {
  background: rgba(224, 90, 39, 0.1);
}
.analyte-chart tbody tr td {
  color: var(--blue);
  padding: 14px 16px;
  vertical-align: middle;
  border: 2px solid var(--white);
}
.analyte-chart tbody tr td:not(:first-child) {
  text-align: center;
}
@media screen and (max-width: calc(950px - 1px)) {
  .analyte-chart tbody tr td {
    padding: 14px 10px;
  }
}

.analytical-sensitivity-cta-img {
  /*
  All Resolutions
  >>------------->
  */
  display: block;
  width: 180px;
  height: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (min-width: 950px) {
  .analytical-sensitivity-cta-img {
    top: 10px;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  .analytical-sensitivity-cta-img {
    width: 160px;
  }
}

.analytical-sensitivity-cta-card {
  /*
  All Resolutions
  >>------------->
  */
  background-color: rgba(44, 153, 66, 0.8);
  background-image: url("../img/analytical-sensitivity-cta-card@2x.png");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  padding: 25px 25px 25px 40px;
  margin-left: -20px;
  position: relative;
  z-index: 0;
  flex: 1;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (max-width: calc(950px - 1px)) {
  .analytical-sensitivity-cta-card {
    margin-left: 0;
    margin-top: -55px;
    padding-top: 65px;
    width: 100%;
  }
}

/*
>>================================================================================>
Clinical Confidence
>>================================================================================>
*/
#clinical-confidence {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  overflow: hidden;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (max-width: calc(950px - 1px)) {
  #clinical-confidence {
    min-height: auto;
    display: block;
    background: var(--white);
  }
}

/*
>>================================================================================>
Clinical Decision
>>================================================================================>
*/
#clinical-decision {
  /*
  All Resolutions
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#clinical-decision img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 950px) {
  #clinical-decision img {
    width: 330px;
  }
}
/*
>>================================================================================>
Clinical Evidence
>>================================================================================>
*/
#clinical-evidence {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  background: linear-gradient(180deg, #031728 0%, #0a3d6e 100%);
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.clinical-evidence-arc {
  /*
  All Resolutions
  >>------------->
  */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  transform: translateY(-100%);
  display: block;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.clinical-evidence-arc path {
  fill: #031728;
}
@media screen and (max-width: calc(950px - 1px)) {
  .clinical-evidence-arc {
    height: 50px;
  }
}

/*
>>================================================================================>
Clinical Study
>>================================================================================>
*/
#clinical-study {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (max-width: calc(950px - 1px)) {
  #clinical-study {
    min-height: auto;
    display: block;
    background: var(--white);
  }
}

/*
>>================================================================================>
Connected Workflow
>>================================================================================>
*/
#connected-workflow {
  /*
  All Resolutions
  >>------------->
  */
  background: linear-gradient(90deg, #000 0%, #164171 50%, #000 100%);
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.workflow-card-circle {
  /*
  All Resolutions
  >>------------->
  */
  width: min(329px, 100%);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (min-width: 1024px) {
  .workflow-card-circle {
    align-items: flex-start;
    padding-top: 15%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .workflow-card-circle {
    padding-top: 5%;
  }
}
.workflow-card-content {
  padding: 25px 40px;
  text-align: center;
}

.workflow-card:nth-child(1) .workflow-card-circle {
  background-color: var(--brand-orange);
  background-image: url("../img/amdi-fast-pcr-workflow-1@2x.png");
}

.workflow-card:nth-child(2) .workflow-card-circle {
  background-color: var(--primary-green);
  background-image: url("../img/amdi-fast-pcr-workflow-2@2x.png");
}

.workflow-card:nth-child(3) .workflow-card-circle {
  background-color: var(--brand-orange);
  background-image: url("../img/amdi-fast-pcr-workflow-3@2x.png");
}

.workflow-card:nth-child(4) .workflow-card-circle {
  background-color: var(--primary-green);
  background-image: url("../img/amdi-fast-pcr-workflow-4@2x.png");
}

/*
>>================================================================================>
Economical Value
>>================================================================================>
*/
#economical-value {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (max-width: calc(950px - 1px)) {
  #economical-value {
    min-height: auto;
    display: block;
    background: var(--white);
  }
}

/*
>>================================================================================>
404 Error Page
>>================================================================================>
*/
#error-404 {
  /*
  All Resolutions
  >>------------->
  */
  display: flex;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 3.75rem 0;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.error-404-code {
  display: block;
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 1;
}

.error-404-links {
  display: flex;
  justify-content: center;
}

.error-404-nav .main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.error-404-nav .main-menu-item {
  display: flex;
}
.error-404-nav .main-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 25px;
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--white) !important;
  background: linear-gradient(90deg, #000 0%, var(--blue) 50%, #000 100%);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  min-height: 38px;
  min-width: 190px;
  padding: 8px 20px;
  transition: opacity var(--motion-duration-base) var(--motion-ease);
}
.error-404-nav .main-menu-link:hover, .error-404-nav .main-menu-link:focus-visible {
  opacity: 0.85;
  text-decoration: none;
}
.error-404-nav .get-a-demo .main-menu-link,
.error-404-nav .buy .main-menu-link {
  position: relative;
  background: var(--brand-orange);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  filter: none;
  will-change: opacity;
}
.error-404-nav .get-a-demo .main-menu-link::before,
.error-404-nav .buy .main-menu-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--white);
  border-radius: 30px;
  background: var(--brand-orange);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  transform: translateZ(0);
}
@media screen and (max-width: calc(950px - 1px)) {
  .error-404-nav .main-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .error-404-nav .main-menu-link {
    width: 100%;
  }
}

/*
>>================================================================================>
Financial Value CTA
>>================================================================================>
*/
#financial-value-cta {
  /*
  All Resolutions
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.financial-value-cta-inner {
  /*
  All Resolutions
  >>------------->
  */
  display: flex;
  align-items: center;
  gap: 0;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (max-width: calc(950px - 1px)) {
  .financial-value-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

.financial-value-cta-device {
  /*
  All Resolutions
  >>------------->
  */
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.financial-value-cta-device img {
  display: block;
  width: 360px;
  height: auto;
  margin-left: auto;
}
@media screen and (max-width: calc(950px - 1px)) {
  .financial-value-cta-device img {
    width: 220px;
    margin: 0 auto;
  }
}

.financial-value-cta-card {
  /*
  All Resolutions
  >>------------->
  */
  background-color: rgba(22, 65, 113, 0.82);
  background-image: url("../img/financial-value-cta-card-desktop@2x.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  padding: 30px 35px;
  margin-left: -20px;
  flex: 1;
  position: relative;
  z-index: 0;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.financial-value-cta-card ul {
  padding-left: 20px;
  list-style: disc;
}
@media screen and (max-width: calc(950px - 1px)) {
  .financial-value-cta-card {
    background-image: url("../img/financial-value-cta-card-mobile@2x.jpg");
    margin-left: 0;
    margin-top: -80px;
    padding-top: 100px;
    border-radius: 15px;
  }
}

/*
>>================================================================================>
Standard Site Pages
>>================================================================================>
*/
.standard-site-page {
  /*
  All Resolutions
  >>------------->
  */
  background: var(--white);
}

.footer-page-content {
  max-width: 980px;
}
.footer-page-content p,
.footer-page-content li {
  font-size: 16px;
  line-height: 160%;
  color: var(--black);
}
.footer-page-content p {
  margin: 0 0 16px;
}
.footer-page-content h2 {
  margin: 34px 0 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  color: var(--blue);
}
.footer-page-content h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  color: var(--blue);
}
.footer-page-content a:not(.btn-orange) {
  color: var(--blue);
  text-decoration: underline;
}
.footer-page-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.amdi-content-lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  color: var(--blue);
}

.amdi-content-callout {
  border-left: 5px solid var(--brand-orange);
  background: rgba(224, 90, 39, 0.08);
  padding: 16px 20px;
  color: var(--blue);
}

.amdi-content-note {
  font-size: 14px;
  line-height: 150%;
  color: var(--blue);
}

.standard-page-body blockquote {
  border-left: 5px solid var(--primary-green);
  margin: 24px 0;
  padding: 4px 0 4px 20px;
  color: var(--blue);
}
.standard-page-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.standard-page-body .btn-orange {
  margin: 8px 0 16px;
  text-decoration: none;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

@media screen and (max-width: calc(950px - 1px)) {
  .site-map-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/*
>>================================================================================>
Home Hero
>>================================================================================>
*/
#home-hero {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  overflow: hidden;
  /*
  XL and above
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  md → lg — label stacks above buttons
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#home-hero img {
  display: block;
  width: 100%;
}
#home-hero .home-hero-arc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  transform: translateY(-100%);
  display: block;
}
#home-hero .home-hero-arc path {
  fill: #031728;
}
#home-hero .home-hero-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 20px 10px;
  background: var(--brand-orange);
  border: 2px solid var(--white);
  border-radius: 25px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  color: var(--white);
  text-align: center;
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}
#home-hero .home-hero-cta-btn span {
  text-align: center;
  line-height: 1.3;
}
#home-hero .home-hero-cta-btn strong {
  font-weight: 700;
}
#home-hero .home-hero-cta-btn:hover {
  transform: scale(1.02);
}
@media screen and (min-width: 1920px) {
  #home-hero img {
    width: auto;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 950px) {
  #home-hero .home-hero-cta-btn {
    min-height: 75px;
  }
  #home-hero .home-hero-cta-btn:nth-child(1) {
    max-width: 385px;
  }
  #home-hero .home-hero-cta-btn:nth-child(2) {
    max-width: 363px;
  }
  #home-hero .home-hero-cta-btn:nth-child(2) > span {
    max-width: 220px;
  }
  #home-hero .home-hero-cta-btn:nth-child(3) {
    max-width: 368px;
  }
  #home-hero .home-hero-cta-btn:nth-child(3) > span {
    max-width: 220px;
  }
}
@media screen and (min-width: 950px) and (max-width: calc(1024px - 1px)) {
  #home-hero .container {
    flex-direction: column;
    align-items: center;
  }
  #home-hero .container > div {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  #home-hero .container {
    flex-direction: column;
    align-items: flex-start !important;
  }
  #home-hero .container > div {
    flex-direction: column;
    width: 100%;
  }
  #home-hero .home-hero-cta-btn {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
  }
  #home-hero .home-hero-arc {
    height: 50px;
  }
}

#home-hero-cta {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  background: linear-gradient(180deg, #031728 0%, #0a3d6e 100%);
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (max-width: calc(950px - 1px)) {
  #home-hero-cta {
    margin-top: -20vw;
  }
}

/*
>>================================================================================>
Lean Economics
>>================================================================================>
*/
#lean-economics {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  overflow: hidden;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#lean-economics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 55%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: calc(950px - 1px)) {
  #lean-economics::before {
    display: none;
  }
}

/*
>>================================================================================>
News Article Page
>>================================================================================>
*/
#news-article {
  /*
  All Resolutions
  >>------------->
  */
}
#news-article .news-return-link {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-orange);
  text-transform: uppercase;
  text-decoration: none;
}
#news-article .news-return-link:hover, #news-article .news-return-link:focus-visible {
  text-decoration: underline;
}
#news-article .news-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0;
}
#news-article .news-date {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
#news-article .news-date::after {
  content: "";
  display: block;
  width: 200px;
  height: 7px;
  background: var(--primary-green);
  margin: 20px 0 25px;
}
#news-article .news-article-bar {
  display: block;
  width: 200px;
  height: 7px;
  background: var(--primary-green);
  margin: 20px 0 25px;
}
#news-article .news-article-body p:not(.news-date) {
  font-size: 16px;
  line-height: 160%;
  color: var(--black);
  margin: 0 0 16px;
}
#news-article .news-article-body h2 {
  margin: 32px 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: var(--blue);
}
#news-article .news-article-body a {
  color: var(--brand-orange);
  font-weight: 700;
  text-decoration: none;
}
#news-article .news-article-body a:hover, #news-article .news-article-body a:focus-visible {
  text-decoration: underline;
}
#news-article .news-location {
  font-weight: 700;
}
#news-article .news-contact {
  margin-top: 30px;
}

/*
>>================================================================================>
Panel Cards
>>================================================================================>
*/
#panel-cards {
  /*
  All Resolutions
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.panel-card {
  /*
  All Resolutions
  >>------------->
  */
  border-radius: 15px;
  padding: 30px;
  padding-bottom: 120px;
  flex: 0 0 calc(50% - 10px);
  background-size: cover;
  background-position: center;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (max-width: calc(950px - 1px)) {
  .panel-card {
    flex: 0 0 100%;
    padding-bottom: 30px;
  }
  .panel-card:nth-child(2) {
    padding-bottom: 150px;
  }
}

.panel-card-green {
  background-color: rgba(44, 153, 66, 0.8);
  background-image: url("../img/panel-card-green@2x.png");
}

.panel-card-orange {
  background-color: rgba(224, 90, 39, 0.8);
  background-image: url("../img/panel-card-orange@2x.png");
}

.panel-cards-product {
  /*
  All Resolutions
  >>------------->
  */
  pointer-events: none;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
/*
>>================================================================================>
Performance & Value Hero
>>================================================================================>
*/
#performance-value-hero {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  overflow: hidden;
  /*
  XL and above — image right-aligned
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#performance-value-hero picture {
  position: absolute;
  inset: 0;
}
#performance-value-hero picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#performance-value-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width: 1920px) {
  #performance-value-hero picture img {
    -o-object-position: right top;
       object-position: right top;
  }
}
@media screen and (min-width: 950px) {
  #performance-value-hero picture img {
    -o-object-position: 70% top;
       object-position: 70% top;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  #performance-value-hero {
    min-height: 750px;
    height: 100vw;
  }
  #performance-value-hero picture img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  #performance-value-hero::before {
    background: linear-gradient(180deg, #eaeef5 0%, rgba(234, 238, 245, 0) 50%);
  }
}

/*
>>================================================================================>
Product Feature
>>================================================================================>
*/
.product-feature-img {
  /*
  All Resolutions
  >>------------->
  */
  display: block;
  width: 100%;
  height: auto;
  max-width: 500px;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (max-width: calc(950px - 1px)) {
  .product-feature-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/*
>>================================================================================>
Request Pricing
>>================================================================================>
*/
#request-pricing {
  /*
  All Resolutions
  >>------------->
  */
  background: linear-gradient(90deg, #000 0%, #164171 51.923%, #000 100%);
  min-height: 75px;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
/*
>>================================================================================>
Resources Grid
>>================================================================================>
*/
#resources-hero {
  /*
  All Resolutions
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#resources-hero .container {
  padding-bottom: 20px !important;
}
@media screen and (max-width: calc(950px - 1px)) {
  #resources-hero .container {
    padding-bottom: 35px !important;
  }
}

.resource-card {
  /*
  All Resolutions
  >>------------->
  */
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.resource-card img {
  display: block;
  width: 157px;
  height: auto;
}
.resource-card .btn-orange {
  min-width: 239px;
  width: 100%;
  max-width: 330px;
  white-space: normal;
}
#resources-grid {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  z-index: 1;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#resources-grid .container {
  padding-top: 0;
}
#resources-cta {
  /*
  All Resolutions
  >>------------->
  */
  position: relative;
  background: linear-gradient(180deg, #031728 0%, #0a3d6e 100%);
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#resources-cta .container {
  position: relative;
  z-index: 1;
}
#resources-cta p {
  margin: 0;
}
@media screen and (min-width: 950px) {
  #resources-cta .container {
    padding-top: 70px !important;
    padding-bottom: 50px !important;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  #resources-cta .container {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
  }
}

.resources-cta-arc {
  /*
  All Resolutions
  >>------------->
  */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 118px;
  transform: translateY(-100%);
  display: block;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.resources-cta-arc path {
  fill: #031728;
}
@media screen and (max-width: calc(950px - 1px)) {
  .resources-cta-arc {
    height: 70px;
  }
}

/*
>>================================================================================>
Resources FAQs
>>================================================================================>
*/
#resources-faqs {
  /*
  All Resolutions
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#resources-faqs .container {
  padding-top: 60px !important;
}
#resources-faqs .resources-faq-label {
  margin-left: 0;
}
@media screen and (max-width: calc(950px - 1px)) {
  #resources-faqs .container {
    padding-top: 45px !important;
  }
}

.resources-faq-group {
  /*
  All Resolutions
  >>------------->
  */
  margin-bottom: 70px;
  /*
  Mobile
  >>------------->
  */
}
.resources-faq-group:last-child {
  margin-bottom: 0;
}
.resources-faq-group h2 {
  line-height: 1.1;
}
@media screen and (max-width: calc(950px - 1px)) {
  .resources-faq-group {
    margin-bottom: 50px;
  }
}

.resources-faq-item {
  /*
  All Resolutions
  >>------------->
  */
  margin-bottom: 21px;
}
.resources-faq-item:last-child {
  margin-bottom: 0;
}
.resources-faq-item.is-open .resources-faq-toggle:after {
  opacity: 1;
}
.resources-faq-item.is-open .resources-faq-icon::after {
  opacity: 0;
}

.resources-faq-question {
  /*
  All Resolutions
  >>------------->
  */
  margin: 0;
}

.resources-faq-toggle {
  /*
  All Resolutions
  >>------------->
  */
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  padding: 10px 18px 10px 20px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  /*
  Mobile
  >>------------->
  */
}
.resources-faq-toggle:focus-visible {
  outline: 3px solid var(--brand-amber);
  outline-offset: 3px;
}
.resources-faq-toggle:before, .resources-faq-toggle:after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #000 0%, var(--blue) 50%, #000 100%);
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
}
.resources-faq-toggle:after {
  background: var(--primary-green);
  opacity: 0;
  transition: opacity 300ms ease;
}
@media screen and (max-width: calc(950px - 1px)) {
  .resources-faq-toggle {
    min-height: 50px;
    font-size: 18px;
    padding: 10px 12px 10px 14px;
  }
}

.resources-faq-icon {
  /*
  All Resolutions
  >>------------->
  */
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 18px rgba(224, 90, 39, 0.85), 0 3px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  /*
  Mobile
  >>------------->
  */
}
.resources-faq-icon::before, .resources-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: opacity var(--motion-duration-base) var(--motion-ease);
}
.resources-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: calc(950px - 1px)) {
  .resources-faq-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

.resources-faq-panel {
  /*
  All Resolutions
  >>------------->
  */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  will-change: max-height, opacity;
  transition: opacity 300ms ease, max-height 500ms ease;
}

.resources-faq-panel-inner {
  /*
  All Resolutions
  >>------------->
  */
  padding: 25px 20px 8px;
  /*
  Mobile
  >>------------->
  */
}
.resources-faq-panel-inner p {
  margin: 0;
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: calc(950px - 1px)) {
  .resources-faq-panel-inner {
    padding: 18px 0 6px;
  }
  .resources-faq-panel-inner p {
    font-size: 15px;
    line-height: 1.35;
  }
}

.resources-faq-item.is-open .resources-faq-panel {
  /*
  All Resolutions
  >>------------->
  */
  opacity: 1;
  max-height: 1000px;
}

@media (prefers-reduced-motion: reduce) {
  .resources-faq-panel {
    transition: none;
  }
}
/*
>>================================================================================>
Staffing
>>================================================================================>
*/
#staffing {
  /*
  All Resolutions
  >>------------->
  */
  background: linear-gradient(90deg, #000 0%, #164171 50%, #000 100%);
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#staffing .row {
  align-items: stretch;
}
#staffing [class*=col-] {
  display: flex;
  flex-direction: column;
}
.workflow-fit-card {
  /*
  All Resolutions
  >>------------->
  */
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.workflow-fit-card > img {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: -55px;
  flex-shrink: 0;
  height: auto;
}
.workflow-fit-card > div {
  width: 100%;
  flex: 1;
  border-top: 12px solid var(--accent);
  border-radius: 0 0 15px 15px;
  background: linear-gradient(180deg, var(--white) 0%, #e7e7e7 100%);
  padding: 65px 25px 30px;
}
.workflow-fit-card ul {
  padding-left: 20px;
  list-style: disc;
}
.workflow-fit-card ul li {
  color: var(--blue);
}
.workflow-fit-card-title {
  color: var(--accent);
  text-align: center;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
>>================================================================================>
Why AMDI
>>================================================================================>
*/
#why-amdi {
  /*
  All Resolutions
  >>------------->
  */
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
@media screen and (min-width: 950px) and (max-width: 1199px) {
  #why-amdi .container {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  #why-amdi .container {
    flex-direction: column;
  }
}

.why-amdi-feature {
  /*
  All Resolutions
  >>------------->
  */
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.why-amdi-feature img {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: -55px;
  flex-shrink: 0;
}
.why-amdi-feature > div {
  width: 100%;
  flex: 1;
  border-top: 12px solid var(--accent);
  border-radius: 0 0 15px 15px;
  background: linear-gradient(180deg, var(--white) 0%, #e7e7e7 100%);
  padding: 60px 30px 24px;
  text-align: center;
}
.why-amdi-feature h3 {
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  min-height: 48px;
}
.why-amdi-feature p {
  font-family: "Roboto", "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: normal;
  color: var(--blue);
}
@media screen and (min-width: 950px) and (max-width: 1199px) {
  .why-amdi-feature {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 0;
  }
}
@media screen and (max-width: calc(950px - 1px)) {
  .why-amdi-feature h3 {
    min-height: auto;
  }
}

/*
>>================================================================================>
Workflow Fit
>>================================================================================>
*/
#workflow-fit {
  /*
  All Resolutions
  >>------------->
  */
  background: linear-gradient(90deg, #000 0%, #164171 50%, #000 100%);
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
#workflow-fit .row {
  align-items: stretch;
}
#workflow-fit [class*=col-] {
  display: flex;
  flex-direction: column;
}
.workflow-fit-card {
  /*
  All Resolutions
  >>------------->
  */
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*
  Desktop
  >>------------->
  */
  /*
  Mobile
  >>------------->
  */
}
.workflow-fit-card > img {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: -55px;
  flex-shrink: 0;
  height: auto;
}
.workflow-fit-card > div {
  width: 100%;
  flex: 1;
  border-top: 12px solid var(--accent);
  border-radius: 0 0 15px 15px;
  background: linear-gradient(180deg, var(--white) 0%, #e7e7e7 100%);
  padding: 65px 25px 30px;
}
.workflow-fit-card ul {
  padding-left: 20px;
  list-style: disc;
}
.workflow-fit-card ul li {
  color: var(--blue);
}
.workflow-fit-card-title {
  color: var(--accent);
  text-align: center;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
>>================================================================================>
Site Overrides
>>================================================================================>
*/
/*
One-off, page-specific or campaign-specific tweaks live here. Keep this lean and
remove as features graduate into components or utilities.
*/
/*# sourceMappingURL=main.css.map */
