/**
 * Layout-tier grid rules, converted to literal CSS from Sass source:
 * src/stories/global/_grid.scss
 *
 * $enable-grid-classes is true (src/stories/global/_variables.scss:217,
 * recorded as --site-enable-grid-classes in css/base/variables.css), so the
 * `.row` and grid-column rules below are written unconditionally.
 *
 * $enable-cssgrid is FALSE (src/stories/global/_variables.scss:219,
 * recorded as --site-enable-cssgrid in css/base/variables.css) -- the
 * `.grid` CSS-Grid utility block in _grid.scss is therefore never compiled
 * and is correctly absent from the current dist/css/bootstrap.css; it is
 * intentionally omitted here too, to preserve current visual output exactly.
 *
 * The `.col` / `.row-cols-*` / `.col-*` / `.offset-*` / `.g-*` / `.gx-*` /
 * `.gy-*` block below (Bootstrap's `make-grid-columns()` mixin output) is
 * transcribed verbatim from the compiled output
 * (dist/css/bootstrap.css:1010-3212) rather than hand-expanded from the
 * Sass `@for`/`@each` loops, per the task brief. Its percentage widths
 * ($grid-columns: 12, unchanged from Bootstrap's default) and its `.g-*`
 * gutter values (from the theme's custom $spacers/$gutters map,
 * src/stories/global/_variables.scss:253-280) are build-time computed
 * literals, not named Sass design-token variables -- there is no
 * corresponding --site-* custom property for them in
 * css/base/variables.css (out of Task 1's extraction scope, which covers
 * only named $variables, not every key of the $spacers map). They are kept
 * as literal values here, matching the compiled ground truth exactly rather
 * than being invented.
 *
 * Design tokens are consumed via var(--site-*) custom properties defined in
 * css/base/variables.css (Task 1's output) in the `.row` rules below;
 * --bs-gutter-x/--bs-gutter-y are Bootstrap's own runtime custom
 * properties, referenced directly as in the Sass source.
 *
 * BREAKPOINTS: re-derived directly from src/stories/global/_variables.scss
 * ($grid-breakpoints map, lines 349-356 -- this theme does not override
 * Bootstrap's default breakpoint values): sm 576px, md 768px, lg 992px,
 * xl 1200px, xxl 1400px. The theme's custom `.row` gutter overrides only
 * target sm/md/xl/xxl (no lg override), matching _grid.scss's
 * media-breakpoint-up() calls and the compiled output exactly. Each @media
 * rule below is commented with its source --site-grid-breakpoints-* token
 * for traceability (CSS custom properties cannot be used inside an @media
 * condition).
 */

.row {
  --bs-gutter-x: var(--site-grid-gutter-width);
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

/* Lehigh_coe: Override gutters per breakpoint.
 * --site-grid-breakpoints-sm: 576px */
@media (min-width: 576px) {

  .row {
    --bs-gutter-x: var(--site-grid-gutter-width-sm);
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
}

/* --site-grid-breakpoints-md: 768px */
@media (min-width: 768px) {

  .row {
    --bs-gutter-x: var(--site-grid-gutter-width-md);
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
}

/* --site-grid-breakpoints-xl: 1200px */
@media (min-width: 1200px) {

  .row {
    --bs-gutter-x: var(--site-grid-gutter-width-xl);
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
}

/* --site-grid-breakpoints-xxl: 1400px */
@media (min-width: 1400px) {

  .row {
    --bs-gutter-x: var(--site-grid-gutter-width-xxl);
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* Columns
 *
 * Bootstrap's make-grid-columns() output (.col, .row-cols-*, .col-*,
 * .offset-*, .g-*, .gx-*, .gy-*), transcribed verbatim from
 * dist/css/bootstrap.css:1010-3212 -- see file header note above. */
.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

.offset-1 {
  margin-left: 8.33333333%;
}

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.5rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.5rem;
}

.g-1_1,
.gx-1_1 {
  --bs-gutter-x: 0.625rem;
}

.g-1_1,
.gy-1_1 {
  --bs-gutter-y: 0.625rem;
}

.g-1_2,
.gx-1_2 {
  --bs-gutter-x: 0.75rem;
}

.g-1_2,
.gy-1_2 {
  --bs-gutter-y: 0.75rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 1rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 1rem;
}

.g-2_1,
.gx-2_1 {
  --bs-gutter-x: 1.125rem;
}

.g-2_1,
.gy-2_1 {
  --bs-gutter-y: 1.125rem;
}

.g-2_5,
.gx-2_5 {
  --bs-gutter-x: 1.25rem;
}

.g-2_5,
.gy-2_5 {
  --bs-gutter-y: 1.25rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1.5rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1.5rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 2rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 2rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 2.5rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 2.5rem;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 3rem;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 3rem;
}

.g-6_5,
.gx-6_5 {
  --bs-gutter-x: 3.25rem;
}

.g-6_5,
.gy-6_5 {
  --bs-gutter-y: 3.25rem;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 3.5rem;
}

.g-7,
.gy-7 {
  --bs-gutter-y: 3.5rem;
}

.g-8,
.gx-8 {
  --bs-gutter-x: 4rem;
}

.g-8,
.gy-8 {
  --bs-gutter-y: 4rem;
}

.g-9,
.gx-9 {
  --bs-gutter-x: 4.5rem;
}

.g-9,
.gy-9 {
  --bs-gutter-y: 4.5rem;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 5rem;
}

.g-10,
.gy-10 {
  --bs-gutter-y: 5rem;
}

.g-11,
.gx-11 {
  --bs-gutter-x: 5.5rem;
}

.g-11,
.gy-11 {
  --bs-gutter-y: 5.5rem;
}

.g-12,
.gx-12 {
  --bs-gutter-x: 6rem;
}

.g-12,
.gy-12 {
  --bs-gutter-y: 6rem;
}

.g-13,
.gx-13 {
  --bs-gutter-x: 6.5rem;
}

.g-13,
.gy-13 {
  --bs-gutter-y: 6.5rem;
}

.g-14,
.gx-14 {
  --bs-gutter-x: 7rem;
}

.g-14,
.gy-14 {
  --bs-gutter-y: 7rem;
}

.g-15,
.gx-15 {
  --bs-gutter-x: 7.5rem;
}

.g-15,
.gy-15 {
  --bs-gutter-y: 7.5rem;
}

.g-16,
.gx-16 {
  --bs-gutter-x: 8rem;
}

.g-16,
.gy-16 {
  --bs-gutter-y: 8rem;
}

.g-17,
.gx-17 {
  --bs-gutter-x: 8.5rem;
}

.g-17,
.gy-17 {
  --bs-gutter-y: 8.5rem;
}

.g-18,
.gx-18 {
  --bs-gutter-x: 9rem;
}

.g-18,
.gy-18 {
  --bs-gutter-y: 9rem;
}

.g-19,
.gx-19 {
  --bs-gutter-x: 9.5rem;
}

.g-19,
.gy-19 {
  --bs-gutter-y: 9.5rem;
}

.g-20,
.gx-20 {
  --bs-gutter-x: 10rem;
}

.g-20,
.gy-20 {
  --bs-gutter-y: 10rem;
}

.g-22,
.gx-22 {
  --bs-gutter-x: 13rem;
}

.g-22,
.gy-22 {
  --bs-gutter-y: 13rem;
}

.g-24,
.gx-24 {
  --bs-gutter-x: 15.5rem;
}

.g-24,
.gy-24 {
  --bs-gutter-y: 15.5rem;
}

.g-30,
.gx-30 {
  --bs-gutter-x: 28.75rem;
}

.g-30,
.gy-30 {
  --bs-gutter-y: 28.75rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-1_1,
  .gx-sm-1_1 {
    --bs-gutter-x: 0.625rem;
  }
  .g-sm-1_1,
  .gy-sm-1_1 {
    --bs-gutter-y: 0.625rem;
  }
  .g-sm-1_2,
  .gx-sm-1_2 {
    --bs-gutter-x: 0.75rem;
  }
  .g-sm-1_2,
  .gy-sm-1_2 {
    --bs-gutter-y: 0.75rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-2_1,
  .gx-sm-2_1 {
    --bs-gutter-x: 1.125rem;
  }
  .g-sm-2_1,
  .gy-sm-2_1 {
    --bs-gutter-y: 1.125rem;
  }
  .g-sm-2_5,
  .gx-sm-2_5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-sm-2_5,
  .gy-sm-2_5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 2rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-6_5,
  .gx-sm-6_5 {
    --bs-gutter-x: 3.25rem;
  }
  .g-sm-6_5,
  .gy-sm-6_5 {
    --bs-gutter-y: 3.25rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bs-gutter-x: 3.5rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bs-gutter-y: 3.5rem;
  }
  .g-sm-8,
  .gx-sm-8 {
    --bs-gutter-x: 4rem;
  }
  .g-sm-8,
  .gy-sm-8 {
    --bs-gutter-y: 4rem;
  }
  .g-sm-9,
  .gx-sm-9 {
    --bs-gutter-x: 4.5rem;
  }
  .g-sm-9,
  .gy-sm-9 {
    --bs-gutter-y: 4.5rem;
  }
  .g-sm-10,
  .gx-sm-10 {
    --bs-gutter-x: 5rem;
  }
  .g-sm-10,
  .gy-sm-10 {
    --bs-gutter-y: 5rem;
  }
  .g-sm-11,
  .gx-sm-11 {
    --bs-gutter-x: 5.5rem;
  }
  .g-sm-11,
  .gy-sm-11 {
    --bs-gutter-y: 5.5rem;
  }
  .g-sm-12,
  .gx-sm-12 {
    --bs-gutter-x: 6rem;
  }
  .g-sm-12,
  .gy-sm-12 {
    --bs-gutter-y: 6rem;
  }
  .g-sm-13,
  .gx-sm-13 {
    --bs-gutter-x: 6.5rem;
  }
  .g-sm-13,
  .gy-sm-13 {
    --bs-gutter-y: 6.5rem;
  }
  .g-sm-14,
  .gx-sm-14 {
    --bs-gutter-x: 7rem;
  }
  .g-sm-14,
  .gy-sm-14 {
    --bs-gutter-y: 7rem;
  }
  .g-sm-15,
  .gx-sm-15 {
    --bs-gutter-x: 7.5rem;
  }
  .g-sm-15,
  .gy-sm-15 {
    --bs-gutter-y: 7.5rem;
  }
  .g-sm-16,
  .gx-sm-16 {
    --bs-gutter-x: 8rem;
  }
  .g-sm-16,
  .gy-sm-16 {
    --bs-gutter-y: 8rem;
  }
  .g-sm-17,
  .gx-sm-17 {
    --bs-gutter-x: 8.5rem;
  }
  .g-sm-17,
  .gy-sm-17 {
    --bs-gutter-y: 8.5rem;
  }
  .g-sm-18,
  .gx-sm-18 {
    --bs-gutter-x: 9rem;
  }
  .g-sm-18,
  .gy-sm-18 {
    --bs-gutter-y: 9rem;
  }
  .g-sm-19,
  .gx-sm-19 {
    --bs-gutter-x: 9.5rem;
  }
  .g-sm-19,
  .gy-sm-19 {
    --bs-gutter-y: 9.5rem;
  }
  .g-sm-20,
  .gx-sm-20 {
    --bs-gutter-x: 10rem;
  }
  .g-sm-20,
  .gy-sm-20 {
    --bs-gutter-y: 10rem;
  }
  .g-sm-22,
  .gx-sm-22 {
    --bs-gutter-x: 13rem;
  }
  .g-sm-22,
  .gy-sm-22 {
    --bs-gutter-y: 13rem;
  }
  .g-sm-24,
  .gx-sm-24 {
    --bs-gutter-x: 15.5rem;
  }
  .g-sm-24,
  .gy-sm-24 {
    --bs-gutter-y: 15.5rem;
  }
  .g-sm-30,
  .gx-sm-30 {
    --bs-gutter-x: 28.75rem;
  }
  .g-sm-30,
  .gy-sm-30 {
    --bs-gutter-y: 28.75rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-1_1,
  .gx-md-1_1 {
    --bs-gutter-x: 0.625rem;
  }
  .g-md-1_1,
  .gy-md-1_1 {
    --bs-gutter-y: 0.625rem;
  }
  .g-md-1_2,
  .gx-md-1_2 {
    --bs-gutter-x: 0.75rem;
  }
  .g-md-1_2,
  .gy-md-1_2 {
    --bs-gutter-y: 0.75rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 1rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 1rem;
  }
  .g-md-2_1,
  .gx-md-2_1 {
    --bs-gutter-x: 1.125rem;
  }
  .g-md-2_1,
  .gy-md-2_1 {
    --bs-gutter-y: 1.125rem;
  }
  .g-md-2_5,
  .gx-md-2_5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-md-2_5,
  .gy-md-2_5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 2rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 2rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 3rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 3rem;
  }
  .g-md-6_5,
  .gx-md-6_5 {
    --bs-gutter-x: 3.25rem;
  }
  .g-md-6_5,
  .gy-md-6_5 {
    --bs-gutter-y: 3.25rem;
  }
  .g-md-7,
  .gx-md-7 {
    --bs-gutter-x: 3.5rem;
  }
  .g-md-7,
  .gy-md-7 {
    --bs-gutter-y: 3.5rem;
  }
  .g-md-8,
  .gx-md-8 {
    --bs-gutter-x: 4rem;
  }
  .g-md-8,
  .gy-md-8 {
    --bs-gutter-y: 4rem;
  }
  .g-md-9,
  .gx-md-9 {
    --bs-gutter-x: 4.5rem;
  }
  .g-md-9,
  .gy-md-9 {
    --bs-gutter-y: 4.5rem;
  }
  .g-md-10,
  .gx-md-10 {
    --bs-gutter-x: 5rem;
  }
  .g-md-10,
  .gy-md-10 {
    --bs-gutter-y: 5rem;
  }
  .g-md-11,
  .gx-md-11 {
    --bs-gutter-x: 5.5rem;
  }
  .g-md-11,
  .gy-md-11 {
    --bs-gutter-y: 5.5rem;
  }
  .g-md-12,
  .gx-md-12 {
    --bs-gutter-x: 6rem;
  }
  .g-md-12,
  .gy-md-12 {
    --bs-gutter-y: 6rem;
  }
  .g-md-13,
  .gx-md-13 {
    --bs-gutter-x: 6.5rem;
  }
  .g-md-13,
  .gy-md-13 {
    --bs-gutter-y: 6.5rem;
  }
  .g-md-14,
  .gx-md-14 {
    --bs-gutter-x: 7rem;
  }
  .g-md-14,
  .gy-md-14 {
    --bs-gutter-y: 7rem;
  }
  .g-md-15,
  .gx-md-15 {
    --bs-gutter-x: 7.5rem;
  }
  .g-md-15,
  .gy-md-15 {
    --bs-gutter-y: 7.5rem;
  }
  .g-md-16,
  .gx-md-16 {
    --bs-gutter-x: 8rem;
  }
  .g-md-16,
  .gy-md-16 {
    --bs-gutter-y: 8rem;
  }
  .g-md-17,
  .gx-md-17 {
    --bs-gutter-x: 8.5rem;
  }
  .g-md-17,
  .gy-md-17 {
    --bs-gutter-y: 8.5rem;
  }
  .g-md-18,
  .gx-md-18 {
    --bs-gutter-x: 9rem;
  }
  .g-md-18,
  .gy-md-18 {
    --bs-gutter-y: 9rem;
  }
  .g-md-19,
  .gx-md-19 {
    --bs-gutter-x: 9.5rem;
  }
  .g-md-19,
  .gy-md-19 {
    --bs-gutter-y: 9.5rem;
  }
  .g-md-20,
  .gx-md-20 {
    --bs-gutter-x: 10rem;
  }
  .g-md-20,
  .gy-md-20 {
    --bs-gutter-y: 10rem;
  }
  .g-md-22,
  .gx-md-22 {
    --bs-gutter-x: 13rem;
  }
  .g-md-22,
  .gy-md-22 {
    --bs-gutter-y: 13rem;
  }
  .g-md-24,
  .gx-md-24 {
    --bs-gutter-x: 15.5rem;
  }
  .g-md-24,
  .gy-md-24 {
    --bs-gutter-y: 15.5rem;
  }
  .g-md-30,
  .gx-md-30 {
    --bs-gutter-x: 28.75rem;
  }
  .g-md-30,
  .gy-md-30 {
    --bs-gutter-y: 28.75rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-1_1,
  .gx-lg-1_1 {
    --bs-gutter-x: 0.625rem;
  }
  .g-lg-1_1,
  .gy-lg-1_1 {
    --bs-gutter-y: 0.625rem;
  }
  .g-lg-1_2,
  .gx-lg-1_2 {
    --bs-gutter-x: 0.75rem;
  }
  .g-lg-1_2,
  .gy-lg-1_2 {
    --bs-gutter-y: 0.75rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-2_1,
  .gx-lg-2_1 {
    --bs-gutter-x: 1.125rem;
  }
  .g-lg-2_1,
  .gy-lg-2_1 {
    --bs-gutter-y: 1.125rem;
  }
  .g-lg-2_5,
  .gx-lg-2_5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-lg-2_5,
  .gy-lg-2_5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 2rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-6_5,
  .gx-lg-6_5 {
    --bs-gutter-x: 3.25rem;
  }
  .g-lg-6_5,
  .gy-lg-6_5 {
    --bs-gutter-y: 3.25rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bs-gutter-x: 3.5rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bs-gutter-y: 3.5rem;
  }
  .g-lg-8,
  .gx-lg-8 {
    --bs-gutter-x: 4rem;
  }
  .g-lg-8,
  .gy-lg-8 {
    --bs-gutter-y: 4rem;
  }
  .g-lg-9,
  .gx-lg-9 {
    --bs-gutter-x: 4.5rem;
  }
  .g-lg-9,
  .gy-lg-9 {
    --bs-gutter-y: 4.5rem;
  }
  .g-lg-10,
  .gx-lg-10 {
    --bs-gutter-x: 5rem;
  }
  .g-lg-10,
  .gy-lg-10 {
    --bs-gutter-y: 5rem;
  }
  .g-lg-11,
  .gx-lg-11 {
    --bs-gutter-x: 5.5rem;
  }
  .g-lg-11,
  .gy-lg-11 {
    --bs-gutter-y: 5.5rem;
  }
  .g-lg-12,
  .gx-lg-12 {
    --bs-gutter-x: 6rem;
  }
  .g-lg-12,
  .gy-lg-12 {
    --bs-gutter-y: 6rem;
  }
  .g-lg-13,
  .gx-lg-13 {
    --bs-gutter-x: 6.5rem;
  }
  .g-lg-13,
  .gy-lg-13 {
    --bs-gutter-y: 6.5rem;
  }
  .g-lg-14,
  .gx-lg-14 {
    --bs-gutter-x: 7rem;
  }
  .g-lg-14,
  .gy-lg-14 {
    --bs-gutter-y: 7rem;
  }
  .g-lg-15,
  .gx-lg-15 {
    --bs-gutter-x: 7.5rem;
  }
  .g-lg-15,
  .gy-lg-15 {
    --bs-gutter-y: 7.5rem;
  }
  .g-lg-16,
  .gx-lg-16 {
    --bs-gutter-x: 8rem;
  }
  .g-lg-16,
  .gy-lg-16 {
    --bs-gutter-y: 8rem;
  }
  .g-lg-17,
  .gx-lg-17 {
    --bs-gutter-x: 8.5rem;
  }
  .g-lg-17,
  .gy-lg-17 {
    --bs-gutter-y: 8.5rem;
  }
  .g-lg-18,
  .gx-lg-18 {
    --bs-gutter-x: 9rem;
  }
  .g-lg-18,
  .gy-lg-18 {
    --bs-gutter-y: 9rem;
  }
  .g-lg-19,
  .gx-lg-19 {
    --bs-gutter-x: 9.5rem;
  }
  .g-lg-19,
  .gy-lg-19 {
    --bs-gutter-y: 9.5rem;
  }
  .g-lg-20,
  .gx-lg-20 {
    --bs-gutter-x: 10rem;
  }
  .g-lg-20,
  .gy-lg-20 {
    --bs-gutter-y: 10rem;
  }
  .g-lg-22,
  .gx-lg-22 {
    --bs-gutter-x: 13rem;
  }
  .g-lg-22,
  .gy-lg-22 {
    --bs-gutter-y: 13rem;
  }
  .g-lg-24,
  .gx-lg-24 {
    --bs-gutter-x: 15.5rem;
  }
  .g-lg-24,
  .gy-lg-24 {
    --bs-gutter-y: 15.5rem;
  }
  .g-lg-30,
  .gx-lg-30 {
    --bs-gutter-x: 28.75rem;
  }
  .g-lg-30,
  .gy-lg-30 {
    --bs-gutter-y: 28.75rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-1_1,
  .gx-xl-1_1 {
    --bs-gutter-x: 0.625rem;
  }
  .g-xl-1_1,
  .gy-xl-1_1 {
    --bs-gutter-y: 0.625rem;
  }
  .g-xl-1_2,
  .gx-xl-1_2 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xl-1_2,
  .gy-xl-1_2 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-2_1,
  .gx-xl-2_1 {
    --bs-gutter-x: 1.125rem;
  }
  .g-xl-2_1,
  .gy-xl-2_1 {
    --bs-gutter-y: 1.125rem;
  }
  .g-xl-2_5,
  .gx-xl-2_5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xl-2_5,
  .gy-xl-2_5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 2rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-6_5,
  .gx-xl-6_5 {
    --bs-gutter-x: 3.25rem;
  }
  .g-xl-6_5,
  .gy-xl-6_5 {
    --bs-gutter-y: 3.25rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xl-8,
  .gx-xl-8 {
    --bs-gutter-x: 4rem;
  }
  .g-xl-8,
  .gy-xl-8 {
    --bs-gutter-y: 4rem;
  }
  .g-xl-9,
  .gx-xl-9 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xl-9,
  .gy-xl-9 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xl-10,
  .gx-xl-10 {
    --bs-gutter-x: 5rem;
  }
  .g-xl-10,
  .gy-xl-10 {
    --bs-gutter-y: 5rem;
  }
  .g-xl-11,
  .gx-xl-11 {
    --bs-gutter-x: 5.5rem;
  }
  .g-xl-11,
  .gy-xl-11 {
    --bs-gutter-y: 5.5rem;
  }
  .g-xl-12,
  .gx-xl-12 {
    --bs-gutter-x: 6rem;
  }
  .g-xl-12,
  .gy-xl-12 {
    --bs-gutter-y: 6rem;
  }
  .g-xl-13,
  .gx-xl-13 {
    --bs-gutter-x: 6.5rem;
  }
  .g-xl-13,
  .gy-xl-13 {
    --bs-gutter-y: 6.5rem;
  }
  .g-xl-14,
  .gx-xl-14 {
    --bs-gutter-x: 7rem;
  }
  .g-xl-14,
  .gy-xl-14 {
    --bs-gutter-y: 7rem;
  }
  .g-xl-15,
  .gx-xl-15 {
    --bs-gutter-x: 7.5rem;
  }
  .g-xl-15,
  .gy-xl-15 {
    --bs-gutter-y: 7.5rem;
  }
  .g-xl-16,
  .gx-xl-16 {
    --bs-gutter-x: 8rem;
  }
  .g-xl-16,
  .gy-xl-16 {
    --bs-gutter-y: 8rem;
  }
  .g-xl-17,
  .gx-xl-17 {
    --bs-gutter-x: 8.5rem;
  }
  .g-xl-17,
  .gy-xl-17 {
    --bs-gutter-y: 8.5rem;
  }
  .g-xl-18,
  .gx-xl-18 {
    --bs-gutter-x: 9rem;
  }
  .g-xl-18,
  .gy-xl-18 {
    --bs-gutter-y: 9rem;
  }
  .g-xl-19,
  .gx-xl-19 {
    --bs-gutter-x: 9.5rem;
  }
  .g-xl-19,
  .gy-xl-19 {
    --bs-gutter-y: 9.5rem;
  }
  .g-xl-20,
  .gx-xl-20 {
    --bs-gutter-x: 10rem;
  }
  .g-xl-20,
  .gy-xl-20 {
    --bs-gutter-y: 10rem;
  }
  .g-xl-22,
  .gx-xl-22 {
    --bs-gutter-x: 13rem;
  }
  .g-xl-22,
  .gy-xl-22 {
    --bs-gutter-y: 13rem;
  }
  .g-xl-24,
  .gx-xl-24 {
    --bs-gutter-x: 15.5rem;
  }
  .g-xl-24,
  .gy-xl-24 {
    --bs-gutter-y: 15.5rem;
  }
  .g-xl-30,
  .gx-xl-30 {
    --bs-gutter-x: 28.75rem;
  }
  .g-xl-30,
  .gy-xl-30 {
    --bs-gutter-y: 28.75rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-1_1,
  .gx-xxl-1_1 {
    --bs-gutter-x: 0.625rem;
  }
  .g-xxl-1_1,
  .gy-xxl-1_1 {
    --bs-gutter-y: 0.625rem;
  }
  .g-xxl-1_2,
  .gx-xxl-1_2 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xxl-1_2,
  .gy-xxl-1_2 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-2_1,
  .gx-xxl-2_1 {
    --bs-gutter-x: 1.125rem;
  }
  .g-xxl-2_1,
  .gy-xxl-2_1 {
    --bs-gutter-y: 1.125rem;
  }
  .g-xxl-2_5,
  .gx-xxl-2_5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xxl-2_5,
  .gy-xxl-2_5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 2rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 2rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-6_5,
  .gx-xxl-6_5 {
    --bs-gutter-x: 3.25rem;
  }
  .g-xxl-6_5,
  .gy-xxl-6_5 {
    --bs-gutter-y: 3.25rem;
  }
  .g-xxl-7,
  .gx-xxl-7 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xxl-7,
  .gy-xxl-7 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xxl-8,
  .gx-xxl-8 {
    --bs-gutter-x: 4rem;
  }
  .g-xxl-8,
  .gy-xxl-8 {
    --bs-gutter-y: 4rem;
  }
  .g-xxl-9,
  .gx-xxl-9 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xxl-9,
  .gy-xxl-9 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xxl-10,
  .gx-xxl-10 {
    --bs-gutter-x: 5rem;
  }
  .g-xxl-10,
  .gy-xxl-10 {
    --bs-gutter-y: 5rem;
  }
  .g-xxl-11,
  .gx-xxl-11 {
    --bs-gutter-x: 5.5rem;
  }
  .g-xxl-11,
  .gy-xxl-11 {
    --bs-gutter-y: 5.5rem;
  }
  .g-xxl-12,
  .gx-xxl-12 {
    --bs-gutter-x: 6rem;
  }
  .g-xxl-12,
  .gy-xxl-12 {
    --bs-gutter-y: 6rem;
  }
  .g-xxl-13,
  .gx-xxl-13 {
    --bs-gutter-x: 6.5rem;
  }
  .g-xxl-13,
  .gy-xxl-13 {
    --bs-gutter-y: 6.5rem;
  }
  .g-xxl-14,
  .gx-xxl-14 {
    --bs-gutter-x: 7rem;
  }
  .g-xxl-14,
  .gy-xxl-14 {
    --bs-gutter-y: 7rem;
  }
  .g-xxl-15,
  .gx-xxl-15 {
    --bs-gutter-x: 7.5rem;
  }
  .g-xxl-15,
  .gy-xxl-15 {
    --bs-gutter-y: 7.5rem;
  }
  .g-xxl-16,
  .gx-xxl-16 {
    --bs-gutter-x: 8rem;
  }
  .g-xxl-16,
  .gy-xxl-16 {
    --bs-gutter-y: 8rem;
  }
  .g-xxl-17,
  .gx-xxl-17 {
    --bs-gutter-x: 8.5rem;
  }
  .g-xxl-17,
  .gy-xxl-17 {
    --bs-gutter-y: 8.5rem;
  }
  .g-xxl-18,
  .gx-xxl-18 {
    --bs-gutter-x: 9rem;
  }
  .g-xxl-18,
  .gy-xxl-18 {
    --bs-gutter-y: 9rem;
  }
  .g-xxl-19,
  .gx-xxl-19 {
    --bs-gutter-x: 9.5rem;
  }
  .g-xxl-19,
  .gy-xxl-19 {
    --bs-gutter-y: 9.5rem;
  }
  .g-xxl-20,
  .gx-xxl-20 {
    --bs-gutter-x: 10rem;
  }
  .g-xxl-20,
  .gy-xxl-20 {
    --bs-gutter-y: 10rem;
  }
  .g-xxl-22,
  .gx-xxl-22 {
    --bs-gutter-x: 13rem;
  }
  .g-xxl-22,
  .gy-xxl-22 {
    --bs-gutter-y: 13rem;
  }
  .g-xxl-24,
  .gx-xxl-24 {
    --bs-gutter-x: 15.5rem;
  }
  .g-xxl-24,
  .gy-xxl-24 {
    --bs-gutter-y: 15.5rem;
  }
  .g-xxl-30,
  .gx-xxl-30 {
    --bs-gutter-x: 28.75rem;
  }
  .g-xxl-30,
  .gy-xxl-30 {
    --bs-gutter-y: 28.75rem;
  }
}
