@charset "UTF-8";
/**
 * Calculate the type offset for a given font
 *
 * @param {number} $lh - the font's base line height
 * @param {number} $fontSize - the font's size
 * @param {number} $descenderHeightScale - the font's descender height as a ratio
 * @return {number} the offset to be added to a transformY to keep the text in place
 */
/**
 * The Lato mixin to apply basekick styles
 *
 * @param {number} $typeSizeModifier - a multiplier for our system's $baseFontSize
 * @param {number} $typeRowSpan - the height of the descender expressed as a ratio of the font
 */
/*!
* Bootstrap v5.1.3 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #101135;
  --bs-secondary: #dA6123;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 16, 17, 53;
  --bs-secondary-rgb: 218, 97, 35;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #101135;
  text-decoration: underline;
}
a:hover {
  color: #0d0e2a;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "\a0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --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) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.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.3333333333%;
}

.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.6666666667%;
}

.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.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 0.6rem;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 0.6rem;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 0.7rem;
}

.g-7,
.gy-7 {
  --bs-gutter-y: 0.7rem;
}

.g-8,
.gx-8 {
  --bs-gutter-x: 0.8rem;
}

.g-8,
.gy-8 {
  --bs-gutter-y: 0.8rem;
}

.g-9,
.gx-9 {
  --bs-gutter-x: 0.9rem;
}

.g-9,
.gy-9 {
  --bs-gutter-y: 0.9rem;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 1rem;
}

.g-10,
.gy-10 {
  --bs-gutter-y: 1rem;
}

.g-11,
.gx-11 {
  --bs-gutter-x: 1.1rem;
}

.g-11,
.gy-11 {
  --bs-gutter-y: 1.1rem;
}

.g-12,
.gx-12 {
  --bs-gutter-x: 1.2rem;
}

.g-12,
.gy-12 {
  --bs-gutter-y: 1.2rem;
}

.g-13,
.gx-13 {
  --bs-gutter-x: 1.3rem;
}

.g-13,
.gy-13 {
  --bs-gutter-y: 1.3rem;
}

.g-14,
.gx-14 {
  --bs-gutter-x: 1.4rem;
}

.g-14,
.gy-14 {
  --bs-gutter-y: 1.4rem;
}

.g-15,
.gx-15 {
  --bs-gutter-x: 1.5rem;
}

.g-15,
.gy-15 {
  --bs-gutter-y: 1.5rem;
}

.g-16,
.gx-16 {
  --bs-gutter-x: 1.6rem;
}

.g-16,
.gy-16 {
  --bs-gutter-y: 1.6rem;
}

.g-17,
.gx-17 {
  --bs-gutter-x: 1.7rem;
}

.g-17,
.gy-17 {
  --bs-gutter-y: 1.7rem;
}

.g-18,
.gx-18 {
  --bs-gutter-x: 1.8rem;
}

.g-18,
.gy-18 {
  --bs-gutter-y: 1.8rem;
}

.g-19,
.gx-19 {
  --bs-gutter-x: 1.9rem;
}

.g-19,
.gy-19 {
  --bs-gutter-y: 1.9rem;
}

.g-20,
.gx-20 {
  --bs-gutter-x: 2rem;
}

.g-20,
.gy-20 {
  --bs-gutter-y: 2rem;
}

.g-21,
.gx-21 {
  --bs-gutter-x: 2.1rem;
}

.g-21,
.gy-21 {
  --bs-gutter-y: 2.1rem;
}

.g-22,
.gx-22 {
  --bs-gutter-x: 2.2rem;
}

.g-22,
.gy-22 {
  --bs-gutter-y: 2.2rem;
}

.g-23,
.gx-23 {
  --bs-gutter-x: 2.3rem;
}

.g-23,
.gy-23 {
  --bs-gutter-y: 2.3rem;
}

.g-24,
.gx-24 {
  --bs-gutter-x: 2.4rem;
}

.g-24,
.gy-24 {
  --bs-gutter-y: 2.4rem;
}

.g-25,
.gx-25 {
  --bs-gutter-x: 2.5rem;
}

.g-25,
.gy-25 {
  --bs-gutter-y: 2.5rem;
}

.g-26,
.gx-26 {
  --bs-gutter-x: 2.6rem;
}

.g-26,
.gy-26 {
  --bs-gutter-y: 2.6rem;
}

.g-27,
.gx-27 {
  --bs-gutter-x: 2.7rem;
}

.g-27,
.gy-27 {
  --bs-gutter-y: 2.7rem;
}

.g-28,
.gx-28 {
  --bs-gutter-x: 2.8rem;
}

.g-28,
.gy-28 {
  --bs-gutter-y: 2.8rem;
}

.g-29,
.gx-29 {
  --bs-gutter-x: 2.9rem;
}

.g-29,
.gy-29 {
  --bs-gutter-y: 2.9rem;
}

.g-30,
.gx-30 {
  --bs-gutter-x: 3rem;
}

.g-30,
.gy-30 {
  --bs-gutter-y: 3rem;
}

.g-31,
.gx-31 {
  --bs-gutter-x: 3.1rem;
}

.g-31,
.gy-31 {
  --bs-gutter-y: 3.1rem;
}

.g-32,
.gx-32 {
  --bs-gutter-x: 3.2rem;
}

.g-32,
.gy-32 {
  --bs-gutter-y: 3.2rem;
}

.g-33,
.gx-33 {
  --bs-gutter-x: 3.3rem;
}

.g-33,
.gy-33 {
  --bs-gutter-y: 3.3rem;
}

.g-34,
.gx-34 {
  --bs-gutter-x: 3.4rem;
}

.g-34,
.gy-34 {
  --bs-gutter-y: 3.4rem;
}

.g-35,
.gx-35 {
  --bs-gutter-x: 3.5rem;
}

.g-35,
.gy-35 {
  --bs-gutter-y: 3.5rem;
}

.g-36,
.gx-36 {
  --bs-gutter-x: 3.6rem;
}

.g-36,
.gy-36 {
  --bs-gutter-y: 3.6rem;
}

.g-37,
.gx-37 {
  --bs-gutter-x: 3.7rem;
}

.g-37,
.gy-37 {
  --bs-gutter-y: 3.7rem;
}

.g-38,
.gx-38 {
  --bs-gutter-x: 3.8rem;
}

.g-38,
.gy-38 {
  --bs-gutter-y: 3.8rem;
}

.g-39,
.gx-39 {
  --bs-gutter-x: 3.9rem;
}

.g-39,
.gy-39 {
  --bs-gutter-y: 3.9rem;
}

.g-40,
.gx-40 {
  --bs-gutter-x: 4rem;
}

.g-40,
.gy-40 {
  --bs-gutter-y: 4rem;
}

.g-41,
.gx-41 {
  --bs-gutter-x: 4.1rem;
}

.g-41,
.gy-41 {
  --bs-gutter-y: 4.1rem;
}

.g-42,
.gx-42 {
  --bs-gutter-x: 4.2rem;
}

.g-42,
.gy-42 {
  --bs-gutter-y: 4.2rem;
}

.g-43,
.gx-43 {
  --bs-gutter-x: 4.3rem;
}

.g-43,
.gy-43 {
  --bs-gutter-y: 4.3rem;
}

.g-44,
.gx-44 {
  --bs-gutter-x: 4.4rem;
}

.g-44,
.gy-44 {
  --bs-gutter-y: 4.4rem;
}

.g-45,
.gx-45 {
  --bs-gutter-x: 4.5rem;
}

.g-45,
.gy-45 {
  --bs-gutter-y: 4.5rem;
}

.g-46,
.gx-46 {
  --bs-gutter-x: 4.6rem;
}

.g-46,
.gy-46 {
  --bs-gutter-y: 4.6rem;
}

.g-47,
.gx-47 {
  --bs-gutter-x: 4.7rem;
}

.g-47,
.gy-47 {
  --bs-gutter-y: 4.7rem;
}

.g-48,
.gx-48 {
  --bs-gutter-x: 4.8rem;
}

.g-48,
.gy-48 {
  --bs-gutter-y: 4.8rem;
}

.g-49,
.gx-49 {
  --bs-gutter-x: 4.9rem;
}

.g-49,
.gy-49 {
  --bs-gutter-y: 4.9rem;
}

.g-50,
.gx-50 {
  --bs-gutter-x: 5rem;
}

.g-50,
.gy-50 {
  --bs-gutter-y: 5rem;
}

.g-51,
.gx-51 {
  --bs-gutter-x: 5.1rem;
}

.g-51,
.gy-51 {
  --bs-gutter-y: 5.1rem;
}

.g-52,
.gx-52 {
  --bs-gutter-x: 5.2rem;
}

.g-52,
.gy-52 {
  --bs-gutter-y: 5.2rem;
}

.g-53,
.gx-53 {
  --bs-gutter-x: 5.3rem;
}

.g-53,
.gy-53 {
  --bs-gutter-y: 5.3rem;
}

.g-54,
.gx-54 {
  --bs-gutter-x: 5.4rem;
}

.g-54,
.gy-54 {
  --bs-gutter-y: 5.4rem;
}

.g-55,
.gx-55 {
  --bs-gutter-x: 5.5rem;
}

.g-55,
.gy-55 {
  --bs-gutter-y: 5.5rem;
}

.g-56,
.gx-56 {
  --bs-gutter-x: 5.6rem;
}

.g-56,
.gy-56 {
  --bs-gutter-y: 5.6rem;
}

.g-57,
.gx-57 {
  --bs-gutter-x: 5.7rem;
}

.g-57,
.gy-57 {
  --bs-gutter-y: 5.7rem;
}

.g-58,
.gx-58 {
  --bs-gutter-x: 5.8rem;
}

.g-58,
.gy-58 {
  --bs-gutter-y: 5.8rem;
}

.g-59,
.gx-59 {
  --bs-gutter-x: 5.9rem;
}

.g-59,
.gy-59 {
  --bs-gutter-y: 5.9rem;
}

.g-60,
.gx-60 {
  --bs-gutter-x: 6rem;
}

.g-60,
.gy-60 {
  --bs-gutter-y: 6rem;
}

.g-61,
.gx-61 {
  --bs-gutter-x: 6.1rem;
}

.g-61,
.gy-61 {
  --bs-gutter-y: 6.1rem;
}

.g-62,
.gx-62 {
  --bs-gutter-x: 6.2rem;
}

.g-62,
.gy-62 {
  --bs-gutter-y: 6.2rem;
}

.g-63,
.gx-63 {
  --bs-gutter-x: 6.3rem;
}

.g-63,
.gy-63 {
  --bs-gutter-y: 6.3rem;
}

.g-64,
.gx-64 {
  --bs-gutter-x: 6.4rem;
}

.g-64,
.gy-64 {
  --bs-gutter-y: 6.4rem;
}

.g-65,
.gx-65 {
  --bs-gutter-x: 6.5rem;
}

.g-65,
.gy-65 {
  --bs-gutter-y: 6.5rem;
}

.g-66,
.gx-66 {
  --bs-gutter-x: 6.6rem;
}

.g-66,
.gy-66 {
  --bs-gutter-y: 6.6rem;
}

.g-67,
.gx-67 {
  --bs-gutter-x: 6.7rem;
}

.g-67,
.gy-67 {
  --bs-gutter-y: 6.7rem;
}

.g-68,
.gx-68 {
  --bs-gutter-x: 6.8rem;
}

.g-68,
.gy-68 {
  --bs-gutter-y: 6.8rem;
}

.g-69,
.gx-69 {
  --bs-gutter-x: 6.9rem;
}

.g-69,
.gy-69 {
  --bs-gutter-y: 6.9rem;
}

.g-70,
.gx-70 {
  --bs-gutter-x: 7rem;
}

.g-70,
.gy-70 {
  --bs-gutter-y: 7rem;
}

.g-71,
.gx-71 {
  --bs-gutter-x: 7.1rem;
}

.g-71,
.gy-71 {
  --bs-gutter-y: 7.1rem;
}

.g-72,
.gx-72 {
  --bs-gutter-x: 7.2rem;
}

.g-72,
.gy-72 {
  --bs-gutter-y: 7.2rem;
}

.g-73,
.gx-73 {
  --bs-gutter-x: 7.3rem;
}

.g-73,
.gy-73 {
  --bs-gutter-y: 7.3rem;
}

.g-74,
.gx-74 {
  --bs-gutter-x: 7.4rem;
}

.g-74,
.gy-74 {
  --bs-gutter-y: 7.4rem;
}

.g-75,
.gx-75 {
  --bs-gutter-x: 7.5rem;
}

.g-75,
.gy-75 {
  --bs-gutter-y: 7.5rem;
}

.g-76,
.gx-76 {
  --bs-gutter-x: 7.6rem;
}

.g-76,
.gy-76 {
  --bs-gutter-y: 7.6rem;
}

.g-77,
.gx-77 {
  --bs-gutter-x: 7.7rem;
}

.g-77,
.gy-77 {
  --bs-gutter-y: 7.7rem;
}

.g-78,
.gx-78 {
  --bs-gutter-x: 7.8rem;
}

.g-78,
.gy-78 {
  --bs-gutter-y: 7.8rem;
}

.g-79,
.gx-79 {
  --bs-gutter-x: 7.9rem;
}

.g-79,
.gy-79 {
  --bs-gutter-y: 7.9rem;
}

.g-80,
.gx-80 {
  --bs-gutter-x: 8rem;
}

.g-80,
.gy-80 {
  --bs-gutter-y: 8rem;
}

.g-81,
.gx-81 {
  --bs-gutter-x: 8.1rem;
}

.g-81,
.gy-81 {
  --bs-gutter-y: 8.1rem;
}

.g-82,
.gx-82 {
  --bs-gutter-x: 8.2rem;
}

.g-82,
.gy-82 {
  --bs-gutter-y: 8.2rem;
}

.g-83,
.gx-83 {
  --bs-gutter-x: 8.3rem;
}

.g-83,
.gy-83 {
  --bs-gutter-y: 8.3rem;
}

.g-84,
.gx-84 {
  --bs-gutter-x: 8.4rem;
}

.g-84,
.gy-84 {
  --bs-gutter-y: 8.4rem;
}

.g-85,
.gx-85 {
  --bs-gutter-x: 8.5rem;
}

.g-85,
.gy-85 {
  --bs-gutter-y: 8.5rem;
}

.g-86,
.gx-86 {
  --bs-gutter-x: 8.6rem;
}

.g-86,
.gy-86 {
  --bs-gutter-y: 8.6rem;
}

.g-87,
.gx-87 {
  --bs-gutter-x: 8.7rem;
}

.g-87,
.gy-87 {
  --bs-gutter-y: 8.7rem;
}

.g-88,
.gx-88 {
  --bs-gutter-x: 8.8rem;
}

.g-88,
.gy-88 {
  --bs-gutter-y: 8.8rem;
}

.g-89,
.gx-89 {
  --bs-gutter-x: 8.9rem;
}

.g-89,
.gy-89 {
  --bs-gutter-y: 8.9rem;
}

.g-90,
.gx-90 {
  --bs-gutter-x: 9rem;
}

.g-90,
.gy-90 {
  --bs-gutter-y: 9rem;
}

.g-91,
.gx-91 {
  --bs-gutter-x: 9.1rem;
}

.g-91,
.gy-91 {
  --bs-gutter-y: 9.1rem;
}

.g-92,
.gx-92 {
  --bs-gutter-x: 9.2rem;
}

.g-92,
.gy-92 {
  --bs-gutter-y: 9.2rem;
}

.g-93,
.gx-93 {
  --bs-gutter-x: 9.3rem;
}

.g-93,
.gy-93 {
  --bs-gutter-y: 9.3rem;
}

.g-94,
.gx-94 {
  --bs-gutter-x: 9.4rem;
}

.g-94,
.gy-94 {
  --bs-gutter-y: 9.4rem;
}

.g-95,
.gx-95 {
  --bs-gutter-x: 9.5rem;
}

.g-95,
.gy-95 {
  --bs-gutter-y: 9.5rem;
}

.g-96,
.gx-96 {
  --bs-gutter-x: 9.6rem;
}

.g-96,
.gy-96 {
  --bs-gutter-y: 9.6rem;
}

.g-97,
.gx-97 {
  --bs-gutter-x: 9.7rem;
}

.g-97,
.gy-97 {
  --bs-gutter-y: 9.7rem;
}

.g-98,
.gx-98 {
  --bs-gutter-x: 9.8rem;
}

.g-98,
.gy-98 {
  --bs-gutter-y: 9.8rem;
}

.g-99,
.gx-99 {
  --bs-gutter-x: 9.9rem;
}

.g-99,
.gy-99 {
  --bs-gutter-y: 9.9rem;
}

.g-100,
.gx-100 {
  --bs-gutter-x: 10rem;
}

.g-100,
.gy-100 {
  --bs-gutter-y: 10rem;
}

@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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }

  .g-sm-6,
.gx-sm-6 {
    --bs-gutter-x: 0.6rem;
  }

  .g-sm-6,
.gy-sm-6 {
    --bs-gutter-y: 0.6rem;
  }

  .g-sm-7,
.gx-sm-7 {
    --bs-gutter-x: 0.7rem;
  }

  .g-sm-7,
.gy-sm-7 {
    --bs-gutter-y: 0.7rem;
  }

  .g-sm-8,
.gx-sm-8 {
    --bs-gutter-x: 0.8rem;
  }

  .g-sm-8,
.gy-sm-8 {
    --bs-gutter-y: 0.8rem;
  }

  .g-sm-9,
.gx-sm-9 {
    --bs-gutter-x: 0.9rem;
  }

  .g-sm-9,
.gy-sm-9 {
    --bs-gutter-y: 0.9rem;
  }

  .g-sm-10,
.gx-sm-10 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-10,
.gy-sm-10 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-11,
.gx-sm-11 {
    --bs-gutter-x: 1.1rem;
  }

  .g-sm-11,
.gy-sm-11 {
    --bs-gutter-y: 1.1rem;
  }

  .g-sm-12,
.gx-sm-12 {
    --bs-gutter-x: 1.2rem;
  }

  .g-sm-12,
.gy-sm-12 {
    --bs-gutter-y: 1.2rem;
  }

  .g-sm-13,
.gx-sm-13 {
    --bs-gutter-x: 1.3rem;
  }

  .g-sm-13,
.gy-sm-13 {
    --bs-gutter-y: 1.3rem;
  }

  .g-sm-14,
.gx-sm-14 {
    --bs-gutter-x: 1.4rem;
  }

  .g-sm-14,
.gy-sm-14 {
    --bs-gutter-y: 1.4rem;
  }

  .g-sm-15,
.gx-sm-15 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-15,
.gy-sm-15 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-16,
.gx-sm-16 {
    --bs-gutter-x: 1.6rem;
  }

  .g-sm-16,
.gy-sm-16 {
    --bs-gutter-y: 1.6rem;
  }

  .g-sm-17,
.gx-sm-17 {
    --bs-gutter-x: 1.7rem;
  }

  .g-sm-17,
.gy-sm-17 {
    --bs-gutter-y: 1.7rem;
  }

  .g-sm-18,
.gx-sm-18 {
    --bs-gutter-x: 1.8rem;
  }

  .g-sm-18,
.gy-sm-18 {
    --bs-gutter-y: 1.8rem;
  }

  .g-sm-19,
.gx-sm-19 {
    --bs-gutter-x: 1.9rem;
  }

  .g-sm-19,
.gy-sm-19 {
    --bs-gutter-y: 1.9rem;
  }

  .g-sm-20,
.gx-sm-20 {
    --bs-gutter-x: 2rem;
  }

  .g-sm-20,
.gy-sm-20 {
    --bs-gutter-y: 2rem;
  }

  .g-sm-21,
.gx-sm-21 {
    --bs-gutter-x: 2.1rem;
  }

  .g-sm-21,
.gy-sm-21 {
    --bs-gutter-y: 2.1rem;
  }

  .g-sm-22,
.gx-sm-22 {
    --bs-gutter-x: 2.2rem;
  }

  .g-sm-22,
.gy-sm-22 {
    --bs-gutter-y: 2.2rem;
  }

  .g-sm-23,
.gx-sm-23 {
    --bs-gutter-x: 2.3rem;
  }

  .g-sm-23,
.gy-sm-23 {
    --bs-gutter-y: 2.3rem;
  }

  .g-sm-24,
.gx-sm-24 {
    --bs-gutter-x: 2.4rem;
  }

  .g-sm-24,
.gy-sm-24 {
    --bs-gutter-y: 2.4rem;
  }

  .g-sm-25,
.gx-sm-25 {
    --bs-gutter-x: 2.5rem;
  }

  .g-sm-25,
.gy-sm-25 {
    --bs-gutter-y: 2.5rem;
  }

  .g-sm-26,
.gx-sm-26 {
    --bs-gutter-x: 2.6rem;
  }

  .g-sm-26,
.gy-sm-26 {
    --bs-gutter-y: 2.6rem;
  }

  .g-sm-27,
.gx-sm-27 {
    --bs-gutter-x: 2.7rem;
  }

  .g-sm-27,
.gy-sm-27 {
    --bs-gutter-y: 2.7rem;
  }

  .g-sm-28,
.gx-sm-28 {
    --bs-gutter-x: 2.8rem;
  }

  .g-sm-28,
.gy-sm-28 {
    --bs-gutter-y: 2.8rem;
  }

  .g-sm-29,
.gx-sm-29 {
    --bs-gutter-x: 2.9rem;
  }

  .g-sm-29,
.gy-sm-29 {
    --bs-gutter-y: 2.9rem;
  }

  .g-sm-30,
.gx-sm-30 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-30,
.gy-sm-30 {
    --bs-gutter-y: 3rem;
  }

  .g-sm-31,
.gx-sm-31 {
    --bs-gutter-x: 3.1rem;
  }

  .g-sm-31,
.gy-sm-31 {
    --bs-gutter-y: 3.1rem;
  }

  .g-sm-32,
.gx-sm-32 {
    --bs-gutter-x: 3.2rem;
  }

  .g-sm-32,
.gy-sm-32 {
    --bs-gutter-y: 3.2rem;
  }

  .g-sm-33,
.gx-sm-33 {
    --bs-gutter-x: 3.3rem;
  }

  .g-sm-33,
.gy-sm-33 {
    --bs-gutter-y: 3.3rem;
  }

  .g-sm-34,
.gx-sm-34 {
    --bs-gutter-x: 3.4rem;
  }

  .g-sm-34,
.gy-sm-34 {
    --bs-gutter-y: 3.4rem;
  }

  .g-sm-35,
.gx-sm-35 {
    --bs-gutter-x: 3.5rem;
  }

  .g-sm-35,
.gy-sm-35 {
    --bs-gutter-y: 3.5rem;
  }

  .g-sm-36,
.gx-sm-36 {
    --bs-gutter-x: 3.6rem;
  }

  .g-sm-36,
.gy-sm-36 {
    --bs-gutter-y: 3.6rem;
  }

  .g-sm-37,
.gx-sm-37 {
    --bs-gutter-x: 3.7rem;
  }

  .g-sm-37,
.gy-sm-37 {
    --bs-gutter-y: 3.7rem;
  }

  .g-sm-38,
.gx-sm-38 {
    --bs-gutter-x: 3.8rem;
  }

  .g-sm-38,
.gy-sm-38 {
    --bs-gutter-y: 3.8rem;
  }

  .g-sm-39,
.gx-sm-39 {
    --bs-gutter-x: 3.9rem;
  }

  .g-sm-39,
.gy-sm-39 {
    --bs-gutter-y: 3.9rem;
  }

  .g-sm-40,
.gx-sm-40 {
    --bs-gutter-x: 4rem;
  }

  .g-sm-40,
.gy-sm-40 {
    --bs-gutter-y: 4rem;
  }

  .g-sm-41,
.gx-sm-41 {
    --bs-gutter-x: 4.1rem;
  }

  .g-sm-41,
.gy-sm-41 {
    --bs-gutter-y: 4.1rem;
  }

  .g-sm-42,
.gx-sm-42 {
    --bs-gutter-x: 4.2rem;
  }

  .g-sm-42,
.gy-sm-42 {
    --bs-gutter-y: 4.2rem;
  }

  .g-sm-43,
.gx-sm-43 {
    --bs-gutter-x: 4.3rem;
  }

  .g-sm-43,
.gy-sm-43 {
    --bs-gutter-y: 4.3rem;
  }

  .g-sm-44,
.gx-sm-44 {
    --bs-gutter-x: 4.4rem;
  }

  .g-sm-44,
.gy-sm-44 {
    --bs-gutter-y: 4.4rem;
  }

  .g-sm-45,
.gx-sm-45 {
    --bs-gutter-x: 4.5rem;
  }

  .g-sm-45,
.gy-sm-45 {
    --bs-gutter-y: 4.5rem;
  }

  .g-sm-46,
.gx-sm-46 {
    --bs-gutter-x: 4.6rem;
  }

  .g-sm-46,
.gy-sm-46 {
    --bs-gutter-y: 4.6rem;
  }

  .g-sm-47,
.gx-sm-47 {
    --bs-gutter-x: 4.7rem;
  }

  .g-sm-47,
.gy-sm-47 {
    --bs-gutter-y: 4.7rem;
  }

  .g-sm-48,
.gx-sm-48 {
    --bs-gutter-x: 4.8rem;
  }

  .g-sm-48,
.gy-sm-48 {
    --bs-gutter-y: 4.8rem;
  }

  .g-sm-49,
.gx-sm-49 {
    --bs-gutter-x: 4.9rem;
  }

  .g-sm-49,
.gy-sm-49 {
    --bs-gutter-y: 4.9rem;
  }

  .g-sm-50,
.gx-sm-50 {
    --bs-gutter-x: 5rem;
  }

  .g-sm-50,
.gy-sm-50 {
    --bs-gutter-y: 5rem;
  }

  .g-sm-51,
.gx-sm-51 {
    --bs-gutter-x: 5.1rem;
  }

  .g-sm-51,
.gy-sm-51 {
    --bs-gutter-y: 5.1rem;
  }

  .g-sm-52,
.gx-sm-52 {
    --bs-gutter-x: 5.2rem;
  }

  .g-sm-52,
.gy-sm-52 {
    --bs-gutter-y: 5.2rem;
  }

  .g-sm-53,
.gx-sm-53 {
    --bs-gutter-x: 5.3rem;
  }

  .g-sm-53,
.gy-sm-53 {
    --bs-gutter-y: 5.3rem;
  }

  .g-sm-54,
.gx-sm-54 {
    --bs-gutter-x: 5.4rem;
  }

  .g-sm-54,
.gy-sm-54 {
    --bs-gutter-y: 5.4rem;
  }

  .g-sm-55,
.gx-sm-55 {
    --bs-gutter-x: 5.5rem;
  }

  .g-sm-55,
.gy-sm-55 {
    --bs-gutter-y: 5.5rem;
  }

  .g-sm-56,
.gx-sm-56 {
    --bs-gutter-x: 5.6rem;
  }

  .g-sm-56,
.gy-sm-56 {
    --bs-gutter-y: 5.6rem;
  }

  .g-sm-57,
.gx-sm-57 {
    --bs-gutter-x: 5.7rem;
  }

  .g-sm-57,
.gy-sm-57 {
    --bs-gutter-y: 5.7rem;
  }

  .g-sm-58,
.gx-sm-58 {
    --bs-gutter-x: 5.8rem;
  }

  .g-sm-58,
.gy-sm-58 {
    --bs-gutter-y: 5.8rem;
  }

  .g-sm-59,
.gx-sm-59 {
    --bs-gutter-x: 5.9rem;
  }

  .g-sm-59,
.gy-sm-59 {
    --bs-gutter-y: 5.9rem;
  }

  .g-sm-60,
.gx-sm-60 {
    --bs-gutter-x: 6rem;
  }

  .g-sm-60,
.gy-sm-60 {
    --bs-gutter-y: 6rem;
  }

  .g-sm-61,
.gx-sm-61 {
    --bs-gutter-x: 6.1rem;
  }

  .g-sm-61,
.gy-sm-61 {
    --bs-gutter-y: 6.1rem;
  }

  .g-sm-62,
.gx-sm-62 {
    --bs-gutter-x: 6.2rem;
  }

  .g-sm-62,
.gy-sm-62 {
    --bs-gutter-y: 6.2rem;
  }

  .g-sm-63,
.gx-sm-63 {
    --bs-gutter-x: 6.3rem;
  }

  .g-sm-63,
.gy-sm-63 {
    --bs-gutter-y: 6.3rem;
  }

  .g-sm-64,
.gx-sm-64 {
    --bs-gutter-x: 6.4rem;
  }

  .g-sm-64,
.gy-sm-64 {
    --bs-gutter-y: 6.4rem;
  }

  .g-sm-65,
.gx-sm-65 {
    --bs-gutter-x: 6.5rem;
  }

  .g-sm-65,
.gy-sm-65 {
    --bs-gutter-y: 6.5rem;
  }

  .g-sm-66,
.gx-sm-66 {
    --bs-gutter-x: 6.6rem;
  }

  .g-sm-66,
.gy-sm-66 {
    --bs-gutter-y: 6.6rem;
  }

  .g-sm-67,
.gx-sm-67 {
    --bs-gutter-x: 6.7rem;
  }

  .g-sm-67,
.gy-sm-67 {
    --bs-gutter-y: 6.7rem;
  }

  .g-sm-68,
.gx-sm-68 {
    --bs-gutter-x: 6.8rem;
  }

  .g-sm-68,
.gy-sm-68 {
    --bs-gutter-y: 6.8rem;
  }

  .g-sm-69,
.gx-sm-69 {
    --bs-gutter-x: 6.9rem;
  }

  .g-sm-69,
.gy-sm-69 {
    --bs-gutter-y: 6.9rem;
  }

  .g-sm-70,
.gx-sm-70 {
    --bs-gutter-x: 7rem;
  }

  .g-sm-70,
.gy-sm-70 {
    --bs-gutter-y: 7rem;
  }

  .g-sm-71,
.gx-sm-71 {
    --bs-gutter-x: 7.1rem;
  }

  .g-sm-71,
.gy-sm-71 {
    --bs-gutter-y: 7.1rem;
  }

  .g-sm-72,
.gx-sm-72 {
    --bs-gutter-x: 7.2rem;
  }

  .g-sm-72,
.gy-sm-72 {
    --bs-gutter-y: 7.2rem;
  }

  .g-sm-73,
.gx-sm-73 {
    --bs-gutter-x: 7.3rem;
  }

  .g-sm-73,
.gy-sm-73 {
    --bs-gutter-y: 7.3rem;
  }

  .g-sm-74,
.gx-sm-74 {
    --bs-gutter-x: 7.4rem;
  }

  .g-sm-74,
.gy-sm-74 {
    --bs-gutter-y: 7.4rem;
  }

  .g-sm-75,
.gx-sm-75 {
    --bs-gutter-x: 7.5rem;
  }

  .g-sm-75,
.gy-sm-75 {
    --bs-gutter-y: 7.5rem;
  }

  .g-sm-76,
.gx-sm-76 {
    --bs-gutter-x: 7.6rem;
  }

  .g-sm-76,
.gy-sm-76 {
    --bs-gutter-y: 7.6rem;
  }

  .g-sm-77,
.gx-sm-77 {
    --bs-gutter-x: 7.7rem;
  }

  .g-sm-77,
.gy-sm-77 {
    --bs-gutter-y: 7.7rem;
  }

  .g-sm-78,
.gx-sm-78 {
    --bs-gutter-x: 7.8rem;
  }

  .g-sm-78,
.gy-sm-78 {
    --bs-gutter-y: 7.8rem;
  }

  .g-sm-79,
.gx-sm-79 {
    --bs-gutter-x: 7.9rem;
  }

  .g-sm-79,
.gy-sm-79 {
    --bs-gutter-y: 7.9rem;
  }

  .g-sm-80,
.gx-sm-80 {
    --bs-gutter-x: 8rem;
  }

  .g-sm-80,
.gy-sm-80 {
    --bs-gutter-y: 8rem;
  }

  .g-sm-81,
.gx-sm-81 {
    --bs-gutter-x: 8.1rem;
  }

  .g-sm-81,
.gy-sm-81 {
    --bs-gutter-y: 8.1rem;
  }

  .g-sm-82,
.gx-sm-82 {
    --bs-gutter-x: 8.2rem;
  }

  .g-sm-82,
.gy-sm-82 {
    --bs-gutter-y: 8.2rem;
  }

  .g-sm-83,
.gx-sm-83 {
    --bs-gutter-x: 8.3rem;
  }

  .g-sm-83,
.gy-sm-83 {
    --bs-gutter-y: 8.3rem;
  }

  .g-sm-84,
.gx-sm-84 {
    --bs-gutter-x: 8.4rem;
  }

  .g-sm-84,
.gy-sm-84 {
    --bs-gutter-y: 8.4rem;
  }

  .g-sm-85,
.gx-sm-85 {
    --bs-gutter-x: 8.5rem;
  }

  .g-sm-85,
.gy-sm-85 {
    --bs-gutter-y: 8.5rem;
  }

  .g-sm-86,
.gx-sm-86 {
    --bs-gutter-x: 8.6rem;
  }

  .g-sm-86,
.gy-sm-86 {
    --bs-gutter-y: 8.6rem;
  }

  .g-sm-87,
.gx-sm-87 {
    --bs-gutter-x: 8.7rem;
  }

  .g-sm-87,
.gy-sm-87 {
    --bs-gutter-y: 8.7rem;
  }

  .g-sm-88,
.gx-sm-88 {
    --bs-gutter-x: 8.8rem;
  }

  .g-sm-88,
.gy-sm-88 {
    --bs-gutter-y: 8.8rem;
  }

  .g-sm-89,
.gx-sm-89 {
    --bs-gutter-x: 8.9rem;
  }

  .g-sm-89,
.gy-sm-89 {
    --bs-gutter-y: 8.9rem;
  }

  .g-sm-90,
.gx-sm-90 {
    --bs-gutter-x: 9rem;
  }

  .g-sm-90,
.gy-sm-90 {
    --bs-gutter-y: 9rem;
  }

  .g-sm-91,
.gx-sm-91 {
    --bs-gutter-x: 9.1rem;
  }

  .g-sm-91,
.gy-sm-91 {
    --bs-gutter-y: 9.1rem;
  }

  .g-sm-92,
.gx-sm-92 {
    --bs-gutter-x: 9.2rem;
  }

  .g-sm-92,
.gy-sm-92 {
    --bs-gutter-y: 9.2rem;
  }

  .g-sm-93,
.gx-sm-93 {
    --bs-gutter-x: 9.3rem;
  }

  .g-sm-93,
.gy-sm-93 {
    --bs-gutter-y: 9.3rem;
  }

  .g-sm-94,
.gx-sm-94 {
    --bs-gutter-x: 9.4rem;
  }

  .g-sm-94,
.gy-sm-94 {
    --bs-gutter-y: 9.4rem;
  }

  .g-sm-95,
.gx-sm-95 {
    --bs-gutter-x: 9.5rem;
  }

  .g-sm-95,
.gy-sm-95 {
    --bs-gutter-y: 9.5rem;
  }

  .g-sm-96,
.gx-sm-96 {
    --bs-gutter-x: 9.6rem;
  }

  .g-sm-96,
.gy-sm-96 {
    --bs-gutter-y: 9.6rem;
  }

  .g-sm-97,
.gx-sm-97 {
    --bs-gutter-x: 9.7rem;
  }

  .g-sm-97,
.gy-sm-97 {
    --bs-gutter-y: 9.7rem;
  }

  .g-sm-98,
.gx-sm-98 {
    --bs-gutter-x: 9.8rem;
  }

  .g-sm-98,
.gy-sm-98 {
    --bs-gutter-y: 9.8rem;
  }

  .g-sm-99,
.gx-sm-99 {
    --bs-gutter-x: 9.9rem;
  }

  .g-sm-99,
.gy-sm-99 {
    --bs-gutter-y: 9.9rem;
  }

  .g-sm-100,
.gx-sm-100 {
    --bs-gutter-x: 10rem;
  }

  .g-sm-100,
.gy-sm-100 {
    --bs-gutter-y: 10rem;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }

  .g-md-6,
.gx-md-6 {
    --bs-gutter-x: 0.6rem;
  }

  .g-md-6,
.gy-md-6 {
    --bs-gutter-y: 0.6rem;
  }

  .g-md-7,
.gx-md-7 {
    --bs-gutter-x: 0.7rem;
  }

  .g-md-7,
.gy-md-7 {
    --bs-gutter-y: 0.7rem;
  }

  .g-md-8,
.gx-md-8 {
    --bs-gutter-x: 0.8rem;
  }

  .g-md-8,
.gy-md-8 {
    --bs-gutter-y: 0.8rem;
  }

  .g-md-9,
.gx-md-9 {
    --bs-gutter-x: 0.9rem;
  }

  .g-md-9,
.gy-md-9 {
    --bs-gutter-y: 0.9rem;
  }

  .g-md-10,
.gx-md-10 {
    --bs-gutter-x: 1rem;
  }

  .g-md-10,
.gy-md-10 {
    --bs-gutter-y: 1rem;
  }

  .g-md-11,
.gx-md-11 {
    --bs-gutter-x: 1.1rem;
  }

  .g-md-11,
.gy-md-11 {
    --bs-gutter-y: 1.1rem;
  }

  .g-md-12,
.gx-md-12 {
    --bs-gutter-x: 1.2rem;
  }

  .g-md-12,
.gy-md-12 {
    --bs-gutter-y: 1.2rem;
  }

  .g-md-13,
.gx-md-13 {
    --bs-gutter-x: 1.3rem;
  }

  .g-md-13,
.gy-md-13 {
    --bs-gutter-y: 1.3rem;
  }

  .g-md-14,
.gx-md-14 {
    --bs-gutter-x: 1.4rem;
  }

  .g-md-14,
.gy-md-14 {
    --bs-gutter-y: 1.4rem;
  }

  .g-md-15,
.gx-md-15 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-15,
.gy-md-15 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-16,
.gx-md-16 {
    --bs-gutter-x: 1.6rem;
  }

  .g-md-16,
.gy-md-16 {
    --bs-gutter-y: 1.6rem;
  }

  .g-md-17,
.gx-md-17 {
    --bs-gutter-x: 1.7rem;
  }

  .g-md-17,
.gy-md-17 {
    --bs-gutter-y: 1.7rem;
  }

  .g-md-18,
.gx-md-18 {
    --bs-gutter-x: 1.8rem;
  }

  .g-md-18,
.gy-md-18 {
    --bs-gutter-y: 1.8rem;
  }

  .g-md-19,
.gx-md-19 {
    --bs-gutter-x: 1.9rem;
  }

  .g-md-19,
.gy-md-19 {
    --bs-gutter-y: 1.9rem;
  }

  .g-md-20,
.gx-md-20 {
    --bs-gutter-x: 2rem;
  }

  .g-md-20,
.gy-md-20 {
    --bs-gutter-y: 2rem;
  }

  .g-md-21,
.gx-md-21 {
    --bs-gutter-x: 2.1rem;
  }

  .g-md-21,
.gy-md-21 {
    --bs-gutter-y: 2.1rem;
  }

  .g-md-22,
.gx-md-22 {
    --bs-gutter-x: 2.2rem;
  }

  .g-md-22,
.gy-md-22 {
    --bs-gutter-y: 2.2rem;
  }

  .g-md-23,
.gx-md-23 {
    --bs-gutter-x: 2.3rem;
  }

  .g-md-23,
.gy-md-23 {
    --bs-gutter-y: 2.3rem;
  }

  .g-md-24,
.gx-md-24 {
    --bs-gutter-x: 2.4rem;
  }

  .g-md-24,
.gy-md-24 {
    --bs-gutter-y: 2.4rem;
  }

  .g-md-25,
.gx-md-25 {
    --bs-gutter-x: 2.5rem;
  }

  .g-md-25,
.gy-md-25 {
    --bs-gutter-y: 2.5rem;
  }

  .g-md-26,
.gx-md-26 {
    --bs-gutter-x: 2.6rem;
  }

  .g-md-26,
.gy-md-26 {
    --bs-gutter-y: 2.6rem;
  }

  .g-md-27,
.gx-md-27 {
    --bs-gutter-x: 2.7rem;
  }

  .g-md-27,
.gy-md-27 {
    --bs-gutter-y: 2.7rem;
  }

  .g-md-28,
.gx-md-28 {
    --bs-gutter-x: 2.8rem;
  }

  .g-md-28,
.gy-md-28 {
    --bs-gutter-y: 2.8rem;
  }

  .g-md-29,
.gx-md-29 {
    --bs-gutter-x: 2.9rem;
  }

  .g-md-29,
.gy-md-29 {
    --bs-gutter-y: 2.9rem;
  }

  .g-md-30,
.gx-md-30 {
    --bs-gutter-x: 3rem;
  }

  .g-md-30,
.gy-md-30 {
    --bs-gutter-y: 3rem;
  }

  .g-md-31,
.gx-md-31 {
    --bs-gutter-x: 3.1rem;
  }

  .g-md-31,
.gy-md-31 {
    --bs-gutter-y: 3.1rem;
  }

  .g-md-32,
.gx-md-32 {
    --bs-gutter-x: 3.2rem;
  }

  .g-md-32,
.gy-md-32 {
    --bs-gutter-y: 3.2rem;
  }

  .g-md-33,
.gx-md-33 {
    --bs-gutter-x: 3.3rem;
  }

  .g-md-33,
.gy-md-33 {
    --bs-gutter-y: 3.3rem;
  }

  .g-md-34,
.gx-md-34 {
    --bs-gutter-x: 3.4rem;
  }

  .g-md-34,
.gy-md-34 {
    --bs-gutter-y: 3.4rem;
  }

  .g-md-35,
.gx-md-35 {
    --bs-gutter-x: 3.5rem;
  }

  .g-md-35,
.gy-md-35 {
    --bs-gutter-y: 3.5rem;
  }

  .g-md-36,
.gx-md-36 {
    --bs-gutter-x: 3.6rem;
  }

  .g-md-36,
.gy-md-36 {
    --bs-gutter-y: 3.6rem;
  }

  .g-md-37,
.gx-md-37 {
    --bs-gutter-x: 3.7rem;
  }

  .g-md-37,
.gy-md-37 {
    --bs-gutter-y: 3.7rem;
  }

  .g-md-38,
.gx-md-38 {
    --bs-gutter-x: 3.8rem;
  }

  .g-md-38,
.gy-md-38 {
    --bs-gutter-y: 3.8rem;
  }

  .g-md-39,
.gx-md-39 {
    --bs-gutter-x: 3.9rem;
  }

  .g-md-39,
.gy-md-39 {
    --bs-gutter-y: 3.9rem;
  }

  .g-md-40,
.gx-md-40 {
    --bs-gutter-x: 4rem;
  }

  .g-md-40,
.gy-md-40 {
    --bs-gutter-y: 4rem;
  }

  .g-md-41,
.gx-md-41 {
    --bs-gutter-x: 4.1rem;
  }

  .g-md-41,
.gy-md-41 {
    --bs-gutter-y: 4.1rem;
  }

  .g-md-42,
.gx-md-42 {
    --bs-gutter-x: 4.2rem;
  }

  .g-md-42,
.gy-md-42 {
    --bs-gutter-y: 4.2rem;
  }

  .g-md-43,
.gx-md-43 {
    --bs-gutter-x: 4.3rem;
  }

  .g-md-43,
.gy-md-43 {
    --bs-gutter-y: 4.3rem;
  }

  .g-md-44,
.gx-md-44 {
    --bs-gutter-x: 4.4rem;
  }

  .g-md-44,
.gy-md-44 {
    --bs-gutter-y: 4.4rem;
  }

  .g-md-45,
.gx-md-45 {
    --bs-gutter-x: 4.5rem;
  }

  .g-md-45,
.gy-md-45 {
    --bs-gutter-y: 4.5rem;
  }

  .g-md-46,
.gx-md-46 {
    --bs-gutter-x: 4.6rem;
  }

  .g-md-46,
.gy-md-46 {
    --bs-gutter-y: 4.6rem;
  }

  .g-md-47,
.gx-md-47 {
    --bs-gutter-x: 4.7rem;
  }

  .g-md-47,
.gy-md-47 {
    --bs-gutter-y: 4.7rem;
  }

  .g-md-48,
.gx-md-48 {
    --bs-gutter-x: 4.8rem;
  }

  .g-md-48,
.gy-md-48 {
    --bs-gutter-y: 4.8rem;
  }

  .g-md-49,
.gx-md-49 {
    --bs-gutter-x: 4.9rem;
  }

  .g-md-49,
.gy-md-49 {
    --bs-gutter-y: 4.9rem;
  }

  .g-md-50,
.gx-md-50 {
    --bs-gutter-x: 5rem;
  }

  .g-md-50,
.gy-md-50 {
    --bs-gutter-y: 5rem;
  }

  .g-md-51,
.gx-md-51 {
    --bs-gutter-x: 5.1rem;
  }

  .g-md-51,
.gy-md-51 {
    --bs-gutter-y: 5.1rem;
  }

  .g-md-52,
.gx-md-52 {
    --bs-gutter-x: 5.2rem;
  }

  .g-md-52,
.gy-md-52 {
    --bs-gutter-y: 5.2rem;
  }

  .g-md-53,
.gx-md-53 {
    --bs-gutter-x: 5.3rem;
  }

  .g-md-53,
.gy-md-53 {
    --bs-gutter-y: 5.3rem;
  }

  .g-md-54,
.gx-md-54 {
    --bs-gutter-x: 5.4rem;
  }

  .g-md-54,
.gy-md-54 {
    --bs-gutter-y: 5.4rem;
  }

  .g-md-55,
.gx-md-55 {
    --bs-gutter-x: 5.5rem;
  }

  .g-md-55,
.gy-md-55 {
    --bs-gutter-y: 5.5rem;
  }

  .g-md-56,
.gx-md-56 {
    --bs-gutter-x: 5.6rem;
  }

  .g-md-56,
.gy-md-56 {
    --bs-gutter-y: 5.6rem;
  }

  .g-md-57,
.gx-md-57 {
    --bs-gutter-x: 5.7rem;
  }

  .g-md-57,
.gy-md-57 {
    --bs-gutter-y: 5.7rem;
  }

  .g-md-58,
.gx-md-58 {
    --bs-gutter-x: 5.8rem;
  }

  .g-md-58,
.gy-md-58 {
    --bs-gutter-y: 5.8rem;
  }

  .g-md-59,
.gx-md-59 {
    --bs-gutter-x: 5.9rem;
  }

  .g-md-59,
.gy-md-59 {
    --bs-gutter-y: 5.9rem;
  }

  .g-md-60,
.gx-md-60 {
    --bs-gutter-x: 6rem;
  }

  .g-md-60,
.gy-md-60 {
    --bs-gutter-y: 6rem;
  }

  .g-md-61,
.gx-md-61 {
    --bs-gutter-x: 6.1rem;
  }

  .g-md-61,
.gy-md-61 {
    --bs-gutter-y: 6.1rem;
  }

  .g-md-62,
.gx-md-62 {
    --bs-gutter-x: 6.2rem;
  }

  .g-md-62,
.gy-md-62 {
    --bs-gutter-y: 6.2rem;
  }

  .g-md-63,
.gx-md-63 {
    --bs-gutter-x: 6.3rem;
  }

  .g-md-63,
.gy-md-63 {
    --bs-gutter-y: 6.3rem;
  }

  .g-md-64,
.gx-md-64 {
    --bs-gutter-x: 6.4rem;
  }

  .g-md-64,
.gy-md-64 {
    --bs-gutter-y: 6.4rem;
  }

  .g-md-65,
.gx-md-65 {
    --bs-gutter-x: 6.5rem;
  }

  .g-md-65,
.gy-md-65 {
    --bs-gutter-y: 6.5rem;
  }

  .g-md-66,
.gx-md-66 {
    --bs-gutter-x: 6.6rem;
  }

  .g-md-66,
.gy-md-66 {
    --bs-gutter-y: 6.6rem;
  }

  .g-md-67,
.gx-md-67 {
    --bs-gutter-x: 6.7rem;
  }

  .g-md-67,
.gy-md-67 {
    --bs-gutter-y: 6.7rem;
  }

  .g-md-68,
.gx-md-68 {
    --bs-gutter-x: 6.8rem;
  }

  .g-md-68,
.gy-md-68 {
    --bs-gutter-y: 6.8rem;
  }

  .g-md-69,
.gx-md-69 {
    --bs-gutter-x: 6.9rem;
  }

  .g-md-69,
.gy-md-69 {
    --bs-gutter-y: 6.9rem;
  }

  .g-md-70,
.gx-md-70 {
    --bs-gutter-x: 7rem;
  }

  .g-md-70,
.gy-md-70 {
    --bs-gutter-y: 7rem;
  }

  .g-md-71,
.gx-md-71 {
    --bs-gutter-x: 7.1rem;
  }

  .g-md-71,
.gy-md-71 {
    --bs-gutter-y: 7.1rem;
  }

  .g-md-72,
.gx-md-72 {
    --bs-gutter-x: 7.2rem;
  }

  .g-md-72,
.gy-md-72 {
    --bs-gutter-y: 7.2rem;
  }

  .g-md-73,
.gx-md-73 {
    --bs-gutter-x: 7.3rem;
  }

  .g-md-73,
.gy-md-73 {
    --bs-gutter-y: 7.3rem;
  }

  .g-md-74,
.gx-md-74 {
    --bs-gutter-x: 7.4rem;
  }

  .g-md-74,
.gy-md-74 {
    --bs-gutter-y: 7.4rem;
  }

  .g-md-75,
.gx-md-75 {
    --bs-gutter-x: 7.5rem;
  }

  .g-md-75,
.gy-md-75 {
    --bs-gutter-y: 7.5rem;
  }

  .g-md-76,
.gx-md-76 {
    --bs-gutter-x: 7.6rem;
  }

  .g-md-76,
.gy-md-76 {
    --bs-gutter-y: 7.6rem;
  }

  .g-md-77,
.gx-md-77 {
    --bs-gutter-x: 7.7rem;
  }

  .g-md-77,
.gy-md-77 {
    --bs-gutter-y: 7.7rem;
  }

  .g-md-78,
.gx-md-78 {
    --bs-gutter-x: 7.8rem;
  }

  .g-md-78,
.gy-md-78 {
    --bs-gutter-y: 7.8rem;
  }

  .g-md-79,
.gx-md-79 {
    --bs-gutter-x: 7.9rem;
  }

  .g-md-79,
.gy-md-79 {
    --bs-gutter-y: 7.9rem;
  }

  .g-md-80,
.gx-md-80 {
    --bs-gutter-x: 8rem;
  }

  .g-md-80,
.gy-md-80 {
    --bs-gutter-y: 8rem;
  }

  .g-md-81,
.gx-md-81 {
    --bs-gutter-x: 8.1rem;
  }

  .g-md-81,
.gy-md-81 {
    --bs-gutter-y: 8.1rem;
  }

  .g-md-82,
.gx-md-82 {
    --bs-gutter-x: 8.2rem;
  }

  .g-md-82,
.gy-md-82 {
    --bs-gutter-y: 8.2rem;
  }

  .g-md-83,
.gx-md-83 {
    --bs-gutter-x: 8.3rem;
  }

  .g-md-83,
.gy-md-83 {
    --bs-gutter-y: 8.3rem;
  }

  .g-md-84,
.gx-md-84 {
    --bs-gutter-x: 8.4rem;
  }

  .g-md-84,
.gy-md-84 {
    --bs-gutter-y: 8.4rem;
  }

  .g-md-85,
.gx-md-85 {
    --bs-gutter-x: 8.5rem;
  }

  .g-md-85,
.gy-md-85 {
    --bs-gutter-y: 8.5rem;
  }

  .g-md-86,
.gx-md-86 {
    --bs-gutter-x: 8.6rem;
  }

  .g-md-86,
.gy-md-86 {
    --bs-gutter-y: 8.6rem;
  }

  .g-md-87,
.gx-md-87 {
    --bs-gutter-x: 8.7rem;
  }

  .g-md-87,
.gy-md-87 {
    --bs-gutter-y: 8.7rem;
  }

  .g-md-88,
.gx-md-88 {
    --bs-gutter-x: 8.8rem;
  }

  .g-md-88,
.gy-md-88 {
    --bs-gutter-y: 8.8rem;
  }

  .g-md-89,
.gx-md-89 {
    --bs-gutter-x: 8.9rem;
  }

  .g-md-89,
.gy-md-89 {
    --bs-gutter-y: 8.9rem;
  }

  .g-md-90,
.gx-md-90 {
    --bs-gutter-x: 9rem;
  }

  .g-md-90,
.gy-md-90 {
    --bs-gutter-y: 9rem;
  }

  .g-md-91,
.gx-md-91 {
    --bs-gutter-x: 9.1rem;
  }

  .g-md-91,
.gy-md-91 {
    --bs-gutter-y: 9.1rem;
  }

  .g-md-92,
.gx-md-92 {
    --bs-gutter-x: 9.2rem;
  }

  .g-md-92,
.gy-md-92 {
    --bs-gutter-y: 9.2rem;
  }

  .g-md-93,
.gx-md-93 {
    --bs-gutter-x: 9.3rem;
  }

  .g-md-93,
.gy-md-93 {
    --bs-gutter-y: 9.3rem;
  }

  .g-md-94,
.gx-md-94 {
    --bs-gutter-x: 9.4rem;
  }

  .g-md-94,
.gy-md-94 {
    --bs-gutter-y: 9.4rem;
  }

  .g-md-95,
.gx-md-95 {
    --bs-gutter-x: 9.5rem;
  }

  .g-md-95,
.gy-md-95 {
    --bs-gutter-y: 9.5rem;
  }

  .g-md-96,
.gx-md-96 {
    --bs-gutter-x: 9.6rem;
  }

  .g-md-96,
.gy-md-96 {
    --bs-gutter-y: 9.6rem;
  }

  .g-md-97,
.gx-md-97 {
    --bs-gutter-x: 9.7rem;
  }

  .g-md-97,
.gy-md-97 {
    --bs-gutter-y: 9.7rem;
  }

  .g-md-98,
.gx-md-98 {
    --bs-gutter-x: 9.8rem;
  }

  .g-md-98,
.gy-md-98 {
    --bs-gutter-y: 9.8rem;
  }

  .g-md-99,
.gx-md-99 {
    --bs-gutter-x: 9.9rem;
  }

  .g-md-99,
.gy-md-99 {
    --bs-gutter-y: 9.9rem;
  }

  .g-md-100,
.gx-md-100 {
    --bs-gutter-x: 10rem;
  }

  .g-md-100,
.gy-md-100 {
    --bs-gutter-y: 10rem;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }

  .g-lg-6,
.gx-lg-6 {
    --bs-gutter-x: 0.6rem;
  }

  .g-lg-6,
.gy-lg-6 {
    --bs-gutter-y: 0.6rem;
  }

  .g-lg-7,
.gx-lg-7 {
    --bs-gutter-x: 0.7rem;
  }

  .g-lg-7,
.gy-lg-7 {
    --bs-gutter-y: 0.7rem;
  }

  .g-lg-8,
.gx-lg-8 {
    --bs-gutter-x: 0.8rem;
  }

  .g-lg-8,
.gy-lg-8 {
    --bs-gutter-y: 0.8rem;
  }

  .g-lg-9,
.gx-lg-9 {
    --bs-gutter-x: 0.9rem;
  }

  .g-lg-9,
.gy-lg-9 {
    --bs-gutter-y: 0.9rem;
  }

  .g-lg-10,
.gx-lg-10 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-10,
.gy-lg-10 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-11,
.gx-lg-11 {
    --bs-gutter-x: 1.1rem;
  }

  .g-lg-11,
.gy-lg-11 {
    --bs-gutter-y: 1.1rem;
  }

  .g-lg-12,
.gx-lg-12 {
    --bs-gutter-x: 1.2rem;
  }

  .g-lg-12,
.gy-lg-12 {
    --bs-gutter-y: 1.2rem;
  }

  .g-lg-13,
.gx-lg-13 {
    --bs-gutter-x: 1.3rem;
  }

  .g-lg-13,
.gy-lg-13 {
    --bs-gutter-y: 1.3rem;
  }

  .g-lg-14,
.gx-lg-14 {
    --bs-gutter-x: 1.4rem;
  }

  .g-lg-14,
.gy-lg-14 {
    --bs-gutter-y: 1.4rem;
  }

  .g-lg-15,
.gx-lg-15 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-15,
.gy-lg-15 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-16,
.gx-lg-16 {
    --bs-gutter-x: 1.6rem;
  }

  .g-lg-16,
.gy-lg-16 {
    --bs-gutter-y: 1.6rem;
  }

  .g-lg-17,
.gx-lg-17 {
    --bs-gutter-x: 1.7rem;
  }

  .g-lg-17,
.gy-lg-17 {
    --bs-gutter-y: 1.7rem;
  }

  .g-lg-18,
.gx-lg-18 {
    --bs-gutter-x: 1.8rem;
  }

  .g-lg-18,
.gy-lg-18 {
    --bs-gutter-y: 1.8rem;
  }

  .g-lg-19,
.gx-lg-19 {
    --bs-gutter-x: 1.9rem;
  }

  .g-lg-19,
.gy-lg-19 {
    --bs-gutter-y: 1.9rem;
  }

  .g-lg-20,
.gx-lg-20 {
    --bs-gutter-x: 2rem;
  }

  .g-lg-20,
.gy-lg-20 {
    --bs-gutter-y: 2rem;
  }

  .g-lg-21,
.gx-lg-21 {
    --bs-gutter-x: 2.1rem;
  }

  .g-lg-21,
.gy-lg-21 {
    --bs-gutter-y: 2.1rem;
  }

  .g-lg-22,
.gx-lg-22 {
    --bs-gutter-x: 2.2rem;
  }

  .g-lg-22,
.gy-lg-22 {
    --bs-gutter-y: 2.2rem;
  }

  .g-lg-23,
.gx-lg-23 {
    --bs-gutter-x: 2.3rem;
  }

  .g-lg-23,
.gy-lg-23 {
    --bs-gutter-y: 2.3rem;
  }

  .g-lg-24,
.gx-lg-24 {
    --bs-gutter-x: 2.4rem;
  }

  .g-lg-24,
.gy-lg-24 {
    --bs-gutter-y: 2.4rem;
  }

  .g-lg-25,
.gx-lg-25 {
    --bs-gutter-x: 2.5rem;
  }

  .g-lg-25,
.gy-lg-25 {
    --bs-gutter-y: 2.5rem;
  }

  .g-lg-26,
.gx-lg-26 {
    --bs-gutter-x: 2.6rem;
  }

  .g-lg-26,
.gy-lg-26 {
    --bs-gutter-y: 2.6rem;
  }

  .g-lg-27,
.gx-lg-27 {
    --bs-gutter-x: 2.7rem;
  }

  .g-lg-27,
.gy-lg-27 {
    --bs-gutter-y: 2.7rem;
  }

  .g-lg-28,
.gx-lg-28 {
    --bs-gutter-x: 2.8rem;
  }

  .g-lg-28,
.gy-lg-28 {
    --bs-gutter-y: 2.8rem;
  }

  .g-lg-29,
.gx-lg-29 {
    --bs-gutter-x: 2.9rem;
  }

  .g-lg-29,
.gy-lg-29 {
    --bs-gutter-y: 2.9rem;
  }

  .g-lg-30,
.gx-lg-30 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-30,
.gy-lg-30 {
    --bs-gutter-y: 3rem;
  }

  .g-lg-31,
.gx-lg-31 {
    --bs-gutter-x: 3.1rem;
  }

  .g-lg-31,
.gy-lg-31 {
    --bs-gutter-y: 3.1rem;
  }

  .g-lg-32,
.gx-lg-32 {
    --bs-gutter-x: 3.2rem;
  }

  .g-lg-32,
.gy-lg-32 {
    --bs-gutter-y: 3.2rem;
  }

  .g-lg-33,
.gx-lg-33 {
    --bs-gutter-x: 3.3rem;
  }

  .g-lg-33,
.gy-lg-33 {
    --bs-gutter-y: 3.3rem;
  }

  .g-lg-34,
.gx-lg-34 {
    --bs-gutter-x: 3.4rem;
  }

  .g-lg-34,
.gy-lg-34 {
    --bs-gutter-y: 3.4rem;
  }

  .g-lg-35,
.gx-lg-35 {
    --bs-gutter-x: 3.5rem;
  }

  .g-lg-35,
.gy-lg-35 {
    --bs-gutter-y: 3.5rem;
  }

  .g-lg-36,
.gx-lg-36 {
    --bs-gutter-x: 3.6rem;
  }

  .g-lg-36,
.gy-lg-36 {
    --bs-gutter-y: 3.6rem;
  }

  .g-lg-37,
.gx-lg-37 {
    --bs-gutter-x: 3.7rem;
  }

  .g-lg-37,
.gy-lg-37 {
    --bs-gutter-y: 3.7rem;
  }

  .g-lg-38,
.gx-lg-38 {
    --bs-gutter-x: 3.8rem;
  }

  .g-lg-38,
.gy-lg-38 {
    --bs-gutter-y: 3.8rem;
  }

  .g-lg-39,
.gx-lg-39 {
    --bs-gutter-x: 3.9rem;
  }

  .g-lg-39,
.gy-lg-39 {
    --bs-gutter-y: 3.9rem;
  }

  .g-lg-40,
.gx-lg-40 {
    --bs-gutter-x: 4rem;
  }

  .g-lg-40,
.gy-lg-40 {
    --bs-gutter-y: 4rem;
  }

  .g-lg-41,
.gx-lg-41 {
    --bs-gutter-x: 4.1rem;
  }

  .g-lg-41,
.gy-lg-41 {
    --bs-gutter-y: 4.1rem;
  }

  .g-lg-42,
.gx-lg-42 {
    --bs-gutter-x: 4.2rem;
  }

  .g-lg-42,
.gy-lg-42 {
    --bs-gutter-y: 4.2rem;
  }

  .g-lg-43,
.gx-lg-43 {
    --bs-gutter-x: 4.3rem;
  }

  .g-lg-43,
.gy-lg-43 {
    --bs-gutter-y: 4.3rem;
  }

  .g-lg-44,
.gx-lg-44 {
    --bs-gutter-x: 4.4rem;
  }

  .g-lg-44,
.gy-lg-44 {
    --bs-gutter-y: 4.4rem;
  }

  .g-lg-45,
.gx-lg-45 {
    --bs-gutter-x: 4.5rem;
  }

  .g-lg-45,
.gy-lg-45 {
    --bs-gutter-y: 4.5rem;
  }

  .g-lg-46,
.gx-lg-46 {
    --bs-gutter-x: 4.6rem;
  }

  .g-lg-46,
.gy-lg-46 {
    --bs-gutter-y: 4.6rem;
  }

  .g-lg-47,
.gx-lg-47 {
    --bs-gutter-x: 4.7rem;
  }

  .g-lg-47,
.gy-lg-47 {
    --bs-gutter-y: 4.7rem;
  }

  .g-lg-48,
.gx-lg-48 {
    --bs-gutter-x: 4.8rem;
  }

  .g-lg-48,
.gy-lg-48 {
    --bs-gutter-y: 4.8rem;
  }

  .g-lg-49,
.gx-lg-49 {
    --bs-gutter-x: 4.9rem;
  }

  .g-lg-49,
.gy-lg-49 {
    --bs-gutter-y: 4.9rem;
  }

  .g-lg-50,
.gx-lg-50 {
    --bs-gutter-x: 5rem;
  }

  .g-lg-50,
.gy-lg-50 {
    --bs-gutter-y: 5rem;
  }

  .g-lg-51,
.gx-lg-51 {
    --bs-gutter-x: 5.1rem;
  }

  .g-lg-51,
.gy-lg-51 {
    --bs-gutter-y: 5.1rem;
  }

  .g-lg-52,
.gx-lg-52 {
    --bs-gutter-x: 5.2rem;
  }

  .g-lg-52,
.gy-lg-52 {
    --bs-gutter-y: 5.2rem;
  }

  .g-lg-53,
.gx-lg-53 {
    --bs-gutter-x: 5.3rem;
  }

  .g-lg-53,
.gy-lg-53 {
    --bs-gutter-y: 5.3rem;
  }

  .g-lg-54,
.gx-lg-54 {
    --bs-gutter-x: 5.4rem;
  }

  .g-lg-54,
.gy-lg-54 {
    --bs-gutter-y: 5.4rem;
  }

  .g-lg-55,
.gx-lg-55 {
    --bs-gutter-x: 5.5rem;
  }

  .g-lg-55,
.gy-lg-55 {
    --bs-gutter-y: 5.5rem;
  }

  .g-lg-56,
.gx-lg-56 {
    --bs-gutter-x: 5.6rem;
  }

  .g-lg-56,
.gy-lg-56 {
    --bs-gutter-y: 5.6rem;
  }

  .g-lg-57,
.gx-lg-57 {
    --bs-gutter-x: 5.7rem;
  }

  .g-lg-57,
.gy-lg-57 {
    --bs-gutter-y: 5.7rem;
  }

  .g-lg-58,
.gx-lg-58 {
    --bs-gutter-x: 5.8rem;
  }

  .g-lg-58,
.gy-lg-58 {
    --bs-gutter-y: 5.8rem;
  }

  .g-lg-59,
.gx-lg-59 {
    --bs-gutter-x: 5.9rem;
  }

  .g-lg-59,
.gy-lg-59 {
    --bs-gutter-y: 5.9rem;
  }

  .g-lg-60,
.gx-lg-60 {
    --bs-gutter-x: 6rem;
  }

  .g-lg-60,
.gy-lg-60 {
    --bs-gutter-y: 6rem;
  }

  .g-lg-61,
.gx-lg-61 {
    --bs-gutter-x: 6.1rem;
  }

  .g-lg-61,
.gy-lg-61 {
    --bs-gutter-y: 6.1rem;
  }

  .g-lg-62,
.gx-lg-62 {
    --bs-gutter-x: 6.2rem;
  }

  .g-lg-62,
.gy-lg-62 {
    --bs-gutter-y: 6.2rem;
  }

  .g-lg-63,
.gx-lg-63 {
    --bs-gutter-x: 6.3rem;
  }

  .g-lg-63,
.gy-lg-63 {
    --bs-gutter-y: 6.3rem;
  }

  .g-lg-64,
.gx-lg-64 {
    --bs-gutter-x: 6.4rem;
  }

  .g-lg-64,
.gy-lg-64 {
    --bs-gutter-y: 6.4rem;
  }

  .g-lg-65,
.gx-lg-65 {
    --bs-gutter-x: 6.5rem;
  }

  .g-lg-65,
.gy-lg-65 {
    --bs-gutter-y: 6.5rem;
  }

  .g-lg-66,
.gx-lg-66 {
    --bs-gutter-x: 6.6rem;
  }

  .g-lg-66,
.gy-lg-66 {
    --bs-gutter-y: 6.6rem;
  }

  .g-lg-67,
.gx-lg-67 {
    --bs-gutter-x: 6.7rem;
  }

  .g-lg-67,
.gy-lg-67 {
    --bs-gutter-y: 6.7rem;
  }

  .g-lg-68,
.gx-lg-68 {
    --bs-gutter-x: 6.8rem;
  }

  .g-lg-68,
.gy-lg-68 {
    --bs-gutter-y: 6.8rem;
  }

  .g-lg-69,
.gx-lg-69 {
    --bs-gutter-x: 6.9rem;
  }

  .g-lg-69,
.gy-lg-69 {
    --bs-gutter-y: 6.9rem;
  }

  .g-lg-70,
.gx-lg-70 {
    --bs-gutter-x: 7rem;
  }

  .g-lg-70,
.gy-lg-70 {
    --bs-gutter-y: 7rem;
  }

  .g-lg-71,
.gx-lg-71 {
    --bs-gutter-x: 7.1rem;
  }

  .g-lg-71,
.gy-lg-71 {
    --bs-gutter-y: 7.1rem;
  }

  .g-lg-72,
.gx-lg-72 {
    --bs-gutter-x: 7.2rem;
  }

  .g-lg-72,
.gy-lg-72 {
    --bs-gutter-y: 7.2rem;
  }

  .g-lg-73,
.gx-lg-73 {
    --bs-gutter-x: 7.3rem;
  }

  .g-lg-73,
.gy-lg-73 {
    --bs-gutter-y: 7.3rem;
  }

  .g-lg-74,
.gx-lg-74 {
    --bs-gutter-x: 7.4rem;
  }

  .g-lg-74,
.gy-lg-74 {
    --bs-gutter-y: 7.4rem;
  }

  .g-lg-75,
.gx-lg-75 {
    --bs-gutter-x: 7.5rem;
  }

  .g-lg-75,
.gy-lg-75 {
    --bs-gutter-y: 7.5rem;
  }

  .g-lg-76,
.gx-lg-76 {
    --bs-gutter-x: 7.6rem;
  }

  .g-lg-76,
.gy-lg-76 {
    --bs-gutter-y: 7.6rem;
  }

  .g-lg-77,
.gx-lg-77 {
    --bs-gutter-x: 7.7rem;
  }

  .g-lg-77,
.gy-lg-77 {
    --bs-gutter-y: 7.7rem;
  }

  .g-lg-78,
.gx-lg-78 {
    --bs-gutter-x: 7.8rem;
  }

  .g-lg-78,
.gy-lg-78 {
    --bs-gutter-y: 7.8rem;
  }

  .g-lg-79,
.gx-lg-79 {
    --bs-gutter-x: 7.9rem;
  }

  .g-lg-79,
.gy-lg-79 {
    --bs-gutter-y: 7.9rem;
  }

  .g-lg-80,
.gx-lg-80 {
    --bs-gutter-x: 8rem;
  }

  .g-lg-80,
.gy-lg-80 {
    --bs-gutter-y: 8rem;
  }

  .g-lg-81,
.gx-lg-81 {
    --bs-gutter-x: 8.1rem;
  }

  .g-lg-81,
.gy-lg-81 {
    --bs-gutter-y: 8.1rem;
  }

  .g-lg-82,
.gx-lg-82 {
    --bs-gutter-x: 8.2rem;
  }

  .g-lg-82,
.gy-lg-82 {
    --bs-gutter-y: 8.2rem;
  }

  .g-lg-83,
.gx-lg-83 {
    --bs-gutter-x: 8.3rem;
  }

  .g-lg-83,
.gy-lg-83 {
    --bs-gutter-y: 8.3rem;
  }

  .g-lg-84,
.gx-lg-84 {
    --bs-gutter-x: 8.4rem;
  }

  .g-lg-84,
.gy-lg-84 {
    --bs-gutter-y: 8.4rem;
  }

  .g-lg-85,
.gx-lg-85 {
    --bs-gutter-x: 8.5rem;
  }

  .g-lg-85,
.gy-lg-85 {
    --bs-gutter-y: 8.5rem;
  }

  .g-lg-86,
.gx-lg-86 {
    --bs-gutter-x: 8.6rem;
  }

  .g-lg-86,
.gy-lg-86 {
    --bs-gutter-y: 8.6rem;
  }

  .g-lg-87,
.gx-lg-87 {
    --bs-gutter-x: 8.7rem;
  }

  .g-lg-87,
.gy-lg-87 {
    --bs-gutter-y: 8.7rem;
  }

  .g-lg-88,
.gx-lg-88 {
    --bs-gutter-x: 8.8rem;
  }

  .g-lg-88,
.gy-lg-88 {
    --bs-gutter-y: 8.8rem;
  }

  .g-lg-89,
.gx-lg-89 {
    --bs-gutter-x: 8.9rem;
  }

  .g-lg-89,
.gy-lg-89 {
    --bs-gutter-y: 8.9rem;
  }

  .g-lg-90,
.gx-lg-90 {
    --bs-gutter-x: 9rem;
  }

  .g-lg-90,
.gy-lg-90 {
    --bs-gutter-y: 9rem;
  }

  .g-lg-91,
.gx-lg-91 {
    --bs-gutter-x: 9.1rem;
  }

  .g-lg-91,
.gy-lg-91 {
    --bs-gutter-y: 9.1rem;
  }

  .g-lg-92,
.gx-lg-92 {
    --bs-gutter-x: 9.2rem;
  }

  .g-lg-92,
.gy-lg-92 {
    --bs-gutter-y: 9.2rem;
  }

  .g-lg-93,
.gx-lg-93 {
    --bs-gutter-x: 9.3rem;
  }

  .g-lg-93,
.gy-lg-93 {
    --bs-gutter-y: 9.3rem;
  }

  .g-lg-94,
.gx-lg-94 {
    --bs-gutter-x: 9.4rem;
  }

  .g-lg-94,
.gy-lg-94 {
    --bs-gutter-y: 9.4rem;
  }

  .g-lg-95,
.gx-lg-95 {
    --bs-gutter-x: 9.5rem;
  }

  .g-lg-95,
.gy-lg-95 {
    --bs-gutter-y: 9.5rem;
  }

  .g-lg-96,
.gx-lg-96 {
    --bs-gutter-x: 9.6rem;
  }

  .g-lg-96,
.gy-lg-96 {
    --bs-gutter-y: 9.6rem;
  }

  .g-lg-97,
.gx-lg-97 {
    --bs-gutter-x: 9.7rem;
  }

  .g-lg-97,
.gy-lg-97 {
    --bs-gutter-y: 9.7rem;
  }

  .g-lg-98,
.gx-lg-98 {
    --bs-gutter-x: 9.8rem;
  }

  .g-lg-98,
.gy-lg-98 {
    --bs-gutter-y: 9.8rem;
  }

  .g-lg-99,
.gx-lg-99 {
    --bs-gutter-x: 9.9rem;
  }

  .g-lg-99,
.gy-lg-99 {
    --bs-gutter-y: 9.9rem;
  }

  .g-lg-100,
.gx-lg-100 {
    --bs-gutter-x: 10rem;
  }

  .g-lg-100,
.gy-lg-100 {
    --bs-gutter-y: 10rem;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }

  .g-xl-6,
.gx-xl-6 {
    --bs-gutter-x: 0.6rem;
  }

  .g-xl-6,
.gy-xl-6 {
    --bs-gutter-y: 0.6rem;
  }

  .g-xl-7,
.gx-xl-7 {
    --bs-gutter-x: 0.7rem;
  }

  .g-xl-7,
.gy-xl-7 {
    --bs-gutter-y: 0.7rem;
  }

  .g-xl-8,
.gx-xl-8 {
    --bs-gutter-x: 0.8rem;
  }

  .g-xl-8,
.gy-xl-8 {
    --bs-gutter-y: 0.8rem;
  }

  .g-xl-9,
.gx-xl-9 {
    --bs-gutter-x: 0.9rem;
  }

  .g-xl-9,
.gy-xl-9 {
    --bs-gutter-y: 0.9rem;
  }

  .g-xl-10,
.gx-xl-10 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-10,
.gy-xl-10 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-11,
.gx-xl-11 {
    --bs-gutter-x: 1.1rem;
  }

  .g-xl-11,
.gy-xl-11 {
    --bs-gutter-y: 1.1rem;
  }

  .g-xl-12,
.gx-xl-12 {
    --bs-gutter-x: 1.2rem;
  }

  .g-xl-12,
.gy-xl-12 {
    --bs-gutter-y: 1.2rem;
  }

  .g-xl-13,
.gx-xl-13 {
    --bs-gutter-x: 1.3rem;
  }

  .g-xl-13,
.gy-xl-13 {
    --bs-gutter-y: 1.3rem;
  }

  .g-xl-14,
.gx-xl-14 {
    --bs-gutter-x: 1.4rem;
  }

  .g-xl-14,
.gy-xl-14 {
    --bs-gutter-y: 1.4rem;
  }

  .g-xl-15,
.gx-xl-15 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-15,
.gy-xl-15 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-16,
.gx-xl-16 {
    --bs-gutter-x: 1.6rem;
  }

  .g-xl-16,
.gy-xl-16 {
    --bs-gutter-y: 1.6rem;
  }

  .g-xl-17,
.gx-xl-17 {
    --bs-gutter-x: 1.7rem;
  }

  .g-xl-17,
.gy-xl-17 {
    --bs-gutter-y: 1.7rem;
  }

  .g-xl-18,
.gx-xl-18 {
    --bs-gutter-x: 1.8rem;
  }

  .g-xl-18,
.gy-xl-18 {
    --bs-gutter-y: 1.8rem;
  }

  .g-xl-19,
.gx-xl-19 {
    --bs-gutter-x: 1.9rem;
  }

  .g-xl-19,
.gy-xl-19 {
    --bs-gutter-y: 1.9rem;
  }

  .g-xl-20,
.gx-xl-20 {
    --bs-gutter-x: 2rem;
  }

  .g-xl-20,
.gy-xl-20 {
    --bs-gutter-y: 2rem;
  }

  .g-xl-21,
.gx-xl-21 {
    --bs-gutter-x: 2.1rem;
  }

  .g-xl-21,
.gy-xl-21 {
    --bs-gutter-y: 2.1rem;
  }

  .g-xl-22,
.gx-xl-22 {
    --bs-gutter-x: 2.2rem;
  }

  .g-xl-22,
.gy-xl-22 {
    --bs-gutter-y: 2.2rem;
  }

  .g-xl-23,
.gx-xl-23 {
    --bs-gutter-x: 2.3rem;
  }

  .g-xl-23,
.gy-xl-23 {
    --bs-gutter-y: 2.3rem;
  }

  .g-xl-24,
.gx-xl-24 {
    --bs-gutter-x: 2.4rem;
  }

  .g-xl-24,
.gy-xl-24 {
    --bs-gutter-y: 2.4rem;
  }

  .g-xl-25,
.gx-xl-25 {
    --bs-gutter-x: 2.5rem;
  }

  .g-xl-25,
.gy-xl-25 {
    --bs-gutter-y: 2.5rem;
  }

  .g-xl-26,
.gx-xl-26 {
    --bs-gutter-x: 2.6rem;
  }

  .g-xl-26,
.gy-xl-26 {
    --bs-gutter-y: 2.6rem;
  }

  .g-xl-27,
.gx-xl-27 {
    --bs-gutter-x: 2.7rem;
  }

  .g-xl-27,
.gy-xl-27 {
    --bs-gutter-y: 2.7rem;
  }

  .g-xl-28,
.gx-xl-28 {
    --bs-gutter-x: 2.8rem;
  }

  .g-xl-28,
.gy-xl-28 {
    --bs-gutter-y: 2.8rem;
  }

  .g-xl-29,
.gx-xl-29 {
    --bs-gutter-x: 2.9rem;
  }

  .g-xl-29,
.gy-xl-29 {
    --bs-gutter-y: 2.9rem;
  }

  .g-xl-30,
.gx-xl-30 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-30,
.gy-xl-30 {
    --bs-gutter-y: 3rem;
  }

  .g-xl-31,
.gx-xl-31 {
    --bs-gutter-x: 3.1rem;
  }

  .g-xl-31,
.gy-xl-31 {
    --bs-gutter-y: 3.1rem;
  }

  .g-xl-32,
.gx-xl-32 {
    --bs-gutter-x: 3.2rem;
  }

  .g-xl-32,
.gy-xl-32 {
    --bs-gutter-y: 3.2rem;
  }

  .g-xl-33,
.gx-xl-33 {
    --bs-gutter-x: 3.3rem;
  }

  .g-xl-33,
.gy-xl-33 {
    --bs-gutter-y: 3.3rem;
  }

  .g-xl-34,
.gx-xl-34 {
    --bs-gutter-x: 3.4rem;
  }

  .g-xl-34,
.gy-xl-34 {
    --bs-gutter-y: 3.4rem;
  }

  .g-xl-35,
.gx-xl-35 {
    --bs-gutter-x: 3.5rem;
  }

  .g-xl-35,
.gy-xl-35 {
    --bs-gutter-y: 3.5rem;
  }

  .g-xl-36,
.gx-xl-36 {
    --bs-gutter-x: 3.6rem;
  }

  .g-xl-36,
.gy-xl-36 {
    --bs-gutter-y: 3.6rem;
  }

  .g-xl-37,
.gx-xl-37 {
    --bs-gutter-x: 3.7rem;
  }

  .g-xl-37,
.gy-xl-37 {
    --bs-gutter-y: 3.7rem;
  }

  .g-xl-38,
.gx-xl-38 {
    --bs-gutter-x: 3.8rem;
  }

  .g-xl-38,
.gy-xl-38 {
    --bs-gutter-y: 3.8rem;
  }

  .g-xl-39,
.gx-xl-39 {
    --bs-gutter-x: 3.9rem;
  }

  .g-xl-39,
.gy-xl-39 {
    --bs-gutter-y: 3.9rem;
  }

  .g-xl-40,
.gx-xl-40 {
    --bs-gutter-x: 4rem;
  }

  .g-xl-40,
.gy-xl-40 {
    --bs-gutter-y: 4rem;
  }

  .g-xl-41,
.gx-xl-41 {
    --bs-gutter-x: 4.1rem;
  }

  .g-xl-41,
.gy-xl-41 {
    --bs-gutter-y: 4.1rem;
  }

  .g-xl-42,
.gx-xl-42 {
    --bs-gutter-x: 4.2rem;
  }

  .g-xl-42,
.gy-xl-42 {
    --bs-gutter-y: 4.2rem;
  }

  .g-xl-43,
.gx-xl-43 {
    --bs-gutter-x: 4.3rem;
  }

  .g-xl-43,
.gy-xl-43 {
    --bs-gutter-y: 4.3rem;
  }

  .g-xl-44,
.gx-xl-44 {
    --bs-gutter-x: 4.4rem;
  }

  .g-xl-44,
.gy-xl-44 {
    --bs-gutter-y: 4.4rem;
  }

  .g-xl-45,
.gx-xl-45 {
    --bs-gutter-x: 4.5rem;
  }

  .g-xl-45,
.gy-xl-45 {
    --bs-gutter-y: 4.5rem;
  }

  .g-xl-46,
.gx-xl-46 {
    --bs-gutter-x: 4.6rem;
  }

  .g-xl-46,
.gy-xl-46 {
    --bs-gutter-y: 4.6rem;
  }

  .g-xl-47,
.gx-xl-47 {
    --bs-gutter-x: 4.7rem;
  }

  .g-xl-47,
.gy-xl-47 {
    --bs-gutter-y: 4.7rem;
  }

  .g-xl-48,
.gx-xl-48 {
    --bs-gutter-x: 4.8rem;
  }

  .g-xl-48,
.gy-xl-48 {
    --bs-gutter-y: 4.8rem;
  }

  .g-xl-49,
.gx-xl-49 {
    --bs-gutter-x: 4.9rem;
  }

  .g-xl-49,
.gy-xl-49 {
    --bs-gutter-y: 4.9rem;
  }

  .g-xl-50,
.gx-xl-50 {
    --bs-gutter-x: 5rem;
  }

  .g-xl-50,
.gy-xl-50 {
    --bs-gutter-y: 5rem;
  }

  .g-xl-51,
.gx-xl-51 {
    --bs-gutter-x: 5.1rem;
  }

  .g-xl-51,
.gy-xl-51 {
    --bs-gutter-y: 5.1rem;
  }

  .g-xl-52,
.gx-xl-52 {
    --bs-gutter-x: 5.2rem;
  }

  .g-xl-52,
.gy-xl-52 {
    --bs-gutter-y: 5.2rem;
  }

  .g-xl-53,
.gx-xl-53 {
    --bs-gutter-x: 5.3rem;
  }

  .g-xl-53,
.gy-xl-53 {
    --bs-gutter-y: 5.3rem;
  }

  .g-xl-54,
.gx-xl-54 {
    --bs-gutter-x: 5.4rem;
  }

  .g-xl-54,
.gy-xl-54 {
    --bs-gutter-y: 5.4rem;
  }

  .g-xl-55,
.gx-xl-55 {
    --bs-gutter-x: 5.5rem;
  }

  .g-xl-55,
.gy-xl-55 {
    --bs-gutter-y: 5.5rem;
  }

  .g-xl-56,
.gx-xl-56 {
    --bs-gutter-x: 5.6rem;
  }

  .g-xl-56,
.gy-xl-56 {
    --bs-gutter-y: 5.6rem;
  }

  .g-xl-57,
.gx-xl-57 {
    --bs-gutter-x: 5.7rem;
  }

  .g-xl-57,
.gy-xl-57 {
    --bs-gutter-y: 5.7rem;
  }

  .g-xl-58,
.gx-xl-58 {
    --bs-gutter-x: 5.8rem;
  }

  .g-xl-58,
.gy-xl-58 {
    --bs-gutter-y: 5.8rem;
  }

  .g-xl-59,
.gx-xl-59 {
    --bs-gutter-x: 5.9rem;
  }

  .g-xl-59,
.gy-xl-59 {
    --bs-gutter-y: 5.9rem;
  }

  .g-xl-60,
.gx-xl-60 {
    --bs-gutter-x: 6rem;
  }

  .g-xl-60,
.gy-xl-60 {
    --bs-gutter-y: 6rem;
  }

  .g-xl-61,
.gx-xl-61 {
    --bs-gutter-x: 6.1rem;
  }

  .g-xl-61,
.gy-xl-61 {
    --bs-gutter-y: 6.1rem;
  }

  .g-xl-62,
.gx-xl-62 {
    --bs-gutter-x: 6.2rem;
  }

  .g-xl-62,
.gy-xl-62 {
    --bs-gutter-y: 6.2rem;
  }

  .g-xl-63,
.gx-xl-63 {
    --bs-gutter-x: 6.3rem;
  }

  .g-xl-63,
.gy-xl-63 {
    --bs-gutter-y: 6.3rem;
  }

  .g-xl-64,
.gx-xl-64 {
    --bs-gutter-x: 6.4rem;
  }

  .g-xl-64,
.gy-xl-64 {
    --bs-gutter-y: 6.4rem;
  }

  .g-xl-65,
.gx-xl-65 {
    --bs-gutter-x: 6.5rem;
  }

  .g-xl-65,
.gy-xl-65 {
    --bs-gutter-y: 6.5rem;
  }

  .g-xl-66,
.gx-xl-66 {
    --bs-gutter-x: 6.6rem;
  }

  .g-xl-66,
.gy-xl-66 {
    --bs-gutter-y: 6.6rem;
  }

  .g-xl-67,
.gx-xl-67 {
    --bs-gutter-x: 6.7rem;
  }

  .g-xl-67,
.gy-xl-67 {
    --bs-gutter-y: 6.7rem;
  }

  .g-xl-68,
.gx-xl-68 {
    --bs-gutter-x: 6.8rem;
  }

  .g-xl-68,
.gy-xl-68 {
    --bs-gutter-y: 6.8rem;
  }

  .g-xl-69,
.gx-xl-69 {
    --bs-gutter-x: 6.9rem;
  }

  .g-xl-69,
.gy-xl-69 {
    --bs-gutter-y: 6.9rem;
  }

  .g-xl-70,
.gx-xl-70 {
    --bs-gutter-x: 7rem;
  }

  .g-xl-70,
.gy-xl-70 {
    --bs-gutter-y: 7rem;
  }

  .g-xl-71,
.gx-xl-71 {
    --bs-gutter-x: 7.1rem;
  }

  .g-xl-71,
.gy-xl-71 {
    --bs-gutter-y: 7.1rem;
  }

  .g-xl-72,
.gx-xl-72 {
    --bs-gutter-x: 7.2rem;
  }

  .g-xl-72,
.gy-xl-72 {
    --bs-gutter-y: 7.2rem;
  }

  .g-xl-73,
.gx-xl-73 {
    --bs-gutter-x: 7.3rem;
  }

  .g-xl-73,
.gy-xl-73 {
    --bs-gutter-y: 7.3rem;
  }

  .g-xl-74,
.gx-xl-74 {
    --bs-gutter-x: 7.4rem;
  }

  .g-xl-74,
.gy-xl-74 {
    --bs-gutter-y: 7.4rem;
  }

  .g-xl-75,
.gx-xl-75 {
    --bs-gutter-x: 7.5rem;
  }

  .g-xl-75,
.gy-xl-75 {
    --bs-gutter-y: 7.5rem;
  }

  .g-xl-76,
.gx-xl-76 {
    --bs-gutter-x: 7.6rem;
  }

  .g-xl-76,
.gy-xl-76 {
    --bs-gutter-y: 7.6rem;
  }

  .g-xl-77,
.gx-xl-77 {
    --bs-gutter-x: 7.7rem;
  }

  .g-xl-77,
.gy-xl-77 {
    --bs-gutter-y: 7.7rem;
  }

  .g-xl-78,
.gx-xl-78 {
    --bs-gutter-x: 7.8rem;
  }

  .g-xl-78,
.gy-xl-78 {
    --bs-gutter-y: 7.8rem;
  }

  .g-xl-79,
.gx-xl-79 {
    --bs-gutter-x: 7.9rem;
  }

  .g-xl-79,
.gy-xl-79 {
    --bs-gutter-y: 7.9rem;
  }

  .g-xl-80,
.gx-xl-80 {
    --bs-gutter-x: 8rem;
  }

  .g-xl-80,
.gy-xl-80 {
    --bs-gutter-y: 8rem;
  }

  .g-xl-81,
.gx-xl-81 {
    --bs-gutter-x: 8.1rem;
  }

  .g-xl-81,
.gy-xl-81 {
    --bs-gutter-y: 8.1rem;
  }

  .g-xl-82,
.gx-xl-82 {
    --bs-gutter-x: 8.2rem;
  }

  .g-xl-82,
.gy-xl-82 {
    --bs-gutter-y: 8.2rem;
  }

  .g-xl-83,
.gx-xl-83 {
    --bs-gutter-x: 8.3rem;
  }

  .g-xl-83,
.gy-xl-83 {
    --bs-gutter-y: 8.3rem;
  }

  .g-xl-84,
.gx-xl-84 {
    --bs-gutter-x: 8.4rem;
  }

  .g-xl-84,
.gy-xl-84 {
    --bs-gutter-y: 8.4rem;
  }

  .g-xl-85,
.gx-xl-85 {
    --bs-gutter-x: 8.5rem;
  }

  .g-xl-85,
.gy-xl-85 {
    --bs-gutter-y: 8.5rem;
  }

  .g-xl-86,
.gx-xl-86 {
    --bs-gutter-x: 8.6rem;
  }

  .g-xl-86,
.gy-xl-86 {
    --bs-gutter-y: 8.6rem;
  }

  .g-xl-87,
.gx-xl-87 {
    --bs-gutter-x: 8.7rem;
  }

  .g-xl-87,
.gy-xl-87 {
    --bs-gutter-y: 8.7rem;
  }

  .g-xl-88,
.gx-xl-88 {
    --bs-gutter-x: 8.8rem;
  }

  .g-xl-88,
.gy-xl-88 {
    --bs-gutter-y: 8.8rem;
  }

  .g-xl-89,
.gx-xl-89 {
    --bs-gutter-x: 8.9rem;
  }

  .g-xl-89,
.gy-xl-89 {
    --bs-gutter-y: 8.9rem;
  }

  .g-xl-90,
.gx-xl-90 {
    --bs-gutter-x: 9rem;
  }

  .g-xl-90,
.gy-xl-90 {
    --bs-gutter-y: 9rem;
  }

  .g-xl-91,
.gx-xl-91 {
    --bs-gutter-x: 9.1rem;
  }

  .g-xl-91,
.gy-xl-91 {
    --bs-gutter-y: 9.1rem;
  }

  .g-xl-92,
.gx-xl-92 {
    --bs-gutter-x: 9.2rem;
  }

  .g-xl-92,
.gy-xl-92 {
    --bs-gutter-y: 9.2rem;
  }

  .g-xl-93,
.gx-xl-93 {
    --bs-gutter-x: 9.3rem;
  }

  .g-xl-93,
.gy-xl-93 {
    --bs-gutter-y: 9.3rem;
  }

  .g-xl-94,
.gx-xl-94 {
    --bs-gutter-x: 9.4rem;
  }

  .g-xl-94,
.gy-xl-94 {
    --bs-gutter-y: 9.4rem;
  }

  .g-xl-95,
.gx-xl-95 {
    --bs-gutter-x: 9.5rem;
  }

  .g-xl-95,
.gy-xl-95 {
    --bs-gutter-y: 9.5rem;
  }

  .g-xl-96,
.gx-xl-96 {
    --bs-gutter-x: 9.6rem;
  }

  .g-xl-96,
.gy-xl-96 {
    --bs-gutter-y: 9.6rem;
  }

  .g-xl-97,
.gx-xl-97 {
    --bs-gutter-x: 9.7rem;
  }

  .g-xl-97,
.gy-xl-97 {
    --bs-gutter-y: 9.7rem;
  }

  .g-xl-98,
.gx-xl-98 {
    --bs-gutter-x: 9.8rem;
  }

  .g-xl-98,
.gy-xl-98 {
    --bs-gutter-y: 9.8rem;
  }

  .g-xl-99,
.gx-xl-99 {
    --bs-gutter-x: 9.9rem;
  }

  .g-xl-99,
.gy-xl-99 {
    --bs-gutter-y: 9.9rem;
  }

  .g-xl-100,
.gx-xl-100 {
    --bs-gutter-x: 10rem;
  }

  .g-xl-100,
.gy-xl-100 {
    --bs-gutter-y: 10rem;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }

  .g-xxl-6,
.gx-xxl-6 {
    --bs-gutter-x: 0.6rem;
  }

  .g-xxl-6,
.gy-xxl-6 {
    --bs-gutter-y: 0.6rem;
  }

  .g-xxl-7,
.gx-xxl-7 {
    --bs-gutter-x: 0.7rem;
  }

  .g-xxl-7,
.gy-xxl-7 {
    --bs-gutter-y: 0.7rem;
  }

  .g-xxl-8,
.gx-xxl-8 {
    --bs-gutter-x: 0.8rem;
  }

  .g-xxl-8,
.gy-xxl-8 {
    --bs-gutter-y: 0.8rem;
  }

  .g-xxl-9,
.gx-xxl-9 {
    --bs-gutter-x: 0.9rem;
  }

  .g-xxl-9,
.gy-xxl-9 {
    --bs-gutter-y: 0.9rem;
  }

  .g-xxl-10,
.gx-xxl-10 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-10,
.gy-xxl-10 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-11,
.gx-xxl-11 {
    --bs-gutter-x: 1.1rem;
  }

  .g-xxl-11,
.gy-xxl-11 {
    --bs-gutter-y: 1.1rem;
  }

  .g-xxl-12,
.gx-xxl-12 {
    --bs-gutter-x: 1.2rem;
  }

  .g-xxl-12,
.gy-xxl-12 {
    --bs-gutter-y: 1.2rem;
  }

  .g-xxl-13,
.gx-xxl-13 {
    --bs-gutter-x: 1.3rem;
  }

  .g-xxl-13,
.gy-xxl-13 {
    --bs-gutter-y: 1.3rem;
  }

  .g-xxl-14,
.gx-xxl-14 {
    --bs-gutter-x: 1.4rem;
  }

  .g-xxl-14,
.gy-xxl-14 {
    --bs-gutter-y: 1.4rem;
  }

  .g-xxl-15,
.gx-xxl-15 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-15,
.gy-xxl-15 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-16,
.gx-xxl-16 {
    --bs-gutter-x: 1.6rem;
  }

  .g-xxl-16,
.gy-xxl-16 {
    --bs-gutter-y: 1.6rem;
  }

  .g-xxl-17,
.gx-xxl-17 {
    --bs-gutter-x: 1.7rem;
  }

  .g-xxl-17,
.gy-xxl-17 {
    --bs-gutter-y: 1.7rem;
  }

  .g-xxl-18,
.gx-xxl-18 {
    --bs-gutter-x: 1.8rem;
  }

  .g-xxl-18,
.gy-xxl-18 {
    --bs-gutter-y: 1.8rem;
  }

  .g-xxl-19,
.gx-xxl-19 {
    --bs-gutter-x: 1.9rem;
  }

  .g-xxl-19,
.gy-xxl-19 {
    --bs-gutter-y: 1.9rem;
  }

  .g-xxl-20,
.gx-xxl-20 {
    --bs-gutter-x: 2rem;
  }

  .g-xxl-20,
.gy-xxl-20 {
    --bs-gutter-y: 2rem;
  }

  .g-xxl-21,
.gx-xxl-21 {
    --bs-gutter-x: 2.1rem;
  }

  .g-xxl-21,
.gy-xxl-21 {
    --bs-gutter-y: 2.1rem;
  }

  .g-xxl-22,
.gx-xxl-22 {
    --bs-gutter-x: 2.2rem;
  }

  .g-xxl-22,
.gy-xxl-22 {
    --bs-gutter-y: 2.2rem;
  }

  .g-xxl-23,
.gx-xxl-23 {
    --bs-gutter-x: 2.3rem;
  }

  .g-xxl-23,
.gy-xxl-23 {
    --bs-gutter-y: 2.3rem;
  }

  .g-xxl-24,
.gx-xxl-24 {
    --bs-gutter-x: 2.4rem;
  }

  .g-xxl-24,
.gy-xxl-24 {
    --bs-gutter-y: 2.4rem;
  }

  .g-xxl-25,
.gx-xxl-25 {
    --bs-gutter-x: 2.5rem;
  }

  .g-xxl-25,
.gy-xxl-25 {
    --bs-gutter-y: 2.5rem;
  }

  .g-xxl-26,
.gx-xxl-26 {
    --bs-gutter-x: 2.6rem;
  }

  .g-xxl-26,
.gy-xxl-26 {
    --bs-gutter-y: 2.6rem;
  }

  .g-xxl-27,
.gx-xxl-27 {
    --bs-gutter-x: 2.7rem;
  }

  .g-xxl-27,
.gy-xxl-27 {
    --bs-gutter-y: 2.7rem;
  }

  .g-xxl-28,
.gx-xxl-28 {
    --bs-gutter-x: 2.8rem;
  }

  .g-xxl-28,
.gy-xxl-28 {
    --bs-gutter-y: 2.8rem;
  }

  .g-xxl-29,
.gx-xxl-29 {
    --bs-gutter-x: 2.9rem;
  }

  .g-xxl-29,
.gy-xxl-29 {
    --bs-gutter-y: 2.9rem;
  }

  .g-xxl-30,
.gx-xxl-30 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-30,
.gy-xxl-30 {
    --bs-gutter-y: 3rem;
  }

  .g-xxl-31,
.gx-xxl-31 {
    --bs-gutter-x: 3.1rem;
  }

  .g-xxl-31,
.gy-xxl-31 {
    --bs-gutter-y: 3.1rem;
  }

  .g-xxl-32,
.gx-xxl-32 {
    --bs-gutter-x: 3.2rem;
  }

  .g-xxl-32,
.gy-xxl-32 {
    --bs-gutter-y: 3.2rem;
  }

  .g-xxl-33,
.gx-xxl-33 {
    --bs-gutter-x: 3.3rem;
  }

  .g-xxl-33,
.gy-xxl-33 {
    --bs-gutter-y: 3.3rem;
  }

  .g-xxl-34,
.gx-xxl-34 {
    --bs-gutter-x: 3.4rem;
  }

  .g-xxl-34,
.gy-xxl-34 {
    --bs-gutter-y: 3.4rem;
  }

  .g-xxl-35,
.gx-xxl-35 {
    --bs-gutter-x: 3.5rem;
  }

  .g-xxl-35,
.gy-xxl-35 {
    --bs-gutter-y: 3.5rem;
  }

  .g-xxl-36,
.gx-xxl-36 {
    --bs-gutter-x: 3.6rem;
  }

  .g-xxl-36,
.gy-xxl-36 {
    --bs-gutter-y: 3.6rem;
  }

  .g-xxl-37,
.gx-xxl-37 {
    --bs-gutter-x: 3.7rem;
  }

  .g-xxl-37,
.gy-xxl-37 {
    --bs-gutter-y: 3.7rem;
  }

  .g-xxl-38,
.gx-xxl-38 {
    --bs-gutter-x: 3.8rem;
  }

  .g-xxl-38,
.gy-xxl-38 {
    --bs-gutter-y: 3.8rem;
  }

  .g-xxl-39,
.gx-xxl-39 {
    --bs-gutter-x: 3.9rem;
  }

  .g-xxl-39,
.gy-xxl-39 {
    --bs-gutter-y: 3.9rem;
  }

  .g-xxl-40,
.gx-xxl-40 {
    --bs-gutter-x: 4rem;
  }

  .g-xxl-40,
.gy-xxl-40 {
    --bs-gutter-y: 4rem;
  }

  .g-xxl-41,
.gx-xxl-41 {
    --bs-gutter-x: 4.1rem;
  }

  .g-xxl-41,
.gy-xxl-41 {
    --bs-gutter-y: 4.1rem;
  }

  .g-xxl-42,
.gx-xxl-42 {
    --bs-gutter-x: 4.2rem;
  }

  .g-xxl-42,
.gy-xxl-42 {
    --bs-gutter-y: 4.2rem;
  }

  .g-xxl-43,
.gx-xxl-43 {
    --bs-gutter-x: 4.3rem;
  }

  .g-xxl-43,
.gy-xxl-43 {
    --bs-gutter-y: 4.3rem;
  }

  .g-xxl-44,
.gx-xxl-44 {
    --bs-gutter-x: 4.4rem;
  }

  .g-xxl-44,
.gy-xxl-44 {
    --bs-gutter-y: 4.4rem;
  }

  .g-xxl-45,
.gx-xxl-45 {
    --bs-gutter-x: 4.5rem;
  }

  .g-xxl-45,
.gy-xxl-45 {
    --bs-gutter-y: 4.5rem;
  }

  .g-xxl-46,
.gx-xxl-46 {
    --bs-gutter-x: 4.6rem;
  }

  .g-xxl-46,
.gy-xxl-46 {
    --bs-gutter-y: 4.6rem;
  }

  .g-xxl-47,
.gx-xxl-47 {
    --bs-gutter-x: 4.7rem;
  }

  .g-xxl-47,
.gy-xxl-47 {
    --bs-gutter-y: 4.7rem;
  }

  .g-xxl-48,
.gx-xxl-48 {
    --bs-gutter-x: 4.8rem;
  }

  .g-xxl-48,
.gy-xxl-48 {
    --bs-gutter-y: 4.8rem;
  }

  .g-xxl-49,
.gx-xxl-49 {
    --bs-gutter-x: 4.9rem;
  }

  .g-xxl-49,
.gy-xxl-49 {
    --bs-gutter-y: 4.9rem;
  }

  .g-xxl-50,
.gx-xxl-50 {
    --bs-gutter-x: 5rem;
  }

  .g-xxl-50,
.gy-xxl-50 {
    --bs-gutter-y: 5rem;
  }

  .g-xxl-51,
.gx-xxl-51 {
    --bs-gutter-x: 5.1rem;
  }

  .g-xxl-51,
.gy-xxl-51 {
    --bs-gutter-y: 5.1rem;
  }

  .g-xxl-52,
.gx-xxl-52 {
    --bs-gutter-x: 5.2rem;
  }

  .g-xxl-52,
.gy-xxl-52 {
    --bs-gutter-y: 5.2rem;
  }

  .g-xxl-53,
.gx-xxl-53 {
    --bs-gutter-x: 5.3rem;
  }

  .g-xxl-53,
.gy-xxl-53 {
    --bs-gutter-y: 5.3rem;
  }

  .g-xxl-54,
.gx-xxl-54 {
    --bs-gutter-x: 5.4rem;
  }

  .g-xxl-54,
.gy-xxl-54 {
    --bs-gutter-y: 5.4rem;
  }

  .g-xxl-55,
.gx-xxl-55 {
    --bs-gutter-x: 5.5rem;
  }

  .g-xxl-55,
.gy-xxl-55 {
    --bs-gutter-y: 5.5rem;
  }

  .g-xxl-56,
.gx-xxl-56 {
    --bs-gutter-x: 5.6rem;
  }

  .g-xxl-56,
.gy-xxl-56 {
    --bs-gutter-y: 5.6rem;
  }

  .g-xxl-57,
.gx-xxl-57 {
    --bs-gutter-x: 5.7rem;
  }

  .g-xxl-57,
.gy-xxl-57 {
    --bs-gutter-y: 5.7rem;
  }

  .g-xxl-58,
.gx-xxl-58 {
    --bs-gutter-x: 5.8rem;
  }

  .g-xxl-58,
.gy-xxl-58 {
    --bs-gutter-y: 5.8rem;
  }

  .g-xxl-59,
.gx-xxl-59 {
    --bs-gutter-x: 5.9rem;
  }

  .g-xxl-59,
.gy-xxl-59 {
    --bs-gutter-y: 5.9rem;
  }

  .g-xxl-60,
.gx-xxl-60 {
    --bs-gutter-x: 6rem;
  }

  .g-xxl-60,
.gy-xxl-60 {
    --bs-gutter-y: 6rem;
  }

  .g-xxl-61,
.gx-xxl-61 {
    --bs-gutter-x: 6.1rem;
  }

  .g-xxl-61,
.gy-xxl-61 {
    --bs-gutter-y: 6.1rem;
  }

  .g-xxl-62,
.gx-xxl-62 {
    --bs-gutter-x: 6.2rem;
  }

  .g-xxl-62,
.gy-xxl-62 {
    --bs-gutter-y: 6.2rem;
  }

  .g-xxl-63,
.gx-xxl-63 {
    --bs-gutter-x: 6.3rem;
  }

  .g-xxl-63,
.gy-xxl-63 {
    --bs-gutter-y: 6.3rem;
  }

  .g-xxl-64,
.gx-xxl-64 {
    --bs-gutter-x: 6.4rem;
  }

  .g-xxl-64,
.gy-xxl-64 {
    --bs-gutter-y: 6.4rem;
  }

  .g-xxl-65,
.gx-xxl-65 {
    --bs-gutter-x: 6.5rem;
  }

  .g-xxl-65,
.gy-xxl-65 {
    --bs-gutter-y: 6.5rem;
  }

  .g-xxl-66,
.gx-xxl-66 {
    --bs-gutter-x: 6.6rem;
  }

  .g-xxl-66,
.gy-xxl-66 {
    --bs-gutter-y: 6.6rem;
  }

  .g-xxl-67,
.gx-xxl-67 {
    --bs-gutter-x: 6.7rem;
  }

  .g-xxl-67,
.gy-xxl-67 {
    --bs-gutter-y: 6.7rem;
  }

  .g-xxl-68,
.gx-xxl-68 {
    --bs-gutter-x: 6.8rem;
  }

  .g-xxl-68,
.gy-xxl-68 {
    --bs-gutter-y: 6.8rem;
  }

  .g-xxl-69,
.gx-xxl-69 {
    --bs-gutter-x: 6.9rem;
  }

  .g-xxl-69,
.gy-xxl-69 {
    --bs-gutter-y: 6.9rem;
  }

  .g-xxl-70,
.gx-xxl-70 {
    --bs-gutter-x: 7rem;
  }

  .g-xxl-70,
.gy-xxl-70 {
    --bs-gutter-y: 7rem;
  }

  .g-xxl-71,
.gx-xxl-71 {
    --bs-gutter-x: 7.1rem;
  }

  .g-xxl-71,
.gy-xxl-71 {
    --bs-gutter-y: 7.1rem;
  }

  .g-xxl-72,
.gx-xxl-72 {
    --bs-gutter-x: 7.2rem;
  }

  .g-xxl-72,
.gy-xxl-72 {
    --bs-gutter-y: 7.2rem;
  }

  .g-xxl-73,
.gx-xxl-73 {
    --bs-gutter-x: 7.3rem;
  }

  .g-xxl-73,
.gy-xxl-73 {
    --bs-gutter-y: 7.3rem;
  }

  .g-xxl-74,
.gx-xxl-74 {
    --bs-gutter-x: 7.4rem;
  }

  .g-xxl-74,
.gy-xxl-74 {
    --bs-gutter-y: 7.4rem;
  }

  .g-xxl-75,
.gx-xxl-75 {
    --bs-gutter-x: 7.5rem;
  }

  .g-xxl-75,
.gy-xxl-75 {
    --bs-gutter-y: 7.5rem;
  }

  .g-xxl-76,
.gx-xxl-76 {
    --bs-gutter-x: 7.6rem;
  }

  .g-xxl-76,
.gy-xxl-76 {
    --bs-gutter-y: 7.6rem;
  }

  .g-xxl-77,
.gx-xxl-77 {
    --bs-gutter-x: 7.7rem;
  }

  .g-xxl-77,
.gy-xxl-77 {
    --bs-gutter-y: 7.7rem;
  }

  .g-xxl-78,
.gx-xxl-78 {
    --bs-gutter-x: 7.8rem;
  }

  .g-xxl-78,
.gy-xxl-78 {
    --bs-gutter-y: 7.8rem;
  }

  .g-xxl-79,
.gx-xxl-79 {
    --bs-gutter-x: 7.9rem;
  }

  .g-xxl-79,
.gy-xxl-79 {
    --bs-gutter-y: 7.9rem;
  }

  .g-xxl-80,
.gx-xxl-80 {
    --bs-gutter-x: 8rem;
  }

  .g-xxl-80,
.gy-xxl-80 {
    --bs-gutter-y: 8rem;
  }

  .g-xxl-81,
.gx-xxl-81 {
    --bs-gutter-x: 8.1rem;
  }

  .g-xxl-81,
.gy-xxl-81 {
    --bs-gutter-y: 8.1rem;
  }

  .g-xxl-82,
.gx-xxl-82 {
    --bs-gutter-x: 8.2rem;
  }

  .g-xxl-82,
.gy-xxl-82 {
    --bs-gutter-y: 8.2rem;
  }

  .g-xxl-83,
.gx-xxl-83 {
    --bs-gutter-x: 8.3rem;
  }

  .g-xxl-83,
.gy-xxl-83 {
    --bs-gutter-y: 8.3rem;
  }

  .g-xxl-84,
.gx-xxl-84 {
    --bs-gutter-x: 8.4rem;
  }

  .g-xxl-84,
.gy-xxl-84 {
    --bs-gutter-y: 8.4rem;
  }

  .g-xxl-85,
.gx-xxl-85 {
    --bs-gutter-x: 8.5rem;
  }

  .g-xxl-85,
.gy-xxl-85 {
    --bs-gutter-y: 8.5rem;
  }

  .g-xxl-86,
.gx-xxl-86 {
    --bs-gutter-x: 8.6rem;
  }

  .g-xxl-86,
.gy-xxl-86 {
    --bs-gutter-y: 8.6rem;
  }

  .g-xxl-87,
.gx-xxl-87 {
    --bs-gutter-x: 8.7rem;
  }

  .g-xxl-87,
.gy-xxl-87 {
    --bs-gutter-y: 8.7rem;
  }

  .g-xxl-88,
.gx-xxl-88 {
    --bs-gutter-x: 8.8rem;
  }

  .g-xxl-88,
.gy-xxl-88 {
    --bs-gutter-y: 8.8rem;
  }

  .g-xxl-89,
.gx-xxl-89 {
    --bs-gutter-x: 8.9rem;
  }

  .g-xxl-89,
.gy-xxl-89 {
    --bs-gutter-y: 8.9rem;
  }

  .g-xxl-90,
.gx-xxl-90 {
    --bs-gutter-x: 9rem;
  }

  .g-xxl-90,
.gy-xxl-90 {
    --bs-gutter-y: 9rem;
  }

  .g-xxl-91,
.gx-xxl-91 {
    --bs-gutter-x: 9.1rem;
  }

  .g-xxl-91,
.gy-xxl-91 {
    --bs-gutter-y: 9.1rem;
  }

  .g-xxl-92,
.gx-xxl-92 {
    --bs-gutter-x: 9.2rem;
  }

  .g-xxl-92,
.gy-xxl-92 {
    --bs-gutter-y: 9.2rem;
  }

  .g-xxl-93,
.gx-xxl-93 {
    --bs-gutter-x: 9.3rem;
  }

  .g-xxl-93,
.gy-xxl-93 {
    --bs-gutter-y: 9.3rem;
  }

  .g-xxl-94,
.gx-xxl-94 {
    --bs-gutter-x: 9.4rem;
  }

  .g-xxl-94,
.gy-xxl-94 {
    --bs-gutter-y: 9.4rem;
  }

  .g-xxl-95,
.gx-xxl-95 {
    --bs-gutter-x: 9.5rem;
  }

  .g-xxl-95,
.gy-xxl-95 {
    --bs-gutter-y: 9.5rem;
  }

  .g-xxl-96,
.gx-xxl-96 {
    --bs-gutter-x: 9.6rem;
  }

  .g-xxl-96,
.gy-xxl-96 {
    --bs-gutter-y: 9.6rem;
  }

  .g-xxl-97,
.gx-xxl-97 {
    --bs-gutter-x: 9.7rem;
  }

  .g-xxl-97,
.gy-xxl-97 {
    --bs-gutter-y: 9.7rem;
  }

  .g-xxl-98,
.gx-xxl-98 {
    --bs-gutter-x: 9.8rem;
  }

  .g-xxl-98,
.gy-xxl-98 {
    --bs-gutter-y: 9.8rem;
  }

  .g-xxl-99,
.gx-xxl-99 {
    --bs-gutter-x: 9.9rem;
  }

  .g-xxl-99,
.gy-xxl-99 {
    --bs-gutter-y: 9.9rem;
  }

  .g-xxl-100,
.gx-xxl-100 {
    --bs-gutter-x: 10rem;
  }

  .g-xxl-100,
.gy-xxl-100 {
    --bs-gutter-y: 10rem;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cfcfd7;
  --bs-table-striped-bg: #c5c5cc;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #babac2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfbfc7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #babac2;
}

.table-secondary {
  --bs-table-bg: #f8dfd3;
  --bs-table-striped-bg: #ecd4c8;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc9be;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5cec3;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc9be;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #88889a;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(16, 17, 53, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #88889a;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(16, 17, 53, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #88889a;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(16, 17, 53, 0.25);
}
.form-check-input:checked {
  background-color: #101135;
  border-color: #101135;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #101135;
  border-color: #101135;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2388889a'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(16, 17, 53, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(16, 17, 53, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #101135;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b7b8c2;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #101135;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b7b8c2;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-webkit-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(16, 17, 53, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #101135;
  border-color: #101135;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0e0e2d;
  border-color: #0d0e2a;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #0e0e2d;
  border-color: #0d0e2a;
  box-shadow: 0 0 0 0.25rem rgba(52, 53, 83, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0d0e2a;
  border-color: #0c0d28;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(52, 53, 83, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #101135;
  border-color: #101135;
}

.btn-secondary {
  color: #000;
  background-color: #dA6123;
  border-color: #dA6123;
}
.btn-secondary:hover {
  color: #000;
  background-color: #e07944;
  border-color: #de7139;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #000;
  background-color: #e07944;
  border-color: #de7139;
  box-shadow: 0 0 0 0.25rem rgba(185, 82, 30, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #000;
  background-color: #e1814f;
  border-color: #de7139;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(185, 82, 30, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #000;
  background-color: #dA6123;
  border-color: #dA6123;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-outline-primary {
  color: #101135;
  border-color: #101135;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #101135;
  border-color: #101135;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(16, 17, 53, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #101135;
  border-color: #101135;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(16, 17, 53, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #101135;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #dA6123;
  border-color: #dA6123;
}
.btn-outline-secondary:hover {
  color: #000;
  background-color: #dA6123;
  border-color: #dA6123;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(218, 97, 35, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #000;
  background-color: #dA6123;
  border-color: #dA6123;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(218, 97, 35, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #dA6123;
  background-color: transparent;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #101135;
  text-decoration: underline;
}
.btn-link:hover {
  color: #0d0e2a;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #101135;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #101135;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #101135;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #0d0e2a;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #101135;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  -webkit-transform: none;
          transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0e0f30;
  background-color: #e7e7eb;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e0f30'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #88889a;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(16, 17, 53, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #101135;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: #0d0e2a;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: #0d0e2a;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(16, 17, 53, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #101135;
  border-color: #101135;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: #0a0a20;
  background-color: #cfcfd7;
  border-color: #b7b8c2;
}
.alert-primary .alert-link {
  color: #08081a;
}

.alert-secondary {
  color: #833a15;
  background-color: #f8dfd3;
  border-color: #f4d0bd;
}
.alert-secondary .alert-link {
  color: #692e11;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}
.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #101135;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #101135;
  border-color: #101135;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #0a0a20;
  background-color: #cfcfd7;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #0a0a20;
  background-color: #babac2;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #0a0a20;
  border-color: #0a0a20;
}

.list-group-item-secondary {
  color: #833a15;
  background-color: #f8dfd3;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #833a15;
  background-color: #dfc9be;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #833a15;
  border-color: #833a15;
}

.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(16, 17, 53, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  -webkit-filter: invert(1) grayscale(100%) brightness(200%);
          filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  -webkit-filter: invert(1) grayscale(100);
          filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
            transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
            transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
          animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
          animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
.spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.offcanvas.show {
  -webkit-transform: none;
          transform: none;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentColor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  -webkit-animation: placeholder-glow 2s ease-in-out infinite;
          animation: placeholder-glow 2s ease-in-out infinite;
}

@-webkit-keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
          mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  -webkit-animation: placeholder-wave 2s linear infinite;
          animation: placeholder-wave 2s linear infinite;
}

@-webkit-keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #101135;
}
.link-primary:hover, .link-primary:focus {
  color: #0d0e2a;
}

.link-secondary {
  color: #dA6123;
}
.link-secondary:hover, .link-secondary:focus {
  color: #e1814f;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.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;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #101135 !important;
}

.border-secondary {
  border-color: #dA6123 !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.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;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-6 {
  gap: 0.6rem !important;
}

.gap-7 {
  gap: 0.7rem !important;
}

.gap-8 {
  gap: 0.8rem !important;
}

.gap-9 {
  gap: 0.9rem !important;
}

.gap-10 {
  gap: 1rem !important;
}

.gap-11 {
  gap: 1.1rem !important;
}

.gap-12 {
  gap: 1.2rem !important;
}

.gap-13 {
  gap: 1.3rem !important;
}

.gap-14 {
  gap: 1.4rem !important;
}

.gap-15 {
  gap: 1.5rem !important;
}

.gap-16 {
  gap: 1.6rem !important;
}

.gap-17 {
  gap: 1.7rem !important;
}

.gap-18 {
  gap: 1.8rem !important;
}

.gap-19 {
  gap: 1.9rem !important;
}

.gap-20 {
  gap: 2rem !important;
}

.gap-21 {
  gap: 2.1rem !important;
}

.gap-22 {
  gap: 2.2rem !important;
}

.gap-23 {
  gap: 2.3rem !important;
}

.gap-24 {
  gap: 2.4rem !important;
}

.gap-25 {
  gap: 2.5rem !important;
}

.gap-26 {
  gap: 2.6rem !important;
}

.gap-27 {
  gap: 2.7rem !important;
}

.gap-28 {
  gap: 2.8rem !important;
}

.gap-29 {
  gap: 2.9rem !important;
}

.gap-30 {
  gap: 3rem !important;
}

.gap-31 {
  gap: 3.1rem !important;
}

.gap-32 {
  gap: 3.2rem !important;
}

.gap-33 {
  gap: 3.3rem !important;
}

.gap-34 {
  gap: 3.4rem !important;
}

.gap-35 {
  gap: 3.5rem !important;
}

.gap-36 {
  gap: 3.6rem !important;
}

.gap-37 {
  gap: 3.7rem !important;
}

.gap-38 {
  gap: 3.8rem !important;
}

.gap-39 {
  gap: 3.9rem !important;
}

.gap-40 {
  gap: 4rem !important;
}

.gap-41 {
  gap: 4.1rem !important;
}

.gap-42 {
  gap: 4.2rem !important;
}

.gap-43 {
  gap: 4.3rem !important;
}

.gap-44 {
  gap: 4.4rem !important;
}

.gap-45 {
  gap: 4.5rem !important;
}

.gap-46 {
  gap: 4.6rem !important;
}

.gap-47 {
  gap: 4.7rem !important;
}

.gap-48 {
  gap: 4.8rem !important;
}

.gap-49 {
  gap: 4.9rem !important;
}

.gap-50 {
  gap: 5rem !important;
}

.gap-51 {
  gap: 5.1rem !important;
}

.gap-52 {
  gap: 5.2rem !important;
}

.gap-53 {
  gap: 5.3rem !important;
}

.gap-54 {
  gap: 5.4rem !important;
}

.gap-55 {
  gap: 5.5rem !important;
}

.gap-56 {
  gap: 5.6rem !important;
}

.gap-57 {
  gap: 5.7rem !important;
}

.gap-58 {
  gap: 5.8rem !important;
}

.gap-59 {
  gap: 5.9rem !important;
}

.gap-60 {
  gap: 6rem !important;
}

.gap-61 {
  gap: 6.1rem !important;
}

.gap-62 {
  gap: 6.2rem !important;
}

.gap-63 {
  gap: 6.3rem !important;
}

.gap-64 {
  gap: 6.4rem !important;
}

.gap-65 {
  gap: 6.5rem !important;
}

.gap-66 {
  gap: 6.6rem !important;
}

.gap-67 {
  gap: 6.7rem !important;
}

.gap-68 {
  gap: 6.8rem !important;
}

.gap-69 {
  gap: 6.9rem !important;
}

.gap-70 {
  gap: 7rem !important;
}

.gap-71 {
  gap: 7.1rem !important;
}

.gap-72 {
  gap: 7.2rem !important;
}

.gap-73 {
  gap: 7.3rem !important;
}

.gap-74 {
  gap: 7.4rem !important;
}

.gap-75 {
  gap: 7.5rem !important;
}

.gap-76 {
  gap: 7.6rem !important;
}

.gap-77 {
  gap: 7.7rem !important;
}

.gap-78 {
  gap: 7.8rem !important;
}

.gap-79 {
  gap: 7.9rem !important;
}

.gap-80 {
  gap: 8rem !important;
}

.gap-81 {
  gap: 8.1rem !important;
}

.gap-82 {
  gap: 8.2rem !important;
}

.gap-83 {
  gap: 8.3rem !important;
}

.gap-84 {
  gap: 8.4rem !important;
}

.gap-85 {
  gap: 8.5rem !important;
}

.gap-86 {
  gap: 8.6rem !important;
}

.gap-87 {
  gap: 8.7rem !important;
}

.gap-88 {
  gap: 8.8rem !important;
}

.gap-89 {
  gap: 8.9rem !important;
}

.gap-90 {
  gap: 9rem !important;
}

.gap-91 {
  gap: 9.1rem !important;
}

.gap-92 {
  gap: 9.2rem !important;
}

.gap-93 {
  gap: 9.3rem !important;
}

.gap-94 {
  gap: 9.4rem !important;
}

.gap-95 {
  gap: 9.5rem !important;
}

.gap-96 {
  gap: 9.6rem !important;
}

.gap-97 {
  gap: 9.7rem !important;
}

.gap-98 {
  gap: 9.8rem !important;
}

.gap-99 {
  gap: 9.9rem !important;
}

.gap-100 {
  gap: 10rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !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-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.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;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-6 {
  margin: 0.6rem !important;
}

.m-7 {
  margin: 0.7rem !important;
}

.m-8 {
  margin: 0.8rem !important;
}

.m-9 {
  margin: 0.9rem !important;
}

.m-10 {
  margin: 1rem !important;
}

.m-11 {
  margin: 1.1rem !important;
}

.m-12 {
  margin: 1.2rem !important;
}

.m-13 {
  margin: 1.3rem !important;
}

.m-14 {
  margin: 1.4rem !important;
}

.m-15 {
  margin: 1.5rem !important;
}

.m-16 {
  margin: 1.6rem !important;
}

.m-17 {
  margin: 1.7rem !important;
}

.m-18 {
  margin: 1.8rem !important;
}

.m-19 {
  margin: 1.9rem !important;
}

.m-20 {
  margin: 2rem !important;
}

.m-21 {
  margin: 2.1rem !important;
}

.m-22 {
  margin: 2.2rem !important;
}

.m-23 {
  margin: 2.3rem !important;
}

.m-24 {
  margin: 2.4rem !important;
}

.m-25 {
  margin: 2.5rem !important;
}

.m-26 {
  margin: 2.6rem !important;
}

.m-27 {
  margin: 2.7rem !important;
}

.m-28 {
  margin: 2.8rem !important;
}

.m-29 {
  margin: 2.9rem !important;
}

.m-30 {
  margin: 3rem !important;
}

.m-31 {
  margin: 3.1rem !important;
}

.m-32 {
  margin: 3.2rem !important;
}

.m-33 {
  margin: 3.3rem !important;
}

.m-34 {
  margin: 3.4rem !important;
}

.m-35 {
  margin: 3.5rem !important;
}

.m-36 {
  margin: 3.6rem !important;
}

.m-37 {
  margin: 3.7rem !important;
}

.m-38 {
  margin: 3.8rem !important;
}

.m-39 {
  margin: 3.9rem !important;
}

.m-40 {
  margin: 4rem !important;
}

.m-41 {
  margin: 4.1rem !important;
}

.m-42 {
  margin: 4.2rem !important;
}

.m-43 {
  margin: 4.3rem !important;
}

.m-44 {
  margin: 4.4rem !important;
}

.m-45 {
  margin: 4.5rem !important;
}

.m-46 {
  margin: 4.6rem !important;
}

.m-47 {
  margin: 4.7rem !important;
}

.m-48 {
  margin: 4.8rem !important;
}

.m-49 {
  margin: 4.9rem !important;
}

.m-50 {
  margin: 5rem !important;
}

.m-51 {
  margin: 5.1rem !important;
}

.m-52 {
  margin: 5.2rem !important;
}

.m-53 {
  margin: 5.3rem !important;
}

.m-54 {
  margin: 5.4rem !important;
}

.m-55 {
  margin: 5.5rem !important;
}

.m-56 {
  margin: 5.6rem !important;
}

.m-57 {
  margin: 5.7rem !important;
}

.m-58 {
  margin: 5.8rem !important;
}

.m-59 {
  margin: 5.9rem !important;
}

.m-60 {
  margin: 6rem !important;
}

.m-61 {
  margin: 6.1rem !important;
}

.m-62 {
  margin: 6.2rem !important;
}

.m-63 {
  margin: 6.3rem !important;
}

.m-64 {
  margin: 6.4rem !important;
}

.m-65 {
  margin: 6.5rem !important;
}

.m-66 {
  margin: 6.6rem !important;
}

.m-67 {
  margin: 6.7rem !important;
}

.m-68 {
  margin: 6.8rem !important;
}

.m-69 {
  margin: 6.9rem !important;
}

.m-70 {
  margin: 7rem !important;
}

.m-71 {
  margin: 7.1rem !important;
}

.m-72 {
  margin: 7.2rem !important;
}

.m-73 {
  margin: 7.3rem !important;
}

.m-74 {
  margin: 7.4rem !important;
}

.m-75 {
  margin: 7.5rem !important;
}

.m-76 {
  margin: 7.6rem !important;
}

.m-77 {
  margin: 7.7rem !important;
}

.m-78 {
  margin: 7.8rem !important;
}

.m-79 {
  margin: 7.9rem !important;
}

.m-80 {
  margin: 8rem !important;
}

.m-81 {
  margin: 8.1rem !important;
}

.m-82 {
  margin: 8.2rem !important;
}

.m-83 {
  margin: 8.3rem !important;
}

.m-84 {
  margin: 8.4rem !important;
}

.m-85 {
  margin: 8.5rem !important;
}

.m-86 {
  margin: 8.6rem !important;
}

.m-87 {
  margin: 8.7rem !important;
}

.m-88 {
  margin: 8.8rem !important;
}

.m-89 {
  margin: 8.9rem !important;
}

.m-90 {
  margin: 9rem !important;
}

.m-91 {
  margin: 9.1rem !important;
}

.m-92 {
  margin: 9.2rem !important;
}

.m-93 {
  margin: 9.3rem !important;
}

.m-94 {
  margin: 9.4rem !important;
}

.m-95 {
  margin: 9.5rem !important;
}

.m-96 {
  margin: 9.6rem !important;
}

.m-97 {
  margin: 9.7rem !important;
}

.m-98 {
  margin: 9.8rem !important;
}

.m-99 {
  margin: 9.9rem !important;
}

.m-100 {
  margin: 10rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-6 {
  margin-right: 0.6rem !important;
  margin-left: 0.6rem !important;
}

.mx-7 {
  margin-right: 0.7rem !important;
  margin-left: 0.7rem !important;
}

.mx-8 {
  margin-right: 0.8rem !important;
  margin-left: 0.8rem !important;
}

.mx-9 {
  margin-right: 0.9rem !important;
  margin-left: 0.9rem !important;
}

.mx-10 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-11 {
  margin-right: 1.1rem !important;
  margin-left: 1.1rem !important;
}

.mx-12 {
  margin-right: 1.2rem !important;
  margin-left: 1.2rem !important;
}

.mx-13 {
  margin-right: 1.3rem !important;
  margin-left: 1.3rem !important;
}

.mx-14 {
  margin-right: 1.4rem !important;
  margin-left: 1.4rem !important;
}

.mx-15 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-16 {
  margin-right: 1.6rem !important;
  margin-left: 1.6rem !important;
}

.mx-17 {
  margin-right: 1.7rem !important;
  margin-left: 1.7rem !important;
}

.mx-18 {
  margin-right: 1.8rem !important;
  margin-left: 1.8rem !important;
}

.mx-19 {
  margin-right: 1.9rem !important;
  margin-left: 1.9rem !important;
}

.mx-20 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.mx-21 {
  margin-right: 2.1rem !important;
  margin-left: 2.1rem !important;
}

.mx-22 {
  margin-right: 2.2rem !important;
  margin-left: 2.2rem !important;
}

.mx-23 {
  margin-right: 2.3rem !important;
  margin-left: 2.3rem !important;
}

.mx-24 {
  margin-right: 2.4rem !important;
  margin-left: 2.4rem !important;
}

.mx-25 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx-26 {
  margin-right: 2.6rem !important;
  margin-left: 2.6rem !important;
}

.mx-27 {
  margin-right: 2.7rem !important;
  margin-left: 2.7rem !important;
}

.mx-28 {
  margin-right: 2.8rem !important;
  margin-left: 2.8rem !important;
}

.mx-29 {
  margin-right: 2.9rem !important;
  margin-left: 2.9rem !important;
}

.mx-30 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-31 {
  margin-right: 3.1rem !important;
  margin-left: 3.1rem !important;
}

.mx-32 {
  margin-right: 3.2rem !important;
  margin-left: 3.2rem !important;
}

.mx-33 {
  margin-right: 3.3rem !important;
  margin-left: 3.3rem !important;
}

.mx-34 {
  margin-right: 3.4rem !important;
  margin-left: 3.4rem !important;
}

.mx-35 {
  margin-right: 3.5rem !important;
  margin-left: 3.5rem !important;
}

.mx-36 {
  margin-right: 3.6rem !important;
  margin-left: 3.6rem !important;
}

.mx-37 {
  margin-right: 3.7rem !important;
  margin-left: 3.7rem !important;
}

.mx-38 {
  margin-right: 3.8rem !important;
  margin-left: 3.8rem !important;
}

.mx-39 {
  margin-right: 3.9rem !important;
  margin-left: 3.9rem !important;
}

.mx-40 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.mx-41 {
  margin-right: 4.1rem !important;
  margin-left: 4.1rem !important;
}

.mx-42 {
  margin-right: 4.2rem !important;
  margin-left: 4.2rem !important;
}

.mx-43 {
  margin-right: 4.3rem !important;
  margin-left: 4.3rem !important;
}

.mx-44 {
  margin-right: 4.4rem !important;
  margin-left: 4.4rem !important;
}

.mx-45 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}

.mx-46 {
  margin-right: 4.6rem !important;
  margin-left: 4.6rem !important;
}

.mx-47 {
  margin-right: 4.7rem !important;
  margin-left: 4.7rem !important;
}

.mx-48 {
  margin-right: 4.8rem !important;
  margin-left: 4.8rem !important;
}

.mx-49 {
  margin-right: 4.9rem !important;
  margin-left: 4.9rem !important;
}

.mx-50 {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}

.mx-51 {
  margin-right: 5.1rem !important;
  margin-left: 5.1rem !important;
}

.mx-52 {
  margin-right: 5.2rem !important;
  margin-left: 5.2rem !important;
}

.mx-53 {
  margin-right: 5.3rem !important;
  margin-left: 5.3rem !important;
}

.mx-54 {
  margin-right: 5.4rem !important;
  margin-left: 5.4rem !important;
}

.mx-55 {
  margin-right: 5.5rem !important;
  margin-left: 5.5rem !important;
}

.mx-56 {
  margin-right: 5.6rem !important;
  margin-left: 5.6rem !important;
}

.mx-57 {
  margin-right: 5.7rem !important;
  margin-left: 5.7rem !important;
}

.mx-58 {
  margin-right: 5.8rem !important;
  margin-left: 5.8rem !important;
}

.mx-59 {
  margin-right: 5.9rem !important;
  margin-left: 5.9rem !important;
}

.mx-60 {
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}

.mx-61 {
  margin-right: 6.1rem !important;
  margin-left: 6.1rem !important;
}

.mx-62 {
  margin-right: 6.2rem !important;
  margin-left: 6.2rem !important;
}

.mx-63 {
  margin-right: 6.3rem !important;
  margin-left: 6.3rem !important;
}

.mx-64 {
  margin-right: 6.4rem !important;
  margin-left: 6.4rem !important;
}

.mx-65 {
  margin-right: 6.5rem !important;
  margin-left: 6.5rem !important;
}

.mx-66 {
  margin-right: 6.6rem !important;
  margin-left: 6.6rem !important;
}

.mx-67 {
  margin-right: 6.7rem !important;
  margin-left: 6.7rem !important;
}

.mx-68 {
  margin-right: 6.8rem !important;
  margin-left: 6.8rem !important;
}

.mx-69 {
  margin-right: 6.9rem !important;
  margin-left: 6.9rem !important;
}

.mx-70 {
  margin-right: 7rem !important;
  margin-left: 7rem !important;
}

.mx-71 {
  margin-right: 7.1rem !important;
  margin-left: 7.1rem !important;
}

.mx-72 {
  margin-right: 7.2rem !important;
  margin-left: 7.2rem !important;
}

.mx-73 {
  margin-right: 7.3rem !important;
  margin-left: 7.3rem !important;
}

.mx-74 {
  margin-right: 7.4rem !important;
  margin-left: 7.4rem !important;
}

.mx-75 {
  margin-right: 7.5rem !important;
  margin-left: 7.5rem !important;
}

.mx-76 {
  margin-right: 7.6rem !important;
  margin-left: 7.6rem !important;
}

.mx-77 {
  margin-right: 7.7rem !important;
  margin-left: 7.7rem !important;
}

.mx-78 {
  margin-right: 7.8rem !important;
  margin-left: 7.8rem !important;
}

.mx-79 {
  margin-right: 7.9rem !important;
  margin-left: 7.9rem !important;
}

.mx-80 {
  margin-right: 8rem !important;
  margin-left: 8rem !important;
}

.mx-81 {
  margin-right: 8.1rem !important;
  margin-left: 8.1rem !important;
}

.mx-82 {
  margin-right: 8.2rem !important;
  margin-left: 8.2rem !important;
}

.mx-83 {
  margin-right: 8.3rem !important;
  margin-left: 8.3rem !important;
}

.mx-84 {
  margin-right: 8.4rem !important;
  margin-left: 8.4rem !important;
}

.mx-85 {
  margin-right: 8.5rem !important;
  margin-left: 8.5rem !important;
}

.mx-86 {
  margin-right: 8.6rem !important;
  margin-left: 8.6rem !important;
}

.mx-87 {
  margin-right: 8.7rem !important;
  margin-left: 8.7rem !important;
}

.mx-88 {
  margin-right: 8.8rem !important;
  margin-left: 8.8rem !important;
}

.mx-89 {
  margin-right: 8.9rem !important;
  margin-left: 8.9rem !important;
}

.mx-90 {
  margin-right: 9rem !important;
  margin-left: 9rem !important;
}

.mx-91 {
  margin-right: 9.1rem !important;
  margin-left: 9.1rem !important;
}

.mx-92 {
  margin-right: 9.2rem !important;
  margin-left: 9.2rem !important;
}

.mx-93 {
  margin-right: 9.3rem !important;
  margin-left: 9.3rem !important;
}

.mx-94 {
  margin-right: 9.4rem !important;
  margin-left: 9.4rem !important;
}

.mx-95 {
  margin-right: 9.5rem !important;
  margin-left: 9.5rem !important;
}

.mx-96 {
  margin-right: 9.6rem !important;
  margin-left: 9.6rem !important;
}

.mx-97 {
  margin-right: 9.7rem !important;
  margin-left: 9.7rem !important;
}

.mx-98 {
  margin-right: 9.8rem !important;
  margin-left: 9.8rem !important;
}

.mx-99 {
  margin-right: 9.9rem !important;
  margin-left: 9.9rem !important;
}

.mx-100 {
  margin-right: 10rem !important;
  margin-left: 10rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-6 {
  margin-top: 0.6rem !important;
  margin-bottom: 0.6rem !important;
}

.my-7 {
  margin-top: 0.7rem !important;
  margin-bottom: 0.7rem !important;
}

.my-8 {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

.my-9 {
  margin-top: 0.9rem !important;
  margin-bottom: 0.9rem !important;
}

.my-10 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-11 {
  margin-top: 1.1rem !important;
  margin-bottom: 1.1rem !important;
}

.my-12 {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

.my-13 {
  margin-top: 1.3rem !important;
  margin-bottom: 1.3rem !important;
}

.my-14 {
  margin-top: 1.4rem !important;
  margin-bottom: 1.4rem !important;
}

.my-15 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-16 {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}

.my-17 {
  margin-top: 1.7rem !important;
  margin-bottom: 1.7rem !important;
}

.my-18 {
  margin-top: 1.8rem !important;
  margin-bottom: 1.8rem !important;
}

.my-19 {
  margin-top: 1.9rem !important;
  margin-bottom: 1.9rem !important;
}

.my-20 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-21 {
  margin-top: 2.1rem !important;
  margin-bottom: 2.1rem !important;
}

.my-22 {
  margin-top: 2.2rem !important;
  margin-bottom: 2.2rem !important;
}

.my-23 {
  margin-top: 2.3rem !important;
  margin-bottom: 2.3rem !important;
}

.my-24 {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}

.my-25 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-26 {
  margin-top: 2.6rem !important;
  margin-bottom: 2.6rem !important;
}

.my-27 {
  margin-top: 2.7rem !important;
  margin-bottom: 2.7rem !important;
}

.my-28 {
  margin-top: 2.8rem !important;
  margin-bottom: 2.8rem !important;
}

.my-29 {
  margin-top: 2.9rem !important;
  margin-bottom: 2.9rem !important;
}

.my-30 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-31 {
  margin-top: 3.1rem !important;
  margin-bottom: 3.1rem !important;
}

.my-32 {
  margin-top: 3.2rem !important;
  margin-bottom: 3.2rem !important;
}

.my-33 {
  margin-top: 3.3rem !important;
  margin-bottom: 3.3rem !important;
}

.my-34 {
  margin-top: 3.4rem !important;
  margin-bottom: 3.4rem !important;
}

.my-35 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.my-36 {
  margin-top: 3.6rem !important;
  margin-bottom: 3.6rem !important;
}

.my-37 {
  margin-top: 3.7rem !important;
  margin-bottom: 3.7rem !important;
}

.my-38 {
  margin-top: 3.8rem !important;
  margin-bottom: 3.8rem !important;
}

.my-39 {
  margin-top: 3.9rem !important;
  margin-bottom: 3.9rem !important;
}

.my-40 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-41 {
  margin-top: 4.1rem !important;
  margin-bottom: 4.1rem !important;
}

.my-42 {
  margin-top: 4.2rem !important;
  margin-bottom: 4.2rem !important;
}

.my-43 {
  margin-top: 4.3rem !important;
  margin-bottom: 4.3rem !important;
}

.my-44 {
  margin-top: 4.4rem !important;
  margin-bottom: 4.4rem !important;
}

.my-45 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.my-46 {
  margin-top: 4.6rem !important;
  margin-bottom: 4.6rem !important;
}

.my-47 {
  margin-top: 4.7rem !important;
  margin-bottom: 4.7rem !important;
}

.my-48 {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}

.my-49 {
  margin-top: 4.9rem !important;
  margin-bottom: 4.9rem !important;
}

.my-50 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my-51 {
  margin-top: 5.1rem !important;
  margin-bottom: 5.1rem !important;
}

.my-52 {
  margin-top: 5.2rem !important;
  margin-bottom: 5.2rem !important;
}

.my-53 {
  margin-top: 5.3rem !important;
  margin-bottom: 5.3rem !important;
}

.my-54 {
  margin-top: 5.4rem !important;
  margin-bottom: 5.4rem !important;
}

.my-55 {
  margin-top: 5.5rem !important;
  margin-bottom: 5.5rem !important;
}

.my-56 {
  margin-top: 5.6rem !important;
  margin-bottom: 5.6rem !important;
}

.my-57 {
  margin-top: 5.7rem !important;
  margin-bottom: 5.7rem !important;
}

.my-58 {
  margin-top: 5.8rem !important;
  margin-bottom: 5.8rem !important;
}

.my-59 {
  margin-top: 5.9rem !important;
  margin-bottom: 5.9rem !important;
}

.my-60 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.my-61 {
  margin-top: 6.1rem !important;
  margin-bottom: 6.1rem !important;
}

.my-62 {
  margin-top: 6.2rem !important;
  margin-bottom: 6.2rem !important;
}

.my-63 {
  margin-top: 6.3rem !important;
  margin-bottom: 6.3rem !important;
}

.my-64 {
  margin-top: 6.4rem !important;
  margin-bottom: 6.4rem !important;
}

.my-65 {
  margin-top: 6.5rem !important;
  margin-bottom: 6.5rem !important;
}

.my-66 {
  margin-top: 6.6rem !important;
  margin-bottom: 6.6rem !important;
}

.my-67 {
  margin-top: 6.7rem !important;
  margin-bottom: 6.7rem !important;
}

.my-68 {
  margin-top: 6.8rem !important;
  margin-bottom: 6.8rem !important;
}

.my-69 {
  margin-top: 6.9rem !important;
  margin-bottom: 6.9rem !important;
}

.my-70 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.my-71 {
  margin-top: 7.1rem !important;
  margin-bottom: 7.1rem !important;
}

.my-72 {
  margin-top: 7.2rem !important;
  margin-bottom: 7.2rem !important;
}

.my-73 {
  margin-top: 7.3rem !important;
  margin-bottom: 7.3rem !important;
}

.my-74 {
  margin-top: 7.4rem !important;
  margin-bottom: 7.4rem !important;
}

.my-75 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.my-76 {
  margin-top: 7.6rem !important;
  margin-bottom: 7.6rem !important;
}

.my-77 {
  margin-top: 7.7rem !important;
  margin-bottom: 7.7rem !important;
}

.my-78 {
  margin-top: 7.8rem !important;
  margin-bottom: 7.8rem !important;
}

.my-79 {
  margin-top: 7.9rem !important;
  margin-bottom: 7.9rem !important;
}

.my-80 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.my-81 {
  margin-top: 8.1rem !important;
  margin-bottom: 8.1rem !important;
}

.my-82 {
  margin-top: 8.2rem !important;
  margin-bottom: 8.2rem !important;
}

.my-83 {
  margin-top: 8.3rem !important;
  margin-bottom: 8.3rem !important;
}

.my-84 {
  margin-top: 8.4rem !important;
  margin-bottom: 8.4rem !important;
}

.my-85 {
  margin-top: 8.5rem !important;
  margin-bottom: 8.5rem !important;
}

.my-86 {
  margin-top: 8.6rem !important;
  margin-bottom: 8.6rem !important;
}

.my-87 {
  margin-top: 8.7rem !important;
  margin-bottom: 8.7rem !important;
}

.my-88 {
  margin-top: 8.8rem !important;
  margin-bottom: 8.8rem !important;
}

.my-89 {
  margin-top: 8.9rem !important;
  margin-bottom: 8.9rem !important;
}

.my-90 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.my-91 {
  margin-top: 9.1rem !important;
  margin-bottom: 9.1rem !important;
}

.my-92 {
  margin-top: 9.2rem !important;
  margin-bottom: 9.2rem !important;
}

.my-93 {
  margin-top: 9.3rem !important;
  margin-bottom: 9.3rem !important;
}

.my-94 {
  margin-top: 9.4rem !important;
  margin-bottom: 9.4rem !important;
}

.my-95 {
  margin-top: 9.5rem !important;
  margin-bottom: 9.5rem !important;
}

.my-96 {
  margin-top: 9.6rem !important;
  margin-bottom: 9.6rem !important;
}

.my-97 {
  margin-top: 9.7rem !important;
  margin-bottom: 9.7rem !important;
}

.my-98 {
  margin-top: 9.8rem !important;
  margin-bottom: 9.8rem !important;
}

.my-99 {
  margin-top: 9.9rem !important;
  margin-bottom: 9.9rem !important;
}

.my-100 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 0.6rem !important;
}

.mt-7 {
  margin-top: 0.7rem !important;
}

.mt-8 {
  margin-top: 0.8rem !important;
}

.mt-9 {
  margin-top: 0.9rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mt-11 {
  margin-top: 1.1rem !important;
}

.mt-12 {
  margin-top: 1.2rem !important;
}

.mt-13 {
  margin-top: 1.3rem !important;
}

.mt-14 {
  margin-top: 1.4rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mt-16 {
  margin-top: 1.6rem !important;
}

.mt-17 {
  margin-top: 1.7rem !important;
}

.mt-18 {
  margin-top: 1.8rem !important;
}

.mt-19 {
  margin-top: 1.9rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mt-21 {
  margin-top: 2.1rem !important;
}

.mt-22 {
  margin-top: 2.2rem !important;
}

.mt-23 {
  margin-top: 2.3rem !important;
}

.mt-24 {
  margin-top: 2.4rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.mt-26 {
  margin-top: 2.6rem !important;
}

.mt-27 {
  margin-top: 2.7rem !important;
}

.mt-28 {
  margin-top: 2.8rem !important;
}

.mt-29 {
  margin-top: 2.9rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mt-31 {
  margin-top: 3.1rem !important;
}

.mt-32 {
  margin-top: 3.2rem !important;
}

.mt-33 {
  margin-top: 3.3rem !important;
}

.mt-34 {
  margin-top: 3.4rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.mt-36 {
  margin-top: 3.6rem !important;
}

.mt-37 {
  margin-top: 3.7rem !important;
}

.mt-38 {
  margin-top: 3.8rem !important;
}

.mt-39 {
  margin-top: 3.9rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mt-41 {
  margin-top: 4.1rem !important;
}

.mt-42 {
  margin-top: 4.2rem !important;
}

.mt-43 {
  margin-top: 4.3rem !important;
}

.mt-44 {
  margin-top: 4.4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.mt-46 {
  margin-top: 4.6rem !important;
}

.mt-47 {
  margin-top: 4.7rem !important;
}

.mt-48 {
  margin-top: 4.8rem !important;
}

.mt-49 {
  margin-top: 4.9rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.mt-51 {
  margin-top: 5.1rem !important;
}

.mt-52 {
  margin-top: 5.2rem !important;
}

.mt-53 {
  margin-top: 5.3rem !important;
}

.mt-54 {
  margin-top: 5.4rem !important;
}

.mt-55 {
  margin-top: 5.5rem !important;
}

.mt-56 {
  margin-top: 5.6rem !important;
}

.mt-57 {
  margin-top: 5.7rem !important;
}

.mt-58 {
  margin-top: 5.8rem !important;
}

.mt-59 {
  margin-top: 5.9rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mt-61 {
  margin-top: 6.1rem !important;
}

.mt-62 {
  margin-top: 6.2rem !important;
}

.mt-63 {
  margin-top: 6.3rem !important;
}

.mt-64 {
  margin-top: 6.4rem !important;
}

.mt-65 {
  margin-top: 6.5rem !important;
}

.mt-66 {
  margin-top: 6.6rem !important;
}

.mt-67 {
  margin-top: 6.7rem !important;
}

.mt-68 {
  margin-top: 6.8rem !important;
}

.mt-69 {
  margin-top: 6.9rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.mt-71 {
  margin-top: 7.1rem !important;
}

.mt-72 {
  margin-top: 7.2rem !important;
}

.mt-73 {
  margin-top: 7.3rem !important;
}

.mt-74 {
  margin-top: 7.4rem !important;
}

.mt-75 {
  margin-top: 7.5rem !important;
}

.mt-76 {
  margin-top: 7.6rem !important;
}

.mt-77 {
  margin-top: 7.7rem !important;
}

.mt-78 {
  margin-top: 7.8rem !important;
}

.mt-79 {
  margin-top: 7.9rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.mt-81 {
  margin-top: 8.1rem !important;
}

.mt-82 {
  margin-top: 8.2rem !important;
}

.mt-83 {
  margin-top: 8.3rem !important;
}

.mt-84 {
  margin-top: 8.4rem !important;
}

.mt-85 {
  margin-top: 8.5rem !important;
}

.mt-86 {
  margin-top: 8.6rem !important;
}

.mt-87 {
  margin-top: 8.7rem !important;
}

.mt-88 {
  margin-top: 8.8rem !important;
}

.mt-89 {
  margin-top: 8.9rem !important;
}

.mt-90 {
  margin-top: 9rem !important;
}

.mt-91 {
  margin-top: 9.1rem !important;
}

.mt-92 {
  margin-top: 9.2rem !important;
}

.mt-93 {
  margin-top: 9.3rem !important;
}

.mt-94 {
  margin-top: 9.4rem !important;
}

.mt-95 {
  margin-top: 9.5rem !important;
}

.mt-96 {
  margin-top: 9.6rem !important;
}

.mt-97 {
  margin-top: 9.7rem !important;
}

.mt-98 {
  margin-top: 9.8rem !important;
}

.mt-99 {
  margin-top: 9.9rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-6 {
  margin-right: 0.6rem !important;
}

.me-7 {
  margin-right: 0.7rem !important;
}

.me-8 {
  margin-right: 0.8rem !important;
}

.me-9 {
  margin-right: 0.9rem !important;
}

.me-10 {
  margin-right: 1rem !important;
}

.me-11 {
  margin-right: 1.1rem !important;
}

.me-12 {
  margin-right: 1.2rem !important;
}

.me-13 {
  margin-right: 1.3rem !important;
}

.me-14 {
  margin-right: 1.4rem !important;
}

.me-15 {
  margin-right: 1.5rem !important;
}

.me-16 {
  margin-right: 1.6rem !important;
}

.me-17 {
  margin-right: 1.7rem !important;
}

.me-18 {
  margin-right: 1.8rem !important;
}

.me-19 {
  margin-right: 1.9rem !important;
}

.me-20 {
  margin-right: 2rem !important;
}

.me-21 {
  margin-right: 2.1rem !important;
}

.me-22 {
  margin-right: 2.2rem !important;
}

.me-23 {
  margin-right: 2.3rem !important;
}

.me-24 {
  margin-right: 2.4rem !important;
}

.me-25 {
  margin-right: 2.5rem !important;
}

.me-26 {
  margin-right: 2.6rem !important;
}

.me-27 {
  margin-right: 2.7rem !important;
}

.me-28 {
  margin-right: 2.8rem !important;
}

.me-29 {
  margin-right: 2.9rem !important;
}

.me-30 {
  margin-right: 3rem !important;
}

.me-31 {
  margin-right: 3.1rem !important;
}

.me-32 {
  margin-right: 3.2rem !important;
}

.me-33 {
  margin-right: 3.3rem !important;
}

.me-34 {
  margin-right: 3.4rem !important;
}

.me-35 {
  margin-right: 3.5rem !important;
}

.me-36 {
  margin-right: 3.6rem !important;
}

.me-37 {
  margin-right: 3.7rem !important;
}

.me-38 {
  margin-right: 3.8rem !important;
}

.me-39 {
  margin-right: 3.9rem !important;
}

.me-40 {
  margin-right: 4rem !important;
}

.me-41 {
  margin-right: 4.1rem !important;
}

.me-42 {
  margin-right: 4.2rem !important;
}

.me-43 {
  margin-right: 4.3rem !important;
}

.me-44 {
  margin-right: 4.4rem !important;
}

.me-45 {
  margin-right: 4.5rem !important;
}

.me-46 {
  margin-right: 4.6rem !important;
}

.me-47 {
  margin-right: 4.7rem !important;
}

.me-48 {
  margin-right: 4.8rem !important;
}

.me-49 {
  margin-right: 4.9rem !important;
}

.me-50 {
  margin-right: 5rem !important;
}

.me-51 {
  margin-right: 5.1rem !important;
}

.me-52 {
  margin-right: 5.2rem !important;
}

.me-53 {
  margin-right: 5.3rem !important;
}

.me-54 {
  margin-right: 5.4rem !important;
}

.me-55 {
  margin-right: 5.5rem !important;
}

.me-56 {
  margin-right: 5.6rem !important;
}

.me-57 {
  margin-right: 5.7rem !important;
}

.me-58 {
  margin-right: 5.8rem !important;
}

.me-59 {
  margin-right: 5.9rem !important;
}

.me-60 {
  margin-right: 6rem !important;
}

.me-61 {
  margin-right: 6.1rem !important;
}

.me-62 {
  margin-right: 6.2rem !important;
}

.me-63 {
  margin-right: 6.3rem !important;
}

.me-64 {
  margin-right: 6.4rem !important;
}

.me-65 {
  margin-right: 6.5rem !important;
}

.me-66 {
  margin-right: 6.6rem !important;
}

.me-67 {
  margin-right: 6.7rem !important;
}

.me-68 {
  margin-right: 6.8rem !important;
}

.me-69 {
  margin-right: 6.9rem !important;
}

.me-70 {
  margin-right: 7rem !important;
}

.me-71 {
  margin-right: 7.1rem !important;
}

.me-72 {
  margin-right: 7.2rem !important;
}

.me-73 {
  margin-right: 7.3rem !important;
}

.me-74 {
  margin-right: 7.4rem !important;
}

.me-75 {
  margin-right: 7.5rem !important;
}

.me-76 {
  margin-right: 7.6rem !important;
}

.me-77 {
  margin-right: 7.7rem !important;
}

.me-78 {
  margin-right: 7.8rem !important;
}

.me-79 {
  margin-right: 7.9rem !important;
}

.me-80 {
  margin-right: 8rem !important;
}

.me-81 {
  margin-right: 8.1rem !important;
}

.me-82 {
  margin-right: 8.2rem !important;
}

.me-83 {
  margin-right: 8.3rem !important;
}

.me-84 {
  margin-right: 8.4rem !important;
}

.me-85 {
  margin-right: 8.5rem !important;
}

.me-86 {
  margin-right: 8.6rem !important;
}

.me-87 {
  margin-right: 8.7rem !important;
}

.me-88 {
  margin-right: 8.8rem !important;
}

.me-89 {
  margin-right: 8.9rem !important;
}

.me-90 {
  margin-right: 9rem !important;
}

.me-91 {
  margin-right: 9.1rem !important;
}

.me-92 {
  margin-right: 9.2rem !important;
}

.me-93 {
  margin-right: 9.3rem !important;
}

.me-94 {
  margin-right: 9.4rem !important;
}

.me-95 {
  margin-right: 9.5rem !important;
}

.me-96 {
  margin-right: 9.6rem !important;
}

.me-97 {
  margin-right: 9.7rem !important;
}

.me-98 {
  margin-right: 9.8rem !important;
}

.me-99 {
  margin-right: 9.9rem !important;
}

.me-100 {
  margin-right: 10rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 0.6rem !important;
}

.mb-7 {
  margin-bottom: 0.7rem !important;
}

.mb-8 {
  margin-bottom: 0.8rem !important;
}

.mb-9 {
  margin-bottom: 0.9rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.mb-11 {
  margin-bottom: 1.1rem !important;
}

.mb-12 {
  margin-bottom: 1.2rem !important;
}

.mb-13 {
  margin-bottom: 1.3rem !important;
}

.mb-14 {
  margin-bottom: 1.4rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mb-16 {
  margin-bottom: 1.6rem !important;
}

.mb-17 {
  margin-bottom: 1.7rem !important;
}

.mb-18 {
  margin-bottom: 1.8rem !important;
}

.mb-19 {
  margin-bottom: 1.9rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-21 {
  margin-bottom: 2.1rem !important;
}

.mb-22 {
  margin-bottom: 2.2rem !important;
}

.mb-23 {
  margin-bottom: 2.3rem !important;
}

.mb-24 {
  margin-bottom: 2.4rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mb-26 {
  margin-bottom: 2.6rem !important;
}

.mb-27 {
  margin-bottom: 2.7rem !important;
}

.mb-28 {
  margin-bottom: 2.8rem !important;
}

.mb-29 {
  margin-bottom: 2.9rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mb-31 {
  margin-bottom: 3.1rem !important;
}

.mb-32 {
  margin-bottom: 3.2rem !important;
}

.mb-33 {
  margin-bottom: 3.3rem !important;
}

.mb-34 {
  margin-bottom: 3.4rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mb-36 {
  margin-bottom: 3.6rem !important;
}

.mb-37 {
  margin-bottom: 3.7rem !important;
}

.mb-38 {
  margin-bottom: 3.8rem !important;
}

.mb-39 {
  margin-bottom: 3.9rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-41 {
  margin-bottom: 4.1rem !important;
}

.mb-42 {
  margin-bottom: 4.2rem !important;
}

.mb-43 {
  margin-bottom: 4.3rem !important;
}

.mb-44 {
  margin-bottom: 4.4rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mb-46 {
  margin-bottom: 4.6rem !important;
}

.mb-47 {
  margin-bottom: 4.7rem !important;
}

.mb-48 {
  margin-bottom: 4.8rem !important;
}

.mb-49 {
  margin-bottom: 4.9rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mb-51 {
  margin-bottom: 5.1rem !important;
}

.mb-52 {
  margin-bottom: 5.2rem !important;
}

.mb-53 {
  margin-bottom: 5.3rem !important;
}

.mb-54 {
  margin-bottom: 5.4rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mb-56 {
  margin-bottom: 5.6rem !important;
}

.mb-57 {
  margin-bottom: 5.7rem !important;
}

.mb-58 {
  margin-bottom: 5.8rem !important;
}

.mb-59 {
  margin-bottom: 5.9rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mb-61 {
  margin-bottom: 6.1rem !important;
}

.mb-62 {
  margin-bottom: 6.2rem !important;
}

.mb-63 {
  margin-bottom: 6.3rem !important;
}

.mb-64 {
  margin-bottom: 6.4rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mb-66 {
  margin-bottom: 6.6rem !important;
}

.mb-67 {
  margin-bottom: 6.7rem !important;
}

.mb-68 {
  margin-bottom: 6.8rem !important;
}

.mb-69 {
  margin-bottom: 6.9rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mb-71 {
  margin-bottom: 7.1rem !important;
}

.mb-72 {
  margin-bottom: 7.2rem !important;
}

.mb-73 {
  margin-bottom: 7.3rem !important;
}

.mb-74 {
  margin-bottom: 7.4rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mb-76 {
  margin-bottom: 7.6rem !important;
}

.mb-77 {
  margin-bottom: 7.7rem !important;
}

.mb-78 {
  margin-bottom: 7.8rem !important;
}

.mb-79 {
  margin-bottom: 7.9rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mb-81 {
  margin-bottom: 8.1rem !important;
}

.mb-82 {
  margin-bottom: 8.2rem !important;
}

.mb-83 {
  margin-bottom: 8.3rem !important;
}

.mb-84 {
  margin-bottom: 8.4rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mb-86 {
  margin-bottom: 8.6rem !important;
}

.mb-87 {
  margin-bottom: 8.7rem !important;
}

.mb-88 {
  margin-bottom: 8.8rem !important;
}

.mb-89 {
  margin-bottom: 8.9rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mb-91 {
  margin-bottom: 9.1rem !important;
}

.mb-92 {
  margin-bottom: 9.2rem !important;
}

.mb-93 {
  margin-bottom: 9.3rem !important;
}

.mb-94 {
  margin-bottom: 9.4rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mb-96 {
  margin-bottom: 9.6rem !important;
}

.mb-97 {
  margin-bottom: 9.7rem !important;
}

.mb-98 {
  margin-bottom: 9.8rem !important;
}

.mb-99 {
  margin-bottom: 9.9rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-6 {
  margin-left: 0.6rem !important;
}

.ms-7 {
  margin-left: 0.7rem !important;
}

.ms-8 {
  margin-left: 0.8rem !important;
}

.ms-9 {
  margin-left: 0.9rem !important;
}

.ms-10 {
  margin-left: 1rem !important;
}

.ms-11 {
  margin-left: 1.1rem !important;
}

.ms-12 {
  margin-left: 1.2rem !important;
}

.ms-13 {
  margin-left: 1.3rem !important;
}

.ms-14 {
  margin-left: 1.4rem !important;
}

.ms-15 {
  margin-left: 1.5rem !important;
}

.ms-16 {
  margin-left: 1.6rem !important;
}

.ms-17 {
  margin-left: 1.7rem !important;
}

.ms-18 {
  margin-left: 1.8rem !important;
}

.ms-19 {
  margin-left: 1.9rem !important;
}

.ms-20 {
  margin-left: 2rem !important;
}

.ms-21 {
  margin-left: 2.1rem !important;
}

.ms-22 {
  margin-left: 2.2rem !important;
}

.ms-23 {
  margin-left: 2.3rem !important;
}

.ms-24 {
  margin-left: 2.4rem !important;
}

.ms-25 {
  margin-left: 2.5rem !important;
}

.ms-26 {
  margin-left: 2.6rem !important;
}

.ms-27 {
  margin-left: 2.7rem !important;
}

.ms-28 {
  margin-left: 2.8rem !important;
}

.ms-29 {
  margin-left: 2.9rem !important;
}

.ms-30 {
  margin-left: 3rem !important;
}

.ms-31 {
  margin-left: 3.1rem !important;
}

.ms-32 {
  margin-left: 3.2rem !important;
}

.ms-33 {
  margin-left: 3.3rem !important;
}

.ms-34 {
  margin-left: 3.4rem !important;
}

.ms-35 {
  margin-left: 3.5rem !important;
}

.ms-36 {
  margin-left: 3.6rem !important;
}

.ms-37 {
  margin-left: 3.7rem !important;
}

.ms-38 {
  margin-left: 3.8rem !important;
}

.ms-39 {
  margin-left: 3.9rem !important;
}

.ms-40 {
  margin-left: 4rem !important;
}

.ms-41 {
  margin-left: 4.1rem !important;
}

.ms-42 {
  margin-left: 4.2rem !important;
}

.ms-43 {
  margin-left: 4.3rem !important;
}

.ms-44 {
  margin-left: 4.4rem !important;
}

.ms-45 {
  margin-left: 4.5rem !important;
}

.ms-46 {
  margin-left: 4.6rem !important;
}

.ms-47 {
  margin-left: 4.7rem !important;
}

.ms-48 {
  margin-left: 4.8rem !important;
}

.ms-49 {
  margin-left: 4.9rem !important;
}

.ms-50 {
  margin-left: 5rem !important;
}

.ms-51 {
  margin-left: 5.1rem !important;
}

.ms-52 {
  margin-left: 5.2rem !important;
}

.ms-53 {
  margin-left: 5.3rem !important;
}

.ms-54 {
  margin-left: 5.4rem !important;
}

.ms-55 {
  margin-left: 5.5rem !important;
}

.ms-56 {
  margin-left: 5.6rem !important;
}

.ms-57 {
  margin-left: 5.7rem !important;
}

.ms-58 {
  margin-left: 5.8rem !important;
}

.ms-59 {
  margin-left: 5.9rem !important;
}

.ms-60 {
  margin-left: 6rem !important;
}

.ms-61 {
  margin-left: 6.1rem !important;
}

.ms-62 {
  margin-left: 6.2rem !important;
}

.ms-63 {
  margin-left: 6.3rem !important;
}

.ms-64 {
  margin-left: 6.4rem !important;
}

.ms-65 {
  margin-left: 6.5rem !important;
}

.ms-66 {
  margin-left: 6.6rem !important;
}

.ms-67 {
  margin-left: 6.7rem !important;
}

.ms-68 {
  margin-left: 6.8rem !important;
}

.ms-69 {
  margin-left: 6.9rem !important;
}

.ms-70 {
  margin-left: 7rem !important;
}

.ms-71 {
  margin-left: 7.1rem !important;
}

.ms-72 {
  margin-left: 7.2rem !important;
}

.ms-73 {
  margin-left: 7.3rem !important;
}

.ms-74 {
  margin-left: 7.4rem !important;
}

.ms-75 {
  margin-left: 7.5rem !important;
}

.ms-76 {
  margin-left: 7.6rem !important;
}

.ms-77 {
  margin-left: 7.7rem !important;
}

.ms-78 {
  margin-left: 7.8rem !important;
}

.ms-79 {
  margin-left: 7.9rem !important;
}

.ms-80 {
  margin-left: 8rem !important;
}

.ms-81 {
  margin-left: 8.1rem !important;
}

.ms-82 {
  margin-left: 8.2rem !important;
}

.ms-83 {
  margin-left: 8.3rem !important;
}

.ms-84 {
  margin-left: 8.4rem !important;
}

.ms-85 {
  margin-left: 8.5rem !important;
}

.ms-86 {
  margin-left: 8.6rem !important;
}

.ms-87 {
  margin-left: 8.7rem !important;
}

.ms-88 {
  margin-left: 8.8rem !important;
}

.ms-89 {
  margin-left: 8.9rem !important;
}

.ms-90 {
  margin-left: 9rem !important;
}

.ms-91 {
  margin-left: 9.1rem !important;
}

.ms-92 {
  margin-left: 9.2rem !important;
}

.ms-93 {
  margin-left: 9.3rem !important;
}

.ms-94 {
  margin-left: 9.4rem !important;
}

.ms-95 {
  margin-left: 9.5rem !important;
}

.ms-96 {
  margin-left: 9.6rem !important;
}

.ms-97 {
  margin-left: 9.7rem !important;
}

.ms-98 {
  margin-left: 9.8rem !important;
}

.ms-99 {
  margin-left: 9.9rem !important;
}

.ms-100 {
  margin-left: 10rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-6 {
  padding: 0.6rem !important;
}

.p-7 {
  padding: 0.7rem !important;
}

.p-8 {
  padding: 0.8rem !important;
}

.p-9 {
  padding: 0.9rem !important;
}

.p-10 {
  padding: 1rem !important;
}

.p-11 {
  padding: 1.1rem !important;
}

.p-12 {
  padding: 1.2rem !important;
}

.p-13 {
  padding: 1.3rem !important;
}

.p-14 {
  padding: 1.4rem !important;
}

.p-15 {
  padding: 1.5rem !important;
}

.p-16 {
  padding: 1.6rem !important;
}

.p-17 {
  padding: 1.7rem !important;
}

.p-18 {
  padding: 1.8rem !important;
}

.p-19 {
  padding: 1.9rem !important;
}

.p-20 {
  padding: 2rem !important;
}

.p-21 {
  padding: 2.1rem !important;
}

.p-22 {
  padding: 2.2rem !important;
}

.p-23 {
  padding: 2.3rem !important;
}

.p-24 {
  padding: 2.4rem !important;
}

.p-25 {
  padding: 2.5rem !important;
}

.p-26 {
  padding: 2.6rem !important;
}

.p-27 {
  padding: 2.7rem !important;
}

.p-28 {
  padding: 2.8rem !important;
}

.p-29 {
  padding: 2.9rem !important;
}

.p-30 {
  padding: 3rem !important;
}

.p-31 {
  padding: 3.1rem !important;
}

.p-32 {
  padding: 3.2rem !important;
}

.p-33 {
  padding: 3.3rem !important;
}

.p-34 {
  padding: 3.4rem !important;
}

.p-35 {
  padding: 3.5rem !important;
}

.p-36 {
  padding: 3.6rem !important;
}

.p-37 {
  padding: 3.7rem !important;
}

.p-38 {
  padding: 3.8rem !important;
}

.p-39 {
  padding: 3.9rem !important;
}

.p-40 {
  padding: 4rem !important;
}

.p-41 {
  padding: 4.1rem !important;
}

.p-42 {
  padding: 4.2rem !important;
}

.p-43 {
  padding: 4.3rem !important;
}

.p-44 {
  padding: 4.4rem !important;
}

.p-45 {
  padding: 4.5rem !important;
}

.p-46 {
  padding: 4.6rem !important;
}

.p-47 {
  padding: 4.7rem !important;
}

.p-48 {
  padding: 4.8rem !important;
}

.p-49 {
  padding: 4.9rem !important;
}

.p-50 {
  padding: 5rem !important;
}

.p-51 {
  padding: 5.1rem !important;
}

.p-52 {
  padding: 5.2rem !important;
}

.p-53 {
  padding: 5.3rem !important;
}

.p-54 {
  padding: 5.4rem !important;
}

.p-55 {
  padding: 5.5rem !important;
}

.p-56 {
  padding: 5.6rem !important;
}

.p-57 {
  padding: 5.7rem !important;
}

.p-58 {
  padding: 5.8rem !important;
}

.p-59 {
  padding: 5.9rem !important;
}

.p-60 {
  padding: 6rem !important;
}

.p-61 {
  padding: 6.1rem !important;
}

.p-62 {
  padding: 6.2rem !important;
}

.p-63 {
  padding: 6.3rem !important;
}

.p-64 {
  padding: 6.4rem !important;
}

.p-65 {
  padding: 6.5rem !important;
}

.p-66 {
  padding: 6.6rem !important;
}

.p-67 {
  padding: 6.7rem !important;
}

.p-68 {
  padding: 6.8rem !important;
}

.p-69 {
  padding: 6.9rem !important;
}

.p-70 {
  padding: 7rem !important;
}

.p-71 {
  padding: 7.1rem !important;
}

.p-72 {
  padding: 7.2rem !important;
}

.p-73 {
  padding: 7.3rem !important;
}

.p-74 {
  padding: 7.4rem !important;
}

.p-75 {
  padding: 7.5rem !important;
}

.p-76 {
  padding: 7.6rem !important;
}

.p-77 {
  padding: 7.7rem !important;
}

.p-78 {
  padding: 7.8rem !important;
}

.p-79 {
  padding: 7.9rem !important;
}

.p-80 {
  padding: 8rem !important;
}

.p-81 {
  padding: 8.1rem !important;
}

.p-82 {
  padding: 8.2rem !important;
}

.p-83 {
  padding: 8.3rem !important;
}

.p-84 {
  padding: 8.4rem !important;
}

.p-85 {
  padding: 8.5rem !important;
}

.p-86 {
  padding: 8.6rem !important;
}

.p-87 {
  padding: 8.7rem !important;
}

.p-88 {
  padding: 8.8rem !important;
}

.p-89 {
  padding: 8.9rem !important;
}

.p-90 {
  padding: 9rem !important;
}

.p-91 {
  padding: 9.1rem !important;
}

.p-92 {
  padding: 9.2rem !important;
}

.p-93 {
  padding: 9.3rem !important;
}

.p-94 {
  padding: 9.4rem !important;
}

.p-95 {
  padding: 9.5rem !important;
}

.p-96 {
  padding: 9.6rem !important;
}

.p-97 {
  padding: 9.7rem !important;
}

.p-98 {
  padding: 9.8rem !important;
}

.p-99 {
  padding: 9.9rem !important;
}

.p-100 {
  padding: 10rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-6 {
  padding-right: 0.6rem !important;
  padding-left: 0.6rem !important;
}

.px-7 {
  padding-right: 0.7rem !important;
  padding-left: 0.7rem !important;
}

.px-8 {
  padding-right: 0.8rem !important;
  padding-left: 0.8rem !important;
}

.px-9 {
  padding-right: 0.9rem !important;
  padding-left: 0.9rem !important;
}

.px-10 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-11 {
  padding-right: 1.1rem !important;
  padding-left: 1.1rem !important;
}

.px-12 {
  padding-right: 1.2rem !important;
  padding-left: 1.2rem !important;
}

.px-13 {
  padding-right: 1.3rem !important;
  padding-left: 1.3rem !important;
}

.px-14 {
  padding-right: 1.4rem !important;
  padding-left: 1.4rem !important;
}

.px-15 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-16 {
  padding-right: 1.6rem !important;
  padding-left: 1.6rem !important;
}

.px-17 {
  padding-right: 1.7rem !important;
  padding-left: 1.7rem !important;
}

.px-18 {
  padding-right: 1.8rem !important;
  padding-left: 1.8rem !important;
}

.px-19 {
  padding-right: 1.9rem !important;
  padding-left: 1.9rem !important;
}

.px-20 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.px-21 {
  padding-right: 2.1rem !important;
  padding-left: 2.1rem !important;
}

.px-22 {
  padding-right: 2.2rem !important;
  padding-left: 2.2rem !important;
}

.px-23 {
  padding-right: 2.3rem !important;
  padding-left: 2.3rem !important;
}

.px-24 {
  padding-right: 2.4rem !important;
  padding-left: 2.4rem !important;
}

.px-25 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px-26 {
  padding-right: 2.6rem !important;
  padding-left: 2.6rem !important;
}

.px-27 {
  padding-right: 2.7rem !important;
  padding-left: 2.7rem !important;
}

.px-28 {
  padding-right: 2.8rem !important;
  padding-left: 2.8rem !important;
}

.px-29 {
  padding-right: 2.9rem !important;
  padding-left: 2.9rem !important;
}

.px-30 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-31 {
  padding-right: 3.1rem !important;
  padding-left: 3.1rem !important;
}

.px-32 {
  padding-right: 3.2rem !important;
  padding-left: 3.2rem !important;
}

.px-33 {
  padding-right: 3.3rem !important;
  padding-left: 3.3rem !important;
}

.px-34 {
  padding-right: 3.4rem !important;
  padding-left: 3.4rem !important;
}

.px-35 {
  padding-right: 3.5rem !important;
  padding-left: 3.5rem !important;
}

.px-36 {
  padding-right: 3.6rem !important;
  padding-left: 3.6rem !important;
}

.px-37 {
  padding-right: 3.7rem !important;
  padding-left: 3.7rem !important;
}

.px-38 {
  padding-right: 3.8rem !important;
  padding-left: 3.8rem !important;
}

.px-39 {
  padding-right: 3.9rem !important;
  padding-left: 3.9rem !important;
}

.px-40 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}

.px-41 {
  padding-right: 4.1rem !important;
  padding-left: 4.1rem !important;
}

.px-42 {
  padding-right: 4.2rem !important;
  padding-left: 4.2rem !important;
}

.px-43 {
  padding-right: 4.3rem !important;
  padding-left: 4.3rem !important;
}

.px-44 {
  padding-right: 4.4rem !important;
  padding-left: 4.4rem !important;
}

.px-45 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}

.px-46 {
  padding-right: 4.6rem !important;
  padding-left: 4.6rem !important;
}

.px-47 {
  padding-right: 4.7rem !important;
  padding-left: 4.7rem !important;
}

.px-48 {
  padding-right: 4.8rem !important;
  padding-left: 4.8rem !important;
}

.px-49 {
  padding-right: 4.9rem !important;
  padding-left: 4.9rem !important;
}

.px-50 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}

.px-51 {
  padding-right: 5.1rem !important;
  padding-left: 5.1rem !important;
}

.px-52 {
  padding-right: 5.2rem !important;
  padding-left: 5.2rem !important;
}

.px-53 {
  padding-right: 5.3rem !important;
  padding-left: 5.3rem !important;
}

.px-54 {
  padding-right: 5.4rem !important;
  padding-left: 5.4rem !important;
}

.px-55 {
  padding-right: 5.5rem !important;
  padding-left: 5.5rem !important;
}

.px-56 {
  padding-right: 5.6rem !important;
  padding-left: 5.6rem !important;
}

.px-57 {
  padding-right: 5.7rem !important;
  padding-left: 5.7rem !important;
}

.px-58 {
  padding-right: 5.8rem !important;
  padding-left: 5.8rem !important;
}

.px-59 {
  padding-right: 5.9rem !important;
  padding-left: 5.9rem !important;
}

.px-60 {
  padding-right: 6rem !important;
  padding-left: 6rem !important;
}

.px-61 {
  padding-right: 6.1rem !important;
  padding-left: 6.1rem !important;
}

.px-62 {
  padding-right: 6.2rem !important;
  padding-left: 6.2rem !important;
}

.px-63 {
  padding-right: 6.3rem !important;
  padding-left: 6.3rem !important;
}

.px-64 {
  padding-right: 6.4rem !important;
  padding-left: 6.4rem !important;
}

.px-65 {
  padding-right: 6.5rem !important;
  padding-left: 6.5rem !important;
}

.px-66 {
  padding-right: 6.6rem !important;
  padding-left: 6.6rem !important;
}

.px-67 {
  padding-right: 6.7rem !important;
  padding-left: 6.7rem !important;
}

.px-68 {
  padding-right: 6.8rem !important;
  padding-left: 6.8rem !important;
}

.px-69 {
  padding-right: 6.9rem !important;
  padding-left: 6.9rem !important;
}

.px-70 {
  padding-right: 7rem !important;
  padding-left: 7rem !important;
}

.px-71 {
  padding-right: 7.1rem !important;
  padding-left: 7.1rem !important;
}

.px-72 {
  padding-right: 7.2rem !important;
  padding-left: 7.2rem !important;
}

.px-73 {
  padding-right: 7.3rem !important;
  padding-left: 7.3rem !important;
}

.px-74 {
  padding-right: 7.4rem !important;
  padding-left: 7.4rem !important;
}

.px-75 {
  padding-right: 7.5rem !important;
  padding-left: 7.5rem !important;
}

.px-76 {
  padding-right: 7.6rem !important;
  padding-left: 7.6rem !important;
}

.px-77 {
  padding-right: 7.7rem !important;
  padding-left: 7.7rem !important;
}

.px-78 {
  padding-right: 7.8rem !important;
  padding-left: 7.8rem !important;
}

.px-79 {
  padding-right: 7.9rem !important;
  padding-left: 7.9rem !important;
}

.px-80 {
  padding-right: 8rem !important;
  padding-left: 8rem !important;
}

.px-81 {
  padding-right: 8.1rem !important;
  padding-left: 8.1rem !important;
}

.px-82 {
  padding-right: 8.2rem !important;
  padding-left: 8.2rem !important;
}

.px-83 {
  padding-right: 8.3rem !important;
  padding-left: 8.3rem !important;
}

.px-84 {
  padding-right: 8.4rem !important;
  padding-left: 8.4rem !important;
}

.px-85 {
  padding-right: 8.5rem !important;
  padding-left: 8.5rem !important;
}

.px-86 {
  padding-right: 8.6rem !important;
  padding-left: 8.6rem !important;
}

.px-87 {
  padding-right: 8.7rem !important;
  padding-left: 8.7rem !important;
}

.px-88 {
  padding-right: 8.8rem !important;
  padding-left: 8.8rem !important;
}

.px-89 {
  padding-right: 8.9rem !important;
  padding-left: 8.9rem !important;
}

.px-90 {
  padding-right: 9rem !important;
  padding-left: 9rem !important;
}

.px-91 {
  padding-right: 9.1rem !important;
  padding-left: 9.1rem !important;
}

.px-92 {
  padding-right: 9.2rem !important;
  padding-left: 9.2rem !important;
}

.px-93 {
  padding-right: 9.3rem !important;
  padding-left: 9.3rem !important;
}

.px-94 {
  padding-right: 9.4rem !important;
  padding-left: 9.4rem !important;
}

.px-95 {
  padding-right: 9.5rem !important;
  padding-left: 9.5rem !important;
}

.px-96 {
  padding-right: 9.6rem !important;
  padding-left: 9.6rem !important;
}

.px-97 {
  padding-right: 9.7rem !important;
  padding-left: 9.7rem !important;
}

.px-98 {
  padding-right: 9.8rem !important;
  padding-left: 9.8rem !important;
}

.px-99 {
  padding-right: 9.9rem !important;
  padding-left: 9.9rem !important;
}

.px-100 {
  padding-right: 10rem !important;
  padding-left: 10rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-6 {
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

.py-7 {
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
}

.py-8 {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

.py-9 {
  padding-top: 0.9rem !important;
  padding-bottom: 0.9rem !important;
}

.py-10 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-11 {
  padding-top: 1.1rem !important;
  padding-bottom: 1.1rem !important;
}

.py-12 {
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

.py-13 {
  padding-top: 1.3rem !important;
  padding-bottom: 1.3rem !important;
}

.py-14 {
  padding-top: 1.4rem !important;
  padding-bottom: 1.4rem !important;
}

.py-15 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-16 {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

.py-17 {
  padding-top: 1.7rem !important;
  padding-bottom: 1.7rem !important;
}

.py-18 {
  padding-top: 1.8rem !important;
  padding-bottom: 1.8rem !important;
}

.py-19 {
  padding-top: 1.9rem !important;
  padding-bottom: 1.9rem !important;
}

.py-20 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-21 {
  padding-top: 2.1rem !important;
  padding-bottom: 2.1rem !important;
}

.py-22 {
  padding-top: 2.2rem !important;
  padding-bottom: 2.2rem !important;
}

.py-23 {
  padding-top: 2.3rem !important;
  padding-bottom: 2.3rem !important;
}

.py-24 {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}

.py-25 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-26 {
  padding-top: 2.6rem !important;
  padding-bottom: 2.6rem !important;
}

.py-27 {
  padding-top: 2.7rem !important;
  padding-bottom: 2.7rem !important;
}

.py-28 {
  padding-top: 2.8rem !important;
  padding-bottom: 2.8rem !important;
}

.py-29 {
  padding-top: 2.9rem !important;
  padding-bottom: 2.9rem !important;
}

.py-30 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-31 {
  padding-top: 3.1rem !important;
  padding-bottom: 3.1rem !important;
}

.py-32 {
  padding-top: 3.2rem !important;
  padding-bottom: 3.2rem !important;
}

.py-33 {
  padding-top: 3.3rem !important;
  padding-bottom: 3.3rem !important;
}

.py-34 {
  padding-top: 3.4rem !important;
  padding-bottom: 3.4rem !important;
}

.py-35 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-36 {
  padding-top: 3.6rem !important;
  padding-bottom: 3.6rem !important;
}

.py-37 {
  padding-top: 3.7rem !important;
  padding-bottom: 3.7rem !important;
}

.py-38 {
  padding-top: 3.8rem !important;
  padding-bottom: 3.8rem !important;
}

.py-39 {
  padding-top: 3.9rem !important;
  padding-bottom: 3.9rem !important;
}

.py-40 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-41 {
  padding-top: 4.1rem !important;
  padding-bottom: 4.1rem !important;
}

.py-42 {
  padding-top: 4.2rem !important;
  padding-bottom: 4.2rem !important;
}

.py-43 {
  padding-top: 4.3rem !important;
  padding-bottom: 4.3rem !important;
}

.py-44 {
  padding-top: 4.4rem !important;
  padding-bottom: 4.4rem !important;
}

.py-45 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.py-46 {
  padding-top: 4.6rem !important;
  padding-bottom: 4.6rem !important;
}

.py-47 {
  padding-top: 4.7rem !important;
  padding-bottom: 4.7rem !important;
}

.py-48 {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}

.py-49 {
  padding-top: 4.9rem !important;
  padding-bottom: 4.9rem !important;
}

.py-50 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-51 {
  padding-top: 5.1rem !important;
  padding-bottom: 5.1rem !important;
}

.py-52 {
  padding-top: 5.2rem !important;
  padding-bottom: 5.2rem !important;
}

.py-53 {
  padding-top: 5.3rem !important;
  padding-bottom: 5.3rem !important;
}

.py-54 {
  padding-top: 5.4rem !important;
  padding-bottom: 5.4rem !important;
}

.py-55 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.py-56 {
  padding-top: 5.6rem !important;
  padding-bottom: 5.6rem !important;
}

.py-57 {
  padding-top: 5.7rem !important;
  padding-bottom: 5.7rem !important;
}

.py-58 {
  padding-top: 5.8rem !important;
  padding-bottom: 5.8rem !important;
}

.py-59 {
  padding-top: 5.9rem !important;
  padding-bottom: 5.9rem !important;
}

.py-60 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.py-61 {
  padding-top: 6.1rem !important;
  padding-bottom: 6.1rem !important;
}

.py-62 {
  padding-top: 6.2rem !important;
  padding-bottom: 6.2rem !important;
}

.py-63 {
  padding-top: 6.3rem !important;
  padding-bottom: 6.3rem !important;
}

.py-64 {
  padding-top: 6.4rem !important;
  padding-bottom: 6.4rem !important;
}

.py-65 {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

.py-66 {
  padding-top: 6.6rem !important;
  padding-bottom: 6.6rem !important;
}

.py-67 {
  padding-top: 6.7rem !important;
  padding-bottom: 6.7rem !important;
}

.py-68 {
  padding-top: 6.8rem !important;
  padding-bottom: 6.8rem !important;
}

.py-69 {
  padding-top: 6.9rem !important;
  padding-bottom: 6.9rem !important;
}

.py-70 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.py-71 {
  padding-top: 7.1rem !important;
  padding-bottom: 7.1rem !important;
}

.py-72 {
  padding-top: 7.2rem !important;
  padding-bottom: 7.2rem !important;
}

.py-73 {
  padding-top: 7.3rem !important;
  padding-bottom: 7.3rem !important;
}

.py-74 {
  padding-top: 7.4rem !important;
  padding-bottom: 7.4rem !important;
}

.py-75 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.py-76 {
  padding-top: 7.6rem !important;
  padding-bottom: 7.6rem !important;
}

.py-77 {
  padding-top: 7.7rem !important;
  padding-bottom: 7.7rem !important;
}

.py-78 {
  padding-top: 7.8rem !important;
  padding-bottom: 7.8rem !important;
}

.py-79 {
  padding-top: 7.9rem !important;
  padding-bottom: 7.9rem !important;
}

.py-80 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.py-81 {
  padding-top: 8.1rem !important;
  padding-bottom: 8.1rem !important;
}

.py-82 {
  padding-top: 8.2rem !important;
  padding-bottom: 8.2rem !important;
}

.py-83 {
  padding-top: 8.3rem !important;
  padding-bottom: 8.3rem !important;
}

.py-84 {
  padding-top: 8.4rem !important;
  padding-bottom: 8.4rem !important;
}

.py-85 {
  padding-top: 8.5rem !important;
  padding-bottom: 8.5rem !important;
}

.py-86 {
  padding-top: 8.6rem !important;
  padding-bottom: 8.6rem !important;
}

.py-87 {
  padding-top: 8.7rem !important;
  padding-bottom: 8.7rem !important;
}

.py-88 {
  padding-top: 8.8rem !important;
  padding-bottom: 8.8rem !important;
}

.py-89 {
  padding-top: 8.9rem !important;
  padding-bottom: 8.9rem !important;
}

.py-90 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.py-91 {
  padding-top: 9.1rem !important;
  padding-bottom: 9.1rem !important;
}

.py-92 {
  padding-top: 9.2rem !important;
  padding-bottom: 9.2rem !important;
}

.py-93 {
  padding-top: 9.3rem !important;
  padding-bottom: 9.3rem !important;
}

.py-94 {
  padding-top: 9.4rem !important;
  padding-bottom: 9.4rem !important;
}

.py-95 {
  padding-top: 9.5rem !important;
  padding-bottom: 9.5rem !important;
}

.py-96 {
  padding-top: 9.6rem !important;
  padding-bottom: 9.6rem !important;
}

.py-97 {
  padding-top: 9.7rem !important;
  padding-bottom: 9.7rem !important;
}

.py-98 {
  padding-top: 9.8rem !important;
  padding-bottom: 9.8rem !important;
}

.py-99 {
  padding-top: 9.9rem !important;
  padding-bottom: 9.9rem !important;
}

.py-100 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pt-6 {
  padding-top: 0.6rem !important;
}

.pt-7 {
  padding-top: 0.7rem !important;
}

.pt-8 {
  padding-top: 0.8rem !important;
}

.pt-9 {
  padding-top: 0.9rem !important;
}

.pt-10 {
  padding-top: 1rem !important;
}

.pt-11 {
  padding-top: 1.1rem !important;
}

.pt-12 {
  padding-top: 1.2rem !important;
}

.pt-13 {
  padding-top: 1.3rem !important;
}

.pt-14 {
  padding-top: 1.4rem !important;
}

.pt-15 {
  padding-top: 1.5rem !important;
}

.pt-16 {
  padding-top: 1.6rem !important;
}

.pt-17 {
  padding-top: 1.7rem !important;
}

.pt-18 {
  padding-top: 1.8rem !important;
}

.pt-19 {
  padding-top: 1.9rem !important;
}

.pt-20 {
  padding-top: 2rem !important;
}

.pt-21 {
  padding-top: 2.1rem !important;
}

.pt-22 {
  padding-top: 2.2rem !important;
}

.pt-23 {
  padding-top: 2.3rem !important;
}

.pt-24 {
  padding-top: 2.4rem !important;
}

.pt-25 {
  padding-top: 2.5rem !important;
}

.pt-26 {
  padding-top: 2.6rem !important;
}

.pt-27 {
  padding-top: 2.7rem !important;
}

.pt-28 {
  padding-top: 2.8rem !important;
}

.pt-29 {
  padding-top: 2.9rem !important;
}

.pt-30 {
  padding-top: 3rem !important;
}

.pt-31 {
  padding-top: 3.1rem !important;
}

.pt-32 {
  padding-top: 3.2rem !important;
}

.pt-33 {
  padding-top: 3.3rem !important;
}

.pt-34 {
  padding-top: 3.4rem !important;
}

.pt-35 {
  padding-top: 3.5rem !important;
}

.pt-36 {
  padding-top: 3.6rem !important;
}

.pt-37 {
  padding-top: 3.7rem !important;
}

.pt-38 {
  padding-top: 3.8rem !important;
}

.pt-39 {
  padding-top: 3.9rem !important;
}

.pt-40 {
  padding-top: 4rem !important;
}

.pt-41 {
  padding-top: 4.1rem !important;
}

.pt-42 {
  padding-top: 4.2rem !important;
}

.pt-43 {
  padding-top: 4.3rem !important;
}

.pt-44 {
  padding-top: 4.4rem !important;
}

.pt-45 {
  padding-top: 4.5rem !important;
}

.pt-46 {
  padding-top: 4.6rem !important;
}

.pt-47 {
  padding-top: 4.7rem !important;
}

.pt-48 {
  padding-top: 4.8rem !important;
}

.pt-49 {
  padding-top: 4.9rem !important;
}

.pt-50 {
  padding-top: 5rem !important;
}

.pt-51 {
  padding-top: 5.1rem !important;
}

.pt-52 {
  padding-top: 5.2rem !important;
}

.pt-53 {
  padding-top: 5.3rem !important;
}

.pt-54 {
  padding-top: 5.4rem !important;
}

.pt-55 {
  padding-top: 5.5rem !important;
}

.pt-56 {
  padding-top: 5.6rem !important;
}

.pt-57 {
  padding-top: 5.7rem !important;
}

.pt-58 {
  padding-top: 5.8rem !important;
}

.pt-59 {
  padding-top: 5.9rem !important;
}

.pt-60 {
  padding-top: 6rem !important;
}

.pt-61 {
  padding-top: 6.1rem !important;
}

.pt-62 {
  padding-top: 6.2rem !important;
}

.pt-63 {
  padding-top: 6.3rem !important;
}

.pt-64 {
  padding-top: 6.4rem !important;
}

.pt-65 {
  padding-top: 6.5rem !important;
}

.pt-66 {
  padding-top: 6.6rem !important;
}

.pt-67 {
  padding-top: 6.7rem !important;
}

.pt-68 {
  padding-top: 6.8rem !important;
}

.pt-69 {
  padding-top: 6.9rem !important;
}

.pt-70 {
  padding-top: 7rem !important;
}

.pt-71 {
  padding-top: 7.1rem !important;
}

.pt-72 {
  padding-top: 7.2rem !important;
}

.pt-73 {
  padding-top: 7.3rem !important;
}

.pt-74 {
  padding-top: 7.4rem !important;
}

.pt-75 {
  padding-top: 7.5rem !important;
}

.pt-76 {
  padding-top: 7.6rem !important;
}

.pt-77 {
  padding-top: 7.7rem !important;
}

.pt-78 {
  padding-top: 7.8rem !important;
}

.pt-79 {
  padding-top: 7.9rem !important;
}

.pt-80 {
  padding-top: 8rem !important;
}

.pt-81 {
  padding-top: 8.1rem !important;
}

.pt-82 {
  padding-top: 8.2rem !important;
}

.pt-83 {
  padding-top: 8.3rem !important;
}

.pt-84 {
  padding-top: 8.4rem !important;
}

.pt-85 {
  padding-top: 8.5rem !important;
}

.pt-86 {
  padding-top: 8.6rem !important;
}

.pt-87 {
  padding-top: 8.7rem !important;
}

.pt-88 {
  padding-top: 8.8rem !important;
}

.pt-89 {
  padding-top: 8.9rem !important;
}

.pt-90 {
  padding-top: 9rem !important;
}

.pt-91 {
  padding-top: 9.1rem !important;
}

.pt-92 {
  padding-top: 9.2rem !important;
}

.pt-93 {
  padding-top: 9.3rem !important;
}

.pt-94 {
  padding-top: 9.4rem !important;
}

.pt-95 {
  padding-top: 9.5rem !important;
}

.pt-96 {
  padding-top: 9.6rem !important;
}

.pt-97 {
  padding-top: 9.7rem !important;
}

.pt-98 {
  padding-top: 9.8rem !important;
}

.pt-99 {
  padding-top: 9.9rem !important;
}

.pt-100 {
  padding-top: 10rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pe-6 {
  padding-right: 0.6rem !important;
}

.pe-7 {
  padding-right: 0.7rem !important;
}

.pe-8 {
  padding-right: 0.8rem !important;
}

.pe-9 {
  padding-right: 0.9rem !important;
}

.pe-10 {
  padding-right: 1rem !important;
}

.pe-11 {
  padding-right: 1.1rem !important;
}

.pe-12 {
  padding-right: 1.2rem !important;
}

.pe-13 {
  padding-right: 1.3rem !important;
}

.pe-14 {
  padding-right: 1.4rem !important;
}

.pe-15 {
  padding-right: 1.5rem !important;
}

.pe-16 {
  padding-right: 1.6rem !important;
}

.pe-17 {
  padding-right: 1.7rem !important;
}

.pe-18 {
  padding-right: 1.8rem !important;
}

.pe-19 {
  padding-right: 1.9rem !important;
}

.pe-20 {
  padding-right: 2rem !important;
}

.pe-21 {
  padding-right: 2.1rem !important;
}

.pe-22 {
  padding-right: 2.2rem !important;
}

.pe-23 {
  padding-right: 2.3rem !important;
}

.pe-24 {
  padding-right: 2.4rem !important;
}

.pe-25 {
  padding-right: 2.5rem !important;
}

.pe-26 {
  padding-right: 2.6rem !important;
}

.pe-27 {
  padding-right: 2.7rem !important;
}

.pe-28 {
  padding-right: 2.8rem !important;
}

.pe-29 {
  padding-right: 2.9rem !important;
}

.pe-30 {
  padding-right: 3rem !important;
}

.pe-31 {
  padding-right: 3.1rem !important;
}

.pe-32 {
  padding-right: 3.2rem !important;
}

.pe-33 {
  padding-right: 3.3rem !important;
}

.pe-34 {
  padding-right: 3.4rem !important;
}

.pe-35 {
  padding-right: 3.5rem !important;
}

.pe-36 {
  padding-right: 3.6rem !important;
}

.pe-37 {
  padding-right: 3.7rem !important;
}

.pe-38 {
  padding-right: 3.8rem !important;
}

.pe-39 {
  padding-right: 3.9rem !important;
}

.pe-40 {
  padding-right: 4rem !important;
}

.pe-41 {
  padding-right: 4.1rem !important;
}

.pe-42 {
  padding-right: 4.2rem !important;
}

.pe-43 {
  padding-right: 4.3rem !important;
}

.pe-44 {
  padding-right: 4.4rem !important;
}

.pe-45 {
  padding-right: 4.5rem !important;
}

.pe-46 {
  padding-right: 4.6rem !important;
}

.pe-47 {
  padding-right: 4.7rem !important;
}

.pe-48 {
  padding-right: 4.8rem !important;
}

.pe-49 {
  padding-right: 4.9rem !important;
}

.pe-50 {
  padding-right: 5rem !important;
}

.pe-51 {
  padding-right: 5.1rem !important;
}

.pe-52 {
  padding-right: 5.2rem !important;
}

.pe-53 {
  padding-right: 5.3rem !important;
}

.pe-54 {
  padding-right: 5.4rem !important;
}

.pe-55 {
  padding-right: 5.5rem !important;
}

.pe-56 {
  padding-right: 5.6rem !important;
}

.pe-57 {
  padding-right: 5.7rem !important;
}

.pe-58 {
  padding-right: 5.8rem !important;
}

.pe-59 {
  padding-right: 5.9rem !important;
}

.pe-60 {
  padding-right: 6rem !important;
}

.pe-61 {
  padding-right: 6.1rem !important;
}

.pe-62 {
  padding-right: 6.2rem !important;
}

.pe-63 {
  padding-right: 6.3rem !important;
}

.pe-64 {
  padding-right: 6.4rem !important;
}

.pe-65 {
  padding-right: 6.5rem !important;
}

.pe-66 {
  padding-right: 6.6rem !important;
}

.pe-67 {
  padding-right: 6.7rem !important;
}

.pe-68 {
  padding-right: 6.8rem !important;
}

.pe-69 {
  padding-right: 6.9rem !important;
}

.pe-70 {
  padding-right: 7rem !important;
}

.pe-71 {
  padding-right: 7.1rem !important;
}

.pe-72 {
  padding-right: 7.2rem !important;
}

.pe-73 {
  padding-right: 7.3rem !important;
}

.pe-74 {
  padding-right: 7.4rem !important;
}

.pe-75 {
  padding-right: 7.5rem !important;
}

.pe-76 {
  padding-right: 7.6rem !important;
}

.pe-77 {
  padding-right: 7.7rem !important;
}

.pe-78 {
  padding-right: 7.8rem !important;
}

.pe-79 {
  padding-right: 7.9rem !important;
}

.pe-80 {
  padding-right: 8rem !important;
}

.pe-81 {
  padding-right: 8.1rem !important;
}

.pe-82 {
  padding-right: 8.2rem !important;
}

.pe-83 {
  padding-right: 8.3rem !important;
}

.pe-84 {
  padding-right: 8.4rem !important;
}

.pe-85 {
  padding-right: 8.5rem !important;
}

.pe-86 {
  padding-right: 8.6rem !important;
}

.pe-87 {
  padding-right: 8.7rem !important;
}

.pe-88 {
  padding-right: 8.8rem !important;
}

.pe-89 {
  padding-right: 8.9rem !important;
}

.pe-90 {
  padding-right: 9rem !important;
}

.pe-91 {
  padding-right: 9.1rem !important;
}

.pe-92 {
  padding-right: 9.2rem !important;
}

.pe-93 {
  padding-right: 9.3rem !important;
}

.pe-94 {
  padding-right: 9.4rem !important;
}

.pe-95 {
  padding-right: 9.5rem !important;
}

.pe-96 {
  padding-right: 9.6rem !important;
}

.pe-97 {
  padding-right: 9.7rem !important;
}

.pe-98 {
  padding-right: 9.8rem !important;
}

.pe-99 {
  padding-right: 9.9rem !important;
}

.pe-100 {
  padding-right: 10rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pb-6 {
  padding-bottom: 0.6rem !important;
}

.pb-7 {
  padding-bottom: 0.7rem !important;
}

.pb-8 {
  padding-bottom: 0.8rem !important;
}

.pb-9 {
  padding-bottom: 0.9rem !important;
}

.pb-10 {
  padding-bottom: 1rem !important;
}

.pb-11 {
  padding-bottom: 1.1rem !important;
}

.pb-12 {
  padding-bottom: 1.2rem !important;
}

.pb-13 {
  padding-bottom: 1.3rem !important;
}

.pb-14 {
  padding-bottom: 1.4rem !important;
}

.pb-15 {
  padding-bottom: 1.5rem !important;
}

.pb-16 {
  padding-bottom: 1.6rem !important;
}

.pb-17 {
  padding-bottom: 1.7rem !important;
}

.pb-18 {
  padding-bottom: 1.8rem !important;
}

.pb-19 {
  padding-bottom: 1.9rem !important;
}

.pb-20 {
  padding-bottom: 2rem !important;
}

.pb-21 {
  padding-bottom: 2.1rem !important;
}

.pb-22 {
  padding-bottom: 2.2rem !important;
}

.pb-23 {
  padding-bottom: 2.3rem !important;
}

.pb-24 {
  padding-bottom: 2.4rem !important;
}

.pb-25 {
  padding-bottom: 2.5rem !important;
}

.pb-26 {
  padding-bottom: 2.6rem !important;
}

.pb-27 {
  padding-bottom: 2.7rem !important;
}

.pb-28 {
  padding-bottom: 2.8rem !important;
}

.pb-29 {
  padding-bottom: 2.9rem !important;
}

.pb-30 {
  padding-bottom: 3rem !important;
}

.pb-31 {
  padding-bottom: 3.1rem !important;
}

.pb-32 {
  padding-bottom: 3.2rem !important;
}

.pb-33 {
  padding-bottom: 3.3rem !important;
}

.pb-34 {
  padding-bottom: 3.4rem !important;
}

.pb-35 {
  padding-bottom: 3.5rem !important;
}

.pb-36 {
  padding-bottom: 3.6rem !important;
}

.pb-37 {
  padding-bottom: 3.7rem !important;
}

.pb-38 {
  padding-bottom: 3.8rem !important;
}

.pb-39 {
  padding-bottom: 3.9rem !important;
}

.pb-40 {
  padding-bottom: 4rem !important;
}

.pb-41 {
  padding-bottom: 4.1rem !important;
}

.pb-42 {
  padding-bottom: 4.2rem !important;
}

.pb-43 {
  padding-bottom: 4.3rem !important;
}

.pb-44 {
  padding-bottom: 4.4rem !important;
}

.pb-45 {
  padding-bottom: 4.5rem !important;
}

.pb-46 {
  padding-bottom: 4.6rem !important;
}

.pb-47 {
  padding-bottom: 4.7rem !important;
}

.pb-48 {
  padding-bottom: 4.8rem !important;
}

.pb-49 {
  padding-bottom: 4.9rem !important;
}

.pb-50 {
  padding-bottom: 5rem !important;
}

.pb-51 {
  padding-bottom: 5.1rem !important;
}

.pb-52 {
  padding-bottom: 5.2rem !important;
}

.pb-53 {
  padding-bottom: 5.3rem !important;
}

.pb-54 {
  padding-bottom: 5.4rem !important;
}

.pb-55 {
  padding-bottom: 5.5rem !important;
}

.pb-56 {
  padding-bottom: 5.6rem !important;
}

.pb-57 {
  padding-bottom: 5.7rem !important;
}

.pb-58 {
  padding-bottom: 5.8rem !important;
}

.pb-59 {
  padding-bottom: 5.9rem !important;
}

.pb-60 {
  padding-bottom: 6rem !important;
}

.pb-61 {
  padding-bottom: 6.1rem !important;
}

.pb-62 {
  padding-bottom: 6.2rem !important;
}

.pb-63 {
  padding-bottom: 6.3rem !important;
}

.pb-64 {
  padding-bottom: 6.4rem !important;
}

.pb-65 {
  padding-bottom: 6.5rem !important;
}

.pb-66 {
  padding-bottom: 6.6rem !important;
}

.pb-67 {
  padding-bottom: 6.7rem !important;
}

.pb-68 {
  padding-bottom: 6.8rem !important;
}

.pb-69 {
  padding-bottom: 6.9rem !important;
}

.pb-70 {
  padding-bottom: 7rem !important;
}

.pb-71 {
  padding-bottom: 7.1rem !important;
}

.pb-72 {
  padding-bottom: 7.2rem !important;
}

.pb-73 {
  padding-bottom: 7.3rem !important;
}

.pb-74 {
  padding-bottom: 7.4rem !important;
}

.pb-75 {
  padding-bottom: 7.5rem !important;
}

.pb-76 {
  padding-bottom: 7.6rem !important;
}

.pb-77 {
  padding-bottom: 7.7rem !important;
}

.pb-78 {
  padding-bottom: 7.8rem !important;
}

.pb-79 {
  padding-bottom: 7.9rem !important;
}

.pb-80 {
  padding-bottom: 8rem !important;
}

.pb-81 {
  padding-bottom: 8.1rem !important;
}

.pb-82 {
  padding-bottom: 8.2rem !important;
}

.pb-83 {
  padding-bottom: 8.3rem !important;
}

.pb-84 {
  padding-bottom: 8.4rem !important;
}

.pb-85 {
  padding-bottom: 8.5rem !important;
}

.pb-86 {
  padding-bottom: 8.6rem !important;
}

.pb-87 {
  padding-bottom: 8.7rem !important;
}

.pb-88 {
  padding-bottom: 8.8rem !important;
}

.pb-89 {
  padding-bottom: 8.9rem !important;
}

.pb-90 {
  padding-bottom: 9rem !important;
}

.pb-91 {
  padding-bottom: 9.1rem !important;
}

.pb-92 {
  padding-bottom: 9.2rem !important;
}

.pb-93 {
  padding-bottom: 9.3rem !important;
}

.pb-94 {
  padding-bottom: 9.4rem !important;
}

.pb-95 {
  padding-bottom: 9.5rem !important;
}

.pb-96 {
  padding-bottom: 9.6rem !important;
}

.pb-97 {
  padding-bottom: 9.7rem !important;
}

.pb-98 {
  padding-bottom: 9.8rem !important;
}

.pb-99 {
  padding-bottom: 9.9rem !important;
}

.pb-100 {
  padding-bottom: 10rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.ps-6 {
  padding-left: 0.6rem !important;
}

.ps-7 {
  padding-left: 0.7rem !important;
}

.ps-8 {
  padding-left: 0.8rem !important;
}

.ps-9 {
  padding-left: 0.9rem !important;
}

.ps-10 {
  padding-left: 1rem !important;
}

.ps-11 {
  padding-left: 1.1rem !important;
}

.ps-12 {
  padding-left: 1.2rem !important;
}

.ps-13 {
  padding-left: 1.3rem !important;
}

.ps-14 {
  padding-left: 1.4rem !important;
}

.ps-15 {
  padding-left: 1.5rem !important;
}

.ps-16 {
  padding-left: 1.6rem !important;
}

.ps-17 {
  padding-left: 1.7rem !important;
}

.ps-18 {
  padding-left: 1.8rem !important;
}

.ps-19 {
  padding-left: 1.9rem !important;
}

.ps-20 {
  padding-left: 2rem !important;
}

.ps-21 {
  padding-left: 2.1rem !important;
}

.ps-22 {
  padding-left: 2.2rem !important;
}

.ps-23 {
  padding-left: 2.3rem !important;
}

.ps-24 {
  padding-left: 2.4rem !important;
}

.ps-25 {
  padding-left: 2.5rem !important;
}

.ps-26 {
  padding-left: 2.6rem !important;
}

.ps-27 {
  padding-left: 2.7rem !important;
}

.ps-28 {
  padding-left: 2.8rem !important;
}

.ps-29 {
  padding-left: 2.9rem !important;
}

.ps-30 {
  padding-left: 3rem !important;
}

.ps-31 {
  padding-left: 3.1rem !important;
}

.ps-32 {
  padding-left: 3.2rem !important;
}

.ps-33 {
  padding-left: 3.3rem !important;
}

.ps-34 {
  padding-left: 3.4rem !important;
}

.ps-35 {
  padding-left: 3.5rem !important;
}

.ps-36 {
  padding-left: 3.6rem !important;
}

.ps-37 {
  padding-left: 3.7rem !important;
}

.ps-38 {
  padding-left: 3.8rem !important;
}

.ps-39 {
  padding-left: 3.9rem !important;
}

.ps-40 {
  padding-left: 4rem !important;
}

.ps-41 {
  padding-left: 4.1rem !important;
}

.ps-42 {
  padding-left: 4.2rem !important;
}

.ps-43 {
  padding-left: 4.3rem !important;
}

.ps-44 {
  padding-left: 4.4rem !important;
}

.ps-45 {
  padding-left: 4.5rem !important;
}

.ps-46 {
  padding-left: 4.6rem !important;
}

.ps-47 {
  padding-left: 4.7rem !important;
}

.ps-48 {
  padding-left: 4.8rem !important;
}

.ps-49 {
  padding-left: 4.9rem !important;
}

.ps-50 {
  padding-left: 5rem !important;
}

.ps-51 {
  padding-left: 5.1rem !important;
}

.ps-52 {
  padding-left: 5.2rem !important;
}

.ps-53 {
  padding-left: 5.3rem !important;
}

.ps-54 {
  padding-left: 5.4rem !important;
}

.ps-55 {
  padding-left: 5.5rem !important;
}

.ps-56 {
  padding-left: 5.6rem !important;
}

.ps-57 {
  padding-left: 5.7rem !important;
}

.ps-58 {
  padding-left: 5.8rem !important;
}

.ps-59 {
  padding-left: 5.9rem !important;
}

.ps-60 {
  padding-left: 6rem !important;
}

.ps-61 {
  padding-left: 6.1rem !important;
}

.ps-62 {
  padding-left: 6.2rem !important;
}

.ps-63 {
  padding-left: 6.3rem !important;
}

.ps-64 {
  padding-left: 6.4rem !important;
}

.ps-65 {
  padding-left: 6.5rem !important;
}

.ps-66 {
  padding-left: 6.6rem !important;
}

.ps-67 {
  padding-left: 6.7rem !important;
}

.ps-68 {
  padding-left: 6.8rem !important;
}

.ps-69 {
  padding-left: 6.9rem !important;
}

.ps-70 {
  padding-left: 7rem !important;
}

.ps-71 {
  padding-left: 7.1rem !important;
}

.ps-72 {
  padding-left: 7.2rem !important;
}

.ps-73 {
  padding-left: 7.3rem !important;
}

.ps-74 {
  padding-left: 7.4rem !important;
}

.ps-75 {
  padding-left: 7.5rem !important;
}

.ps-76 {
  padding-left: 7.6rem !important;
}

.ps-77 {
  padding-left: 7.7rem !important;
}

.ps-78 {
  padding-left: 7.8rem !important;
}

.ps-79 {
  padding-left: 7.9rem !important;
}

.ps-80 {
  padding-left: 8rem !important;
}

.ps-81 {
  padding-left: 8.1rem !important;
}

.ps-82 {
  padding-left: 8.2rem !important;
}

.ps-83 {
  padding-left: 8.3rem !important;
}

.ps-84 {
  padding-left: 8.4rem !important;
}

.ps-85 {
  padding-left: 8.5rem !important;
}

.ps-86 {
  padding-left: 8.6rem !important;
}

.ps-87 {
  padding-left: 8.7rem !important;
}

.ps-88 {
  padding-left: 8.8rem !important;
}

.ps-89 {
  padding-left: 8.9rem !important;
}

.ps-90 {
  padding-left: 9rem !important;
}

.ps-91 {
  padding-left: 9.1rem !important;
}

.ps-92 {
  padding-left: 9.2rem !important;
}

.ps-93 {
  padding-left: 9.3rem !important;
}

.ps-94 {
  padding-left: 9.4rem !important;
}

.ps-95 {
  padding-left: 9.5rem !important;
}

.ps-96 {
  padding-left: 9.6rem !important;
}

.ps-97 {
  padding-left: 9.7rem !important;
}

.ps-98 {
  padding-left: 9.8rem !important;
}

.ps-99 {
  padding-left: 9.9rem !important;
}

.ps-100 {
  padding-left: 10rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !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.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !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;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .gap-sm-6 {
    gap: 0.6rem !important;
  }

  .gap-sm-7 {
    gap: 0.7rem !important;
  }

  .gap-sm-8 {
    gap: 0.8rem !important;
  }

  .gap-sm-9 {
    gap: 0.9rem !important;
  }

  .gap-sm-10 {
    gap: 1rem !important;
  }

  .gap-sm-11 {
    gap: 1.1rem !important;
  }

  .gap-sm-12 {
    gap: 1.2rem !important;
  }

  .gap-sm-13 {
    gap: 1.3rem !important;
  }

  .gap-sm-14 {
    gap: 1.4rem !important;
  }

  .gap-sm-15 {
    gap: 1.5rem !important;
  }

  .gap-sm-16 {
    gap: 1.6rem !important;
  }

  .gap-sm-17 {
    gap: 1.7rem !important;
  }

  .gap-sm-18 {
    gap: 1.8rem !important;
  }

  .gap-sm-19 {
    gap: 1.9rem !important;
  }

  .gap-sm-20 {
    gap: 2rem !important;
  }

  .gap-sm-21 {
    gap: 2.1rem !important;
  }

  .gap-sm-22 {
    gap: 2.2rem !important;
  }

  .gap-sm-23 {
    gap: 2.3rem !important;
  }

  .gap-sm-24 {
    gap: 2.4rem !important;
  }

  .gap-sm-25 {
    gap: 2.5rem !important;
  }

  .gap-sm-26 {
    gap: 2.6rem !important;
  }

  .gap-sm-27 {
    gap: 2.7rem !important;
  }

  .gap-sm-28 {
    gap: 2.8rem !important;
  }

  .gap-sm-29 {
    gap: 2.9rem !important;
  }

  .gap-sm-30 {
    gap: 3rem !important;
  }

  .gap-sm-31 {
    gap: 3.1rem !important;
  }

  .gap-sm-32 {
    gap: 3.2rem !important;
  }

  .gap-sm-33 {
    gap: 3.3rem !important;
  }

  .gap-sm-34 {
    gap: 3.4rem !important;
  }

  .gap-sm-35 {
    gap: 3.5rem !important;
  }

  .gap-sm-36 {
    gap: 3.6rem !important;
  }

  .gap-sm-37 {
    gap: 3.7rem !important;
  }

  .gap-sm-38 {
    gap: 3.8rem !important;
  }

  .gap-sm-39 {
    gap: 3.9rem !important;
  }

  .gap-sm-40 {
    gap: 4rem !important;
  }

  .gap-sm-41 {
    gap: 4.1rem !important;
  }

  .gap-sm-42 {
    gap: 4.2rem !important;
  }

  .gap-sm-43 {
    gap: 4.3rem !important;
  }

  .gap-sm-44 {
    gap: 4.4rem !important;
  }

  .gap-sm-45 {
    gap: 4.5rem !important;
  }

  .gap-sm-46 {
    gap: 4.6rem !important;
  }

  .gap-sm-47 {
    gap: 4.7rem !important;
  }

  .gap-sm-48 {
    gap: 4.8rem !important;
  }

  .gap-sm-49 {
    gap: 4.9rem !important;
  }

  .gap-sm-50 {
    gap: 5rem !important;
  }

  .gap-sm-51 {
    gap: 5.1rem !important;
  }

  .gap-sm-52 {
    gap: 5.2rem !important;
  }

  .gap-sm-53 {
    gap: 5.3rem !important;
  }

  .gap-sm-54 {
    gap: 5.4rem !important;
  }

  .gap-sm-55 {
    gap: 5.5rem !important;
  }

  .gap-sm-56 {
    gap: 5.6rem !important;
  }

  .gap-sm-57 {
    gap: 5.7rem !important;
  }

  .gap-sm-58 {
    gap: 5.8rem !important;
  }

  .gap-sm-59 {
    gap: 5.9rem !important;
  }

  .gap-sm-60 {
    gap: 6rem !important;
  }

  .gap-sm-61 {
    gap: 6.1rem !important;
  }

  .gap-sm-62 {
    gap: 6.2rem !important;
  }

  .gap-sm-63 {
    gap: 6.3rem !important;
  }

  .gap-sm-64 {
    gap: 6.4rem !important;
  }

  .gap-sm-65 {
    gap: 6.5rem !important;
  }

  .gap-sm-66 {
    gap: 6.6rem !important;
  }

  .gap-sm-67 {
    gap: 6.7rem !important;
  }

  .gap-sm-68 {
    gap: 6.8rem !important;
  }

  .gap-sm-69 {
    gap: 6.9rem !important;
  }

  .gap-sm-70 {
    gap: 7rem !important;
  }

  .gap-sm-71 {
    gap: 7.1rem !important;
  }

  .gap-sm-72 {
    gap: 7.2rem !important;
  }

  .gap-sm-73 {
    gap: 7.3rem !important;
  }

  .gap-sm-74 {
    gap: 7.4rem !important;
  }

  .gap-sm-75 {
    gap: 7.5rem !important;
  }

  .gap-sm-76 {
    gap: 7.6rem !important;
  }

  .gap-sm-77 {
    gap: 7.7rem !important;
  }

  .gap-sm-78 {
    gap: 7.8rem !important;
  }

  .gap-sm-79 {
    gap: 7.9rem !important;
  }

  .gap-sm-80 {
    gap: 8rem !important;
  }

  .gap-sm-81 {
    gap: 8.1rem !important;
  }

  .gap-sm-82 {
    gap: 8.2rem !important;
  }

  .gap-sm-83 {
    gap: 8.3rem !important;
  }

  .gap-sm-84 {
    gap: 8.4rem !important;
  }

  .gap-sm-85 {
    gap: 8.5rem !important;
  }

  .gap-sm-86 {
    gap: 8.6rem !important;
  }

  .gap-sm-87 {
    gap: 8.7rem !important;
  }

  .gap-sm-88 {
    gap: 8.8rem !important;
  }

  .gap-sm-89 {
    gap: 8.9rem !important;
  }

  .gap-sm-90 {
    gap: 9rem !important;
  }

  .gap-sm-91 {
    gap: 9.1rem !important;
  }

  .gap-sm-92 {
    gap: 9.2rem !important;
  }

  .gap-sm-93 {
    gap: 9.3rem !important;
  }

  .gap-sm-94 {
    gap: 9.4rem !important;
  }

  .gap-sm-95 {
    gap: 9.5rem !important;
  }

  .gap-sm-96 {
    gap: 9.6rem !important;
  }

  .gap-sm-97 {
    gap: 9.7rem !important;
  }

  .gap-sm-98 {
    gap: 9.8rem !important;
  }

  .gap-sm-99 {
    gap: 9.9rem !important;
  }

  .gap-sm-100 {
    gap: 10rem !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !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-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .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;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-6 {
    margin: 0.6rem !important;
  }

  .m-sm-7 {
    margin: 0.7rem !important;
  }

  .m-sm-8 {
    margin: 0.8rem !important;
  }

  .m-sm-9 {
    margin: 0.9rem !important;
  }

  .m-sm-10 {
    margin: 1rem !important;
  }

  .m-sm-11 {
    margin: 1.1rem !important;
  }

  .m-sm-12 {
    margin: 1.2rem !important;
  }

  .m-sm-13 {
    margin: 1.3rem !important;
  }

  .m-sm-14 {
    margin: 1.4rem !important;
  }

  .m-sm-15 {
    margin: 1.5rem !important;
  }

  .m-sm-16 {
    margin: 1.6rem !important;
  }

  .m-sm-17 {
    margin: 1.7rem !important;
  }

  .m-sm-18 {
    margin: 1.8rem !important;
  }

  .m-sm-19 {
    margin: 1.9rem !important;
  }

  .m-sm-20 {
    margin: 2rem !important;
  }

  .m-sm-21 {
    margin: 2.1rem !important;
  }

  .m-sm-22 {
    margin: 2.2rem !important;
  }

  .m-sm-23 {
    margin: 2.3rem !important;
  }

  .m-sm-24 {
    margin: 2.4rem !important;
  }

  .m-sm-25 {
    margin: 2.5rem !important;
  }

  .m-sm-26 {
    margin: 2.6rem !important;
  }

  .m-sm-27 {
    margin: 2.7rem !important;
  }

  .m-sm-28 {
    margin: 2.8rem !important;
  }

  .m-sm-29 {
    margin: 2.9rem !important;
  }

  .m-sm-30 {
    margin: 3rem !important;
  }

  .m-sm-31 {
    margin: 3.1rem !important;
  }

  .m-sm-32 {
    margin: 3.2rem !important;
  }

  .m-sm-33 {
    margin: 3.3rem !important;
  }

  .m-sm-34 {
    margin: 3.4rem !important;
  }

  .m-sm-35 {
    margin: 3.5rem !important;
  }

  .m-sm-36 {
    margin: 3.6rem !important;
  }

  .m-sm-37 {
    margin: 3.7rem !important;
  }

  .m-sm-38 {
    margin: 3.8rem !important;
  }

  .m-sm-39 {
    margin: 3.9rem !important;
  }

  .m-sm-40 {
    margin: 4rem !important;
  }

  .m-sm-41 {
    margin: 4.1rem !important;
  }

  .m-sm-42 {
    margin: 4.2rem !important;
  }

  .m-sm-43 {
    margin: 4.3rem !important;
  }

  .m-sm-44 {
    margin: 4.4rem !important;
  }

  .m-sm-45 {
    margin: 4.5rem !important;
  }

  .m-sm-46 {
    margin: 4.6rem !important;
  }

  .m-sm-47 {
    margin: 4.7rem !important;
  }

  .m-sm-48 {
    margin: 4.8rem !important;
  }

  .m-sm-49 {
    margin: 4.9rem !important;
  }

  .m-sm-50 {
    margin: 5rem !important;
  }

  .m-sm-51 {
    margin: 5.1rem !important;
  }

  .m-sm-52 {
    margin: 5.2rem !important;
  }

  .m-sm-53 {
    margin: 5.3rem !important;
  }

  .m-sm-54 {
    margin: 5.4rem !important;
  }

  .m-sm-55 {
    margin: 5.5rem !important;
  }

  .m-sm-56 {
    margin: 5.6rem !important;
  }

  .m-sm-57 {
    margin: 5.7rem !important;
  }

  .m-sm-58 {
    margin: 5.8rem !important;
  }

  .m-sm-59 {
    margin: 5.9rem !important;
  }

  .m-sm-60 {
    margin: 6rem !important;
  }

  .m-sm-61 {
    margin: 6.1rem !important;
  }

  .m-sm-62 {
    margin: 6.2rem !important;
  }

  .m-sm-63 {
    margin: 6.3rem !important;
  }

  .m-sm-64 {
    margin: 6.4rem !important;
  }

  .m-sm-65 {
    margin: 6.5rem !important;
  }

  .m-sm-66 {
    margin: 6.6rem !important;
  }

  .m-sm-67 {
    margin: 6.7rem !important;
  }

  .m-sm-68 {
    margin: 6.8rem !important;
  }

  .m-sm-69 {
    margin: 6.9rem !important;
  }

  .m-sm-70 {
    margin: 7rem !important;
  }

  .m-sm-71 {
    margin: 7.1rem !important;
  }

  .m-sm-72 {
    margin: 7.2rem !important;
  }

  .m-sm-73 {
    margin: 7.3rem !important;
  }

  .m-sm-74 {
    margin: 7.4rem !important;
  }

  .m-sm-75 {
    margin: 7.5rem !important;
  }

  .m-sm-76 {
    margin: 7.6rem !important;
  }

  .m-sm-77 {
    margin: 7.7rem !important;
  }

  .m-sm-78 {
    margin: 7.8rem !important;
  }

  .m-sm-79 {
    margin: 7.9rem !important;
  }

  .m-sm-80 {
    margin: 8rem !important;
  }

  .m-sm-81 {
    margin: 8.1rem !important;
  }

  .m-sm-82 {
    margin: 8.2rem !important;
  }

  .m-sm-83 {
    margin: 8.3rem !important;
  }

  .m-sm-84 {
    margin: 8.4rem !important;
  }

  .m-sm-85 {
    margin: 8.5rem !important;
  }

  .m-sm-86 {
    margin: 8.6rem !important;
  }

  .m-sm-87 {
    margin: 8.7rem !important;
  }

  .m-sm-88 {
    margin: 8.8rem !important;
  }

  .m-sm-89 {
    margin: 8.9rem !important;
  }

  .m-sm-90 {
    margin: 9rem !important;
  }

  .m-sm-91 {
    margin: 9.1rem !important;
  }

  .m-sm-92 {
    margin: 9.2rem !important;
  }

  .m-sm-93 {
    margin: 9.3rem !important;
  }

  .m-sm-94 {
    margin: 9.4rem !important;
  }

  .m-sm-95 {
    margin: 9.5rem !important;
  }

  .m-sm-96 {
    margin: 9.6rem !important;
  }

  .m-sm-97 {
    margin: 9.7rem !important;
  }

  .m-sm-98 {
    margin: 9.8rem !important;
  }

  .m-sm-99 {
    margin: 9.9rem !important;
  }

  .m-sm-100 {
    margin: 10rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-6 {
    margin-right: 0.6rem !important;
    margin-left: 0.6rem !important;
  }

  .mx-sm-7 {
    margin-right: 0.7rem !important;
    margin-left: 0.7rem !important;
  }

  .mx-sm-8 {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }

  .mx-sm-9 {
    margin-right: 0.9rem !important;
    margin-left: 0.9rem !important;
  }

  .mx-sm-10 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-11 {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
  }

  .mx-sm-12 {
    margin-right: 1.2rem !important;
    margin-left: 1.2rem !important;
  }

  .mx-sm-13 {
    margin-right: 1.3rem !important;
    margin-left: 1.3rem !important;
  }

  .mx-sm-14 {
    margin-right: 1.4rem !important;
    margin-left: 1.4rem !important;
  }

  .mx-sm-15 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-16 {
    margin-right: 1.6rem !important;
    margin-left: 1.6rem !important;
  }

  .mx-sm-17 {
    margin-right: 1.7rem !important;
    margin-left: 1.7rem !important;
  }

  .mx-sm-18 {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }

  .mx-sm-19 {
    margin-right: 1.9rem !important;
    margin-left: 1.9rem !important;
  }

  .mx-sm-20 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-sm-21 {
    margin-right: 2.1rem !important;
    margin-left: 2.1rem !important;
  }

  .mx-sm-22 {
    margin-right: 2.2rem !important;
    margin-left: 2.2rem !important;
  }

  .mx-sm-23 {
    margin-right: 2.3rem !important;
    margin-left: 2.3rem !important;
  }

  .mx-sm-24 {
    margin-right: 2.4rem !important;
    margin-left: 2.4rem !important;
  }

  .mx-sm-25 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-sm-26 {
    margin-right: 2.6rem !important;
    margin-left: 2.6rem !important;
  }

  .mx-sm-27 {
    margin-right: 2.7rem !important;
    margin-left: 2.7rem !important;
  }

  .mx-sm-28 {
    margin-right: 2.8rem !important;
    margin-left: 2.8rem !important;
  }

  .mx-sm-29 {
    margin-right: 2.9rem !important;
    margin-left: 2.9rem !important;
  }

  .mx-sm-30 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-31 {
    margin-right: 3.1rem !important;
    margin-left: 3.1rem !important;
  }

  .mx-sm-32 {
    margin-right: 3.2rem !important;
    margin-left: 3.2rem !important;
  }

  .mx-sm-33 {
    margin-right: 3.3rem !important;
    margin-left: 3.3rem !important;
  }

  .mx-sm-34 {
    margin-right: 3.4rem !important;
    margin-left: 3.4rem !important;
  }

  .mx-sm-35 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-sm-36 {
    margin-right: 3.6rem !important;
    margin-left: 3.6rem !important;
  }

  .mx-sm-37 {
    margin-right: 3.7rem !important;
    margin-left: 3.7rem !important;
  }

  .mx-sm-38 {
    margin-right: 3.8rem !important;
    margin-left: 3.8rem !important;
  }

  .mx-sm-39 {
    margin-right: 3.9rem !important;
    margin-left: 3.9rem !important;
  }

  .mx-sm-40 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-sm-41 {
    margin-right: 4.1rem !important;
    margin-left: 4.1rem !important;
  }

  .mx-sm-42 {
    margin-right: 4.2rem !important;
    margin-left: 4.2rem !important;
  }

  .mx-sm-43 {
    margin-right: 4.3rem !important;
    margin-left: 4.3rem !important;
  }

  .mx-sm-44 {
    margin-right: 4.4rem !important;
    margin-left: 4.4rem !important;
  }

  .mx-sm-45 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-sm-46 {
    margin-right: 4.6rem !important;
    margin-left: 4.6rem !important;
  }

  .mx-sm-47 {
    margin-right: 4.7rem !important;
    margin-left: 4.7rem !important;
  }

  .mx-sm-48 {
    margin-right: 4.8rem !important;
    margin-left: 4.8rem !important;
  }

  .mx-sm-49 {
    margin-right: 4.9rem !important;
    margin-left: 4.9rem !important;
  }

  .mx-sm-50 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-sm-51 {
    margin-right: 5.1rem !important;
    margin-left: 5.1rem !important;
  }

  .mx-sm-52 {
    margin-right: 5.2rem !important;
    margin-left: 5.2rem !important;
  }

  .mx-sm-53 {
    margin-right: 5.3rem !important;
    margin-left: 5.3rem !important;
  }

  .mx-sm-54 {
    margin-right: 5.4rem !important;
    margin-left: 5.4rem !important;
  }

  .mx-sm-55 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }

  .mx-sm-56 {
    margin-right: 5.6rem !important;
    margin-left: 5.6rem !important;
  }

  .mx-sm-57 {
    margin-right: 5.7rem !important;
    margin-left: 5.7rem !important;
  }

  .mx-sm-58 {
    margin-right: 5.8rem !important;
    margin-left: 5.8rem !important;
  }

  .mx-sm-59 {
    margin-right: 5.9rem !important;
    margin-left: 5.9rem !important;
  }

  .mx-sm-60 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-sm-61 {
    margin-right: 6.1rem !important;
    margin-left: 6.1rem !important;
  }

  .mx-sm-62 {
    margin-right: 6.2rem !important;
    margin-left: 6.2rem !important;
  }

  .mx-sm-63 {
    margin-right: 6.3rem !important;
    margin-left: 6.3rem !important;
  }

  .mx-sm-64 {
    margin-right: 6.4rem !important;
    margin-left: 6.4rem !important;
  }

  .mx-sm-65 {
    margin-right: 6.5rem !important;
    margin-left: 6.5rem !important;
  }

  .mx-sm-66 {
    margin-right: 6.6rem !important;
    margin-left: 6.6rem !important;
  }

  .mx-sm-67 {
    margin-right: 6.7rem !important;
    margin-left: 6.7rem !important;
  }

  .mx-sm-68 {
    margin-right: 6.8rem !important;
    margin-left: 6.8rem !important;
  }

  .mx-sm-69 {
    margin-right: 6.9rem !important;
    margin-left: 6.9rem !important;
  }

  .mx-sm-70 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }

  .mx-sm-71 {
    margin-right: 7.1rem !important;
    margin-left: 7.1rem !important;
  }

  .mx-sm-72 {
    margin-right: 7.2rem !important;
    margin-left: 7.2rem !important;
  }

  .mx-sm-73 {
    margin-right: 7.3rem !important;
    margin-left: 7.3rem !important;
  }

  .mx-sm-74 {
    margin-right: 7.4rem !important;
    margin-left: 7.4rem !important;
  }

  .mx-sm-75 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-sm-76 {
    margin-right: 7.6rem !important;
    margin-left: 7.6rem !important;
  }

  .mx-sm-77 {
    margin-right: 7.7rem !important;
    margin-left: 7.7rem !important;
  }

  .mx-sm-78 {
    margin-right: 7.8rem !important;
    margin-left: 7.8rem !important;
  }

  .mx-sm-79 {
    margin-right: 7.9rem !important;
    margin-left: 7.9rem !important;
  }

  .mx-sm-80 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-sm-81 {
    margin-right: 8.1rem !important;
    margin-left: 8.1rem !important;
  }

  .mx-sm-82 {
    margin-right: 8.2rem !important;
    margin-left: 8.2rem !important;
  }

  .mx-sm-83 {
    margin-right: 8.3rem !important;
    margin-left: 8.3rem !important;
  }

  .mx-sm-84 {
    margin-right: 8.4rem !important;
    margin-left: 8.4rem !important;
  }

  .mx-sm-85 {
    margin-right: 8.5rem !important;
    margin-left: 8.5rem !important;
  }

  .mx-sm-86 {
    margin-right: 8.6rem !important;
    margin-left: 8.6rem !important;
  }

  .mx-sm-87 {
    margin-right: 8.7rem !important;
    margin-left: 8.7rem !important;
  }

  .mx-sm-88 {
    margin-right: 8.8rem !important;
    margin-left: 8.8rem !important;
  }

  .mx-sm-89 {
    margin-right: 8.9rem !important;
    margin-left: 8.9rem !important;
  }

  .mx-sm-90 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }

  .mx-sm-91 {
    margin-right: 9.1rem !important;
    margin-left: 9.1rem !important;
  }

  .mx-sm-92 {
    margin-right: 9.2rem !important;
    margin-left: 9.2rem !important;
  }

  .mx-sm-93 {
    margin-right: 9.3rem !important;
    margin-left: 9.3rem !important;
  }

  .mx-sm-94 {
    margin-right: 9.4rem !important;
    margin-left: 9.4rem !important;
  }

  .mx-sm-95 {
    margin-right: 9.5rem !important;
    margin-left: 9.5rem !important;
  }

  .mx-sm-96 {
    margin-right: 9.6rem !important;
    margin-left: 9.6rem !important;
  }

  .mx-sm-97 {
    margin-right: 9.7rem !important;
    margin-left: 9.7rem !important;
  }

  .mx-sm-98 {
    margin-right: 9.8rem !important;
    margin-left: 9.8rem !important;
  }

  .mx-sm-99 {
    margin-right: 9.9rem !important;
    margin-left: 9.9rem !important;
  }

  .mx-sm-100 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-6 {
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .my-sm-7 {
    margin-top: 0.7rem !important;
    margin-bottom: 0.7rem !important;
  }

  .my-sm-8 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  .my-sm-9 {
    margin-top: 0.9rem !important;
    margin-bottom: 0.9rem !important;
  }

  .my-sm-10 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-11 {
    margin-top: 1.1rem !important;
    margin-bottom: 1.1rem !important;
  }

  .my-sm-12 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }

  .my-sm-13 {
    margin-top: 1.3rem !important;
    margin-bottom: 1.3rem !important;
  }

  .my-sm-14 {
    margin-top: 1.4rem !important;
    margin-bottom: 1.4rem !important;
  }

  .my-sm-15 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-16 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }

  .my-sm-17 {
    margin-top: 1.7rem !important;
    margin-bottom: 1.7rem !important;
  }

  .my-sm-18 {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }

  .my-sm-19 {
    margin-top: 1.9rem !important;
    margin-bottom: 1.9rem !important;
  }

  .my-sm-20 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-sm-21 {
    margin-top: 2.1rem !important;
    margin-bottom: 2.1rem !important;
  }

  .my-sm-22 {
    margin-top: 2.2rem !important;
    margin-bottom: 2.2rem !important;
  }

  .my-sm-23 {
    margin-top: 2.3rem !important;
    margin-bottom: 2.3rem !important;
  }

  .my-sm-24 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }

  .my-sm-25 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-sm-26 {
    margin-top: 2.6rem !important;
    margin-bottom: 2.6rem !important;
  }

  .my-sm-27 {
    margin-top: 2.7rem !important;
    margin-bottom: 2.7rem !important;
  }

  .my-sm-28 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }

  .my-sm-29 {
    margin-top: 2.9rem !important;
    margin-bottom: 2.9rem !important;
  }

  .my-sm-30 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-31 {
    margin-top: 3.1rem !important;
    margin-bottom: 3.1rem !important;
  }

  .my-sm-32 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }

  .my-sm-33 {
    margin-top: 3.3rem !important;
    margin-bottom: 3.3rem !important;
  }

  .my-sm-34 {
    margin-top: 3.4rem !important;
    margin-bottom: 3.4rem !important;
  }

  .my-sm-35 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-sm-36 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }

  .my-sm-37 {
    margin-top: 3.7rem !important;
    margin-bottom: 3.7rem !important;
  }

  .my-sm-38 {
    margin-top: 3.8rem !important;
    margin-bottom: 3.8rem !important;
  }

  .my-sm-39 {
    margin-top: 3.9rem !important;
    margin-bottom: 3.9rem !important;
  }

  .my-sm-40 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-sm-41 {
    margin-top: 4.1rem !important;
    margin-bottom: 4.1rem !important;
  }

  .my-sm-42 {
    margin-top: 4.2rem !important;
    margin-bottom: 4.2rem !important;
  }

  .my-sm-43 {
    margin-top: 4.3rem !important;
    margin-bottom: 4.3rem !important;
  }

  .my-sm-44 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }

  .my-sm-45 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-sm-46 {
    margin-top: 4.6rem !important;
    margin-bottom: 4.6rem !important;
  }

  .my-sm-47 {
    margin-top: 4.7rem !important;
    margin-bottom: 4.7rem !important;
  }

  .my-sm-48 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }

  .my-sm-49 {
    margin-top: 4.9rem !important;
    margin-bottom: 4.9rem !important;
  }

  .my-sm-50 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-sm-51 {
    margin-top: 5.1rem !important;
    margin-bottom: 5.1rem !important;
  }

  .my-sm-52 {
    margin-top: 5.2rem !important;
    margin-bottom: 5.2rem !important;
  }

  .my-sm-53 {
    margin-top: 5.3rem !important;
    margin-bottom: 5.3rem !important;
  }

  .my-sm-54 {
    margin-top: 5.4rem !important;
    margin-bottom: 5.4rem !important;
  }

  .my-sm-55 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .my-sm-56 {
    margin-top: 5.6rem !important;
    margin-bottom: 5.6rem !important;
  }

  .my-sm-57 {
    margin-top: 5.7rem !important;
    margin-bottom: 5.7rem !important;
  }

  .my-sm-58 {
    margin-top: 5.8rem !important;
    margin-bottom: 5.8rem !important;
  }

  .my-sm-59 {
    margin-top: 5.9rem !important;
    margin-bottom: 5.9rem !important;
  }

  .my-sm-60 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-sm-61 {
    margin-top: 6.1rem !important;
    margin-bottom: 6.1rem !important;
  }

  .my-sm-62 {
    margin-top: 6.2rem !important;
    margin-bottom: 6.2rem !important;
  }

  .my-sm-63 {
    margin-top: 6.3rem !important;
    margin-bottom: 6.3rem !important;
  }

  .my-sm-64 {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }

  .my-sm-65 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .my-sm-66 {
    margin-top: 6.6rem !important;
    margin-bottom: 6.6rem !important;
  }

  .my-sm-67 {
    margin-top: 6.7rem !important;
    margin-bottom: 6.7rem !important;
  }

  .my-sm-68 {
    margin-top: 6.8rem !important;
    margin-bottom: 6.8rem !important;
  }

  .my-sm-69 {
    margin-top: 6.9rem !important;
    margin-bottom: 6.9rem !important;
  }

  .my-sm-70 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .my-sm-71 {
    margin-top: 7.1rem !important;
    margin-bottom: 7.1rem !important;
  }

  .my-sm-72 {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important;
  }

  .my-sm-73 {
    margin-top: 7.3rem !important;
    margin-bottom: 7.3rem !important;
  }

  .my-sm-74 {
    margin-top: 7.4rem !important;
    margin-bottom: 7.4rem !important;
  }

  .my-sm-75 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-sm-76 {
    margin-top: 7.6rem !important;
    margin-bottom: 7.6rem !important;
  }

  .my-sm-77 {
    margin-top: 7.7rem !important;
    margin-bottom: 7.7rem !important;
  }

  .my-sm-78 {
    margin-top: 7.8rem !important;
    margin-bottom: 7.8rem !important;
  }

  .my-sm-79 {
    margin-top: 7.9rem !important;
    margin-bottom: 7.9rem !important;
  }

  .my-sm-80 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-sm-81 {
    margin-top: 8.1rem !important;
    margin-bottom: 8.1rem !important;
  }

  .my-sm-82 {
    margin-top: 8.2rem !important;
    margin-bottom: 8.2rem !important;
  }

  .my-sm-83 {
    margin-top: 8.3rem !important;
    margin-bottom: 8.3rem !important;
  }

  .my-sm-84 {
    margin-top: 8.4rem !important;
    margin-bottom: 8.4rem !important;
  }

  .my-sm-85 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }

  .my-sm-86 {
    margin-top: 8.6rem !important;
    margin-bottom: 8.6rem !important;
  }

  .my-sm-87 {
    margin-top: 8.7rem !important;
    margin-bottom: 8.7rem !important;
  }

  .my-sm-88 {
    margin-top: 8.8rem !important;
    margin-bottom: 8.8rem !important;
  }

  .my-sm-89 {
    margin-top: 8.9rem !important;
    margin-bottom: 8.9rem !important;
  }

  .my-sm-90 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .my-sm-91 {
    margin-top: 9.1rem !important;
    margin-bottom: 9.1rem !important;
  }

  .my-sm-92 {
    margin-top: 9.2rem !important;
    margin-bottom: 9.2rem !important;
  }

  .my-sm-93 {
    margin-top: 9.3rem !important;
    margin-bottom: 9.3rem !important;
  }

  .my-sm-94 {
    margin-top: 9.4rem !important;
    margin-bottom: 9.4rem !important;
  }

  .my-sm-95 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }

  .my-sm-96 {
    margin-top: 9.6rem !important;
    margin-bottom: 9.6rem !important;
  }

  .my-sm-97 {
    margin-top: 9.7rem !important;
    margin-bottom: 9.7rem !important;
  }

  .my-sm-98 {
    margin-top: 9.8rem !important;
    margin-bottom: 9.8rem !important;
  }

  .my-sm-99 {
    margin-top: 9.9rem !important;
    margin-bottom: 9.9rem !important;
  }

  .my-sm-100 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-6 {
    margin-top: 0.6rem !important;
  }

  .mt-sm-7 {
    margin-top: 0.7rem !important;
  }

  .mt-sm-8 {
    margin-top: 0.8rem !important;
  }

  .mt-sm-9 {
    margin-top: 0.9rem !important;
  }

  .mt-sm-10 {
    margin-top: 1rem !important;
  }

  .mt-sm-11 {
    margin-top: 1.1rem !important;
  }

  .mt-sm-12 {
    margin-top: 1.2rem !important;
  }

  .mt-sm-13 {
    margin-top: 1.3rem !important;
  }

  .mt-sm-14 {
    margin-top: 1.4rem !important;
  }

  .mt-sm-15 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-16 {
    margin-top: 1.6rem !important;
  }

  .mt-sm-17 {
    margin-top: 1.7rem !important;
  }

  .mt-sm-18 {
    margin-top: 1.8rem !important;
  }

  .mt-sm-19 {
    margin-top: 1.9rem !important;
  }

  .mt-sm-20 {
    margin-top: 2rem !important;
  }

  .mt-sm-21 {
    margin-top: 2.1rem !important;
  }

  .mt-sm-22 {
    margin-top: 2.2rem !important;
  }

  .mt-sm-23 {
    margin-top: 2.3rem !important;
  }

  .mt-sm-24 {
    margin-top: 2.4rem !important;
  }

  .mt-sm-25 {
    margin-top: 2.5rem !important;
  }

  .mt-sm-26 {
    margin-top: 2.6rem !important;
  }

  .mt-sm-27 {
    margin-top: 2.7rem !important;
  }

  .mt-sm-28 {
    margin-top: 2.8rem !important;
  }

  .mt-sm-29 {
    margin-top: 2.9rem !important;
  }

  .mt-sm-30 {
    margin-top: 3rem !important;
  }

  .mt-sm-31 {
    margin-top: 3.1rem !important;
  }

  .mt-sm-32 {
    margin-top: 3.2rem !important;
  }

  .mt-sm-33 {
    margin-top: 3.3rem !important;
  }

  .mt-sm-34 {
    margin-top: 3.4rem !important;
  }

  .mt-sm-35 {
    margin-top: 3.5rem !important;
  }

  .mt-sm-36 {
    margin-top: 3.6rem !important;
  }

  .mt-sm-37 {
    margin-top: 3.7rem !important;
  }

  .mt-sm-38 {
    margin-top: 3.8rem !important;
  }

  .mt-sm-39 {
    margin-top: 3.9rem !important;
  }

  .mt-sm-40 {
    margin-top: 4rem !important;
  }

  .mt-sm-41 {
    margin-top: 4.1rem !important;
  }

  .mt-sm-42 {
    margin-top: 4.2rem !important;
  }

  .mt-sm-43 {
    margin-top: 4.3rem !important;
  }

  .mt-sm-44 {
    margin-top: 4.4rem !important;
  }

  .mt-sm-45 {
    margin-top: 4.5rem !important;
  }

  .mt-sm-46 {
    margin-top: 4.6rem !important;
  }

  .mt-sm-47 {
    margin-top: 4.7rem !important;
  }

  .mt-sm-48 {
    margin-top: 4.8rem !important;
  }

  .mt-sm-49 {
    margin-top: 4.9rem !important;
  }

  .mt-sm-50 {
    margin-top: 5rem !important;
  }

  .mt-sm-51 {
    margin-top: 5.1rem !important;
  }

  .mt-sm-52 {
    margin-top: 5.2rem !important;
  }

  .mt-sm-53 {
    margin-top: 5.3rem !important;
  }

  .mt-sm-54 {
    margin-top: 5.4rem !important;
  }

  .mt-sm-55 {
    margin-top: 5.5rem !important;
  }

  .mt-sm-56 {
    margin-top: 5.6rem !important;
  }

  .mt-sm-57 {
    margin-top: 5.7rem !important;
  }

  .mt-sm-58 {
    margin-top: 5.8rem !important;
  }

  .mt-sm-59 {
    margin-top: 5.9rem !important;
  }

  .mt-sm-60 {
    margin-top: 6rem !important;
  }

  .mt-sm-61 {
    margin-top: 6.1rem !important;
  }

  .mt-sm-62 {
    margin-top: 6.2rem !important;
  }

  .mt-sm-63 {
    margin-top: 6.3rem !important;
  }

  .mt-sm-64 {
    margin-top: 6.4rem !important;
  }

  .mt-sm-65 {
    margin-top: 6.5rem !important;
  }

  .mt-sm-66 {
    margin-top: 6.6rem !important;
  }

  .mt-sm-67 {
    margin-top: 6.7rem !important;
  }

  .mt-sm-68 {
    margin-top: 6.8rem !important;
  }

  .mt-sm-69 {
    margin-top: 6.9rem !important;
  }

  .mt-sm-70 {
    margin-top: 7rem !important;
  }

  .mt-sm-71 {
    margin-top: 7.1rem !important;
  }

  .mt-sm-72 {
    margin-top: 7.2rem !important;
  }

  .mt-sm-73 {
    margin-top: 7.3rem !important;
  }

  .mt-sm-74 {
    margin-top: 7.4rem !important;
  }

  .mt-sm-75 {
    margin-top: 7.5rem !important;
  }

  .mt-sm-76 {
    margin-top: 7.6rem !important;
  }

  .mt-sm-77 {
    margin-top: 7.7rem !important;
  }

  .mt-sm-78 {
    margin-top: 7.8rem !important;
  }

  .mt-sm-79 {
    margin-top: 7.9rem !important;
  }

  .mt-sm-80 {
    margin-top: 8rem !important;
  }

  .mt-sm-81 {
    margin-top: 8.1rem !important;
  }

  .mt-sm-82 {
    margin-top: 8.2rem !important;
  }

  .mt-sm-83 {
    margin-top: 8.3rem !important;
  }

  .mt-sm-84 {
    margin-top: 8.4rem !important;
  }

  .mt-sm-85 {
    margin-top: 8.5rem !important;
  }

  .mt-sm-86 {
    margin-top: 8.6rem !important;
  }

  .mt-sm-87 {
    margin-top: 8.7rem !important;
  }

  .mt-sm-88 {
    margin-top: 8.8rem !important;
  }

  .mt-sm-89 {
    margin-top: 8.9rem !important;
  }

  .mt-sm-90 {
    margin-top: 9rem !important;
  }

  .mt-sm-91 {
    margin-top: 9.1rem !important;
  }

  .mt-sm-92 {
    margin-top: 9.2rem !important;
  }

  .mt-sm-93 {
    margin-top: 9.3rem !important;
  }

  .mt-sm-94 {
    margin-top: 9.4rem !important;
  }

  .mt-sm-95 {
    margin-top: 9.5rem !important;
  }

  .mt-sm-96 {
    margin-top: 9.6rem !important;
  }

  .mt-sm-97 {
    margin-top: 9.7rem !important;
  }

  .mt-sm-98 {
    margin-top: 9.8rem !important;
  }

  .mt-sm-99 {
    margin-top: 9.9rem !important;
  }

  .mt-sm-100 {
    margin-top: 10rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-6 {
    margin-right: 0.6rem !important;
  }

  .me-sm-7 {
    margin-right: 0.7rem !important;
  }

  .me-sm-8 {
    margin-right: 0.8rem !important;
  }

  .me-sm-9 {
    margin-right: 0.9rem !important;
  }

  .me-sm-10 {
    margin-right: 1rem !important;
  }

  .me-sm-11 {
    margin-right: 1.1rem !important;
  }

  .me-sm-12 {
    margin-right: 1.2rem !important;
  }

  .me-sm-13 {
    margin-right: 1.3rem !important;
  }

  .me-sm-14 {
    margin-right: 1.4rem !important;
  }

  .me-sm-15 {
    margin-right: 1.5rem !important;
  }

  .me-sm-16 {
    margin-right: 1.6rem !important;
  }

  .me-sm-17 {
    margin-right: 1.7rem !important;
  }

  .me-sm-18 {
    margin-right: 1.8rem !important;
  }

  .me-sm-19 {
    margin-right: 1.9rem !important;
  }

  .me-sm-20 {
    margin-right: 2rem !important;
  }

  .me-sm-21 {
    margin-right: 2.1rem !important;
  }

  .me-sm-22 {
    margin-right: 2.2rem !important;
  }

  .me-sm-23 {
    margin-right: 2.3rem !important;
  }

  .me-sm-24 {
    margin-right: 2.4rem !important;
  }

  .me-sm-25 {
    margin-right: 2.5rem !important;
  }

  .me-sm-26 {
    margin-right: 2.6rem !important;
  }

  .me-sm-27 {
    margin-right: 2.7rem !important;
  }

  .me-sm-28 {
    margin-right: 2.8rem !important;
  }

  .me-sm-29 {
    margin-right: 2.9rem !important;
  }

  .me-sm-30 {
    margin-right: 3rem !important;
  }

  .me-sm-31 {
    margin-right: 3.1rem !important;
  }

  .me-sm-32 {
    margin-right: 3.2rem !important;
  }

  .me-sm-33 {
    margin-right: 3.3rem !important;
  }

  .me-sm-34 {
    margin-right: 3.4rem !important;
  }

  .me-sm-35 {
    margin-right: 3.5rem !important;
  }

  .me-sm-36 {
    margin-right: 3.6rem !important;
  }

  .me-sm-37 {
    margin-right: 3.7rem !important;
  }

  .me-sm-38 {
    margin-right: 3.8rem !important;
  }

  .me-sm-39 {
    margin-right: 3.9rem !important;
  }

  .me-sm-40 {
    margin-right: 4rem !important;
  }

  .me-sm-41 {
    margin-right: 4.1rem !important;
  }

  .me-sm-42 {
    margin-right: 4.2rem !important;
  }

  .me-sm-43 {
    margin-right: 4.3rem !important;
  }

  .me-sm-44 {
    margin-right: 4.4rem !important;
  }

  .me-sm-45 {
    margin-right: 4.5rem !important;
  }

  .me-sm-46 {
    margin-right: 4.6rem !important;
  }

  .me-sm-47 {
    margin-right: 4.7rem !important;
  }

  .me-sm-48 {
    margin-right: 4.8rem !important;
  }

  .me-sm-49 {
    margin-right: 4.9rem !important;
  }

  .me-sm-50 {
    margin-right: 5rem !important;
  }

  .me-sm-51 {
    margin-right: 5.1rem !important;
  }

  .me-sm-52 {
    margin-right: 5.2rem !important;
  }

  .me-sm-53 {
    margin-right: 5.3rem !important;
  }

  .me-sm-54 {
    margin-right: 5.4rem !important;
  }

  .me-sm-55 {
    margin-right: 5.5rem !important;
  }

  .me-sm-56 {
    margin-right: 5.6rem !important;
  }

  .me-sm-57 {
    margin-right: 5.7rem !important;
  }

  .me-sm-58 {
    margin-right: 5.8rem !important;
  }

  .me-sm-59 {
    margin-right: 5.9rem !important;
  }

  .me-sm-60 {
    margin-right: 6rem !important;
  }

  .me-sm-61 {
    margin-right: 6.1rem !important;
  }

  .me-sm-62 {
    margin-right: 6.2rem !important;
  }

  .me-sm-63 {
    margin-right: 6.3rem !important;
  }

  .me-sm-64 {
    margin-right: 6.4rem !important;
  }

  .me-sm-65 {
    margin-right: 6.5rem !important;
  }

  .me-sm-66 {
    margin-right: 6.6rem !important;
  }

  .me-sm-67 {
    margin-right: 6.7rem !important;
  }

  .me-sm-68 {
    margin-right: 6.8rem !important;
  }

  .me-sm-69 {
    margin-right: 6.9rem !important;
  }

  .me-sm-70 {
    margin-right: 7rem !important;
  }

  .me-sm-71 {
    margin-right: 7.1rem !important;
  }

  .me-sm-72 {
    margin-right: 7.2rem !important;
  }

  .me-sm-73 {
    margin-right: 7.3rem !important;
  }

  .me-sm-74 {
    margin-right: 7.4rem !important;
  }

  .me-sm-75 {
    margin-right: 7.5rem !important;
  }

  .me-sm-76 {
    margin-right: 7.6rem !important;
  }

  .me-sm-77 {
    margin-right: 7.7rem !important;
  }

  .me-sm-78 {
    margin-right: 7.8rem !important;
  }

  .me-sm-79 {
    margin-right: 7.9rem !important;
  }

  .me-sm-80 {
    margin-right: 8rem !important;
  }

  .me-sm-81 {
    margin-right: 8.1rem !important;
  }

  .me-sm-82 {
    margin-right: 8.2rem !important;
  }

  .me-sm-83 {
    margin-right: 8.3rem !important;
  }

  .me-sm-84 {
    margin-right: 8.4rem !important;
  }

  .me-sm-85 {
    margin-right: 8.5rem !important;
  }

  .me-sm-86 {
    margin-right: 8.6rem !important;
  }

  .me-sm-87 {
    margin-right: 8.7rem !important;
  }

  .me-sm-88 {
    margin-right: 8.8rem !important;
  }

  .me-sm-89 {
    margin-right: 8.9rem !important;
  }

  .me-sm-90 {
    margin-right: 9rem !important;
  }

  .me-sm-91 {
    margin-right: 9.1rem !important;
  }

  .me-sm-92 {
    margin-right: 9.2rem !important;
  }

  .me-sm-93 {
    margin-right: 9.3rem !important;
  }

  .me-sm-94 {
    margin-right: 9.4rem !important;
  }

  .me-sm-95 {
    margin-right: 9.5rem !important;
  }

  .me-sm-96 {
    margin-right: 9.6rem !important;
  }

  .me-sm-97 {
    margin-right: 9.7rem !important;
  }

  .me-sm-98 {
    margin-right: 9.8rem !important;
  }

  .me-sm-99 {
    margin-right: 9.9rem !important;
  }

  .me-sm-100 {
    margin-right: 10rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-6 {
    margin-bottom: 0.6rem !important;
  }

  .mb-sm-7 {
    margin-bottom: 0.7rem !important;
  }

  .mb-sm-8 {
    margin-bottom: 0.8rem !important;
  }

  .mb-sm-9 {
    margin-bottom: 0.9rem !important;
  }

  .mb-sm-10 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-11 {
    margin-bottom: 1.1rem !important;
  }

  .mb-sm-12 {
    margin-bottom: 1.2rem !important;
  }

  .mb-sm-13 {
    margin-bottom: 1.3rem !important;
  }

  .mb-sm-14 {
    margin-bottom: 1.4rem !important;
  }

  .mb-sm-15 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-16 {
    margin-bottom: 1.6rem !important;
  }

  .mb-sm-17 {
    margin-bottom: 1.7rem !important;
  }

  .mb-sm-18 {
    margin-bottom: 1.8rem !important;
  }

  .mb-sm-19 {
    margin-bottom: 1.9rem !important;
  }

  .mb-sm-20 {
    margin-bottom: 2rem !important;
  }

  .mb-sm-21 {
    margin-bottom: 2.1rem !important;
  }

  .mb-sm-22 {
    margin-bottom: 2.2rem !important;
  }

  .mb-sm-23 {
    margin-bottom: 2.3rem !important;
  }

  .mb-sm-24 {
    margin-bottom: 2.4rem !important;
  }

  .mb-sm-25 {
    margin-bottom: 2.5rem !important;
  }

  .mb-sm-26 {
    margin-bottom: 2.6rem !important;
  }

  .mb-sm-27 {
    margin-bottom: 2.7rem !important;
  }

  .mb-sm-28 {
    margin-bottom: 2.8rem !important;
  }

  .mb-sm-29 {
    margin-bottom: 2.9rem !important;
  }

  .mb-sm-30 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-31 {
    margin-bottom: 3.1rem !important;
  }

  .mb-sm-32 {
    margin-bottom: 3.2rem !important;
  }

  .mb-sm-33 {
    margin-bottom: 3.3rem !important;
  }

  .mb-sm-34 {
    margin-bottom: 3.4rem !important;
  }

  .mb-sm-35 {
    margin-bottom: 3.5rem !important;
  }

  .mb-sm-36 {
    margin-bottom: 3.6rem !important;
  }

  .mb-sm-37 {
    margin-bottom: 3.7rem !important;
  }

  .mb-sm-38 {
    margin-bottom: 3.8rem !important;
  }

  .mb-sm-39 {
    margin-bottom: 3.9rem !important;
  }

  .mb-sm-40 {
    margin-bottom: 4rem !important;
  }

  .mb-sm-41 {
    margin-bottom: 4.1rem !important;
  }

  .mb-sm-42 {
    margin-bottom: 4.2rem !important;
  }

  .mb-sm-43 {
    margin-bottom: 4.3rem !important;
  }

  .mb-sm-44 {
    margin-bottom: 4.4rem !important;
  }

  .mb-sm-45 {
    margin-bottom: 4.5rem !important;
  }

  .mb-sm-46 {
    margin-bottom: 4.6rem !important;
  }

  .mb-sm-47 {
    margin-bottom: 4.7rem !important;
  }

  .mb-sm-48 {
    margin-bottom: 4.8rem !important;
  }

  .mb-sm-49 {
    margin-bottom: 4.9rem !important;
  }

  .mb-sm-50 {
    margin-bottom: 5rem !important;
  }

  .mb-sm-51 {
    margin-bottom: 5.1rem !important;
  }

  .mb-sm-52 {
    margin-bottom: 5.2rem !important;
  }

  .mb-sm-53 {
    margin-bottom: 5.3rem !important;
  }

  .mb-sm-54 {
    margin-bottom: 5.4rem !important;
  }

  .mb-sm-55 {
    margin-bottom: 5.5rem !important;
  }

  .mb-sm-56 {
    margin-bottom: 5.6rem !important;
  }

  .mb-sm-57 {
    margin-bottom: 5.7rem !important;
  }

  .mb-sm-58 {
    margin-bottom: 5.8rem !important;
  }

  .mb-sm-59 {
    margin-bottom: 5.9rem !important;
  }

  .mb-sm-60 {
    margin-bottom: 6rem !important;
  }

  .mb-sm-61 {
    margin-bottom: 6.1rem !important;
  }

  .mb-sm-62 {
    margin-bottom: 6.2rem !important;
  }

  .mb-sm-63 {
    margin-bottom: 6.3rem !important;
  }

  .mb-sm-64 {
    margin-bottom: 6.4rem !important;
  }

  .mb-sm-65 {
    margin-bottom: 6.5rem !important;
  }

  .mb-sm-66 {
    margin-bottom: 6.6rem !important;
  }

  .mb-sm-67 {
    margin-bottom: 6.7rem !important;
  }

  .mb-sm-68 {
    margin-bottom: 6.8rem !important;
  }

  .mb-sm-69 {
    margin-bottom: 6.9rem !important;
  }

  .mb-sm-70 {
    margin-bottom: 7rem !important;
  }

  .mb-sm-71 {
    margin-bottom: 7.1rem !important;
  }

  .mb-sm-72 {
    margin-bottom: 7.2rem !important;
  }

  .mb-sm-73 {
    margin-bottom: 7.3rem !important;
  }

  .mb-sm-74 {
    margin-bottom: 7.4rem !important;
  }

  .mb-sm-75 {
    margin-bottom: 7.5rem !important;
  }

  .mb-sm-76 {
    margin-bottom: 7.6rem !important;
  }

  .mb-sm-77 {
    margin-bottom: 7.7rem !important;
  }

  .mb-sm-78 {
    margin-bottom: 7.8rem !important;
  }

  .mb-sm-79 {
    margin-bottom: 7.9rem !important;
  }

  .mb-sm-80 {
    margin-bottom: 8rem !important;
  }

  .mb-sm-81 {
    margin-bottom: 8.1rem !important;
  }

  .mb-sm-82 {
    margin-bottom: 8.2rem !important;
  }

  .mb-sm-83 {
    margin-bottom: 8.3rem !important;
  }

  .mb-sm-84 {
    margin-bottom: 8.4rem !important;
  }

  .mb-sm-85 {
    margin-bottom: 8.5rem !important;
  }

  .mb-sm-86 {
    margin-bottom: 8.6rem !important;
  }

  .mb-sm-87 {
    margin-bottom: 8.7rem !important;
  }

  .mb-sm-88 {
    margin-bottom: 8.8rem !important;
  }

  .mb-sm-89 {
    margin-bottom: 8.9rem !important;
  }

  .mb-sm-90 {
    margin-bottom: 9rem !important;
  }

  .mb-sm-91 {
    margin-bottom: 9.1rem !important;
  }

  .mb-sm-92 {
    margin-bottom: 9.2rem !important;
  }

  .mb-sm-93 {
    margin-bottom: 9.3rem !important;
  }

  .mb-sm-94 {
    margin-bottom: 9.4rem !important;
  }

  .mb-sm-95 {
    margin-bottom: 9.5rem !important;
  }

  .mb-sm-96 {
    margin-bottom: 9.6rem !important;
  }

  .mb-sm-97 {
    margin-bottom: 9.7rem !important;
  }

  .mb-sm-98 {
    margin-bottom: 9.8rem !important;
  }

  .mb-sm-99 {
    margin-bottom: 9.9rem !important;
  }

  .mb-sm-100 {
    margin-bottom: 10rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-6 {
    margin-left: 0.6rem !important;
  }

  .ms-sm-7 {
    margin-left: 0.7rem !important;
  }

  .ms-sm-8 {
    margin-left: 0.8rem !important;
  }

  .ms-sm-9 {
    margin-left: 0.9rem !important;
  }

  .ms-sm-10 {
    margin-left: 1rem !important;
  }

  .ms-sm-11 {
    margin-left: 1.1rem !important;
  }

  .ms-sm-12 {
    margin-left: 1.2rem !important;
  }

  .ms-sm-13 {
    margin-left: 1.3rem !important;
  }

  .ms-sm-14 {
    margin-left: 1.4rem !important;
  }

  .ms-sm-15 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-16 {
    margin-left: 1.6rem !important;
  }

  .ms-sm-17 {
    margin-left: 1.7rem !important;
  }

  .ms-sm-18 {
    margin-left: 1.8rem !important;
  }

  .ms-sm-19 {
    margin-left: 1.9rem !important;
  }

  .ms-sm-20 {
    margin-left: 2rem !important;
  }

  .ms-sm-21 {
    margin-left: 2.1rem !important;
  }

  .ms-sm-22 {
    margin-left: 2.2rem !important;
  }

  .ms-sm-23 {
    margin-left: 2.3rem !important;
  }

  .ms-sm-24 {
    margin-left: 2.4rem !important;
  }

  .ms-sm-25 {
    margin-left: 2.5rem !important;
  }

  .ms-sm-26 {
    margin-left: 2.6rem !important;
  }

  .ms-sm-27 {
    margin-left: 2.7rem !important;
  }

  .ms-sm-28 {
    margin-left: 2.8rem !important;
  }

  .ms-sm-29 {
    margin-left: 2.9rem !important;
  }

  .ms-sm-30 {
    margin-left: 3rem !important;
  }

  .ms-sm-31 {
    margin-left: 3.1rem !important;
  }

  .ms-sm-32 {
    margin-left: 3.2rem !important;
  }

  .ms-sm-33 {
    margin-left: 3.3rem !important;
  }

  .ms-sm-34 {
    margin-left: 3.4rem !important;
  }

  .ms-sm-35 {
    margin-left: 3.5rem !important;
  }

  .ms-sm-36 {
    margin-left: 3.6rem !important;
  }

  .ms-sm-37 {
    margin-left: 3.7rem !important;
  }

  .ms-sm-38 {
    margin-left: 3.8rem !important;
  }

  .ms-sm-39 {
    margin-left: 3.9rem !important;
  }

  .ms-sm-40 {
    margin-left: 4rem !important;
  }

  .ms-sm-41 {
    margin-left: 4.1rem !important;
  }

  .ms-sm-42 {
    margin-left: 4.2rem !important;
  }

  .ms-sm-43 {
    margin-left: 4.3rem !important;
  }

  .ms-sm-44 {
    margin-left: 4.4rem !important;
  }

  .ms-sm-45 {
    margin-left: 4.5rem !important;
  }

  .ms-sm-46 {
    margin-left: 4.6rem !important;
  }

  .ms-sm-47 {
    margin-left: 4.7rem !important;
  }

  .ms-sm-48 {
    margin-left: 4.8rem !important;
  }

  .ms-sm-49 {
    margin-left: 4.9rem !important;
  }

  .ms-sm-50 {
    margin-left: 5rem !important;
  }

  .ms-sm-51 {
    margin-left: 5.1rem !important;
  }

  .ms-sm-52 {
    margin-left: 5.2rem !important;
  }

  .ms-sm-53 {
    margin-left: 5.3rem !important;
  }

  .ms-sm-54 {
    margin-left: 5.4rem !important;
  }

  .ms-sm-55 {
    margin-left: 5.5rem !important;
  }

  .ms-sm-56 {
    margin-left: 5.6rem !important;
  }

  .ms-sm-57 {
    margin-left: 5.7rem !important;
  }

  .ms-sm-58 {
    margin-left: 5.8rem !important;
  }

  .ms-sm-59 {
    margin-left: 5.9rem !important;
  }

  .ms-sm-60 {
    margin-left: 6rem !important;
  }

  .ms-sm-61 {
    margin-left: 6.1rem !important;
  }

  .ms-sm-62 {
    margin-left: 6.2rem !important;
  }

  .ms-sm-63 {
    margin-left: 6.3rem !important;
  }

  .ms-sm-64 {
    margin-left: 6.4rem !important;
  }

  .ms-sm-65 {
    margin-left: 6.5rem !important;
  }

  .ms-sm-66 {
    margin-left: 6.6rem !important;
  }

  .ms-sm-67 {
    margin-left: 6.7rem !important;
  }

  .ms-sm-68 {
    margin-left: 6.8rem !important;
  }

  .ms-sm-69 {
    margin-left: 6.9rem !important;
  }

  .ms-sm-70 {
    margin-left: 7rem !important;
  }

  .ms-sm-71 {
    margin-left: 7.1rem !important;
  }

  .ms-sm-72 {
    margin-left: 7.2rem !important;
  }

  .ms-sm-73 {
    margin-left: 7.3rem !important;
  }

  .ms-sm-74 {
    margin-left: 7.4rem !important;
  }

  .ms-sm-75 {
    margin-left: 7.5rem !important;
  }

  .ms-sm-76 {
    margin-left: 7.6rem !important;
  }

  .ms-sm-77 {
    margin-left: 7.7rem !important;
  }

  .ms-sm-78 {
    margin-left: 7.8rem !important;
  }

  .ms-sm-79 {
    margin-left: 7.9rem !important;
  }

  .ms-sm-80 {
    margin-left: 8rem !important;
  }

  .ms-sm-81 {
    margin-left: 8.1rem !important;
  }

  .ms-sm-82 {
    margin-left: 8.2rem !important;
  }

  .ms-sm-83 {
    margin-left: 8.3rem !important;
  }

  .ms-sm-84 {
    margin-left: 8.4rem !important;
  }

  .ms-sm-85 {
    margin-left: 8.5rem !important;
  }

  .ms-sm-86 {
    margin-left: 8.6rem !important;
  }

  .ms-sm-87 {
    margin-left: 8.7rem !important;
  }

  .ms-sm-88 {
    margin-left: 8.8rem !important;
  }

  .ms-sm-89 {
    margin-left: 8.9rem !important;
  }

  .ms-sm-90 {
    margin-left: 9rem !important;
  }

  .ms-sm-91 {
    margin-left: 9.1rem !important;
  }

  .ms-sm-92 {
    margin-left: 9.2rem !important;
  }

  .ms-sm-93 {
    margin-left: 9.3rem !important;
  }

  .ms-sm-94 {
    margin-left: 9.4rem !important;
  }

  .ms-sm-95 {
    margin-left: 9.5rem !important;
  }

  .ms-sm-96 {
    margin-left: 9.6rem !important;
  }

  .ms-sm-97 {
    margin-left: 9.7rem !important;
  }

  .ms-sm-98 {
    margin-left: 9.8rem !important;
  }

  .ms-sm-99 {
    margin-left: 9.9rem !important;
  }

  .ms-sm-100 {
    margin-left: 10rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .p-sm-6 {
    padding: 0.6rem !important;
  }

  .p-sm-7 {
    padding: 0.7rem !important;
  }

  .p-sm-8 {
    padding: 0.8rem !important;
  }

  .p-sm-9 {
    padding: 0.9rem !important;
  }

  .p-sm-10 {
    padding: 1rem !important;
  }

  .p-sm-11 {
    padding: 1.1rem !important;
  }

  .p-sm-12 {
    padding: 1.2rem !important;
  }

  .p-sm-13 {
    padding: 1.3rem !important;
  }

  .p-sm-14 {
    padding: 1.4rem !important;
  }

  .p-sm-15 {
    padding: 1.5rem !important;
  }

  .p-sm-16 {
    padding: 1.6rem !important;
  }

  .p-sm-17 {
    padding: 1.7rem !important;
  }

  .p-sm-18 {
    padding: 1.8rem !important;
  }

  .p-sm-19 {
    padding: 1.9rem !important;
  }

  .p-sm-20 {
    padding: 2rem !important;
  }

  .p-sm-21 {
    padding: 2.1rem !important;
  }

  .p-sm-22 {
    padding: 2.2rem !important;
  }

  .p-sm-23 {
    padding: 2.3rem !important;
  }

  .p-sm-24 {
    padding: 2.4rem !important;
  }

  .p-sm-25 {
    padding: 2.5rem !important;
  }

  .p-sm-26 {
    padding: 2.6rem !important;
  }

  .p-sm-27 {
    padding: 2.7rem !important;
  }

  .p-sm-28 {
    padding: 2.8rem !important;
  }

  .p-sm-29 {
    padding: 2.9rem !important;
  }

  .p-sm-30 {
    padding: 3rem !important;
  }

  .p-sm-31 {
    padding: 3.1rem !important;
  }

  .p-sm-32 {
    padding: 3.2rem !important;
  }

  .p-sm-33 {
    padding: 3.3rem !important;
  }

  .p-sm-34 {
    padding: 3.4rem !important;
  }

  .p-sm-35 {
    padding: 3.5rem !important;
  }

  .p-sm-36 {
    padding: 3.6rem !important;
  }

  .p-sm-37 {
    padding: 3.7rem !important;
  }

  .p-sm-38 {
    padding: 3.8rem !important;
  }

  .p-sm-39 {
    padding: 3.9rem !important;
  }

  .p-sm-40 {
    padding: 4rem !important;
  }

  .p-sm-41 {
    padding: 4.1rem !important;
  }

  .p-sm-42 {
    padding: 4.2rem !important;
  }

  .p-sm-43 {
    padding: 4.3rem !important;
  }

  .p-sm-44 {
    padding: 4.4rem !important;
  }

  .p-sm-45 {
    padding: 4.5rem !important;
  }

  .p-sm-46 {
    padding: 4.6rem !important;
  }

  .p-sm-47 {
    padding: 4.7rem !important;
  }

  .p-sm-48 {
    padding: 4.8rem !important;
  }

  .p-sm-49 {
    padding: 4.9rem !important;
  }

  .p-sm-50 {
    padding: 5rem !important;
  }

  .p-sm-51 {
    padding: 5.1rem !important;
  }

  .p-sm-52 {
    padding: 5.2rem !important;
  }

  .p-sm-53 {
    padding: 5.3rem !important;
  }

  .p-sm-54 {
    padding: 5.4rem !important;
  }

  .p-sm-55 {
    padding: 5.5rem !important;
  }

  .p-sm-56 {
    padding: 5.6rem !important;
  }

  .p-sm-57 {
    padding: 5.7rem !important;
  }

  .p-sm-58 {
    padding: 5.8rem !important;
  }

  .p-sm-59 {
    padding: 5.9rem !important;
  }

  .p-sm-60 {
    padding: 6rem !important;
  }

  .p-sm-61 {
    padding: 6.1rem !important;
  }

  .p-sm-62 {
    padding: 6.2rem !important;
  }

  .p-sm-63 {
    padding: 6.3rem !important;
  }

  .p-sm-64 {
    padding: 6.4rem !important;
  }

  .p-sm-65 {
    padding: 6.5rem !important;
  }

  .p-sm-66 {
    padding: 6.6rem !important;
  }

  .p-sm-67 {
    padding: 6.7rem !important;
  }

  .p-sm-68 {
    padding: 6.8rem !important;
  }

  .p-sm-69 {
    padding: 6.9rem !important;
  }

  .p-sm-70 {
    padding: 7rem !important;
  }

  .p-sm-71 {
    padding: 7.1rem !important;
  }

  .p-sm-72 {
    padding: 7.2rem !important;
  }

  .p-sm-73 {
    padding: 7.3rem !important;
  }

  .p-sm-74 {
    padding: 7.4rem !important;
  }

  .p-sm-75 {
    padding: 7.5rem !important;
  }

  .p-sm-76 {
    padding: 7.6rem !important;
  }

  .p-sm-77 {
    padding: 7.7rem !important;
  }

  .p-sm-78 {
    padding: 7.8rem !important;
  }

  .p-sm-79 {
    padding: 7.9rem !important;
  }

  .p-sm-80 {
    padding: 8rem !important;
  }

  .p-sm-81 {
    padding: 8.1rem !important;
  }

  .p-sm-82 {
    padding: 8.2rem !important;
  }

  .p-sm-83 {
    padding: 8.3rem !important;
  }

  .p-sm-84 {
    padding: 8.4rem !important;
  }

  .p-sm-85 {
    padding: 8.5rem !important;
  }

  .p-sm-86 {
    padding: 8.6rem !important;
  }

  .p-sm-87 {
    padding: 8.7rem !important;
  }

  .p-sm-88 {
    padding: 8.8rem !important;
  }

  .p-sm-89 {
    padding: 8.9rem !important;
  }

  .p-sm-90 {
    padding: 9rem !important;
  }

  .p-sm-91 {
    padding: 9.1rem !important;
  }

  .p-sm-92 {
    padding: 9.2rem !important;
  }

  .p-sm-93 {
    padding: 9.3rem !important;
  }

  .p-sm-94 {
    padding: 9.4rem !important;
  }

  .p-sm-95 {
    padding: 9.5rem !important;
  }

  .p-sm-96 {
    padding: 9.6rem !important;
  }

  .p-sm-97 {
    padding: 9.7rem !important;
  }

  .p-sm-98 {
    padding: 9.8rem !important;
  }

  .p-sm-99 {
    padding: 9.9rem !important;
  }

  .p-sm-100 {
    padding: 10rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-sm-6 {
    padding-right: 0.6rem !important;
    padding-left: 0.6rem !important;
  }

  .px-sm-7 {
    padding-right: 0.7rem !important;
    padding-left: 0.7rem !important;
  }

  .px-sm-8 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
  }

  .px-sm-9 {
    padding-right: 0.9rem !important;
    padding-left: 0.9rem !important;
  }

  .px-sm-10 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-11 {
    padding-right: 1.1rem !important;
    padding-left: 1.1rem !important;
  }

  .px-sm-12 {
    padding-right: 1.2rem !important;
    padding-left: 1.2rem !important;
  }

  .px-sm-13 {
    padding-right: 1.3rem !important;
    padding-left: 1.3rem !important;
  }

  .px-sm-14 {
    padding-right: 1.4rem !important;
    padding-left: 1.4rem !important;
  }

  .px-sm-15 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-16 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important;
  }

  .px-sm-17 {
    padding-right: 1.7rem !important;
    padding-left: 1.7rem !important;
  }

  .px-sm-18 {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }

  .px-sm-19 {
    padding-right: 1.9rem !important;
    padding-left: 1.9rem !important;
  }

  .px-sm-20 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-sm-21 {
    padding-right: 2.1rem !important;
    padding-left: 2.1rem !important;
  }

  .px-sm-22 {
    padding-right: 2.2rem !important;
    padding-left: 2.2rem !important;
  }

  .px-sm-23 {
    padding-right: 2.3rem !important;
    padding-left: 2.3rem !important;
  }

  .px-sm-24 {
    padding-right: 2.4rem !important;
    padding-left: 2.4rem !important;
  }

  .px-sm-25 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-sm-26 {
    padding-right: 2.6rem !important;
    padding-left: 2.6rem !important;
  }

  .px-sm-27 {
    padding-right: 2.7rem !important;
    padding-left: 2.7rem !important;
  }

  .px-sm-28 {
    padding-right: 2.8rem !important;
    padding-left: 2.8rem !important;
  }

  .px-sm-29 {
    padding-right: 2.9rem !important;
    padding-left: 2.9rem !important;
  }

  .px-sm-30 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-sm-31 {
    padding-right: 3.1rem !important;
    padding-left: 3.1rem !important;
  }

  .px-sm-32 {
    padding-right: 3.2rem !important;
    padding-left: 3.2rem !important;
  }

  .px-sm-33 {
    padding-right: 3.3rem !important;
    padding-left: 3.3rem !important;
  }

  .px-sm-34 {
    padding-right: 3.4rem !important;
    padding-left: 3.4rem !important;
  }

  .px-sm-35 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-sm-36 {
    padding-right: 3.6rem !important;
    padding-left: 3.6rem !important;
  }

  .px-sm-37 {
    padding-right: 3.7rem !important;
    padding-left: 3.7rem !important;
  }

  .px-sm-38 {
    padding-right: 3.8rem !important;
    padding-left: 3.8rem !important;
  }

  .px-sm-39 {
    padding-right: 3.9rem !important;
    padding-left: 3.9rem !important;
  }

  .px-sm-40 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-sm-41 {
    padding-right: 4.1rem !important;
    padding-left: 4.1rem !important;
  }

  .px-sm-42 {
    padding-right: 4.2rem !important;
    padding-left: 4.2rem !important;
  }

  .px-sm-43 {
    padding-right: 4.3rem !important;
    padding-left: 4.3rem !important;
  }

  .px-sm-44 {
    padding-right: 4.4rem !important;
    padding-left: 4.4rem !important;
  }

  .px-sm-45 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-sm-46 {
    padding-right: 4.6rem !important;
    padding-left: 4.6rem !important;
  }

  .px-sm-47 {
    padding-right: 4.7rem !important;
    padding-left: 4.7rem !important;
  }

  .px-sm-48 {
    padding-right: 4.8rem !important;
    padding-left: 4.8rem !important;
  }

  .px-sm-49 {
    padding-right: 4.9rem !important;
    padding-left: 4.9rem !important;
  }

  .px-sm-50 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-sm-51 {
    padding-right: 5.1rem !important;
    padding-left: 5.1rem !important;
  }

  .px-sm-52 {
    padding-right: 5.2rem !important;
    padding-left: 5.2rem !important;
  }

  .px-sm-53 {
    padding-right: 5.3rem !important;
    padding-left: 5.3rem !important;
  }

  .px-sm-54 {
    padding-right: 5.4rem !important;
    padding-left: 5.4rem !important;
  }

  .px-sm-55 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }

  .px-sm-56 {
    padding-right: 5.6rem !important;
    padding-left: 5.6rem !important;
  }

  .px-sm-57 {
    padding-right: 5.7rem !important;
    padding-left: 5.7rem !important;
  }

  .px-sm-58 {
    padding-right: 5.8rem !important;
    padding-left: 5.8rem !important;
  }

  .px-sm-59 {
    padding-right: 5.9rem !important;
    padding-left: 5.9rem !important;
  }

  .px-sm-60 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-sm-61 {
    padding-right: 6.1rem !important;
    padding-left: 6.1rem !important;
  }

  .px-sm-62 {
    padding-right: 6.2rem !important;
    padding-left: 6.2rem !important;
  }

  .px-sm-63 {
    padding-right: 6.3rem !important;
    padding-left: 6.3rem !important;
  }

  .px-sm-64 {
    padding-right: 6.4rem !important;
    padding-left: 6.4rem !important;
  }

  .px-sm-65 {
    padding-right: 6.5rem !important;
    padding-left: 6.5rem !important;
  }

  .px-sm-66 {
    padding-right: 6.6rem !important;
    padding-left: 6.6rem !important;
  }

  .px-sm-67 {
    padding-right: 6.7rem !important;
    padding-left: 6.7rem !important;
  }

  .px-sm-68 {
    padding-right: 6.8rem !important;
    padding-left: 6.8rem !important;
  }

  .px-sm-69 {
    padding-right: 6.9rem !important;
    padding-left: 6.9rem !important;
  }

  .px-sm-70 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }

  .px-sm-71 {
    padding-right: 7.1rem !important;
    padding-left: 7.1rem !important;
  }

  .px-sm-72 {
    padding-right: 7.2rem !important;
    padding-left: 7.2rem !important;
  }

  .px-sm-73 {
    padding-right: 7.3rem !important;
    padding-left: 7.3rem !important;
  }

  .px-sm-74 {
    padding-right: 7.4rem !important;
    padding-left: 7.4rem !important;
  }

  .px-sm-75 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-sm-76 {
    padding-right: 7.6rem !important;
    padding-left: 7.6rem !important;
  }

  .px-sm-77 {
    padding-right: 7.7rem !important;
    padding-left: 7.7rem !important;
  }

  .px-sm-78 {
    padding-right: 7.8rem !important;
    padding-left: 7.8rem !important;
  }

  .px-sm-79 {
    padding-right: 7.9rem !important;
    padding-left: 7.9rem !important;
  }

  .px-sm-80 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-sm-81 {
    padding-right: 8.1rem !important;
    padding-left: 8.1rem !important;
  }

  .px-sm-82 {
    padding-right: 8.2rem !important;
    padding-left: 8.2rem !important;
  }

  .px-sm-83 {
    padding-right: 8.3rem !important;
    padding-left: 8.3rem !important;
  }

  .px-sm-84 {
    padding-right: 8.4rem !important;
    padding-left: 8.4rem !important;
  }

  .px-sm-85 {
    padding-right: 8.5rem !important;
    padding-left: 8.5rem !important;
  }

  .px-sm-86 {
    padding-right: 8.6rem !important;
    padding-left: 8.6rem !important;
  }

  .px-sm-87 {
    padding-right: 8.7rem !important;
    padding-left: 8.7rem !important;
  }

  .px-sm-88 {
    padding-right: 8.8rem !important;
    padding-left: 8.8rem !important;
  }

  .px-sm-89 {
    padding-right: 8.9rem !important;
    padding-left: 8.9rem !important;
  }

  .px-sm-90 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }

  .px-sm-91 {
    padding-right: 9.1rem !important;
    padding-left: 9.1rem !important;
  }

  .px-sm-92 {
    padding-right: 9.2rem !important;
    padding-left: 9.2rem !important;
  }

  .px-sm-93 {
    padding-right: 9.3rem !important;
    padding-left: 9.3rem !important;
  }

  .px-sm-94 {
    padding-right: 9.4rem !important;
    padding-left: 9.4rem !important;
  }

  .px-sm-95 {
    padding-right: 9.5rem !important;
    padding-left: 9.5rem !important;
  }

  .px-sm-96 {
    padding-right: 9.6rem !important;
    padding-left: 9.6rem !important;
  }

  .px-sm-97 {
    padding-right: 9.7rem !important;
    padding-left: 9.7rem !important;
  }

  .px-sm-98 {
    padding-right: 9.8rem !important;
    padding-left: 9.8rem !important;
  }

  .px-sm-99 {
    padding-right: 9.9rem !important;
    padding-left: 9.9rem !important;
  }

  .px-sm-100 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-sm-6 {
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
  }

  .py-sm-7 {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
  }

  .py-sm-8 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }

  .py-sm-9 {
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
  }

  .py-sm-10 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-11 {
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
  }

  .py-sm-12 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }

  .py-sm-13 {
    padding-top: 1.3rem !important;
    padding-bottom: 1.3rem !important;
  }

  .py-sm-14 {
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
  }

  .py-sm-15 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-16 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }

  .py-sm-17 {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
  }

  .py-sm-18 {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }

  .py-sm-19 {
    padding-top: 1.9rem !important;
    padding-bottom: 1.9rem !important;
  }

  .py-sm-20 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-sm-21 {
    padding-top: 2.1rem !important;
    padding-bottom: 2.1rem !important;
  }

  .py-sm-22 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }

  .py-sm-23 {
    padding-top: 2.3rem !important;
    padding-bottom: 2.3rem !important;
  }

  .py-sm-24 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  .py-sm-25 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-sm-26 {
    padding-top: 2.6rem !important;
    padding-bottom: 2.6rem !important;
  }

  .py-sm-27 {
    padding-top: 2.7rem !important;
    padding-bottom: 2.7rem !important;
  }

  .py-sm-28 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }

  .py-sm-29 {
    padding-top: 2.9rem !important;
    padding-bottom: 2.9rem !important;
  }

  .py-sm-30 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-sm-31 {
    padding-top: 3.1rem !important;
    padding-bottom: 3.1rem !important;
  }

  .py-sm-32 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }

  .py-sm-33 {
    padding-top: 3.3rem !important;
    padding-bottom: 3.3rem !important;
  }

  .py-sm-34 {
    padding-top: 3.4rem !important;
    padding-bottom: 3.4rem !important;
  }

  .py-sm-35 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-sm-36 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }

  .py-sm-37 {
    padding-top: 3.7rem !important;
    padding-bottom: 3.7rem !important;
  }

  .py-sm-38 {
    padding-top: 3.8rem !important;
    padding-bottom: 3.8rem !important;
  }

  .py-sm-39 {
    padding-top: 3.9rem !important;
    padding-bottom: 3.9rem !important;
  }

  .py-sm-40 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-sm-41 {
    padding-top: 4.1rem !important;
    padding-bottom: 4.1rem !important;
  }

  .py-sm-42 {
    padding-top: 4.2rem !important;
    padding-bottom: 4.2rem !important;
  }

  .py-sm-43 {
    padding-top: 4.3rem !important;
    padding-bottom: 4.3rem !important;
  }

  .py-sm-44 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }

  .py-sm-45 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-sm-46 {
    padding-top: 4.6rem !important;
    padding-bottom: 4.6rem !important;
  }

  .py-sm-47 {
    padding-top: 4.7rem !important;
    padding-bottom: 4.7rem !important;
  }

  .py-sm-48 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }

  .py-sm-49 {
    padding-top: 4.9rem !important;
    padding-bottom: 4.9rem !important;
  }

  .py-sm-50 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-sm-51 {
    padding-top: 5.1rem !important;
    padding-bottom: 5.1rem !important;
  }

  .py-sm-52 {
    padding-top: 5.2rem !important;
    padding-bottom: 5.2rem !important;
  }

  .py-sm-53 {
    padding-top: 5.3rem !important;
    padding-bottom: 5.3rem !important;
  }

  .py-sm-54 {
    padding-top: 5.4rem !important;
    padding-bottom: 5.4rem !important;
  }

  .py-sm-55 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .py-sm-56 {
    padding-top: 5.6rem !important;
    padding-bottom: 5.6rem !important;
  }

  .py-sm-57 {
    padding-top: 5.7rem !important;
    padding-bottom: 5.7rem !important;
  }

  .py-sm-58 {
    padding-top: 5.8rem !important;
    padding-bottom: 5.8rem !important;
  }

  .py-sm-59 {
    padding-top: 5.9rem !important;
    padding-bottom: 5.9rem !important;
  }

  .py-sm-60 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-sm-61 {
    padding-top: 6.1rem !important;
    padding-bottom: 6.1rem !important;
  }

  .py-sm-62 {
    padding-top: 6.2rem !important;
    padding-bottom: 6.2rem !important;
  }

  .py-sm-63 {
    padding-top: 6.3rem !important;
    padding-bottom: 6.3rem !important;
  }

  .py-sm-64 {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }

  .py-sm-65 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .py-sm-66 {
    padding-top: 6.6rem !important;
    padding-bottom: 6.6rem !important;
  }

  .py-sm-67 {
    padding-top: 6.7rem !important;
    padding-bottom: 6.7rem !important;
  }

  .py-sm-68 {
    padding-top: 6.8rem !important;
    padding-bottom: 6.8rem !important;
  }

  .py-sm-69 {
    padding-top: 6.9rem !important;
    padding-bottom: 6.9rem !important;
  }

  .py-sm-70 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .py-sm-71 {
    padding-top: 7.1rem !important;
    padding-bottom: 7.1rem !important;
  }

  .py-sm-72 {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }

  .py-sm-73 {
    padding-top: 7.3rem !important;
    padding-bottom: 7.3rem !important;
  }

  .py-sm-74 {
    padding-top: 7.4rem !important;
    padding-bottom: 7.4rem !important;
  }

  .py-sm-75 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-sm-76 {
    padding-top: 7.6rem !important;
    padding-bottom: 7.6rem !important;
  }

  .py-sm-77 {
    padding-top: 7.7rem !important;
    padding-bottom: 7.7rem !important;
  }

  .py-sm-78 {
    padding-top: 7.8rem !important;
    padding-bottom: 7.8rem !important;
  }

  .py-sm-79 {
    padding-top: 7.9rem !important;
    padding-bottom: 7.9rem !important;
  }

  .py-sm-80 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-sm-81 {
    padding-top: 8.1rem !important;
    padding-bottom: 8.1rem !important;
  }

  .py-sm-82 {
    padding-top: 8.2rem !important;
    padding-bottom: 8.2rem !important;
  }

  .py-sm-83 {
    padding-top: 8.3rem !important;
    padding-bottom: 8.3rem !important;
  }

  .py-sm-84 {
    padding-top: 8.4rem !important;
    padding-bottom: 8.4rem !important;
  }

  .py-sm-85 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }

  .py-sm-86 {
    padding-top: 8.6rem !important;
    padding-bottom: 8.6rem !important;
  }

  .py-sm-87 {
    padding-top: 8.7rem !important;
    padding-bottom: 8.7rem !important;
  }

  .py-sm-88 {
    padding-top: 8.8rem !important;
    padding-bottom: 8.8rem !important;
  }

  .py-sm-89 {
    padding-top: 8.9rem !important;
    padding-bottom: 8.9rem !important;
  }

  .py-sm-90 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .py-sm-91 {
    padding-top: 9.1rem !important;
    padding-bottom: 9.1rem !important;
  }

  .py-sm-92 {
    padding-top: 9.2rem !important;
    padding-bottom: 9.2rem !important;
  }

  .py-sm-93 {
    padding-top: 9.3rem !important;
    padding-bottom: 9.3rem !important;
  }

  .py-sm-94 {
    padding-top: 9.4rem !important;
    padding-bottom: 9.4rem !important;
  }

  .py-sm-95 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }

  .py-sm-96 {
    padding-top: 9.6rem !important;
    padding-bottom: 9.6rem !important;
  }

  .py-sm-97 {
    padding-top: 9.7rem !important;
    padding-bottom: 9.7rem !important;
  }

  .py-sm-98 {
    padding-top: 9.8rem !important;
    padding-bottom: 9.8rem !important;
  }

  .py-sm-99 {
    padding-top: 9.9rem !important;
    padding-bottom: 9.9rem !important;
  }

  .py-sm-100 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pt-sm-6 {
    padding-top: 0.6rem !important;
  }

  .pt-sm-7 {
    padding-top: 0.7rem !important;
  }

  .pt-sm-8 {
    padding-top: 0.8rem !important;
  }

  .pt-sm-9 {
    padding-top: 0.9rem !important;
  }

  .pt-sm-10 {
    padding-top: 1rem !important;
  }

  .pt-sm-11 {
    padding-top: 1.1rem !important;
  }

  .pt-sm-12 {
    padding-top: 1.2rem !important;
  }

  .pt-sm-13 {
    padding-top: 1.3rem !important;
  }

  .pt-sm-14 {
    padding-top: 1.4rem !important;
  }

  .pt-sm-15 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-16 {
    padding-top: 1.6rem !important;
  }

  .pt-sm-17 {
    padding-top: 1.7rem !important;
  }

  .pt-sm-18 {
    padding-top: 1.8rem !important;
  }

  .pt-sm-19 {
    padding-top: 1.9rem !important;
  }

  .pt-sm-20 {
    padding-top: 2rem !important;
  }

  .pt-sm-21 {
    padding-top: 2.1rem !important;
  }

  .pt-sm-22 {
    padding-top: 2.2rem !important;
  }

  .pt-sm-23 {
    padding-top: 2.3rem !important;
  }

  .pt-sm-24 {
    padding-top: 2.4rem !important;
  }

  .pt-sm-25 {
    padding-top: 2.5rem !important;
  }

  .pt-sm-26 {
    padding-top: 2.6rem !important;
  }

  .pt-sm-27 {
    padding-top: 2.7rem !important;
  }

  .pt-sm-28 {
    padding-top: 2.8rem !important;
  }

  .pt-sm-29 {
    padding-top: 2.9rem !important;
  }

  .pt-sm-30 {
    padding-top: 3rem !important;
  }

  .pt-sm-31 {
    padding-top: 3.1rem !important;
  }

  .pt-sm-32 {
    padding-top: 3.2rem !important;
  }

  .pt-sm-33 {
    padding-top: 3.3rem !important;
  }

  .pt-sm-34 {
    padding-top: 3.4rem !important;
  }

  .pt-sm-35 {
    padding-top: 3.5rem !important;
  }

  .pt-sm-36 {
    padding-top: 3.6rem !important;
  }

  .pt-sm-37 {
    padding-top: 3.7rem !important;
  }

  .pt-sm-38 {
    padding-top: 3.8rem !important;
  }

  .pt-sm-39 {
    padding-top: 3.9rem !important;
  }

  .pt-sm-40 {
    padding-top: 4rem !important;
  }

  .pt-sm-41 {
    padding-top: 4.1rem !important;
  }

  .pt-sm-42 {
    padding-top: 4.2rem !important;
  }

  .pt-sm-43 {
    padding-top: 4.3rem !important;
  }

  .pt-sm-44 {
    padding-top: 4.4rem !important;
  }

  .pt-sm-45 {
    padding-top: 4.5rem !important;
  }

  .pt-sm-46 {
    padding-top: 4.6rem !important;
  }

  .pt-sm-47 {
    padding-top: 4.7rem !important;
  }

  .pt-sm-48 {
    padding-top: 4.8rem !important;
  }

  .pt-sm-49 {
    padding-top: 4.9rem !important;
  }

  .pt-sm-50 {
    padding-top: 5rem !important;
  }

  .pt-sm-51 {
    padding-top: 5.1rem !important;
  }

  .pt-sm-52 {
    padding-top: 5.2rem !important;
  }

  .pt-sm-53 {
    padding-top: 5.3rem !important;
  }

  .pt-sm-54 {
    padding-top: 5.4rem !important;
  }

  .pt-sm-55 {
    padding-top: 5.5rem !important;
  }

  .pt-sm-56 {
    padding-top: 5.6rem !important;
  }

  .pt-sm-57 {
    padding-top: 5.7rem !important;
  }

  .pt-sm-58 {
    padding-top: 5.8rem !important;
  }

  .pt-sm-59 {
    padding-top: 5.9rem !important;
  }

  .pt-sm-60 {
    padding-top: 6rem !important;
  }

  .pt-sm-61 {
    padding-top: 6.1rem !important;
  }

  .pt-sm-62 {
    padding-top: 6.2rem !important;
  }

  .pt-sm-63 {
    padding-top: 6.3rem !important;
  }

  .pt-sm-64 {
    padding-top: 6.4rem !important;
  }

  .pt-sm-65 {
    padding-top: 6.5rem !important;
  }

  .pt-sm-66 {
    padding-top: 6.6rem !important;
  }

  .pt-sm-67 {
    padding-top: 6.7rem !important;
  }

  .pt-sm-68 {
    padding-top: 6.8rem !important;
  }

  .pt-sm-69 {
    padding-top: 6.9rem !important;
  }

  .pt-sm-70 {
    padding-top: 7rem !important;
  }

  .pt-sm-71 {
    padding-top: 7.1rem !important;
  }

  .pt-sm-72 {
    padding-top: 7.2rem !important;
  }

  .pt-sm-73 {
    padding-top: 7.3rem !important;
  }

  .pt-sm-74 {
    padding-top: 7.4rem !important;
  }

  .pt-sm-75 {
    padding-top: 7.5rem !important;
  }

  .pt-sm-76 {
    padding-top: 7.6rem !important;
  }

  .pt-sm-77 {
    padding-top: 7.7rem !important;
  }

  .pt-sm-78 {
    padding-top: 7.8rem !important;
  }

  .pt-sm-79 {
    padding-top: 7.9rem !important;
  }

  .pt-sm-80 {
    padding-top: 8rem !important;
  }

  .pt-sm-81 {
    padding-top: 8.1rem !important;
  }

  .pt-sm-82 {
    padding-top: 8.2rem !important;
  }

  .pt-sm-83 {
    padding-top: 8.3rem !important;
  }

  .pt-sm-84 {
    padding-top: 8.4rem !important;
  }

  .pt-sm-85 {
    padding-top: 8.5rem !important;
  }

  .pt-sm-86 {
    padding-top: 8.6rem !important;
  }

  .pt-sm-87 {
    padding-top: 8.7rem !important;
  }

  .pt-sm-88 {
    padding-top: 8.8rem !important;
  }

  .pt-sm-89 {
    padding-top: 8.9rem !important;
  }

  .pt-sm-90 {
    padding-top: 9rem !important;
  }

  .pt-sm-91 {
    padding-top: 9.1rem !important;
  }

  .pt-sm-92 {
    padding-top: 9.2rem !important;
  }

  .pt-sm-93 {
    padding-top: 9.3rem !important;
  }

  .pt-sm-94 {
    padding-top: 9.4rem !important;
  }

  .pt-sm-95 {
    padding-top: 9.5rem !important;
  }

  .pt-sm-96 {
    padding-top: 9.6rem !important;
  }

  .pt-sm-97 {
    padding-top: 9.7rem !important;
  }

  .pt-sm-98 {
    padding-top: 9.8rem !important;
  }

  .pt-sm-99 {
    padding-top: 9.9rem !important;
  }

  .pt-sm-100 {
    padding-top: 10rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pe-sm-6 {
    padding-right: 0.6rem !important;
  }

  .pe-sm-7 {
    padding-right: 0.7rem !important;
  }

  .pe-sm-8 {
    padding-right: 0.8rem !important;
  }

  .pe-sm-9 {
    padding-right: 0.9rem !important;
  }

  .pe-sm-10 {
    padding-right: 1rem !important;
  }

  .pe-sm-11 {
    padding-right: 1.1rem !important;
  }

  .pe-sm-12 {
    padding-right: 1.2rem !important;
  }

  .pe-sm-13 {
    padding-right: 1.3rem !important;
  }

  .pe-sm-14 {
    padding-right: 1.4rem !important;
  }

  .pe-sm-15 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-16 {
    padding-right: 1.6rem !important;
  }

  .pe-sm-17 {
    padding-right: 1.7rem !important;
  }

  .pe-sm-18 {
    padding-right: 1.8rem !important;
  }

  .pe-sm-19 {
    padding-right: 1.9rem !important;
  }

  .pe-sm-20 {
    padding-right: 2rem !important;
  }

  .pe-sm-21 {
    padding-right: 2.1rem !important;
  }

  .pe-sm-22 {
    padding-right: 2.2rem !important;
  }

  .pe-sm-23 {
    padding-right: 2.3rem !important;
  }

  .pe-sm-24 {
    padding-right: 2.4rem !important;
  }

  .pe-sm-25 {
    padding-right: 2.5rem !important;
  }

  .pe-sm-26 {
    padding-right: 2.6rem !important;
  }

  .pe-sm-27 {
    padding-right: 2.7rem !important;
  }

  .pe-sm-28 {
    padding-right: 2.8rem !important;
  }

  .pe-sm-29 {
    padding-right: 2.9rem !important;
  }

  .pe-sm-30 {
    padding-right: 3rem !important;
  }

  .pe-sm-31 {
    padding-right: 3.1rem !important;
  }

  .pe-sm-32 {
    padding-right: 3.2rem !important;
  }

  .pe-sm-33 {
    padding-right: 3.3rem !important;
  }

  .pe-sm-34 {
    padding-right: 3.4rem !important;
  }

  .pe-sm-35 {
    padding-right: 3.5rem !important;
  }

  .pe-sm-36 {
    padding-right: 3.6rem !important;
  }

  .pe-sm-37 {
    padding-right: 3.7rem !important;
  }

  .pe-sm-38 {
    padding-right: 3.8rem !important;
  }

  .pe-sm-39 {
    padding-right: 3.9rem !important;
  }

  .pe-sm-40 {
    padding-right: 4rem !important;
  }

  .pe-sm-41 {
    padding-right: 4.1rem !important;
  }

  .pe-sm-42 {
    padding-right: 4.2rem !important;
  }

  .pe-sm-43 {
    padding-right: 4.3rem !important;
  }

  .pe-sm-44 {
    padding-right: 4.4rem !important;
  }

  .pe-sm-45 {
    padding-right: 4.5rem !important;
  }

  .pe-sm-46 {
    padding-right: 4.6rem !important;
  }

  .pe-sm-47 {
    padding-right: 4.7rem !important;
  }

  .pe-sm-48 {
    padding-right: 4.8rem !important;
  }

  .pe-sm-49 {
    padding-right: 4.9rem !important;
  }

  .pe-sm-50 {
    padding-right: 5rem !important;
  }

  .pe-sm-51 {
    padding-right: 5.1rem !important;
  }

  .pe-sm-52 {
    padding-right: 5.2rem !important;
  }

  .pe-sm-53 {
    padding-right: 5.3rem !important;
  }

  .pe-sm-54 {
    padding-right: 5.4rem !important;
  }

  .pe-sm-55 {
    padding-right: 5.5rem !important;
  }

  .pe-sm-56 {
    padding-right: 5.6rem !important;
  }

  .pe-sm-57 {
    padding-right: 5.7rem !important;
  }

  .pe-sm-58 {
    padding-right: 5.8rem !important;
  }

  .pe-sm-59 {
    padding-right: 5.9rem !important;
  }

  .pe-sm-60 {
    padding-right: 6rem !important;
  }

  .pe-sm-61 {
    padding-right: 6.1rem !important;
  }

  .pe-sm-62 {
    padding-right: 6.2rem !important;
  }

  .pe-sm-63 {
    padding-right: 6.3rem !important;
  }

  .pe-sm-64 {
    padding-right: 6.4rem !important;
  }

  .pe-sm-65 {
    padding-right: 6.5rem !important;
  }

  .pe-sm-66 {
    padding-right: 6.6rem !important;
  }

  .pe-sm-67 {
    padding-right: 6.7rem !important;
  }

  .pe-sm-68 {
    padding-right: 6.8rem !important;
  }

  .pe-sm-69 {
    padding-right: 6.9rem !important;
  }

  .pe-sm-70 {
    padding-right: 7rem !important;
  }

  .pe-sm-71 {
    padding-right: 7.1rem !important;
  }

  .pe-sm-72 {
    padding-right: 7.2rem !important;
  }

  .pe-sm-73 {
    padding-right: 7.3rem !important;
  }

  .pe-sm-74 {
    padding-right: 7.4rem !important;
  }

  .pe-sm-75 {
    padding-right: 7.5rem !important;
  }

  .pe-sm-76 {
    padding-right: 7.6rem !important;
  }

  .pe-sm-77 {
    padding-right: 7.7rem !important;
  }

  .pe-sm-78 {
    padding-right: 7.8rem !important;
  }

  .pe-sm-79 {
    padding-right: 7.9rem !important;
  }

  .pe-sm-80 {
    padding-right: 8rem !important;
  }

  .pe-sm-81 {
    padding-right: 8.1rem !important;
  }

  .pe-sm-82 {
    padding-right: 8.2rem !important;
  }

  .pe-sm-83 {
    padding-right: 8.3rem !important;
  }

  .pe-sm-84 {
    padding-right: 8.4rem !important;
  }

  .pe-sm-85 {
    padding-right: 8.5rem !important;
  }

  .pe-sm-86 {
    padding-right: 8.6rem !important;
  }

  .pe-sm-87 {
    padding-right: 8.7rem !important;
  }

  .pe-sm-88 {
    padding-right: 8.8rem !important;
  }

  .pe-sm-89 {
    padding-right: 8.9rem !important;
  }

  .pe-sm-90 {
    padding-right: 9rem !important;
  }

  .pe-sm-91 {
    padding-right: 9.1rem !important;
  }

  .pe-sm-92 {
    padding-right: 9.2rem !important;
  }

  .pe-sm-93 {
    padding-right: 9.3rem !important;
  }

  .pe-sm-94 {
    padding-right: 9.4rem !important;
  }

  .pe-sm-95 {
    padding-right: 9.5rem !important;
  }

  .pe-sm-96 {
    padding-right: 9.6rem !important;
  }

  .pe-sm-97 {
    padding-right: 9.7rem !important;
  }

  .pe-sm-98 {
    padding-right: 9.8rem !important;
  }

  .pe-sm-99 {
    padding-right: 9.9rem !important;
  }

  .pe-sm-100 {
    padding-right: 10rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pb-sm-6 {
    padding-bottom: 0.6rem !important;
  }

  .pb-sm-7 {
    padding-bottom: 0.7rem !important;
  }

  .pb-sm-8 {
    padding-bottom: 0.8rem !important;
  }

  .pb-sm-9 {
    padding-bottom: 0.9rem !important;
  }

  .pb-sm-10 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-11 {
    padding-bottom: 1.1rem !important;
  }

  .pb-sm-12 {
    padding-bottom: 1.2rem !important;
  }

  .pb-sm-13 {
    padding-bottom: 1.3rem !important;
  }

  .pb-sm-14 {
    padding-bottom: 1.4rem !important;
  }

  .pb-sm-15 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-16 {
    padding-bottom: 1.6rem !important;
  }

  .pb-sm-17 {
    padding-bottom: 1.7rem !important;
  }

  .pb-sm-18 {
    padding-bottom: 1.8rem !important;
  }

  .pb-sm-19 {
    padding-bottom: 1.9rem !important;
  }

  .pb-sm-20 {
    padding-bottom: 2rem !important;
  }

  .pb-sm-21 {
    padding-bottom: 2.1rem !important;
  }

  .pb-sm-22 {
    padding-bottom: 2.2rem !important;
  }

  .pb-sm-23 {
    padding-bottom: 2.3rem !important;
  }

  .pb-sm-24 {
    padding-bottom: 2.4rem !important;
  }

  .pb-sm-25 {
    padding-bottom: 2.5rem !important;
  }

  .pb-sm-26 {
    padding-bottom: 2.6rem !important;
  }

  .pb-sm-27 {
    padding-bottom: 2.7rem !important;
  }

  .pb-sm-28 {
    padding-bottom: 2.8rem !important;
  }

  .pb-sm-29 {
    padding-bottom: 2.9rem !important;
  }

  .pb-sm-30 {
    padding-bottom: 3rem !important;
  }

  .pb-sm-31 {
    padding-bottom: 3.1rem !important;
  }

  .pb-sm-32 {
    padding-bottom: 3.2rem !important;
  }

  .pb-sm-33 {
    padding-bottom: 3.3rem !important;
  }

  .pb-sm-34 {
    padding-bottom: 3.4rem !important;
  }

  .pb-sm-35 {
    padding-bottom: 3.5rem !important;
  }

  .pb-sm-36 {
    padding-bottom: 3.6rem !important;
  }

  .pb-sm-37 {
    padding-bottom: 3.7rem !important;
  }

  .pb-sm-38 {
    padding-bottom: 3.8rem !important;
  }

  .pb-sm-39 {
    padding-bottom: 3.9rem !important;
  }

  .pb-sm-40 {
    padding-bottom: 4rem !important;
  }

  .pb-sm-41 {
    padding-bottom: 4.1rem !important;
  }

  .pb-sm-42 {
    padding-bottom: 4.2rem !important;
  }

  .pb-sm-43 {
    padding-bottom: 4.3rem !important;
  }

  .pb-sm-44 {
    padding-bottom: 4.4rem !important;
  }

  .pb-sm-45 {
    padding-bottom: 4.5rem !important;
  }

  .pb-sm-46 {
    padding-bottom: 4.6rem !important;
  }

  .pb-sm-47 {
    padding-bottom: 4.7rem !important;
  }

  .pb-sm-48 {
    padding-bottom: 4.8rem !important;
  }

  .pb-sm-49 {
    padding-bottom: 4.9rem !important;
  }

  .pb-sm-50 {
    padding-bottom: 5rem !important;
  }

  .pb-sm-51 {
    padding-bottom: 5.1rem !important;
  }

  .pb-sm-52 {
    padding-bottom: 5.2rem !important;
  }

  .pb-sm-53 {
    padding-bottom: 5.3rem !important;
  }

  .pb-sm-54 {
    padding-bottom: 5.4rem !important;
  }

  .pb-sm-55 {
    padding-bottom: 5.5rem !important;
  }

  .pb-sm-56 {
    padding-bottom: 5.6rem !important;
  }

  .pb-sm-57 {
    padding-bottom: 5.7rem !important;
  }

  .pb-sm-58 {
    padding-bottom: 5.8rem !important;
  }

  .pb-sm-59 {
    padding-bottom: 5.9rem !important;
  }

  .pb-sm-60 {
    padding-bottom: 6rem !important;
  }

  .pb-sm-61 {
    padding-bottom: 6.1rem !important;
  }

  .pb-sm-62 {
    padding-bottom: 6.2rem !important;
  }

  .pb-sm-63 {
    padding-bottom: 6.3rem !important;
  }

  .pb-sm-64 {
    padding-bottom: 6.4rem !important;
  }

  .pb-sm-65 {
    padding-bottom: 6.5rem !important;
  }

  .pb-sm-66 {
    padding-bottom: 6.6rem !important;
  }

  .pb-sm-67 {
    padding-bottom: 6.7rem !important;
  }

  .pb-sm-68 {
    padding-bottom: 6.8rem !important;
  }

  .pb-sm-69 {
    padding-bottom: 6.9rem !important;
  }

  .pb-sm-70 {
    padding-bottom: 7rem !important;
  }

  .pb-sm-71 {
    padding-bottom: 7.1rem !important;
  }

  .pb-sm-72 {
    padding-bottom: 7.2rem !important;
  }

  .pb-sm-73 {
    padding-bottom: 7.3rem !important;
  }

  .pb-sm-74 {
    padding-bottom: 7.4rem !important;
  }

  .pb-sm-75 {
    padding-bottom: 7.5rem !important;
  }

  .pb-sm-76 {
    padding-bottom: 7.6rem !important;
  }

  .pb-sm-77 {
    padding-bottom: 7.7rem !important;
  }

  .pb-sm-78 {
    padding-bottom: 7.8rem !important;
  }

  .pb-sm-79 {
    padding-bottom: 7.9rem !important;
  }

  .pb-sm-80 {
    padding-bottom: 8rem !important;
  }

  .pb-sm-81 {
    padding-bottom: 8.1rem !important;
  }

  .pb-sm-82 {
    padding-bottom: 8.2rem !important;
  }

  .pb-sm-83 {
    padding-bottom: 8.3rem !important;
  }

  .pb-sm-84 {
    padding-bottom: 8.4rem !important;
  }

  .pb-sm-85 {
    padding-bottom: 8.5rem !important;
  }

  .pb-sm-86 {
    padding-bottom: 8.6rem !important;
  }

  .pb-sm-87 {
    padding-bottom: 8.7rem !important;
  }

  .pb-sm-88 {
    padding-bottom: 8.8rem !important;
  }

  .pb-sm-89 {
    padding-bottom: 8.9rem !important;
  }

  .pb-sm-90 {
    padding-bottom: 9rem !important;
  }

  .pb-sm-91 {
    padding-bottom: 9.1rem !important;
  }

  .pb-sm-92 {
    padding-bottom: 9.2rem !important;
  }

  .pb-sm-93 {
    padding-bottom: 9.3rem !important;
  }

  .pb-sm-94 {
    padding-bottom: 9.4rem !important;
  }

  .pb-sm-95 {
    padding-bottom: 9.5rem !important;
  }

  .pb-sm-96 {
    padding-bottom: 9.6rem !important;
  }

  .pb-sm-97 {
    padding-bottom: 9.7rem !important;
  }

  .pb-sm-98 {
    padding-bottom: 9.8rem !important;
  }

  .pb-sm-99 {
    padding-bottom: 9.9rem !important;
  }

  .pb-sm-100 {
    padding-bottom: 10rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .ps-sm-6 {
    padding-left: 0.6rem !important;
  }

  .ps-sm-7 {
    padding-left: 0.7rem !important;
  }

  .ps-sm-8 {
    padding-left: 0.8rem !important;
  }

  .ps-sm-9 {
    padding-left: 0.9rem !important;
  }

  .ps-sm-10 {
    padding-left: 1rem !important;
  }

  .ps-sm-11 {
    padding-left: 1.1rem !important;
  }

  .ps-sm-12 {
    padding-left: 1.2rem !important;
  }

  .ps-sm-13 {
    padding-left: 1.3rem !important;
  }

  .ps-sm-14 {
    padding-left: 1.4rem !important;
  }

  .ps-sm-15 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-16 {
    padding-left: 1.6rem !important;
  }

  .ps-sm-17 {
    padding-left: 1.7rem !important;
  }

  .ps-sm-18 {
    padding-left: 1.8rem !important;
  }

  .ps-sm-19 {
    padding-left: 1.9rem !important;
  }

  .ps-sm-20 {
    padding-left: 2rem !important;
  }

  .ps-sm-21 {
    padding-left: 2.1rem !important;
  }

  .ps-sm-22 {
    padding-left: 2.2rem !important;
  }

  .ps-sm-23 {
    padding-left: 2.3rem !important;
  }

  .ps-sm-24 {
    padding-left: 2.4rem !important;
  }

  .ps-sm-25 {
    padding-left: 2.5rem !important;
  }

  .ps-sm-26 {
    padding-left: 2.6rem !important;
  }

  .ps-sm-27 {
    padding-left: 2.7rem !important;
  }

  .ps-sm-28 {
    padding-left: 2.8rem !important;
  }

  .ps-sm-29 {
    padding-left: 2.9rem !important;
  }

  .ps-sm-30 {
    padding-left: 3rem !important;
  }

  .ps-sm-31 {
    padding-left: 3.1rem !important;
  }

  .ps-sm-32 {
    padding-left: 3.2rem !important;
  }

  .ps-sm-33 {
    padding-left: 3.3rem !important;
  }

  .ps-sm-34 {
    padding-left: 3.4rem !important;
  }

  .ps-sm-35 {
    padding-left: 3.5rem !important;
  }

  .ps-sm-36 {
    padding-left: 3.6rem !important;
  }

  .ps-sm-37 {
    padding-left: 3.7rem !important;
  }

  .ps-sm-38 {
    padding-left: 3.8rem !important;
  }

  .ps-sm-39 {
    padding-left: 3.9rem !important;
  }

  .ps-sm-40 {
    padding-left: 4rem !important;
  }

  .ps-sm-41 {
    padding-left: 4.1rem !important;
  }

  .ps-sm-42 {
    padding-left: 4.2rem !important;
  }

  .ps-sm-43 {
    padding-left: 4.3rem !important;
  }

  .ps-sm-44 {
    padding-left: 4.4rem !important;
  }

  .ps-sm-45 {
    padding-left: 4.5rem !important;
  }

  .ps-sm-46 {
    padding-left: 4.6rem !important;
  }

  .ps-sm-47 {
    padding-left: 4.7rem !important;
  }

  .ps-sm-48 {
    padding-left: 4.8rem !important;
  }

  .ps-sm-49 {
    padding-left: 4.9rem !important;
  }

  .ps-sm-50 {
    padding-left: 5rem !important;
  }

  .ps-sm-51 {
    padding-left: 5.1rem !important;
  }

  .ps-sm-52 {
    padding-left: 5.2rem !important;
  }

  .ps-sm-53 {
    padding-left: 5.3rem !important;
  }

  .ps-sm-54 {
    padding-left: 5.4rem !important;
  }

  .ps-sm-55 {
    padding-left: 5.5rem !important;
  }

  .ps-sm-56 {
    padding-left: 5.6rem !important;
  }

  .ps-sm-57 {
    padding-left: 5.7rem !important;
  }

  .ps-sm-58 {
    padding-left: 5.8rem !important;
  }

  .ps-sm-59 {
    padding-left: 5.9rem !important;
  }

  .ps-sm-60 {
    padding-left: 6rem !important;
  }

  .ps-sm-61 {
    padding-left: 6.1rem !important;
  }

  .ps-sm-62 {
    padding-left: 6.2rem !important;
  }

  .ps-sm-63 {
    padding-left: 6.3rem !important;
  }

  .ps-sm-64 {
    padding-left: 6.4rem !important;
  }

  .ps-sm-65 {
    padding-left: 6.5rem !important;
  }

  .ps-sm-66 {
    padding-left: 6.6rem !important;
  }

  .ps-sm-67 {
    padding-left: 6.7rem !important;
  }

  .ps-sm-68 {
    padding-left: 6.8rem !important;
  }

  .ps-sm-69 {
    padding-left: 6.9rem !important;
  }

  .ps-sm-70 {
    padding-left: 7rem !important;
  }

  .ps-sm-71 {
    padding-left: 7.1rem !important;
  }

  .ps-sm-72 {
    padding-left: 7.2rem !important;
  }

  .ps-sm-73 {
    padding-left: 7.3rem !important;
  }

  .ps-sm-74 {
    padding-left: 7.4rem !important;
  }

  .ps-sm-75 {
    padding-left: 7.5rem !important;
  }

  .ps-sm-76 {
    padding-left: 7.6rem !important;
  }

  .ps-sm-77 {
    padding-left: 7.7rem !important;
  }

  .ps-sm-78 {
    padding-left: 7.8rem !important;
  }

  .ps-sm-79 {
    padding-left: 7.9rem !important;
  }

  .ps-sm-80 {
    padding-left: 8rem !important;
  }

  .ps-sm-81 {
    padding-left: 8.1rem !important;
  }

  .ps-sm-82 {
    padding-left: 8.2rem !important;
  }

  .ps-sm-83 {
    padding-left: 8.3rem !important;
  }

  .ps-sm-84 {
    padding-left: 8.4rem !important;
  }

  .ps-sm-85 {
    padding-left: 8.5rem !important;
  }

  .ps-sm-86 {
    padding-left: 8.6rem !important;
  }

  .ps-sm-87 {
    padding-left: 8.7rem !important;
  }

  .ps-sm-88 {
    padding-left: 8.8rem !important;
  }

  .ps-sm-89 {
    padding-left: 8.9rem !important;
  }

  .ps-sm-90 {
    padding-left: 9rem !important;
  }

  .ps-sm-91 {
    padding-left: 9.1rem !important;
  }

  .ps-sm-92 {
    padding-left: 9.2rem !important;
  }

  .ps-sm-93 {
    padding-left: 9.3rem !important;
  }

  .ps-sm-94 {
    padding-left: 9.4rem !important;
  }

  .ps-sm-95 {
    padding-left: 9.5rem !important;
  }

  .ps-sm-96 {
    padding-left: 9.6rem !important;
  }

  .ps-sm-97 {
    padding-left: 9.7rem !important;
  }

  .ps-sm-98 {
    padding-left: 9.8rem !important;
  }

  .ps-sm-99 {
    padding-left: 9.9rem !important;
  }

  .ps-sm-100 {
    padding-left: 10rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !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;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .gap-md-6 {
    gap: 0.6rem !important;
  }

  .gap-md-7 {
    gap: 0.7rem !important;
  }

  .gap-md-8 {
    gap: 0.8rem !important;
  }

  .gap-md-9 {
    gap: 0.9rem !important;
  }

  .gap-md-10 {
    gap: 1rem !important;
  }

  .gap-md-11 {
    gap: 1.1rem !important;
  }

  .gap-md-12 {
    gap: 1.2rem !important;
  }

  .gap-md-13 {
    gap: 1.3rem !important;
  }

  .gap-md-14 {
    gap: 1.4rem !important;
  }

  .gap-md-15 {
    gap: 1.5rem !important;
  }

  .gap-md-16 {
    gap: 1.6rem !important;
  }

  .gap-md-17 {
    gap: 1.7rem !important;
  }

  .gap-md-18 {
    gap: 1.8rem !important;
  }

  .gap-md-19 {
    gap: 1.9rem !important;
  }

  .gap-md-20 {
    gap: 2rem !important;
  }

  .gap-md-21 {
    gap: 2.1rem !important;
  }

  .gap-md-22 {
    gap: 2.2rem !important;
  }

  .gap-md-23 {
    gap: 2.3rem !important;
  }

  .gap-md-24 {
    gap: 2.4rem !important;
  }

  .gap-md-25 {
    gap: 2.5rem !important;
  }

  .gap-md-26 {
    gap: 2.6rem !important;
  }

  .gap-md-27 {
    gap: 2.7rem !important;
  }

  .gap-md-28 {
    gap: 2.8rem !important;
  }

  .gap-md-29 {
    gap: 2.9rem !important;
  }

  .gap-md-30 {
    gap: 3rem !important;
  }

  .gap-md-31 {
    gap: 3.1rem !important;
  }

  .gap-md-32 {
    gap: 3.2rem !important;
  }

  .gap-md-33 {
    gap: 3.3rem !important;
  }

  .gap-md-34 {
    gap: 3.4rem !important;
  }

  .gap-md-35 {
    gap: 3.5rem !important;
  }

  .gap-md-36 {
    gap: 3.6rem !important;
  }

  .gap-md-37 {
    gap: 3.7rem !important;
  }

  .gap-md-38 {
    gap: 3.8rem !important;
  }

  .gap-md-39 {
    gap: 3.9rem !important;
  }

  .gap-md-40 {
    gap: 4rem !important;
  }

  .gap-md-41 {
    gap: 4.1rem !important;
  }

  .gap-md-42 {
    gap: 4.2rem !important;
  }

  .gap-md-43 {
    gap: 4.3rem !important;
  }

  .gap-md-44 {
    gap: 4.4rem !important;
  }

  .gap-md-45 {
    gap: 4.5rem !important;
  }

  .gap-md-46 {
    gap: 4.6rem !important;
  }

  .gap-md-47 {
    gap: 4.7rem !important;
  }

  .gap-md-48 {
    gap: 4.8rem !important;
  }

  .gap-md-49 {
    gap: 4.9rem !important;
  }

  .gap-md-50 {
    gap: 5rem !important;
  }

  .gap-md-51 {
    gap: 5.1rem !important;
  }

  .gap-md-52 {
    gap: 5.2rem !important;
  }

  .gap-md-53 {
    gap: 5.3rem !important;
  }

  .gap-md-54 {
    gap: 5.4rem !important;
  }

  .gap-md-55 {
    gap: 5.5rem !important;
  }

  .gap-md-56 {
    gap: 5.6rem !important;
  }

  .gap-md-57 {
    gap: 5.7rem !important;
  }

  .gap-md-58 {
    gap: 5.8rem !important;
  }

  .gap-md-59 {
    gap: 5.9rem !important;
  }

  .gap-md-60 {
    gap: 6rem !important;
  }

  .gap-md-61 {
    gap: 6.1rem !important;
  }

  .gap-md-62 {
    gap: 6.2rem !important;
  }

  .gap-md-63 {
    gap: 6.3rem !important;
  }

  .gap-md-64 {
    gap: 6.4rem !important;
  }

  .gap-md-65 {
    gap: 6.5rem !important;
  }

  .gap-md-66 {
    gap: 6.6rem !important;
  }

  .gap-md-67 {
    gap: 6.7rem !important;
  }

  .gap-md-68 {
    gap: 6.8rem !important;
  }

  .gap-md-69 {
    gap: 6.9rem !important;
  }

  .gap-md-70 {
    gap: 7rem !important;
  }

  .gap-md-71 {
    gap: 7.1rem !important;
  }

  .gap-md-72 {
    gap: 7.2rem !important;
  }

  .gap-md-73 {
    gap: 7.3rem !important;
  }

  .gap-md-74 {
    gap: 7.4rem !important;
  }

  .gap-md-75 {
    gap: 7.5rem !important;
  }

  .gap-md-76 {
    gap: 7.6rem !important;
  }

  .gap-md-77 {
    gap: 7.7rem !important;
  }

  .gap-md-78 {
    gap: 7.8rem !important;
  }

  .gap-md-79 {
    gap: 7.9rem !important;
  }

  .gap-md-80 {
    gap: 8rem !important;
  }

  .gap-md-81 {
    gap: 8.1rem !important;
  }

  .gap-md-82 {
    gap: 8.2rem !important;
  }

  .gap-md-83 {
    gap: 8.3rem !important;
  }

  .gap-md-84 {
    gap: 8.4rem !important;
  }

  .gap-md-85 {
    gap: 8.5rem !important;
  }

  .gap-md-86 {
    gap: 8.6rem !important;
  }

  .gap-md-87 {
    gap: 8.7rem !important;
  }

  .gap-md-88 {
    gap: 8.8rem !important;
  }

  .gap-md-89 {
    gap: 8.9rem !important;
  }

  .gap-md-90 {
    gap: 9rem !important;
  }

  .gap-md-91 {
    gap: 9.1rem !important;
  }

  .gap-md-92 {
    gap: 9.2rem !important;
  }

  .gap-md-93 {
    gap: 9.3rem !important;
  }

  .gap-md-94 {
    gap: 9.4rem !important;
  }

  .gap-md-95 {
    gap: 9.5rem !important;
  }

  .gap-md-96 {
    gap: 9.6rem !important;
  }

  .gap-md-97 {
    gap: 9.7rem !important;
  }

  .gap-md-98 {
    gap: 9.8rem !important;
  }

  .gap-md-99 {
    gap: 9.9rem !important;
  }

  .gap-md-100 {
    gap: 10rem !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !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-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .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;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-6 {
    margin: 0.6rem !important;
  }

  .m-md-7 {
    margin: 0.7rem !important;
  }

  .m-md-8 {
    margin: 0.8rem !important;
  }

  .m-md-9 {
    margin: 0.9rem !important;
  }

  .m-md-10 {
    margin: 1rem !important;
  }

  .m-md-11 {
    margin: 1.1rem !important;
  }

  .m-md-12 {
    margin: 1.2rem !important;
  }

  .m-md-13 {
    margin: 1.3rem !important;
  }

  .m-md-14 {
    margin: 1.4rem !important;
  }

  .m-md-15 {
    margin: 1.5rem !important;
  }

  .m-md-16 {
    margin: 1.6rem !important;
  }

  .m-md-17 {
    margin: 1.7rem !important;
  }

  .m-md-18 {
    margin: 1.8rem !important;
  }

  .m-md-19 {
    margin: 1.9rem !important;
  }

  .m-md-20 {
    margin: 2rem !important;
  }

  .m-md-21 {
    margin: 2.1rem !important;
  }

  .m-md-22 {
    margin: 2.2rem !important;
  }

  .m-md-23 {
    margin: 2.3rem !important;
  }

  .m-md-24 {
    margin: 2.4rem !important;
  }

  .m-md-25 {
    margin: 2.5rem !important;
  }

  .m-md-26 {
    margin: 2.6rem !important;
  }

  .m-md-27 {
    margin: 2.7rem !important;
  }

  .m-md-28 {
    margin: 2.8rem !important;
  }

  .m-md-29 {
    margin: 2.9rem !important;
  }

  .m-md-30 {
    margin: 3rem !important;
  }

  .m-md-31 {
    margin: 3.1rem !important;
  }

  .m-md-32 {
    margin: 3.2rem !important;
  }

  .m-md-33 {
    margin: 3.3rem !important;
  }

  .m-md-34 {
    margin: 3.4rem !important;
  }

  .m-md-35 {
    margin: 3.5rem !important;
  }

  .m-md-36 {
    margin: 3.6rem !important;
  }

  .m-md-37 {
    margin: 3.7rem !important;
  }

  .m-md-38 {
    margin: 3.8rem !important;
  }

  .m-md-39 {
    margin: 3.9rem !important;
  }

  .m-md-40 {
    margin: 4rem !important;
  }

  .m-md-41 {
    margin: 4.1rem !important;
  }

  .m-md-42 {
    margin: 4.2rem !important;
  }

  .m-md-43 {
    margin: 4.3rem !important;
  }

  .m-md-44 {
    margin: 4.4rem !important;
  }

  .m-md-45 {
    margin: 4.5rem !important;
  }

  .m-md-46 {
    margin: 4.6rem !important;
  }

  .m-md-47 {
    margin: 4.7rem !important;
  }

  .m-md-48 {
    margin: 4.8rem !important;
  }

  .m-md-49 {
    margin: 4.9rem !important;
  }

  .m-md-50 {
    margin: 5rem !important;
  }

  .m-md-51 {
    margin: 5.1rem !important;
  }

  .m-md-52 {
    margin: 5.2rem !important;
  }

  .m-md-53 {
    margin: 5.3rem !important;
  }

  .m-md-54 {
    margin: 5.4rem !important;
  }

  .m-md-55 {
    margin: 5.5rem !important;
  }

  .m-md-56 {
    margin: 5.6rem !important;
  }

  .m-md-57 {
    margin: 5.7rem !important;
  }

  .m-md-58 {
    margin: 5.8rem !important;
  }

  .m-md-59 {
    margin: 5.9rem !important;
  }

  .m-md-60 {
    margin: 6rem !important;
  }

  .m-md-61 {
    margin: 6.1rem !important;
  }

  .m-md-62 {
    margin: 6.2rem !important;
  }

  .m-md-63 {
    margin: 6.3rem !important;
  }

  .m-md-64 {
    margin: 6.4rem !important;
  }

  .m-md-65 {
    margin: 6.5rem !important;
  }

  .m-md-66 {
    margin: 6.6rem !important;
  }

  .m-md-67 {
    margin: 6.7rem !important;
  }

  .m-md-68 {
    margin: 6.8rem !important;
  }

  .m-md-69 {
    margin: 6.9rem !important;
  }

  .m-md-70 {
    margin: 7rem !important;
  }

  .m-md-71 {
    margin: 7.1rem !important;
  }

  .m-md-72 {
    margin: 7.2rem !important;
  }

  .m-md-73 {
    margin: 7.3rem !important;
  }

  .m-md-74 {
    margin: 7.4rem !important;
  }

  .m-md-75 {
    margin: 7.5rem !important;
  }

  .m-md-76 {
    margin: 7.6rem !important;
  }

  .m-md-77 {
    margin: 7.7rem !important;
  }

  .m-md-78 {
    margin: 7.8rem !important;
  }

  .m-md-79 {
    margin: 7.9rem !important;
  }

  .m-md-80 {
    margin: 8rem !important;
  }

  .m-md-81 {
    margin: 8.1rem !important;
  }

  .m-md-82 {
    margin: 8.2rem !important;
  }

  .m-md-83 {
    margin: 8.3rem !important;
  }

  .m-md-84 {
    margin: 8.4rem !important;
  }

  .m-md-85 {
    margin: 8.5rem !important;
  }

  .m-md-86 {
    margin: 8.6rem !important;
  }

  .m-md-87 {
    margin: 8.7rem !important;
  }

  .m-md-88 {
    margin: 8.8rem !important;
  }

  .m-md-89 {
    margin: 8.9rem !important;
  }

  .m-md-90 {
    margin: 9rem !important;
  }

  .m-md-91 {
    margin: 9.1rem !important;
  }

  .m-md-92 {
    margin: 9.2rem !important;
  }

  .m-md-93 {
    margin: 9.3rem !important;
  }

  .m-md-94 {
    margin: 9.4rem !important;
  }

  .m-md-95 {
    margin: 9.5rem !important;
  }

  .m-md-96 {
    margin: 9.6rem !important;
  }

  .m-md-97 {
    margin: 9.7rem !important;
  }

  .m-md-98 {
    margin: 9.8rem !important;
  }

  .m-md-99 {
    margin: 9.9rem !important;
  }

  .m-md-100 {
    margin: 10rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-6 {
    margin-right: 0.6rem !important;
    margin-left: 0.6rem !important;
  }

  .mx-md-7 {
    margin-right: 0.7rem !important;
    margin-left: 0.7rem !important;
  }

  .mx-md-8 {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }

  .mx-md-9 {
    margin-right: 0.9rem !important;
    margin-left: 0.9rem !important;
  }

  .mx-md-10 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-11 {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
  }

  .mx-md-12 {
    margin-right: 1.2rem !important;
    margin-left: 1.2rem !important;
  }

  .mx-md-13 {
    margin-right: 1.3rem !important;
    margin-left: 1.3rem !important;
  }

  .mx-md-14 {
    margin-right: 1.4rem !important;
    margin-left: 1.4rem !important;
  }

  .mx-md-15 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-16 {
    margin-right: 1.6rem !important;
    margin-left: 1.6rem !important;
  }

  .mx-md-17 {
    margin-right: 1.7rem !important;
    margin-left: 1.7rem !important;
  }

  .mx-md-18 {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }

  .mx-md-19 {
    margin-right: 1.9rem !important;
    margin-left: 1.9rem !important;
  }

  .mx-md-20 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-md-21 {
    margin-right: 2.1rem !important;
    margin-left: 2.1rem !important;
  }

  .mx-md-22 {
    margin-right: 2.2rem !important;
    margin-left: 2.2rem !important;
  }

  .mx-md-23 {
    margin-right: 2.3rem !important;
    margin-left: 2.3rem !important;
  }

  .mx-md-24 {
    margin-right: 2.4rem !important;
    margin-left: 2.4rem !important;
  }

  .mx-md-25 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-md-26 {
    margin-right: 2.6rem !important;
    margin-left: 2.6rem !important;
  }

  .mx-md-27 {
    margin-right: 2.7rem !important;
    margin-left: 2.7rem !important;
  }

  .mx-md-28 {
    margin-right: 2.8rem !important;
    margin-left: 2.8rem !important;
  }

  .mx-md-29 {
    margin-right: 2.9rem !important;
    margin-left: 2.9rem !important;
  }

  .mx-md-30 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-31 {
    margin-right: 3.1rem !important;
    margin-left: 3.1rem !important;
  }

  .mx-md-32 {
    margin-right: 3.2rem !important;
    margin-left: 3.2rem !important;
  }

  .mx-md-33 {
    margin-right: 3.3rem !important;
    margin-left: 3.3rem !important;
  }

  .mx-md-34 {
    margin-right: 3.4rem !important;
    margin-left: 3.4rem !important;
  }

  .mx-md-35 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-md-36 {
    margin-right: 3.6rem !important;
    margin-left: 3.6rem !important;
  }

  .mx-md-37 {
    margin-right: 3.7rem !important;
    margin-left: 3.7rem !important;
  }

  .mx-md-38 {
    margin-right: 3.8rem !important;
    margin-left: 3.8rem !important;
  }

  .mx-md-39 {
    margin-right: 3.9rem !important;
    margin-left: 3.9rem !important;
  }

  .mx-md-40 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-md-41 {
    margin-right: 4.1rem !important;
    margin-left: 4.1rem !important;
  }

  .mx-md-42 {
    margin-right: 4.2rem !important;
    margin-left: 4.2rem !important;
  }

  .mx-md-43 {
    margin-right: 4.3rem !important;
    margin-left: 4.3rem !important;
  }

  .mx-md-44 {
    margin-right: 4.4rem !important;
    margin-left: 4.4rem !important;
  }

  .mx-md-45 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-md-46 {
    margin-right: 4.6rem !important;
    margin-left: 4.6rem !important;
  }

  .mx-md-47 {
    margin-right: 4.7rem !important;
    margin-left: 4.7rem !important;
  }

  .mx-md-48 {
    margin-right: 4.8rem !important;
    margin-left: 4.8rem !important;
  }

  .mx-md-49 {
    margin-right: 4.9rem !important;
    margin-left: 4.9rem !important;
  }

  .mx-md-50 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-md-51 {
    margin-right: 5.1rem !important;
    margin-left: 5.1rem !important;
  }

  .mx-md-52 {
    margin-right: 5.2rem !important;
    margin-left: 5.2rem !important;
  }

  .mx-md-53 {
    margin-right: 5.3rem !important;
    margin-left: 5.3rem !important;
  }

  .mx-md-54 {
    margin-right: 5.4rem !important;
    margin-left: 5.4rem !important;
  }

  .mx-md-55 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }

  .mx-md-56 {
    margin-right: 5.6rem !important;
    margin-left: 5.6rem !important;
  }

  .mx-md-57 {
    margin-right: 5.7rem !important;
    margin-left: 5.7rem !important;
  }

  .mx-md-58 {
    margin-right: 5.8rem !important;
    margin-left: 5.8rem !important;
  }

  .mx-md-59 {
    margin-right: 5.9rem !important;
    margin-left: 5.9rem !important;
  }

  .mx-md-60 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-md-61 {
    margin-right: 6.1rem !important;
    margin-left: 6.1rem !important;
  }

  .mx-md-62 {
    margin-right: 6.2rem !important;
    margin-left: 6.2rem !important;
  }

  .mx-md-63 {
    margin-right: 6.3rem !important;
    margin-left: 6.3rem !important;
  }

  .mx-md-64 {
    margin-right: 6.4rem !important;
    margin-left: 6.4rem !important;
  }

  .mx-md-65 {
    margin-right: 6.5rem !important;
    margin-left: 6.5rem !important;
  }

  .mx-md-66 {
    margin-right: 6.6rem !important;
    margin-left: 6.6rem !important;
  }

  .mx-md-67 {
    margin-right: 6.7rem !important;
    margin-left: 6.7rem !important;
  }

  .mx-md-68 {
    margin-right: 6.8rem !important;
    margin-left: 6.8rem !important;
  }

  .mx-md-69 {
    margin-right: 6.9rem !important;
    margin-left: 6.9rem !important;
  }

  .mx-md-70 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }

  .mx-md-71 {
    margin-right: 7.1rem !important;
    margin-left: 7.1rem !important;
  }

  .mx-md-72 {
    margin-right: 7.2rem !important;
    margin-left: 7.2rem !important;
  }

  .mx-md-73 {
    margin-right: 7.3rem !important;
    margin-left: 7.3rem !important;
  }

  .mx-md-74 {
    margin-right: 7.4rem !important;
    margin-left: 7.4rem !important;
  }

  .mx-md-75 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-md-76 {
    margin-right: 7.6rem !important;
    margin-left: 7.6rem !important;
  }

  .mx-md-77 {
    margin-right: 7.7rem !important;
    margin-left: 7.7rem !important;
  }

  .mx-md-78 {
    margin-right: 7.8rem !important;
    margin-left: 7.8rem !important;
  }

  .mx-md-79 {
    margin-right: 7.9rem !important;
    margin-left: 7.9rem !important;
  }

  .mx-md-80 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-md-81 {
    margin-right: 8.1rem !important;
    margin-left: 8.1rem !important;
  }

  .mx-md-82 {
    margin-right: 8.2rem !important;
    margin-left: 8.2rem !important;
  }

  .mx-md-83 {
    margin-right: 8.3rem !important;
    margin-left: 8.3rem !important;
  }

  .mx-md-84 {
    margin-right: 8.4rem !important;
    margin-left: 8.4rem !important;
  }

  .mx-md-85 {
    margin-right: 8.5rem !important;
    margin-left: 8.5rem !important;
  }

  .mx-md-86 {
    margin-right: 8.6rem !important;
    margin-left: 8.6rem !important;
  }

  .mx-md-87 {
    margin-right: 8.7rem !important;
    margin-left: 8.7rem !important;
  }

  .mx-md-88 {
    margin-right: 8.8rem !important;
    margin-left: 8.8rem !important;
  }

  .mx-md-89 {
    margin-right: 8.9rem !important;
    margin-left: 8.9rem !important;
  }

  .mx-md-90 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }

  .mx-md-91 {
    margin-right: 9.1rem !important;
    margin-left: 9.1rem !important;
  }

  .mx-md-92 {
    margin-right: 9.2rem !important;
    margin-left: 9.2rem !important;
  }

  .mx-md-93 {
    margin-right: 9.3rem !important;
    margin-left: 9.3rem !important;
  }

  .mx-md-94 {
    margin-right: 9.4rem !important;
    margin-left: 9.4rem !important;
  }

  .mx-md-95 {
    margin-right: 9.5rem !important;
    margin-left: 9.5rem !important;
  }

  .mx-md-96 {
    margin-right: 9.6rem !important;
    margin-left: 9.6rem !important;
  }

  .mx-md-97 {
    margin-right: 9.7rem !important;
    margin-left: 9.7rem !important;
  }

  .mx-md-98 {
    margin-right: 9.8rem !important;
    margin-left: 9.8rem !important;
  }

  .mx-md-99 {
    margin-right: 9.9rem !important;
    margin-left: 9.9rem !important;
  }

  .mx-md-100 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-6 {
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .my-md-7 {
    margin-top: 0.7rem !important;
    margin-bottom: 0.7rem !important;
  }

  .my-md-8 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  .my-md-9 {
    margin-top: 0.9rem !important;
    margin-bottom: 0.9rem !important;
  }

  .my-md-10 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-11 {
    margin-top: 1.1rem !important;
    margin-bottom: 1.1rem !important;
  }

  .my-md-12 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }

  .my-md-13 {
    margin-top: 1.3rem !important;
    margin-bottom: 1.3rem !important;
  }

  .my-md-14 {
    margin-top: 1.4rem !important;
    margin-bottom: 1.4rem !important;
  }

  .my-md-15 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-16 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }

  .my-md-17 {
    margin-top: 1.7rem !important;
    margin-bottom: 1.7rem !important;
  }

  .my-md-18 {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }

  .my-md-19 {
    margin-top: 1.9rem !important;
    margin-bottom: 1.9rem !important;
  }

  .my-md-20 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-md-21 {
    margin-top: 2.1rem !important;
    margin-bottom: 2.1rem !important;
  }

  .my-md-22 {
    margin-top: 2.2rem !important;
    margin-bottom: 2.2rem !important;
  }

  .my-md-23 {
    margin-top: 2.3rem !important;
    margin-bottom: 2.3rem !important;
  }

  .my-md-24 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }

  .my-md-25 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-md-26 {
    margin-top: 2.6rem !important;
    margin-bottom: 2.6rem !important;
  }

  .my-md-27 {
    margin-top: 2.7rem !important;
    margin-bottom: 2.7rem !important;
  }

  .my-md-28 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }

  .my-md-29 {
    margin-top: 2.9rem !important;
    margin-bottom: 2.9rem !important;
  }

  .my-md-30 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-31 {
    margin-top: 3.1rem !important;
    margin-bottom: 3.1rem !important;
  }

  .my-md-32 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }

  .my-md-33 {
    margin-top: 3.3rem !important;
    margin-bottom: 3.3rem !important;
  }

  .my-md-34 {
    margin-top: 3.4rem !important;
    margin-bottom: 3.4rem !important;
  }

  .my-md-35 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-md-36 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }

  .my-md-37 {
    margin-top: 3.7rem !important;
    margin-bottom: 3.7rem !important;
  }

  .my-md-38 {
    margin-top: 3.8rem !important;
    margin-bottom: 3.8rem !important;
  }

  .my-md-39 {
    margin-top: 3.9rem !important;
    margin-bottom: 3.9rem !important;
  }

  .my-md-40 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-md-41 {
    margin-top: 4.1rem !important;
    margin-bottom: 4.1rem !important;
  }

  .my-md-42 {
    margin-top: 4.2rem !important;
    margin-bottom: 4.2rem !important;
  }

  .my-md-43 {
    margin-top: 4.3rem !important;
    margin-bottom: 4.3rem !important;
  }

  .my-md-44 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }

  .my-md-45 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-md-46 {
    margin-top: 4.6rem !important;
    margin-bottom: 4.6rem !important;
  }

  .my-md-47 {
    margin-top: 4.7rem !important;
    margin-bottom: 4.7rem !important;
  }

  .my-md-48 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }

  .my-md-49 {
    margin-top: 4.9rem !important;
    margin-bottom: 4.9rem !important;
  }

  .my-md-50 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-md-51 {
    margin-top: 5.1rem !important;
    margin-bottom: 5.1rem !important;
  }

  .my-md-52 {
    margin-top: 5.2rem !important;
    margin-bottom: 5.2rem !important;
  }

  .my-md-53 {
    margin-top: 5.3rem !important;
    margin-bottom: 5.3rem !important;
  }

  .my-md-54 {
    margin-top: 5.4rem !important;
    margin-bottom: 5.4rem !important;
  }

  .my-md-55 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .my-md-56 {
    margin-top: 5.6rem !important;
    margin-bottom: 5.6rem !important;
  }

  .my-md-57 {
    margin-top: 5.7rem !important;
    margin-bottom: 5.7rem !important;
  }

  .my-md-58 {
    margin-top: 5.8rem !important;
    margin-bottom: 5.8rem !important;
  }

  .my-md-59 {
    margin-top: 5.9rem !important;
    margin-bottom: 5.9rem !important;
  }

  .my-md-60 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-md-61 {
    margin-top: 6.1rem !important;
    margin-bottom: 6.1rem !important;
  }

  .my-md-62 {
    margin-top: 6.2rem !important;
    margin-bottom: 6.2rem !important;
  }

  .my-md-63 {
    margin-top: 6.3rem !important;
    margin-bottom: 6.3rem !important;
  }

  .my-md-64 {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }

  .my-md-65 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .my-md-66 {
    margin-top: 6.6rem !important;
    margin-bottom: 6.6rem !important;
  }

  .my-md-67 {
    margin-top: 6.7rem !important;
    margin-bottom: 6.7rem !important;
  }

  .my-md-68 {
    margin-top: 6.8rem !important;
    margin-bottom: 6.8rem !important;
  }

  .my-md-69 {
    margin-top: 6.9rem !important;
    margin-bottom: 6.9rem !important;
  }

  .my-md-70 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .my-md-71 {
    margin-top: 7.1rem !important;
    margin-bottom: 7.1rem !important;
  }

  .my-md-72 {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important;
  }

  .my-md-73 {
    margin-top: 7.3rem !important;
    margin-bottom: 7.3rem !important;
  }

  .my-md-74 {
    margin-top: 7.4rem !important;
    margin-bottom: 7.4rem !important;
  }

  .my-md-75 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-md-76 {
    margin-top: 7.6rem !important;
    margin-bottom: 7.6rem !important;
  }

  .my-md-77 {
    margin-top: 7.7rem !important;
    margin-bottom: 7.7rem !important;
  }

  .my-md-78 {
    margin-top: 7.8rem !important;
    margin-bottom: 7.8rem !important;
  }

  .my-md-79 {
    margin-top: 7.9rem !important;
    margin-bottom: 7.9rem !important;
  }

  .my-md-80 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-md-81 {
    margin-top: 8.1rem !important;
    margin-bottom: 8.1rem !important;
  }

  .my-md-82 {
    margin-top: 8.2rem !important;
    margin-bottom: 8.2rem !important;
  }

  .my-md-83 {
    margin-top: 8.3rem !important;
    margin-bottom: 8.3rem !important;
  }

  .my-md-84 {
    margin-top: 8.4rem !important;
    margin-bottom: 8.4rem !important;
  }

  .my-md-85 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }

  .my-md-86 {
    margin-top: 8.6rem !important;
    margin-bottom: 8.6rem !important;
  }

  .my-md-87 {
    margin-top: 8.7rem !important;
    margin-bottom: 8.7rem !important;
  }

  .my-md-88 {
    margin-top: 8.8rem !important;
    margin-bottom: 8.8rem !important;
  }

  .my-md-89 {
    margin-top: 8.9rem !important;
    margin-bottom: 8.9rem !important;
  }

  .my-md-90 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .my-md-91 {
    margin-top: 9.1rem !important;
    margin-bottom: 9.1rem !important;
  }

  .my-md-92 {
    margin-top: 9.2rem !important;
    margin-bottom: 9.2rem !important;
  }

  .my-md-93 {
    margin-top: 9.3rem !important;
    margin-bottom: 9.3rem !important;
  }

  .my-md-94 {
    margin-top: 9.4rem !important;
    margin-bottom: 9.4rem !important;
  }

  .my-md-95 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }

  .my-md-96 {
    margin-top: 9.6rem !important;
    margin-bottom: 9.6rem !important;
  }

  .my-md-97 {
    margin-top: 9.7rem !important;
    margin-bottom: 9.7rem !important;
  }

  .my-md-98 {
    margin-top: 9.8rem !important;
    margin-bottom: 9.8rem !important;
  }

  .my-md-99 {
    margin-top: 9.9rem !important;
    margin-bottom: 9.9rem !important;
  }

  .my-md-100 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-6 {
    margin-top: 0.6rem !important;
  }

  .mt-md-7 {
    margin-top: 0.7rem !important;
  }

  .mt-md-8 {
    margin-top: 0.8rem !important;
  }

  .mt-md-9 {
    margin-top: 0.9rem !important;
  }

  .mt-md-10 {
    margin-top: 1rem !important;
  }

  .mt-md-11 {
    margin-top: 1.1rem !important;
  }

  .mt-md-12 {
    margin-top: 1.2rem !important;
  }

  .mt-md-13 {
    margin-top: 1.3rem !important;
  }

  .mt-md-14 {
    margin-top: 1.4rem !important;
  }

  .mt-md-15 {
    margin-top: 1.5rem !important;
  }

  .mt-md-16 {
    margin-top: 1.6rem !important;
  }

  .mt-md-17 {
    margin-top: 1.7rem !important;
  }

  .mt-md-18 {
    margin-top: 1.8rem !important;
  }

  .mt-md-19 {
    margin-top: 1.9rem !important;
  }

  .mt-md-20 {
    margin-top: 2rem !important;
  }

  .mt-md-21 {
    margin-top: 2.1rem !important;
  }

  .mt-md-22 {
    margin-top: 2.2rem !important;
  }

  .mt-md-23 {
    margin-top: 2.3rem !important;
  }

  .mt-md-24 {
    margin-top: 2.4rem !important;
  }

  .mt-md-25 {
    margin-top: 2.5rem !important;
  }

  .mt-md-26 {
    margin-top: 2.6rem !important;
  }

  .mt-md-27 {
    margin-top: 2.7rem !important;
  }

  .mt-md-28 {
    margin-top: 2.8rem !important;
  }

  .mt-md-29 {
    margin-top: 2.9rem !important;
  }

  .mt-md-30 {
    margin-top: 3rem !important;
  }

  .mt-md-31 {
    margin-top: 3.1rem !important;
  }

  .mt-md-32 {
    margin-top: 3.2rem !important;
  }

  .mt-md-33 {
    margin-top: 3.3rem !important;
  }

  .mt-md-34 {
    margin-top: 3.4rem !important;
  }

  .mt-md-35 {
    margin-top: 3.5rem !important;
  }

  .mt-md-36 {
    margin-top: 3.6rem !important;
  }

  .mt-md-37 {
    margin-top: 3.7rem !important;
  }

  .mt-md-38 {
    margin-top: 3.8rem !important;
  }

  .mt-md-39 {
    margin-top: 3.9rem !important;
  }

  .mt-md-40 {
    margin-top: 4rem !important;
  }

  .mt-md-41 {
    margin-top: 4.1rem !important;
  }

  .mt-md-42 {
    margin-top: 4.2rem !important;
  }

  .mt-md-43 {
    margin-top: 4.3rem !important;
  }

  .mt-md-44 {
    margin-top: 4.4rem !important;
  }

  .mt-md-45 {
    margin-top: 4.5rem !important;
  }

  .mt-md-46 {
    margin-top: 4.6rem !important;
  }

  .mt-md-47 {
    margin-top: 4.7rem !important;
  }

  .mt-md-48 {
    margin-top: 4.8rem !important;
  }

  .mt-md-49 {
    margin-top: 4.9rem !important;
  }

  .mt-md-50 {
    margin-top: 5rem !important;
  }

  .mt-md-51 {
    margin-top: 5.1rem !important;
  }

  .mt-md-52 {
    margin-top: 5.2rem !important;
  }

  .mt-md-53 {
    margin-top: 5.3rem !important;
  }

  .mt-md-54 {
    margin-top: 5.4rem !important;
  }

  .mt-md-55 {
    margin-top: 5.5rem !important;
  }

  .mt-md-56 {
    margin-top: 5.6rem !important;
  }

  .mt-md-57 {
    margin-top: 5.7rem !important;
  }

  .mt-md-58 {
    margin-top: 5.8rem !important;
  }

  .mt-md-59 {
    margin-top: 5.9rem !important;
  }

  .mt-md-60 {
    margin-top: 6rem !important;
  }

  .mt-md-61 {
    margin-top: 6.1rem !important;
  }

  .mt-md-62 {
    margin-top: 6.2rem !important;
  }

  .mt-md-63 {
    margin-top: 6.3rem !important;
  }

  .mt-md-64 {
    margin-top: 6.4rem !important;
  }

  .mt-md-65 {
    margin-top: 6.5rem !important;
  }

  .mt-md-66 {
    margin-top: 6.6rem !important;
  }

  .mt-md-67 {
    margin-top: 6.7rem !important;
  }

  .mt-md-68 {
    margin-top: 6.8rem !important;
  }

  .mt-md-69 {
    margin-top: 6.9rem !important;
  }

  .mt-md-70 {
    margin-top: 7rem !important;
  }

  .mt-md-71 {
    margin-top: 7.1rem !important;
  }

  .mt-md-72 {
    margin-top: 7.2rem !important;
  }

  .mt-md-73 {
    margin-top: 7.3rem !important;
  }

  .mt-md-74 {
    margin-top: 7.4rem !important;
  }

  .mt-md-75 {
    margin-top: 7.5rem !important;
  }

  .mt-md-76 {
    margin-top: 7.6rem !important;
  }

  .mt-md-77 {
    margin-top: 7.7rem !important;
  }

  .mt-md-78 {
    margin-top: 7.8rem !important;
  }

  .mt-md-79 {
    margin-top: 7.9rem !important;
  }

  .mt-md-80 {
    margin-top: 8rem !important;
  }

  .mt-md-81 {
    margin-top: 8.1rem !important;
  }

  .mt-md-82 {
    margin-top: 8.2rem !important;
  }

  .mt-md-83 {
    margin-top: 8.3rem !important;
  }

  .mt-md-84 {
    margin-top: 8.4rem !important;
  }

  .mt-md-85 {
    margin-top: 8.5rem !important;
  }

  .mt-md-86 {
    margin-top: 8.6rem !important;
  }

  .mt-md-87 {
    margin-top: 8.7rem !important;
  }

  .mt-md-88 {
    margin-top: 8.8rem !important;
  }

  .mt-md-89 {
    margin-top: 8.9rem !important;
  }

  .mt-md-90 {
    margin-top: 9rem !important;
  }

  .mt-md-91 {
    margin-top: 9.1rem !important;
  }

  .mt-md-92 {
    margin-top: 9.2rem !important;
  }

  .mt-md-93 {
    margin-top: 9.3rem !important;
  }

  .mt-md-94 {
    margin-top: 9.4rem !important;
  }

  .mt-md-95 {
    margin-top: 9.5rem !important;
  }

  .mt-md-96 {
    margin-top: 9.6rem !important;
  }

  .mt-md-97 {
    margin-top: 9.7rem !important;
  }

  .mt-md-98 {
    margin-top: 9.8rem !important;
  }

  .mt-md-99 {
    margin-top: 9.9rem !important;
  }

  .mt-md-100 {
    margin-top: 10rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-6 {
    margin-right: 0.6rem !important;
  }

  .me-md-7 {
    margin-right: 0.7rem !important;
  }

  .me-md-8 {
    margin-right: 0.8rem !important;
  }

  .me-md-9 {
    margin-right: 0.9rem !important;
  }

  .me-md-10 {
    margin-right: 1rem !important;
  }

  .me-md-11 {
    margin-right: 1.1rem !important;
  }

  .me-md-12 {
    margin-right: 1.2rem !important;
  }

  .me-md-13 {
    margin-right: 1.3rem !important;
  }

  .me-md-14 {
    margin-right: 1.4rem !important;
  }

  .me-md-15 {
    margin-right: 1.5rem !important;
  }

  .me-md-16 {
    margin-right: 1.6rem !important;
  }

  .me-md-17 {
    margin-right: 1.7rem !important;
  }

  .me-md-18 {
    margin-right: 1.8rem !important;
  }

  .me-md-19 {
    margin-right: 1.9rem !important;
  }

  .me-md-20 {
    margin-right: 2rem !important;
  }

  .me-md-21 {
    margin-right: 2.1rem !important;
  }

  .me-md-22 {
    margin-right: 2.2rem !important;
  }

  .me-md-23 {
    margin-right: 2.3rem !important;
  }

  .me-md-24 {
    margin-right: 2.4rem !important;
  }

  .me-md-25 {
    margin-right: 2.5rem !important;
  }

  .me-md-26 {
    margin-right: 2.6rem !important;
  }

  .me-md-27 {
    margin-right: 2.7rem !important;
  }

  .me-md-28 {
    margin-right: 2.8rem !important;
  }

  .me-md-29 {
    margin-right: 2.9rem !important;
  }

  .me-md-30 {
    margin-right: 3rem !important;
  }

  .me-md-31 {
    margin-right: 3.1rem !important;
  }

  .me-md-32 {
    margin-right: 3.2rem !important;
  }

  .me-md-33 {
    margin-right: 3.3rem !important;
  }

  .me-md-34 {
    margin-right: 3.4rem !important;
  }

  .me-md-35 {
    margin-right: 3.5rem !important;
  }

  .me-md-36 {
    margin-right: 3.6rem !important;
  }

  .me-md-37 {
    margin-right: 3.7rem !important;
  }

  .me-md-38 {
    margin-right: 3.8rem !important;
  }

  .me-md-39 {
    margin-right: 3.9rem !important;
  }

  .me-md-40 {
    margin-right: 4rem !important;
  }

  .me-md-41 {
    margin-right: 4.1rem !important;
  }

  .me-md-42 {
    margin-right: 4.2rem !important;
  }

  .me-md-43 {
    margin-right: 4.3rem !important;
  }

  .me-md-44 {
    margin-right: 4.4rem !important;
  }

  .me-md-45 {
    margin-right: 4.5rem !important;
  }

  .me-md-46 {
    margin-right: 4.6rem !important;
  }

  .me-md-47 {
    margin-right: 4.7rem !important;
  }

  .me-md-48 {
    margin-right: 4.8rem !important;
  }

  .me-md-49 {
    margin-right: 4.9rem !important;
  }

  .me-md-50 {
    margin-right: 5rem !important;
  }

  .me-md-51 {
    margin-right: 5.1rem !important;
  }

  .me-md-52 {
    margin-right: 5.2rem !important;
  }

  .me-md-53 {
    margin-right: 5.3rem !important;
  }

  .me-md-54 {
    margin-right: 5.4rem !important;
  }

  .me-md-55 {
    margin-right: 5.5rem !important;
  }

  .me-md-56 {
    margin-right: 5.6rem !important;
  }

  .me-md-57 {
    margin-right: 5.7rem !important;
  }

  .me-md-58 {
    margin-right: 5.8rem !important;
  }

  .me-md-59 {
    margin-right: 5.9rem !important;
  }

  .me-md-60 {
    margin-right: 6rem !important;
  }

  .me-md-61 {
    margin-right: 6.1rem !important;
  }

  .me-md-62 {
    margin-right: 6.2rem !important;
  }

  .me-md-63 {
    margin-right: 6.3rem !important;
  }

  .me-md-64 {
    margin-right: 6.4rem !important;
  }

  .me-md-65 {
    margin-right: 6.5rem !important;
  }

  .me-md-66 {
    margin-right: 6.6rem !important;
  }

  .me-md-67 {
    margin-right: 6.7rem !important;
  }

  .me-md-68 {
    margin-right: 6.8rem !important;
  }

  .me-md-69 {
    margin-right: 6.9rem !important;
  }

  .me-md-70 {
    margin-right: 7rem !important;
  }

  .me-md-71 {
    margin-right: 7.1rem !important;
  }

  .me-md-72 {
    margin-right: 7.2rem !important;
  }

  .me-md-73 {
    margin-right: 7.3rem !important;
  }

  .me-md-74 {
    margin-right: 7.4rem !important;
  }

  .me-md-75 {
    margin-right: 7.5rem !important;
  }

  .me-md-76 {
    margin-right: 7.6rem !important;
  }

  .me-md-77 {
    margin-right: 7.7rem !important;
  }

  .me-md-78 {
    margin-right: 7.8rem !important;
  }

  .me-md-79 {
    margin-right: 7.9rem !important;
  }

  .me-md-80 {
    margin-right: 8rem !important;
  }

  .me-md-81 {
    margin-right: 8.1rem !important;
  }

  .me-md-82 {
    margin-right: 8.2rem !important;
  }

  .me-md-83 {
    margin-right: 8.3rem !important;
  }

  .me-md-84 {
    margin-right: 8.4rem !important;
  }

  .me-md-85 {
    margin-right: 8.5rem !important;
  }

  .me-md-86 {
    margin-right: 8.6rem !important;
  }

  .me-md-87 {
    margin-right: 8.7rem !important;
  }

  .me-md-88 {
    margin-right: 8.8rem !important;
  }

  .me-md-89 {
    margin-right: 8.9rem !important;
  }

  .me-md-90 {
    margin-right: 9rem !important;
  }

  .me-md-91 {
    margin-right: 9.1rem !important;
  }

  .me-md-92 {
    margin-right: 9.2rem !important;
  }

  .me-md-93 {
    margin-right: 9.3rem !important;
  }

  .me-md-94 {
    margin-right: 9.4rem !important;
  }

  .me-md-95 {
    margin-right: 9.5rem !important;
  }

  .me-md-96 {
    margin-right: 9.6rem !important;
  }

  .me-md-97 {
    margin-right: 9.7rem !important;
  }

  .me-md-98 {
    margin-right: 9.8rem !important;
  }

  .me-md-99 {
    margin-right: 9.9rem !important;
  }

  .me-md-100 {
    margin-right: 10rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-6 {
    margin-bottom: 0.6rem !important;
  }

  .mb-md-7 {
    margin-bottom: 0.7rem !important;
  }

  .mb-md-8 {
    margin-bottom: 0.8rem !important;
  }

  .mb-md-9 {
    margin-bottom: 0.9rem !important;
  }

  .mb-md-10 {
    margin-bottom: 1rem !important;
  }

  .mb-md-11 {
    margin-bottom: 1.1rem !important;
  }

  .mb-md-12 {
    margin-bottom: 1.2rem !important;
  }

  .mb-md-13 {
    margin-bottom: 1.3rem !important;
  }

  .mb-md-14 {
    margin-bottom: 1.4rem !important;
  }

  .mb-md-15 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-16 {
    margin-bottom: 1.6rem !important;
  }

  .mb-md-17 {
    margin-bottom: 1.7rem !important;
  }

  .mb-md-18 {
    margin-bottom: 1.8rem !important;
  }

  .mb-md-19 {
    margin-bottom: 1.9rem !important;
  }

  .mb-md-20 {
    margin-bottom: 2rem !important;
  }

  .mb-md-21 {
    margin-bottom: 2.1rem !important;
  }

  .mb-md-22 {
    margin-bottom: 2.2rem !important;
  }

  .mb-md-23 {
    margin-bottom: 2.3rem !important;
  }

  .mb-md-24 {
    margin-bottom: 2.4rem !important;
  }

  .mb-md-25 {
    margin-bottom: 2.5rem !important;
  }

  .mb-md-26 {
    margin-bottom: 2.6rem !important;
  }

  .mb-md-27 {
    margin-bottom: 2.7rem !important;
  }

  .mb-md-28 {
    margin-bottom: 2.8rem !important;
  }

  .mb-md-29 {
    margin-bottom: 2.9rem !important;
  }

  .mb-md-30 {
    margin-bottom: 3rem !important;
  }

  .mb-md-31 {
    margin-bottom: 3.1rem !important;
  }

  .mb-md-32 {
    margin-bottom: 3.2rem !important;
  }

  .mb-md-33 {
    margin-bottom: 3.3rem !important;
  }

  .mb-md-34 {
    margin-bottom: 3.4rem !important;
  }

  .mb-md-35 {
    margin-bottom: 3.5rem !important;
  }

  .mb-md-36 {
    margin-bottom: 3.6rem !important;
  }

  .mb-md-37 {
    margin-bottom: 3.7rem !important;
  }

  .mb-md-38 {
    margin-bottom: 3.8rem !important;
  }

  .mb-md-39 {
    margin-bottom: 3.9rem !important;
  }

  .mb-md-40 {
    margin-bottom: 4rem !important;
  }

  .mb-md-41 {
    margin-bottom: 4.1rem !important;
  }

  .mb-md-42 {
    margin-bottom: 4.2rem !important;
  }

  .mb-md-43 {
    margin-bottom: 4.3rem !important;
  }

  .mb-md-44 {
    margin-bottom: 4.4rem !important;
  }

  .mb-md-45 {
    margin-bottom: 4.5rem !important;
  }

  .mb-md-46 {
    margin-bottom: 4.6rem !important;
  }

  .mb-md-47 {
    margin-bottom: 4.7rem !important;
  }

  .mb-md-48 {
    margin-bottom: 4.8rem !important;
  }

  .mb-md-49 {
    margin-bottom: 4.9rem !important;
  }

  .mb-md-50 {
    margin-bottom: 5rem !important;
  }

  .mb-md-51 {
    margin-bottom: 5.1rem !important;
  }

  .mb-md-52 {
    margin-bottom: 5.2rem !important;
  }

  .mb-md-53 {
    margin-bottom: 5.3rem !important;
  }

  .mb-md-54 {
    margin-bottom: 5.4rem !important;
  }

  .mb-md-55 {
    margin-bottom: 5.5rem !important;
  }

  .mb-md-56 {
    margin-bottom: 5.6rem !important;
  }

  .mb-md-57 {
    margin-bottom: 5.7rem !important;
  }

  .mb-md-58 {
    margin-bottom: 5.8rem !important;
  }

  .mb-md-59 {
    margin-bottom: 5.9rem !important;
  }

  .mb-md-60 {
    margin-bottom: 6rem !important;
  }

  .mb-md-61 {
    margin-bottom: 6.1rem !important;
  }

  .mb-md-62 {
    margin-bottom: 6.2rem !important;
  }

  .mb-md-63 {
    margin-bottom: 6.3rem !important;
  }

  .mb-md-64 {
    margin-bottom: 6.4rem !important;
  }

  .mb-md-65 {
    margin-bottom: 6.5rem !important;
  }

  .mb-md-66 {
    margin-bottom: 6.6rem !important;
  }

  .mb-md-67 {
    margin-bottom: 6.7rem !important;
  }

  .mb-md-68 {
    margin-bottom: 6.8rem !important;
  }

  .mb-md-69 {
    margin-bottom: 6.9rem !important;
  }

  .mb-md-70 {
    margin-bottom: 7rem !important;
  }

  .mb-md-71 {
    margin-bottom: 7.1rem !important;
  }

  .mb-md-72 {
    margin-bottom: 7.2rem !important;
  }

  .mb-md-73 {
    margin-bottom: 7.3rem !important;
  }

  .mb-md-74 {
    margin-bottom: 7.4rem !important;
  }

  .mb-md-75 {
    margin-bottom: 7.5rem !important;
  }

  .mb-md-76 {
    margin-bottom: 7.6rem !important;
  }

  .mb-md-77 {
    margin-bottom: 7.7rem !important;
  }

  .mb-md-78 {
    margin-bottom: 7.8rem !important;
  }

  .mb-md-79 {
    margin-bottom: 7.9rem !important;
  }

  .mb-md-80 {
    margin-bottom: 8rem !important;
  }

  .mb-md-81 {
    margin-bottom: 8.1rem !important;
  }

  .mb-md-82 {
    margin-bottom: 8.2rem !important;
  }

  .mb-md-83 {
    margin-bottom: 8.3rem !important;
  }

  .mb-md-84 {
    margin-bottom: 8.4rem !important;
  }

  .mb-md-85 {
    margin-bottom: 8.5rem !important;
  }

  .mb-md-86 {
    margin-bottom: 8.6rem !important;
  }

  .mb-md-87 {
    margin-bottom: 8.7rem !important;
  }

  .mb-md-88 {
    margin-bottom: 8.8rem !important;
  }

  .mb-md-89 {
    margin-bottom: 8.9rem !important;
  }

  .mb-md-90 {
    margin-bottom: 9rem !important;
  }

  .mb-md-91 {
    margin-bottom: 9.1rem !important;
  }

  .mb-md-92 {
    margin-bottom: 9.2rem !important;
  }

  .mb-md-93 {
    margin-bottom: 9.3rem !important;
  }

  .mb-md-94 {
    margin-bottom: 9.4rem !important;
  }

  .mb-md-95 {
    margin-bottom: 9.5rem !important;
  }

  .mb-md-96 {
    margin-bottom: 9.6rem !important;
  }

  .mb-md-97 {
    margin-bottom: 9.7rem !important;
  }

  .mb-md-98 {
    margin-bottom: 9.8rem !important;
  }

  .mb-md-99 {
    margin-bottom: 9.9rem !important;
  }

  .mb-md-100 {
    margin-bottom: 10rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-6 {
    margin-left: 0.6rem !important;
  }

  .ms-md-7 {
    margin-left: 0.7rem !important;
  }

  .ms-md-8 {
    margin-left: 0.8rem !important;
  }

  .ms-md-9 {
    margin-left: 0.9rem !important;
  }

  .ms-md-10 {
    margin-left: 1rem !important;
  }

  .ms-md-11 {
    margin-left: 1.1rem !important;
  }

  .ms-md-12 {
    margin-left: 1.2rem !important;
  }

  .ms-md-13 {
    margin-left: 1.3rem !important;
  }

  .ms-md-14 {
    margin-left: 1.4rem !important;
  }

  .ms-md-15 {
    margin-left: 1.5rem !important;
  }

  .ms-md-16 {
    margin-left: 1.6rem !important;
  }

  .ms-md-17 {
    margin-left: 1.7rem !important;
  }

  .ms-md-18 {
    margin-left: 1.8rem !important;
  }

  .ms-md-19 {
    margin-left: 1.9rem !important;
  }

  .ms-md-20 {
    margin-left: 2rem !important;
  }

  .ms-md-21 {
    margin-left: 2.1rem !important;
  }

  .ms-md-22 {
    margin-left: 2.2rem !important;
  }

  .ms-md-23 {
    margin-left: 2.3rem !important;
  }

  .ms-md-24 {
    margin-left: 2.4rem !important;
  }

  .ms-md-25 {
    margin-left: 2.5rem !important;
  }

  .ms-md-26 {
    margin-left: 2.6rem !important;
  }

  .ms-md-27 {
    margin-left: 2.7rem !important;
  }

  .ms-md-28 {
    margin-left: 2.8rem !important;
  }

  .ms-md-29 {
    margin-left: 2.9rem !important;
  }

  .ms-md-30 {
    margin-left: 3rem !important;
  }

  .ms-md-31 {
    margin-left: 3.1rem !important;
  }

  .ms-md-32 {
    margin-left: 3.2rem !important;
  }

  .ms-md-33 {
    margin-left: 3.3rem !important;
  }

  .ms-md-34 {
    margin-left: 3.4rem !important;
  }

  .ms-md-35 {
    margin-left: 3.5rem !important;
  }

  .ms-md-36 {
    margin-left: 3.6rem !important;
  }

  .ms-md-37 {
    margin-left: 3.7rem !important;
  }

  .ms-md-38 {
    margin-left: 3.8rem !important;
  }

  .ms-md-39 {
    margin-left: 3.9rem !important;
  }

  .ms-md-40 {
    margin-left: 4rem !important;
  }

  .ms-md-41 {
    margin-left: 4.1rem !important;
  }

  .ms-md-42 {
    margin-left: 4.2rem !important;
  }

  .ms-md-43 {
    margin-left: 4.3rem !important;
  }

  .ms-md-44 {
    margin-left: 4.4rem !important;
  }

  .ms-md-45 {
    margin-left: 4.5rem !important;
  }

  .ms-md-46 {
    margin-left: 4.6rem !important;
  }

  .ms-md-47 {
    margin-left: 4.7rem !important;
  }

  .ms-md-48 {
    margin-left: 4.8rem !important;
  }

  .ms-md-49 {
    margin-left: 4.9rem !important;
  }

  .ms-md-50 {
    margin-left: 5rem !important;
  }

  .ms-md-51 {
    margin-left: 5.1rem !important;
  }

  .ms-md-52 {
    margin-left: 5.2rem !important;
  }

  .ms-md-53 {
    margin-left: 5.3rem !important;
  }

  .ms-md-54 {
    margin-left: 5.4rem !important;
  }

  .ms-md-55 {
    margin-left: 5.5rem !important;
  }

  .ms-md-56 {
    margin-left: 5.6rem !important;
  }

  .ms-md-57 {
    margin-left: 5.7rem !important;
  }

  .ms-md-58 {
    margin-left: 5.8rem !important;
  }

  .ms-md-59 {
    margin-left: 5.9rem !important;
  }

  .ms-md-60 {
    margin-left: 6rem !important;
  }

  .ms-md-61 {
    margin-left: 6.1rem !important;
  }

  .ms-md-62 {
    margin-left: 6.2rem !important;
  }

  .ms-md-63 {
    margin-left: 6.3rem !important;
  }

  .ms-md-64 {
    margin-left: 6.4rem !important;
  }

  .ms-md-65 {
    margin-left: 6.5rem !important;
  }

  .ms-md-66 {
    margin-left: 6.6rem !important;
  }

  .ms-md-67 {
    margin-left: 6.7rem !important;
  }

  .ms-md-68 {
    margin-left: 6.8rem !important;
  }

  .ms-md-69 {
    margin-left: 6.9rem !important;
  }

  .ms-md-70 {
    margin-left: 7rem !important;
  }

  .ms-md-71 {
    margin-left: 7.1rem !important;
  }

  .ms-md-72 {
    margin-left: 7.2rem !important;
  }

  .ms-md-73 {
    margin-left: 7.3rem !important;
  }

  .ms-md-74 {
    margin-left: 7.4rem !important;
  }

  .ms-md-75 {
    margin-left: 7.5rem !important;
  }

  .ms-md-76 {
    margin-left: 7.6rem !important;
  }

  .ms-md-77 {
    margin-left: 7.7rem !important;
  }

  .ms-md-78 {
    margin-left: 7.8rem !important;
  }

  .ms-md-79 {
    margin-left: 7.9rem !important;
  }

  .ms-md-80 {
    margin-left: 8rem !important;
  }

  .ms-md-81 {
    margin-left: 8.1rem !important;
  }

  .ms-md-82 {
    margin-left: 8.2rem !important;
  }

  .ms-md-83 {
    margin-left: 8.3rem !important;
  }

  .ms-md-84 {
    margin-left: 8.4rem !important;
  }

  .ms-md-85 {
    margin-left: 8.5rem !important;
  }

  .ms-md-86 {
    margin-left: 8.6rem !important;
  }

  .ms-md-87 {
    margin-left: 8.7rem !important;
  }

  .ms-md-88 {
    margin-left: 8.8rem !important;
  }

  .ms-md-89 {
    margin-left: 8.9rem !important;
  }

  .ms-md-90 {
    margin-left: 9rem !important;
  }

  .ms-md-91 {
    margin-left: 9.1rem !important;
  }

  .ms-md-92 {
    margin-left: 9.2rem !important;
  }

  .ms-md-93 {
    margin-left: 9.3rem !important;
  }

  .ms-md-94 {
    margin-left: 9.4rem !important;
  }

  .ms-md-95 {
    margin-left: 9.5rem !important;
  }

  .ms-md-96 {
    margin-left: 9.6rem !important;
  }

  .ms-md-97 {
    margin-left: 9.7rem !important;
  }

  .ms-md-98 {
    margin-left: 9.8rem !important;
  }

  .ms-md-99 {
    margin-left: 9.9rem !important;
  }

  .ms-md-100 {
    margin-left: 10rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .p-md-6 {
    padding: 0.6rem !important;
  }

  .p-md-7 {
    padding: 0.7rem !important;
  }

  .p-md-8 {
    padding: 0.8rem !important;
  }

  .p-md-9 {
    padding: 0.9rem !important;
  }

  .p-md-10 {
    padding: 1rem !important;
  }

  .p-md-11 {
    padding: 1.1rem !important;
  }

  .p-md-12 {
    padding: 1.2rem !important;
  }

  .p-md-13 {
    padding: 1.3rem !important;
  }

  .p-md-14 {
    padding: 1.4rem !important;
  }

  .p-md-15 {
    padding: 1.5rem !important;
  }

  .p-md-16 {
    padding: 1.6rem !important;
  }

  .p-md-17 {
    padding: 1.7rem !important;
  }

  .p-md-18 {
    padding: 1.8rem !important;
  }

  .p-md-19 {
    padding: 1.9rem !important;
  }

  .p-md-20 {
    padding: 2rem !important;
  }

  .p-md-21 {
    padding: 2.1rem !important;
  }

  .p-md-22 {
    padding: 2.2rem !important;
  }

  .p-md-23 {
    padding: 2.3rem !important;
  }

  .p-md-24 {
    padding: 2.4rem !important;
  }

  .p-md-25 {
    padding: 2.5rem !important;
  }

  .p-md-26 {
    padding: 2.6rem !important;
  }

  .p-md-27 {
    padding: 2.7rem !important;
  }

  .p-md-28 {
    padding: 2.8rem !important;
  }

  .p-md-29 {
    padding: 2.9rem !important;
  }

  .p-md-30 {
    padding: 3rem !important;
  }

  .p-md-31 {
    padding: 3.1rem !important;
  }

  .p-md-32 {
    padding: 3.2rem !important;
  }

  .p-md-33 {
    padding: 3.3rem !important;
  }

  .p-md-34 {
    padding: 3.4rem !important;
  }

  .p-md-35 {
    padding: 3.5rem !important;
  }

  .p-md-36 {
    padding: 3.6rem !important;
  }

  .p-md-37 {
    padding: 3.7rem !important;
  }

  .p-md-38 {
    padding: 3.8rem !important;
  }

  .p-md-39 {
    padding: 3.9rem !important;
  }

  .p-md-40 {
    padding: 4rem !important;
  }

  .p-md-41 {
    padding: 4.1rem !important;
  }

  .p-md-42 {
    padding: 4.2rem !important;
  }

  .p-md-43 {
    padding: 4.3rem !important;
  }

  .p-md-44 {
    padding: 4.4rem !important;
  }

  .p-md-45 {
    padding: 4.5rem !important;
  }

  .p-md-46 {
    padding: 4.6rem !important;
  }

  .p-md-47 {
    padding: 4.7rem !important;
  }

  .p-md-48 {
    padding: 4.8rem !important;
  }

  .p-md-49 {
    padding: 4.9rem !important;
  }

  .p-md-50 {
    padding: 5rem !important;
  }

  .p-md-51 {
    padding: 5.1rem !important;
  }

  .p-md-52 {
    padding: 5.2rem !important;
  }

  .p-md-53 {
    padding: 5.3rem !important;
  }

  .p-md-54 {
    padding: 5.4rem !important;
  }

  .p-md-55 {
    padding: 5.5rem !important;
  }

  .p-md-56 {
    padding: 5.6rem !important;
  }

  .p-md-57 {
    padding: 5.7rem !important;
  }

  .p-md-58 {
    padding: 5.8rem !important;
  }

  .p-md-59 {
    padding: 5.9rem !important;
  }

  .p-md-60 {
    padding: 6rem !important;
  }

  .p-md-61 {
    padding: 6.1rem !important;
  }

  .p-md-62 {
    padding: 6.2rem !important;
  }

  .p-md-63 {
    padding: 6.3rem !important;
  }

  .p-md-64 {
    padding: 6.4rem !important;
  }

  .p-md-65 {
    padding: 6.5rem !important;
  }

  .p-md-66 {
    padding: 6.6rem !important;
  }

  .p-md-67 {
    padding: 6.7rem !important;
  }

  .p-md-68 {
    padding: 6.8rem !important;
  }

  .p-md-69 {
    padding: 6.9rem !important;
  }

  .p-md-70 {
    padding: 7rem !important;
  }

  .p-md-71 {
    padding: 7.1rem !important;
  }

  .p-md-72 {
    padding: 7.2rem !important;
  }

  .p-md-73 {
    padding: 7.3rem !important;
  }

  .p-md-74 {
    padding: 7.4rem !important;
  }

  .p-md-75 {
    padding: 7.5rem !important;
  }

  .p-md-76 {
    padding: 7.6rem !important;
  }

  .p-md-77 {
    padding: 7.7rem !important;
  }

  .p-md-78 {
    padding: 7.8rem !important;
  }

  .p-md-79 {
    padding: 7.9rem !important;
  }

  .p-md-80 {
    padding: 8rem !important;
  }

  .p-md-81 {
    padding: 8.1rem !important;
  }

  .p-md-82 {
    padding: 8.2rem !important;
  }

  .p-md-83 {
    padding: 8.3rem !important;
  }

  .p-md-84 {
    padding: 8.4rem !important;
  }

  .p-md-85 {
    padding: 8.5rem !important;
  }

  .p-md-86 {
    padding: 8.6rem !important;
  }

  .p-md-87 {
    padding: 8.7rem !important;
  }

  .p-md-88 {
    padding: 8.8rem !important;
  }

  .p-md-89 {
    padding: 8.9rem !important;
  }

  .p-md-90 {
    padding: 9rem !important;
  }

  .p-md-91 {
    padding: 9.1rem !important;
  }

  .p-md-92 {
    padding: 9.2rem !important;
  }

  .p-md-93 {
    padding: 9.3rem !important;
  }

  .p-md-94 {
    padding: 9.4rem !important;
  }

  .p-md-95 {
    padding: 9.5rem !important;
  }

  .p-md-96 {
    padding: 9.6rem !important;
  }

  .p-md-97 {
    padding: 9.7rem !important;
  }

  .p-md-98 {
    padding: 9.8rem !important;
  }

  .p-md-99 {
    padding: 9.9rem !important;
  }

  .p-md-100 {
    padding: 10rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-md-6 {
    padding-right: 0.6rem !important;
    padding-left: 0.6rem !important;
  }

  .px-md-7 {
    padding-right: 0.7rem !important;
    padding-left: 0.7rem !important;
  }

  .px-md-8 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
  }

  .px-md-9 {
    padding-right: 0.9rem !important;
    padding-left: 0.9rem !important;
  }

  .px-md-10 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-11 {
    padding-right: 1.1rem !important;
    padding-left: 1.1rem !important;
  }

  .px-md-12 {
    padding-right: 1.2rem !important;
    padding-left: 1.2rem !important;
  }

  .px-md-13 {
    padding-right: 1.3rem !important;
    padding-left: 1.3rem !important;
  }

  .px-md-14 {
    padding-right: 1.4rem !important;
    padding-left: 1.4rem !important;
  }

  .px-md-15 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-16 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important;
  }

  .px-md-17 {
    padding-right: 1.7rem !important;
    padding-left: 1.7rem !important;
  }

  .px-md-18 {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }

  .px-md-19 {
    padding-right: 1.9rem !important;
    padding-left: 1.9rem !important;
  }

  .px-md-20 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-md-21 {
    padding-right: 2.1rem !important;
    padding-left: 2.1rem !important;
  }

  .px-md-22 {
    padding-right: 2.2rem !important;
    padding-left: 2.2rem !important;
  }

  .px-md-23 {
    padding-right: 2.3rem !important;
    padding-left: 2.3rem !important;
  }

  .px-md-24 {
    padding-right: 2.4rem !important;
    padding-left: 2.4rem !important;
  }

  .px-md-25 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-md-26 {
    padding-right: 2.6rem !important;
    padding-left: 2.6rem !important;
  }

  .px-md-27 {
    padding-right: 2.7rem !important;
    padding-left: 2.7rem !important;
  }

  .px-md-28 {
    padding-right: 2.8rem !important;
    padding-left: 2.8rem !important;
  }

  .px-md-29 {
    padding-right: 2.9rem !important;
    padding-left: 2.9rem !important;
  }

  .px-md-30 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-md-31 {
    padding-right: 3.1rem !important;
    padding-left: 3.1rem !important;
  }

  .px-md-32 {
    padding-right: 3.2rem !important;
    padding-left: 3.2rem !important;
  }

  .px-md-33 {
    padding-right: 3.3rem !important;
    padding-left: 3.3rem !important;
  }

  .px-md-34 {
    padding-right: 3.4rem !important;
    padding-left: 3.4rem !important;
  }

  .px-md-35 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-md-36 {
    padding-right: 3.6rem !important;
    padding-left: 3.6rem !important;
  }

  .px-md-37 {
    padding-right: 3.7rem !important;
    padding-left: 3.7rem !important;
  }

  .px-md-38 {
    padding-right: 3.8rem !important;
    padding-left: 3.8rem !important;
  }

  .px-md-39 {
    padding-right: 3.9rem !important;
    padding-left: 3.9rem !important;
  }

  .px-md-40 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-md-41 {
    padding-right: 4.1rem !important;
    padding-left: 4.1rem !important;
  }

  .px-md-42 {
    padding-right: 4.2rem !important;
    padding-left: 4.2rem !important;
  }

  .px-md-43 {
    padding-right: 4.3rem !important;
    padding-left: 4.3rem !important;
  }

  .px-md-44 {
    padding-right: 4.4rem !important;
    padding-left: 4.4rem !important;
  }

  .px-md-45 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-md-46 {
    padding-right: 4.6rem !important;
    padding-left: 4.6rem !important;
  }

  .px-md-47 {
    padding-right: 4.7rem !important;
    padding-left: 4.7rem !important;
  }

  .px-md-48 {
    padding-right: 4.8rem !important;
    padding-left: 4.8rem !important;
  }

  .px-md-49 {
    padding-right: 4.9rem !important;
    padding-left: 4.9rem !important;
  }

  .px-md-50 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-md-51 {
    padding-right: 5.1rem !important;
    padding-left: 5.1rem !important;
  }

  .px-md-52 {
    padding-right: 5.2rem !important;
    padding-left: 5.2rem !important;
  }

  .px-md-53 {
    padding-right: 5.3rem !important;
    padding-left: 5.3rem !important;
  }

  .px-md-54 {
    padding-right: 5.4rem !important;
    padding-left: 5.4rem !important;
  }

  .px-md-55 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }

  .px-md-56 {
    padding-right: 5.6rem !important;
    padding-left: 5.6rem !important;
  }

  .px-md-57 {
    padding-right: 5.7rem !important;
    padding-left: 5.7rem !important;
  }

  .px-md-58 {
    padding-right: 5.8rem !important;
    padding-left: 5.8rem !important;
  }

  .px-md-59 {
    padding-right: 5.9rem !important;
    padding-left: 5.9rem !important;
  }

  .px-md-60 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-md-61 {
    padding-right: 6.1rem !important;
    padding-left: 6.1rem !important;
  }

  .px-md-62 {
    padding-right: 6.2rem !important;
    padding-left: 6.2rem !important;
  }

  .px-md-63 {
    padding-right: 6.3rem !important;
    padding-left: 6.3rem !important;
  }

  .px-md-64 {
    padding-right: 6.4rem !important;
    padding-left: 6.4rem !important;
  }

  .px-md-65 {
    padding-right: 6.5rem !important;
    padding-left: 6.5rem !important;
  }

  .px-md-66 {
    padding-right: 6.6rem !important;
    padding-left: 6.6rem !important;
  }

  .px-md-67 {
    padding-right: 6.7rem !important;
    padding-left: 6.7rem !important;
  }

  .px-md-68 {
    padding-right: 6.8rem !important;
    padding-left: 6.8rem !important;
  }

  .px-md-69 {
    padding-right: 6.9rem !important;
    padding-left: 6.9rem !important;
  }

  .px-md-70 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }

  .px-md-71 {
    padding-right: 7.1rem !important;
    padding-left: 7.1rem !important;
  }

  .px-md-72 {
    padding-right: 7.2rem !important;
    padding-left: 7.2rem !important;
  }

  .px-md-73 {
    padding-right: 7.3rem !important;
    padding-left: 7.3rem !important;
  }

  .px-md-74 {
    padding-right: 7.4rem !important;
    padding-left: 7.4rem !important;
  }

  .px-md-75 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-md-76 {
    padding-right: 7.6rem !important;
    padding-left: 7.6rem !important;
  }

  .px-md-77 {
    padding-right: 7.7rem !important;
    padding-left: 7.7rem !important;
  }

  .px-md-78 {
    padding-right: 7.8rem !important;
    padding-left: 7.8rem !important;
  }

  .px-md-79 {
    padding-right: 7.9rem !important;
    padding-left: 7.9rem !important;
  }

  .px-md-80 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-md-81 {
    padding-right: 8.1rem !important;
    padding-left: 8.1rem !important;
  }

  .px-md-82 {
    padding-right: 8.2rem !important;
    padding-left: 8.2rem !important;
  }

  .px-md-83 {
    padding-right: 8.3rem !important;
    padding-left: 8.3rem !important;
  }

  .px-md-84 {
    padding-right: 8.4rem !important;
    padding-left: 8.4rem !important;
  }

  .px-md-85 {
    padding-right: 8.5rem !important;
    padding-left: 8.5rem !important;
  }

  .px-md-86 {
    padding-right: 8.6rem !important;
    padding-left: 8.6rem !important;
  }

  .px-md-87 {
    padding-right: 8.7rem !important;
    padding-left: 8.7rem !important;
  }

  .px-md-88 {
    padding-right: 8.8rem !important;
    padding-left: 8.8rem !important;
  }

  .px-md-89 {
    padding-right: 8.9rem !important;
    padding-left: 8.9rem !important;
  }

  .px-md-90 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }

  .px-md-91 {
    padding-right: 9.1rem !important;
    padding-left: 9.1rem !important;
  }

  .px-md-92 {
    padding-right: 9.2rem !important;
    padding-left: 9.2rem !important;
  }

  .px-md-93 {
    padding-right: 9.3rem !important;
    padding-left: 9.3rem !important;
  }

  .px-md-94 {
    padding-right: 9.4rem !important;
    padding-left: 9.4rem !important;
  }

  .px-md-95 {
    padding-right: 9.5rem !important;
    padding-left: 9.5rem !important;
  }

  .px-md-96 {
    padding-right: 9.6rem !important;
    padding-left: 9.6rem !important;
  }

  .px-md-97 {
    padding-right: 9.7rem !important;
    padding-left: 9.7rem !important;
  }

  .px-md-98 {
    padding-right: 9.8rem !important;
    padding-left: 9.8rem !important;
  }

  .px-md-99 {
    padding-right: 9.9rem !important;
    padding-left: 9.9rem !important;
  }

  .px-md-100 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-md-6 {
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
  }

  .py-md-7 {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
  }

  .py-md-8 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }

  .py-md-9 {
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
  }

  .py-md-10 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-11 {
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
  }

  .py-md-12 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }

  .py-md-13 {
    padding-top: 1.3rem !important;
    padding-bottom: 1.3rem !important;
  }

  .py-md-14 {
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
  }

  .py-md-15 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-16 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }

  .py-md-17 {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
  }

  .py-md-18 {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }

  .py-md-19 {
    padding-top: 1.9rem !important;
    padding-bottom: 1.9rem !important;
  }

  .py-md-20 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-md-21 {
    padding-top: 2.1rem !important;
    padding-bottom: 2.1rem !important;
  }

  .py-md-22 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }

  .py-md-23 {
    padding-top: 2.3rem !important;
    padding-bottom: 2.3rem !important;
  }

  .py-md-24 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  .py-md-25 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-md-26 {
    padding-top: 2.6rem !important;
    padding-bottom: 2.6rem !important;
  }

  .py-md-27 {
    padding-top: 2.7rem !important;
    padding-bottom: 2.7rem !important;
  }

  .py-md-28 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }

  .py-md-29 {
    padding-top: 2.9rem !important;
    padding-bottom: 2.9rem !important;
  }

  .py-md-30 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-md-31 {
    padding-top: 3.1rem !important;
    padding-bottom: 3.1rem !important;
  }

  .py-md-32 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }

  .py-md-33 {
    padding-top: 3.3rem !important;
    padding-bottom: 3.3rem !important;
  }

  .py-md-34 {
    padding-top: 3.4rem !important;
    padding-bottom: 3.4rem !important;
  }

  .py-md-35 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-md-36 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }

  .py-md-37 {
    padding-top: 3.7rem !important;
    padding-bottom: 3.7rem !important;
  }

  .py-md-38 {
    padding-top: 3.8rem !important;
    padding-bottom: 3.8rem !important;
  }

  .py-md-39 {
    padding-top: 3.9rem !important;
    padding-bottom: 3.9rem !important;
  }

  .py-md-40 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-md-41 {
    padding-top: 4.1rem !important;
    padding-bottom: 4.1rem !important;
  }

  .py-md-42 {
    padding-top: 4.2rem !important;
    padding-bottom: 4.2rem !important;
  }

  .py-md-43 {
    padding-top: 4.3rem !important;
    padding-bottom: 4.3rem !important;
  }

  .py-md-44 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }

  .py-md-45 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-md-46 {
    padding-top: 4.6rem !important;
    padding-bottom: 4.6rem !important;
  }

  .py-md-47 {
    padding-top: 4.7rem !important;
    padding-bottom: 4.7rem !important;
  }

  .py-md-48 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }

  .py-md-49 {
    padding-top: 4.9rem !important;
    padding-bottom: 4.9rem !important;
  }

  .py-md-50 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-md-51 {
    padding-top: 5.1rem !important;
    padding-bottom: 5.1rem !important;
  }

  .py-md-52 {
    padding-top: 5.2rem !important;
    padding-bottom: 5.2rem !important;
  }

  .py-md-53 {
    padding-top: 5.3rem !important;
    padding-bottom: 5.3rem !important;
  }

  .py-md-54 {
    padding-top: 5.4rem !important;
    padding-bottom: 5.4rem !important;
  }

  .py-md-55 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .py-md-56 {
    padding-top: 5.6rem !important;
    padding-bottom: 5.6rem !important;
  }

  .py-md-57 {
    padding-top: 5.7rem !important;
    padding-bottom: 5.7rem !important;
  }

  .py-md-58 {
    padding-top: 5.8rem !important;
    padding-bottom: 5.8rem !important;
  }

  .py-md-59 {
    padding-top: 5.9rem !important;
    padding-bottom: 5.9rem !important;
  }

  .py-md-60 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-md-61 {
    padding-top: 6.1rem !important;
    padding-bottom: 6.1rem !important;
  }

  .py-md-62 {
    padding-top: 6.2rem !important;
    padding-bottom: 6.2rem !important;
  }

  .py-md-63 {
    padding-top: 6.3rem !important;
    padding-bottom: 6.3rem !important;
  }

  .py-md-64 {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }

  .py-md-65 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .py-md-66 {
    padding-top: 6.6rem !important;
    padding-bottom: 6.6rem !important;
  }

  .py-md-67 {
    padding-top: 6.7rem !important;
    padding-bottom: 6.7rem !important;
  }

  .py-md-68 {
    padding-top: 6.8rem !important;
    padding-bottom: 6.8rem !important;
  }

  .py-md-69 {
    padding-top: 6.9rem !important;
    padding-bottom: 6.9rem !important;
  }

  .py-md-70 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .py-md-71 {
    padding-top: 7.1rem !important;
    padding-bottom: 7.1rem !important;
  }

  .py-md-72 {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }

  .py-md-73 {
    padding-top: 7.3rem !important;
    padding-bottom: 7.3rem !important;
  }

  .py-md-74 {
    padding-top: 7.4rem !important;
    padding-bottom: 7.4rem !important;
  }

  .py-md-75 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-md-76 {
    padding-top: 7.6rem !important;
    padding-bottom: 7.6rem !important;
  }

  .py-md-77 {
    padding-top: 7.7rem !important;
    padding-bottom: 7.7rem !important;
  }

  .py-md-78 {
    padding-top: 7.8rem !important;
    padding-bottom: 7.8rem !important;
  }

  .py-md-79 {
    padding-top: 7.9rem !important;
    padding-bottom: 7.9rem !important;
  }

  .py-md-80 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-md-81 {
    padding-top: 8.1rem !important;
    padding-bottom: 8.1rem !important;
  }

  .py-md-82 {
    padding-top: 8.2rem !important;
    padding-bottom: 8.2rem !important;
  }

  .py-md-83 {
    padding-top: 8.3rem !important;
    padding-bottom: 8.3rem !important;
  }

  .py-md-84 {
    padding-top: 8.4rem !important;
    padding-bottom: 8.4rem !important;
  }

  .py-md-85 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }

  .py-md-86 {
    padding-top: 8.6rem !important;
    padding-bottom: 8.6rem !important;
  }

  .py-md-87 {
    padding-top: 8.7rem !important;
    padding-bottom: 8.7rem !important;
  }

  .py-md-88 {
    padding-top: 8.8rem !important;
    padding-bottom: 8.8rem !important;
  }

  .py-md-89 {
    padding-top: 8.9rem !important;
    padding-bottom: 8.9rem !important;
  }

  .py-md-90 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .py-md-91 {
    padding-top: 9.1rem !important;
    padding-bottom: 9.1rem !important;
  }

  .py-md-92 {
    padding-top: 9.2rem !important;
    padding-bottom: 9.2rem !important;
  }

  .py-md-93 {
    padding-top: 9.3rem !important;
    padding-bottom: 9.3rem !important;
  }

  .py-md-94 {
    padding-top: 9.4rem !important;
    padding-bottom: 9.4rem !important;
  }

  .py-md-95 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }

  .py-md-96 {
    padding-top: 9.6rem !important;
    padding-bottom: 9.6rem !important;
  }

  .py-md-97 {
    padding-top: 9.7rem !important;
    padding-bottom: 9.7rem !important;
  }

  .py-md-98 {
    padding-top: 9.8rem !important;
    padding-bottom: 9.8rem !important;
  }

  .py-md-99 {
    padding-top: 9.9rem !important;
    padding-bottom: 9.9rem !important;
  }

  .py-md-100 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pt-md-6 {
    padding-top: 0.6rem !important;
  }

  .pt-md-7 {
    padding-top: 0.7rem !important;
  }

  .pt-md-8 {
    padding-top: 0.8rem !important;
  }

  .pt-md-9 {
    padding-top: 0.9rem !important;
  }

  .pt-md-10 {
    padding-top: 1rem !important;
  }

  .pt-md-11 {
    padding-top: 1.1rem !important;
  }

  .pt-md-12 {
    padding-top: 1.2rem !important;
  }

  .pt-md-13 {
    padding-top: 1.3rem !important;
  }

  .pt-md-14 {
    padding-top: 1.4rem !important;
  }

  .pt-md-15 {
    padding-top: 1.5rem !important;
  }

  .pt-md-16 {
    padding-top: 1.6rem !important;
  }

  .pt-md-17 {
    padding-top: 1.7rem !important;
  }

  .pt-md-18 {
    padding-top: 1.8rem !important;
  }

  .pt-md-19 {
    padding-top: 1.9rem !important;
  }

  .pt-md-20 {
    padding-top: 2rem !important;
  }

  .pt-md-21 {
    padding-top: 2.1rem !important;
  }

  .pt-md-22 {
    padding-top: 2.2rem !important;
  }

  .pt-md-23 {
    padding-top: 2.3rem !important;
  }

  .pt-md-24 {
    padding-top: 2.4rem !important;
  }

  .pt-md-25 {
    padding-top: 2.5rem !important;
  }

  .pt-md-26 {
    padding-top: 2.6rem !important;
  }

  .pt-md-27 {
    padding-top: 2.7rem !important;
  }

  .pt-md-28 {
    padding-top: 2.8rem !important;
  }

  .pt-md-29 {
    padding-top: 2.9rem !important;
  }

  .pt-md-30 {
    padding-top: 3rem !important;
  }

  .pt-md-31 {
    padding-top: 3.1rem !important;
  }

  .pt-md-32 {
    padding-top: 3.2rem !important;
  }

  .pt-md-33 {
    padding-top: 3.3rem !important;
  }

  .pt-md-34 {
    padding-top: 3.4rem !important;
  }

  .pt-md-35 {
    padding-top: 3.5rem !important;
  }

  .pt-md-36 {
    padding-top: 3.6rem !important;
  }

  .pt-md-37 {
    padding-top: 3.7rem !important;
  }

  .pt-md-38 {
    padding-top: 3.8rem !important;
  }

  .pt-md-39 {
    padding-top: 3.9rem !important;
  }

  .pt-md-40 {
    padding-top: 4rem !important;
  }

  .pt-md-41 {
    padding-top: 4.1rem !important;
  }

  .pt-md-42 {
    padding-top: 4.2rem !important;
  }

  .pt-md-43 {
    padding-top: 4.3rem !important;
  }

  .pt-md-44 {
    padding-top: 4.4rem !important;
  }

  .pt-md-45 {
    padding-top: 4.5rem !important;
  }

  .pt-md-46 {
    padding-top: 4.6rem !important;
  }

  .pt-md-47 {
    padding-top: 4.7rem !important;
  }

  .pt-md-48 {
    padding-top: 4.8rem !important;
  }

  .pt-md-49 {
    padding-top: 4.9rem !important;
  }

  .pt-md-50 {
    padding-top: 5rem !important;
  }

  .pt-md-51 {
    padding-top: 5.1rem !important;
  }

  .pt-md-52 {
    padding-top: 5.2rem !important;
  }

  .pt-md-53 {
    padding-top: 5.3rem !important;
  }

  .pt-md-54 {
    padding-top: 5.4rem !important;
  }

  .pt-md-55 {
    padding-top: 5.5rem !important;
  }

  .pt-md-56 {
    padding-top: 5.6rem !important;
  }

  .pt-md-57 {
    padding-top: 5.7rem !important;
  }

  .pt-md-58 {
    padding-top: 5.8rem !important;
  }

  .pt-md-59 {
    padding-top: 5.9rem !important;
  }

  .pt-md-60 {
    padding-top: 6rem !important;
  }

  .pt-md-61 {
    padding-top: 6.1rem !important;
  }

  .pt-md-62 {
    padding-top: 6.2rem !important;
  }

  .pt-md-63 {
    padding-top: 6.3rem !important;
  }

  .pt-md-64 {
    padding-top: 6.4rem !important;
  }

  .pt-md-65 {
    padding-top: 6.5rem !important;
  }

  .pt-md-66 {
    padding-top: 6.6rem !important;
  }

  .pt-md-67 {
    padding-top: 6.7rem !important;
  }

  .pt-md-68 {
    padding-top: 6.8rem !important;
  }

  .pt-md-69 {
    padding-top: 6.9rem !important;
  }

  .pt-md-70 {
    padding-top: 7rem !important;
  }

  .pt-md-71 {
    padding-top: 7.1rem !important;
  }

  .pt-md-72 {
    padding-top: 7.2rem !important;
  }

  .pt-md-73 {
    padding-top: 7.3rem !important;
  }

  .pt-md-74 {
    padding-top: 7.4rem !important;
  }

  .pt-md-75 {
    padding-top: 7.5rem !important;
  }

  .pt-md-76 {
    padding-top: 7.6rem !important;
  }

  .pt-md-77 {
    padding-top: 7.7rem !important;
  }

  .pt-md-78 {
    padding-top: 7.8rem !important;
  }

  .pt-md-79 {
    padding-top: 7.9rem !important;
  }

  .pt-md-80 {
    padding-top: 8rem !important;
  }

  .pt-md-81 {
    padding-top: 8.1rem !important;
  }

  .pt-md-82 {
    padding-top: 8.2rem !important;
  }

  .pt-md-83 {
    padding-top: 8.3rem !important;
  }

  .pt-md-84 {
    padding-top: 8.4rem !important;
  }

  .pt-md-85 {
    padding-top: 8.5rem !important;
  }

  .pt-md-86 {
    padding-top: 8.6rem !important;
  }

  .pt-md-87 {
    padding-top: 8.7rem !important;
  }

  .pt-md-88 {
    padding-top: 8.8rem !important;
  }

  .pt-md-89 {
    padding-top: 8.9rem !important;
  }

  .pt-md-90 {
    padding-top: 9rem !important;
  }

  .pt-md-91 {
    padding-top: 9.1rem !important;
  }

  .pt-md-92 {
    padding-top: 9.2rem !important;
  }

  .pt-md-93 {
    padding-top: 9.3rem !important;
  }

  .pt-md-94 {
    padding-top: 9.4rem !important;
  }

  .pt-md-95 {
    padding-top: 9.5rem !important;
  }

  .pt-md-96 {
    padding-top: 9.6rem !important;
  }

  .pt-md-97 {
    padding-top: 9.7rem !important;
  }

  .pt-md-98 {
    padding-top: 9.8rem !important;
  }

  .pt-md-99 {
    padding-top: 9.9rem !important;
  }

  .pt-md-100 {
    padding-top: 10rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pe-md-6 {
    padding-right: 0.6rem !important;
  }

  .pe-md-7 {
    padding-right: 0.7rem !important;
  }

  .pe-md-8 {
    padding-right: 0.8rem !important;
  }

  .pe-md-9 {
    padding-right: 0.9rem !important;
  }

  .pe-md-10 {
    padding-right: 1rem !important;
  }

  .pe-md-11 {
    padding-right: 1.1rem !important;
  }

  .pe-md-12 {
    padding-right: 1.2rem !important;
  }

  .pe-md-13 {
    padding-right: 1.3rem !important;
  }

  .pe-md-14 {
    padding-right: 1.4rem !important;
  }

  .pe-md-15 {
    padding-right: 1.5rem !important;
  }

  .pe-md-16 {
    padding-right: 1.6rem !important;
  }

  .pe-md-17 {
    padding-right: 1.7rem !important;
  }

  .pe-md-18 {
    padding-right: 1.8rem !important;
  }

  .pe-md-19 {
    padding-right: 1.9rem !important;
  }

  .pe-md-20 {
    padding-right: 2rem !important;
  }

  .pe-md-21 {
    padding-right: 2.1rem !important;
  }

  .pe-md-22 {
    padding-right: 2.2rem !important;
  }

  .pe-md-23 {
    padding-right: 2.3rem !important;
  }

  .pe-md-24 {
    padding-right: 2.4rem !important;
  }

  .pe-md-25 {
    padding-right: 2.5rem !important;
  }

  .pe-md-26 {
    padding-right: 2.6rem !important;
  }

  .pe-md-27 {
    padding-right: 2.7rem !important;
  }

  .pe-md-28 {
    padding-right: 2.8rem !important;
  }

  .pe-md-29 {
    padding-right: 2.9rem !important;
  }

  .pe-md-30 {
    padding-right: 3rem !important;
  }

  .pe-md-31 {
    padding-right: 3.1rem !important;
  }

  .pe-md-32 {
    padding-right: 3.2rem !important;
  }

  .pe-md-33 {
    padding-right: 3.3rem !important;
  }

  .pe-md-34 {
    padding-right: 3.4rem !important;
  }

  .pe-md-35 {
    padding-right: 3.5rem !important;
  }

  .pe-md-36 {
    padding-right: 3.6rem !important;
  }

  .pe-md-37 {
    padding-right: 3.7rem !important;
  }

  .pe-md-38 {
    padding-right: 3.8rem !important;
  }

  .pe-md-39 {
    padding-right: 3.9rem !important;
  }

  .pe-md-40 {
    padding-right: 4rem !important;
  }

  .pe-md-41 {
    padding-right: 4.1rem !important;
  }

  .pe-md-42 {
    padding-right: 4.2rem !important;
  }

  .pe-md-43 {
    padding-right: 4.3rem !important;
  }

  .pe-md-44 {
    padding-right: 4.4rem !important;
  }

  .pe-md-45 {
    padding-right: 4.5rem !important;
  }

  .pe-md-46 {
    padding-right: 4.6rem !important;
  }

  .pe-md-47 {
    padding-right: 4.7rem !important;
  }

  .pe-md-48 {
    padding-right: 4.8rem !important;
  }

  .pe-md-49 {
    padding-right: 4.9rem !important;
  }

  .pe-md-50 {
    padding-right: 5rem !important;
  }

  .pe-md-51 {
    padding-right: 5.1rem !important;
  }

  .pe-md-52 {
    padding-right: 5.2rem !important;
  }

  .pe-md-53 {
    padding-right: 5.3rem !important;
  }

  .pe-md-54 {
    padding-right: 5.4rem !important;
  }

  .pe-md-55 {
    padding-right: 5.5rem !important;
  }

  .pe-md-56 {
    padding-right: 5.6rem !important;
  }

  .pe-md-57 {
    padding-right: 5.7rem !important;
  }

  .pe-md-58 {
    padding-right: 5.8rem !important;
  }

  .pe-md-59 {
    padding-right: 5.9rem !important;
  }

  .pe-md-60 {
    padding-right: 6rem !important;
  }

  .pe-md-61 {
    padding-right: 6.1rem !important;
  }

  .pe-md-62 {
    padding-right: 6.2rem !important;
  }

  .pe-md-63 {
    padding-right: 6.3rem !important;
  }

  .pe-md-64 {
    padding-right: 6.4rem !important;
  }

  .pe-md-65 {
    padding-right: 6.5rem !important;
  }

  .pe-md-66 {
    padding-right: 6.6rem !important;
  }

  .pe-md-67 {
    padding-right: 6.7rem !important;
  }

  .pe-md-68 {
    padding-right: 6.8rem !important;
  }

  .pe-md-69 {
    padding-right: 6.9rem !important;
  }

  .pe-md-70 {
    padding-right: 7rem !important;
  }

  .pe-md-71 {
    padding-right: 7.1rem !important;
  }

  .pe-md-72 {
    padding-right: 7.2rem !important;
  }

  .pe-md-73 {
    padding-right: 7.3rem !important;
  }

  .pe-md-74 {
    padding-right: 7.4rem !important;
  }

  .pe-md-75 {
    padding-right: 7.5rem !important;
  }

  .pe-md-76 {
    padding-right: 7.6rem !important;
  }

  .pe-md-77 {
    padding-right: 7.7rem !important;
  }

  .pe-md-78 {
    padding-right: 7.8rem !important;
  }

  .pe-md-79 {
    padding-right: 7.9rem !important;
  }

  .pe-md-80 {
    padding-right: 8rem !important;
  }

  .pe-md-81 {
    padding-right: 8.1rem !important;
  }

  .pe-md-82 {
    padding-right: 8.2rem !important;
  }

  .pe-md-83 {
    padding-right: 8.3rem !important;
  }

  .pe-md-84 {
    padding-right: 8.4rem !important;
  }

  .pe-md-85 {
    padding-right: 8.5rem !important;
  }

  .pe-md-86 {
    padding-right: 8.6rem !important;
  }

  .pe-md-87 {
    padding-right: 8.7rem !important;
  }

  .pe-md-88 {
    padding-right: 8.8rem !important;
  }

  .pe-md-89 {
    padding-right: 8.9rem !important;
  }

  .pe-md-90 {
    padding-right: 9rem !important;
  }

  .pe-md-91 {
    padding-right: 9.1rem !important;
  }

  .pe-md-92 {
    padding-right: 9.2rem !important;
  }

  .pe-md-93 {
    padding-right: 9.3rem !important;
  }

  .pe-md-94 {
    padding-right: 9.4rem !important;
  }

  .pe-md-95 {
    padding-right: 9.5rem !important;
  }

  .pe-md-96 {
    padding-right: 9.6rem !important;
  }

  .pe-md-97 {
    padding-right: 9.7rem !important;
  }

  .pe-md-98 {
    padding-right: 9.8rem !important;
  }

  .pe-md-99 {
    padding-right: 9.9rem !important;
  }

  .pe-md-100 {
    padding-right: 10rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .pb-md-6 {
    padding-bottom: 0.6rem !important;
  }

  .pb-md-7 {
    padding-bottom: 0.7rem !important;
  }

  .pb-md-8 {
    padding-bottom: 0.8rem !important;
  }

  .pb-md-9 {
    padding-bottom: 0.9rem !important;
  }

  .pb-md-10 {
    padding-bottom: 1rem !important;
  }

  .pb-md-11 {
    padding-bottom: 1.1rem !important;
  }

  .pb-md-12 {
    padding-bottom: 1.2rem !important;
  }

  .pb-md-13 {
    padding-bottom: 1.3rem !important;
  }

  .pb-md-14 {
    padding-bottom: 1.4rem !important;
  }

  .pb-md-15 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-16 {
    padding-bottom: 1.6rem !important;
  }

  .pb-md-17 {
    padding-bottom: 1.7rem !important;
  }

  .pb-md-18 {
    padding-bottom: 1.8rem !important;
  }

  .pb-md-19 {
    padding-bottom: 1.9rem !important;
  }

  .pb-md-20 {
    padding-bottom: 2rem !important;
  }

  .pb-md-21 {
    padding-bottom: 2.1rem !important;
  }

  .pb-md-22 {
    padding-bottom: 2.2rem !important;
  }

  .pb-md-23 {
    padding-bottom: 2.3rem !important;
  }

  .pb-md-24 {
    padding-bottom: 2.4rem !important;
  }

  .pb-md-25 {
    padding-bottom: 2.5rem !important;
  }

  .pb-md-26 {
    padding-bottom: 2.6rem !important;
  }

  .pb-md-27 {
    padding-bottom: 2.7rem !important;
  }

  .pb-md-28 {
    padding-bottom: 2.8rem !important;
  }

  .pb-md-29 {
    padding-bottom: 2.9rem !important;
  }

  .pb-md-30 {
    padding-bottom: 3rem !important;
  }

  .pb-md-31 {
    padding-bottom: 3.1rem !important;
  }

  .pb-md-32 {
    padding-bottom: 3.2rem !important;
  }

  .pb-md-33 {
    padding-bottom: 3.3rem !important;
  }

  .pb-md-34 {
    padding-bottom: 3.4rem !important;
  }

  .pb-md-35 {
    padding-bottom: 3.5rem !important;
  }

  .pb-md-36 {
    padding-bottom: 3.6rem !important;
  }

  .pb-md-37 {
    padding-bottom: 3.7rem !important;
  }

  .pb-md-38 {
    padding-bottom: 3.8rem !important;
  }

  .pb-md-39 {
    padding-bottom: 3.9rem !important;
  }

  .pb-md-40 {
    padding-bottom: 4rem !important;
  }

  .pb-md-41 {
    padding-bottom: 4.1rem !important;
  }

  .pb-md-42 {
    padding-bottom: 4.2rem !important;
  }

  .pb-md-43 {
    padding-bottom: 4.3rem !important;
  }

  .pb-md-44 {
    padding-bottom: 4.4rem !important;
  }

  .pb-md-45 {
    padding-bottom: 4.5rem !important;
  }

  .pb-md-46 {
    padding-bottom: 4.6rem !important;
  }

  .pb-md-47 {
    padding-bottom: 4.7rem !important;
  }

  .pb-md-48 {
    padding-bottom: 4.8rem !important;
  }

  .pb-md-49 {
    padding-bottom: 4.9rem !important;
  }

  .pb-md-50 {
    padding-bottom: 5rem !important;
  }

  .pb-md-51 {
    padding-bottom: 5.1rem !important;
  }

  .pb-md-52 {
    padding-bottom: 5.2rem !important;
  }

  .pb-md-53 {
    padding-bottom: 5.3rem !important;
  }

  .pb-md-54 {
    padding-bottom: 5.4rem !important;
  }

  .pb-md-55 {
    padding-bottom: 5.5rem !important;
  }

  .pb-md-56 {
    padding-bottom: 5.6rem !important;
  }

  .pb-md-57 {
    padding-bottom: 5.7rem !important;
  }

  .pb-md-58 {
    padding-bottom: 5.8rem !important;
  }

  .pb-md-59 {
    padding-bottom: 5.9rem !important;
  }

  .pb-md-60 {
    padding-bottom: 6rem !important;
  }

  .pb-md-61 {
    padding-bottom: 6.1rem !important;
  }

  .pb-md-62 {
    padding-bottom: 6.2rem !important;
  }

  .pb-md-63 {
    padding-bottom: 6.3rem !important;
  }

  .pb-md-64 {
    padding-bottom: 6.4rem !important;
  }

  .pb-md-65 {
    padding-bottom: 6.5rem !important;
  }

  .pb-md-66 {
    padding-bottom: 6.6rem !important;
  }

  .pb-md-67 {
    padding-bottom: 6.7rem !important;
  }

  .pb-md-68 {
    padding-bottom: 6.8rem !important;
  }

  .pb-md-69 {
    padding-bottom: 6.9rem !important;
  }

  .pb-md-70 {
    padding-bottom: 7rem !important;
  }

  .pb-md-71 {
    padding-bottom: 7.1rem !important;
  }

  .pb-md-72 {
    padding-bottom: 7.2rem !important;
  }

  .pb-md-73 {
    padding-bottom: 7.3rem !important;
  }

  .pb-md-74 {
    padding-bottom: 7.4rem !important;
  }

  .pb-md-75 {
    padding-bottom: 7.5rem !important;
  }

  .pb-md-76 {
    padding-bottom: 7.6rem !important;
  }

  .pb-md-77 {
    padding-bottom: 7.7rem !important;
  }

  .pb-md-78 {
    padding-bottom: 7.8rem !important;
  }

  .pb-md-79 {
    padding-bottom: 7.9rem !important;
  }

  .pb-md-80 {
    padding-bottom: 8rem !important;
  }

  .pb-md-81 {
    padding-bottom: 8.1rem !important;
  }

  .pb-md-82 {
    padding-bottom: 8.2rem !important;
  }

  .pb-md-83 {
    padding-bottom: 8.3rem !important;
  }

  .pb-md-84 {
    padding-bottom: 8.4rem !important;
  }

  .pb-md-85 {
    padding-bottom: 8.5rem !important;
  }

  .pb-md-86 {
    padding-bottom: 8.6rem !important;
  }

  .pb-md-87 {
    padding-bottom: 8.7rem !important;
  }

  .pb-md-88 {
    padding-bottom: 8.8rem !important;
  }

  .pb-md-89 {
    padding-bottom: 8.9rem !important;
  }

  .pb-md-90 {
    padding-bottom: 9rem !important;
  }

  .pb-md-91 {
    padding-bottom: 9.1rem !important;
  }

  .pb-md-92 {
    padding-bottom: 9.2rem !important;
  }

  .pb-md-93 {
    padding-bottom: 9.3rem !important;
  }

  .pb-md-94 {
    padding-bottom: 9.4rem !important;
  }

  .pb-md-95 {
    padding-bottom: 9.5rem !important;
  }

  .pb-md-96 {
    padding-bottom: 9.6rem !important;
  }

  .pb-md-97 {
    padding-bottom: 9.7rem !important;
  }

  .pb-md-98 {
    padding-bottom: 9.8rem !important;
  }

  .pb-md-99 {
    padding-bottom: 9.9rem !important;
  }

  .pb-md-100 {
    padding-bottom: 10rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .ps-md-6 {
    padding-left: 0.6rem !important;
  }

  .ps-md-7 {
    padding-left: 0.7rem !important;
  }

  .ps-md-8 {
    padding-left: 0.8rem !important;
  }

  .ps-md-9 {
    padding-left: 0.9rem !important;
  }

  .ps-md-10 {
    padding-left: 1rem !important;
  }

  .ps-md-11 {
    padding-left: 1.1rem !important;
  }

  .ps-md-12 {
    padding-left: 1.2rem !important;
  }

  .ps-md-13 {
    padding-left: 1.3rem !important;
  }

  .ps-md-14 {
    padding-left: 1.4rem !important;
  }

  .ps-md-15 {
    padding-left: 1.5rem !important;
  }

  .ps-md-16 {
    padding-left: 1.6rem !important;
  }

  .ps-md-17 {
    padding-left: 1.7rem !important;
  }

  .ps-md-18 {
    padding-left: 1.8rem !important;
  }

  .ps-md-19 {
    padding-left: 1.9rem !important;
  }

  .ps-md-20 {
    padding-left: 2rem !important;
  }

  .ps-md-21 {
    padding-left: 2.1rem !important;
  }

  .ps-md-22 {
    padding-left: 2.2rem !important;
  }

  .ps-md-23 {
    padding-left: 2.3rem !important;
  }

  .ps-md-24 {
    padding-left: 2.4rem !important;
  }

  .ps-md-25 {
    padding-left: 2.5rem !important;
  }

  .ps-md-26 {
    padding-left: 2.6rem !important;
  }

  .ps-md-27 {
    padding-left: 2.7rem !important;
  }

  .ps-md-28 {
    padding-left: 2.8rem !important;
  }

  .ps-md-29 {
    padding-left: 2.9rem !important;
  }

  .ps-md-30 {
    padding-left: 3rem !important;
  }

  .ps-md-31 {
    padding-left: 3.1rem !important;
  }

  .ps-md-32 {
    padding-left: 3.2rem !important;
  }

  .ps-md-33 {
    padding-left: 3.3rem !important;
  }

  .ps-md-34 {
    padding-left: 3.4rem !important;
  }

  .ps-md-35 {
    padding-left: 3.5rem !important;
  }

  .ps-md-36 {
    padding-left: 3.6rem !important;
  }

  .ps-md-37 {
    padding-left: 3.7rem !important;
  }

  .ps-md-38 {
    padding-left: 3.8rem !important;
  }

  .ps-md-39 {
    padding-left: 3.9rem !important;
  }

  .ps-md-40 {
    padding-left: 4rem !important;
  }

  .ps-md-41 {
    padding-left: 4.1rem !important;
  }

  .ps-md-42 {
    padding-left: 4.2rem !important;
  }

  .ps-md-43 {
    padding-left: 4.3rem !important;
  }

  .ps-md-44 {
    padding-left: 4.4rem !important;
  }

  .ps-md-45 {
    padding-left: 4.5rem !important;
  }

  .ps-md-46 {
    padding-left: 4.6rem !important;
  }

  .ps-md-47 {
    padding-left: 4.7rem !important;
  }

  .ps-md-48 {
    padding-left: 4.8rem !important;
  }

  .ps-md-49 {
    padding-left: 4.9rem !important;
  }

  .ps-md-50 {
    padding-left: 5rem !important;
  }

  .ps-md-51 {
    padding-left: 5.1rem !important;
  }

  .ps-md-52 {
    padding-left: 5.2rem !important;
  }

  .ps-md-53 {
    padding-left: 5.3rem !important;
  }

  .ps-md-54 {
    padding-left: 5.4rem !important;
  }

  .ps-md-55 {
    padding-left: 5.5rem !important;
  }

  .ps-md-56 {
    padding-left: 5.6rem !important;
  }

  .ps-md-57 {
    padding-left: 5.7rem !important;
  }

  .ps-md-58 {
    padding-left: 5.8rem !important;
  }

  .ps-md-59 {
    padding-left: 5.9rem !important;
  }

  .ps-md-60 {
    padding-left: 6rem !important;
  }

  .ps-md-61 {
    padding-left: 6.1rem !important;
  }

  .ps-md-62 {
    padding-left: 6.2rem !important;
  }

  .ps-md-63 {
    padding-left: 6.3rem !important;
  }

  .ps-md-64 {
    padding-left: 6.4rem !important;
  }

  .ps-md-65 {
    padding-left: 6.5rem !important;
  }

  .ps-md-66 {
    padding-left: 6.6rem !important;
  }

  .ps-md-67 {
    padding-left: 6.7rem !important;
  }

  .ps-md-68 {
    padding-left: 6.8rem !important;
  }

  .ps-md-69 {
    padding-left: 6.9rem !important;
  }

  .ps-md-70 {
    padding-left: 7rem !important;
  }

  .ps-md-71 {
    padding-left: 7.1rem !important;
  }

  .ps-md-72 {
    padding-left: 7.2rem !important;
  }

  .ps-md-73 {
    padding-left: 7.3rem !important;
  }

  .ps-md-74 {
    padding-left: 7.4rem !important;
  }

  .ps-md-75 {
    padding-left: 7.5rem !important;
  }

  .ps-md-76 {
    padding-left: 7.6rem !important;
  }

  .ps-md-77 {
    padding-left: 7.7rem !important;
  }

  .ps-md-78 {
    padding-left: 7.8rem !important;
  }

  .ps-md-79 {
    padding-left: 7.9rem !important;
  }

  .ps-md-80 {
    padding-left: 8rem !important;
  }

  .ps-md-81 {
    padding-left: 8.1rem !important;
  }

  .ps-md-82 {
    padding-left: 8.2rem !important;
  }

  .ps-md-83 {
    padding-left: 8.3rem !important;
  }

  .ps-md-84 {
    padding-left: 8.4rem !important;
  }

  .ps-md-85 {
    padding-left: 8.5rem !important;
  }

  .ps-md-86 {
    padding-left: 8.6rem !important;
  }

  .ps-md-87 {
    padding-left: 8.7rem !important;
  }

  .ps-md-88 {
    padding-left: 8.8rem !important;
  }

  .ps-md-89 {
    padding-left: 8.9rem !important;
  }

  .ps-md-90 {
    padding-left: 9rem !important;
  }

  .ps-md-91 {
    padding-left: 9.1rem !important;
  }

  .ps-md-92 {
    padding-left: 9.2rem !important;
  }

  .ps-md-93 {
    padding-left: 9.3rem !important;
  }

  .ps-md-94 {
    padding-left: 9.4rem !important;
  }

  .ps-md-95 {
    padding-left: 9.5rem !important;
  }

  .ps-md-96 {
    padding-left: 9.6rem !important;
  }

  .ps-md-97 {
    padding-left: 9.7rem !important;
  }

  .ps-md-98 {
    padding-left: 9.8rem !important;
  }

  .ps-md-99 {
    padding-left: 9.9rem !important;
  }

  .ps-md-100 {
    padding-left: 10rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !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;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .gap-lg-6 {
    gap: 0.6rem !important;
  }

  .gap-lg-7 {
    gap: 0.7rem !important;
  }

  .gap-lg-8 {
    gap: 0.8rem !important;
  }

  .gap-lg-9 {
    gap: 0.9rem !important;
  }

  .gap-lg-10 {
    gap: 1rem !important;
  }

  .gap-lg-11 {
    gap: 1.1rem !important;
  }

  .gap-lg-12 {
    gap: 1.2rem !important;
  }

  .gap-lg-13 {
    gap: 1.3rem !important;
  }

  .gap-lg-14 {
    gap: 1.4rem !important;
  }

  .gap-lg-15 {
    gap: 1.5rem !important;
  }

  .gap-lg-16 {
    gap: 1.6rem !important;
  }

  .gap-lg-17 {
    gap: 1.7rem !important;
  }

  .gap-lg-18 {
    gap: 1.8rem !important;
  }

  .gap-lg-19 {
    gap: 1.9rem !important;
  }

  .gap-lg-20 {
    gap: 2rem !important;
  }

  .gap-lg-21 {
    gap: 2.1rem !important;
  }

  .gap-lg-22 {
    gap: 2.2rem !important;
  }

  .gap-lg-23 {
    gap: 2.3rem !important;
  }

  .gap-lg-24 {
    gap: 2.4rem !important;
  }

  .gap-lg-25 {
    gap: 2.5rem !important;
  }

  .gap-lg-26 {
    gap: 2.6rem !important;
  }

  .gap-lg-27 {
    gap: 2.7rem !important;
  }

  .gap-lg-28 {
    gap: 2.8rem !important;
  }

  .gap-lg-29 {
    gap: 2.9rem !important;
  }

  .gap-lg-30 {
    gap: 3rem !important;
  }

  .gap-lg-31 {
    gap: 3.1rem !important;
  }

  .gap-lg-32 {
    gap: 3.2rem !important;
  }

  .gap-lg-33 {
    gap: 3.3rem !important;
  }

  .gap-lg-34 {
    gap: 3.4rem !important;
  }

  .gap-lg-35 {
    gap: 3.5rem !important;
  }

  .gap-lg-36 {
    gap: 3.6rem !important;
  }

  .gap-lg-37 {
    gap: 3.7rem !important;
  }

  .gap-lg-38 {
    gap: 3.8rem !important;
  }

  .gap-lg-39 {
    gap: 3.9rem !important;
  }

  .gap-lg-40 {
    gap: 4rem !important;
  }

  .gap-lg-41 {
    gap: 4.1rem !important;
  }

  .gap-lg-42 {
    gap: 4.2rem !important;
  }

  .gap-lg-43 {
    gap: 4.3rem !important;
  }

  .gap-lg-44 {
    gap: 4.4rem !important;
  }

  .gap-lg-45 {
    gap: 4.5rem !important;
  }

  .gap-lg-46 {
    gap: 4.6rem !important;
  }

  .gap-lg-47 {
    gap: 4.7rem !important;
  }

  .gap-lg-48 {
    gap: 4.8rem !important;
  }

  .gap-lg-49 {
    gap: 4.9rem !important;
  }

  .gap-lg-50 {
    gap: 5rem !important;
  }

  .gap-lg-51 {
    gap: 5.1rem !important;
  }

  .gap-lg-52 {
    gap: 5.2rem !important;
  }

  .gap-lg-53 {
    gap: 5.3rem !important;
  }

  .gap-lg-54 {
    gap: 5.4rem !important;
  }

  .gap-lg-55 {
    gap: 5.5rem !important;
  }

  .gap-lg-56 {
    gap: 5.6rem !important;
  }

  .gap-lg-57 {
    gap: 5.7rem !important;
  }

  .gap-lg-58 {
    gap: 5.8rem !important;
  }

  .gap-lg-59 {
    gap: 5.9rem !important;
  }

  .gap-lg-60 {
    gap: 6rem !important;
  }

  .gap-lg-61 {
    gap: 6.1rem !important;
  }

  .gap-lg-62 {
    gap: 6.2rem !important;
  }

  .gap-lg-63 {
    gap: 6.3rem !important;
  }

  .gap-lg-64 {
    gap: 6.4rem !important;
  }

  .gap-lg-65 {
    gap: 6.5rem !important;
  }

  .gap-lg-66 {
    gap: 6.6rem !important;
  }

  .gap-lg-67 {
    gap: 6.7rem !important;
  }

  .gap-lg-68 {
    gap: 6.8rem !important;
  }

  .gap-lg-69 {
    gap: 6.9rem !important;
  }

  .gap-lg-70 {
    gap: 7rem !important;
  }

  .gap-lg-71 {
    gap: 7.1rem !important;
  }

  .gap-lg-72 {
    gap: 7.2rem !important;
  }

  .gap-lg-73 {
    gap: 7.3rem !important;
  }

  .gap-lg-74 {
    gap: 7.4rem !important;
  }

  .gap-lg-75 {
    gap: 7.5rem !important;
  }

  .gap-lg-76 {
    gap: 7.6rem !important;
  }

  .gap-lg-77 {
    gap: 7.7rem !important;
  }

  .gap-lg-78 {
    gap: 7.8rem !important;
  }

  .gap-lg-79 {
    gap: 7.9rem !important;
  }

  .gap-lg-80 {
    gap: 8rem !important;
  }

  .gap-lg-81 {
    gap: 8.1rem !important;
  }

  .gap-lg-82 {
    gap: 8.2rem !important;
  }

  .gap-lg-83 {
    gap: 8.3rem !important;
  }

  .gap-lg-84 {
    gap: 8.4rem !important;
  }

  .gap-lg-85 {
    gap: 8.5rem !important;
  }

  .gap-lg-86 {
    gap: 8.6rem !important;
  }

  .gap-lg-87 {
    gap: 8.7rem !important;
  }

  .gap-lg-88 {
    gap: 8.8rem !important;
  }

  .gap-lg-89 {
    gap: 8.9rem !important;
  }

  .gap-lg-90 {
    gap: 9rem !important;
  }

  .gap-lg-91 {
    gap: 9.1rem !important;
  }

  .gap-lg-92 {
    gap: 9.2rem !important;
  }

  .gap-lg-93 {
    gap: 9.3rem !important;
  }

  .gap-lg-94 {
    gap: 9.4rem !important;
  }

  .gap-lg-95 {
    gap: 9.5rem !important;
  }

  .gap-lg-96 {
    gap: 9.6rem !important;
  }

  .gap-lg-97 {
    gap: 9.7rem !important;
  }

  .gap-lg-98 {
    gap: 9.8rem !important;
  }

  .gap-lg-99 {
    gap: 9.9rem !important;
  }

  .gap-lg-100 {
    gap: 10rem !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !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-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .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;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-6 {
    margin: 0.6rem !important;
  }

  .m-lg-7 {
    margin: 0.7rem !important;
  }

  .m-lg-8 {
    margin: 0.8rem !important;
  }

  .m-lg-9 {
    margin: 0.9rem !important;
  }

  .m-lg-10 {
    margin: 1rem !important;
  }

  .m-lg-11 {
    margin: 1.1rem !important;
  }

  .m-lg-12 {
    margin: 1.2rem !important;
  }

  .m-lg-13 {
    margin: 1.3rem !important;
  }

  .m-lg-14 {
    margin: 1.4rem !important;
  }

  .m-lg-15 {
    margin: 1.5rem !important;
  }

  .m-lg-16 {
    margin: 1.6rem !important;
  }

  .m-lg-17 {
    margin: 1.7rem !important;
  }

  .m-lg-18 {
    margin: 1.8rem !important;
  }

  .m-lg-19 {
    margin: 1.9rem !important;
  }

  .m-lg-20 {
    margin: 2rem !important;
  }

  .m-lg-21 {
    margin: 2.1rem !important;
  }

  .m-lg-22 {
    margin: 2.2rem !important;
  }

  .m-lg-23 {
    margin: 2.3rem !important;
  }

  .m-lg-24 {
    margin: 2.4rem !important;
  }

  .m-lg-25 {
    margin: 2.5rem !important;
  }

  .m-lg-26 {
    margin: 2.6rem !important;
  }

  .m-lg-27 {
    margin: 2.7rem !important;
  }

  .m-lg-28 {
    margin: 2.8rem !important;
  }

  .m-lg-29 {
    margin: 2.9rem !important;
  }

  .m-lg-30 {
    margin: 3rem !important;
  }

  .m-lg-31 {
    margin: 3.1rem !important;
  }

  .m-lg-32 {
    margin: 3.2rem !important;
  }

  .m-lg-33 {
    margin: 3.3rem !important;
  }

  .m-lg-34 {
    margin: 3.4rem !important;
  }

  .m-lg-35 {
    margin: 3.5rem !important;
  }

  .m-lg-36 {
    margin: 3.6rem !important;
  }

  .m-lg-37 {
    margin: 3.7rem !important;
  }

  .m-lg-38 {
    margin: 3.8rem !important;
  }

  .m-lg-39 {
    margin: 3.9rem !important;
  }

  .m-lg-40 {
    margin: 4rem !important;
  }

  .m-lg-41 {
    margin: 4.1rem !important;
  }

  .m-lg-42 {
    margin: 4.2rem !important;
  }

  .m-lg-43 {
    margin: 4.3rem !important;
  }

  .m-lg-44 {
    margin: 4.4rem !important;
  }

  .m-lg-45 {
    margin: 4.5rem !important;
  }

  .m-lg-46 {
    margin: 4.6rem !important;
  }

  .m-lg-47 {
    margin: 4.7rem !important;
  }

  .m-lg-48 {
    margin: 4.8rem !important;
  }

  .m-lg-49 {
    margin: 4.9rem !important;
  }

  .m-lg-50 {
    margin: 5rem !important;
  }

  .m-lg-51 {
    margin: 5.1rem !important;
  }

  .m-lg-52 {
    margin: 5.2rem !important;
  }

  .m-lg-53 {
    margin: 5.3rem !important;
  }

  .m-lg-54 {
    margin: 5.4rem !important;
  }

  .m-lg-55 {
    margin: 5.5rem !important;
  }

  .m-lg-56 {
    margin: 5.6rem !important;
  }

  .m-lg-57 {
    margin: 5.7rem !important;
  }

  .m-lg-58 {
    margin: 5.8rem !important;
  }

  .m-lg-59 {
    margin: 5.9rem !important;
  }

  .m-lg-60 {
    margin: 6rem !important;
  }

  .m-lg-61 {
    margin: 6.1rem !important;
  }

  .m-lg-62 {
    margin: 6.2rem !important;
  }

  .m-lg-63 {
    margin: 6.3rem !important;
  }

  .m-lg-64 {
    margin: 6.4rem !important;
  }

  .m-lg-65 {
    margin: 6.5rem !important;
  }

  .m-lg-66 {
    margin: 6.6rem !important;
  }

  .m-lg-67 {
    margin: 6.7rem !important;
  }

  .m-lg-68 {
    margin: 6.8rem !important;
  }

  .m-lg-69 {
    margin: 6.9rem !important;
  }

  .m-lg-70 {
    margin: 7rem !important;
  }

  .m-lg-71 {
    margin: 7.1rem !important;
  }

  .m-lg-72 {
    margin: 7.2rem !important;
  }

  .m-lg-73 {
    margin: 7.3rem !important;
  }

  .m-lg-74 {
    margin: 7.4rem !important;
  }

  .m-lg-75 {
    margin: 7.5rem !important;
  }

  .m-lg-76 {
    margin: 7.6rem !important;
  }

  .m-lg-77 {
    margin: 7.7rem !important;
  }

  .m-lg-78 {
    margin: 7.8rem !important;
  }

  .m-lg-79 {
    margin: 7.9rem !important;
  }

  .m-lg-80 {
    margin: 8rem !important;
  }

  .m-lg-81 {
    margin: 8.1rem !important;
  }

  .m-lg-82 {
    margin: 8.2rem !important;
  }

  .m-lg-83 {
    margin: 8.3rem !important;
  }

  .m-lg-84 {
    margin: 8.4rem !important;
  }

  .m-lg-85 {
    margin: 8.5rem !important;
  }

  .m-lg-86 {
    margin: 8.6rem !important;
  }

  .m-lg-87 {
    margin: 8.7rem !important;
  }

  .m-lg-88 {
    margin: 8.8rem !important;
  }

  .m-lg-89 {
    margin: 8.9rem !important;
  }

  .m-lg-90 {
    margin: 9rem !important;
  }

  .m-lg-91 {
    margin: 9.1rem !important;
  }

  .m-lg-92 {
    margin: 9.2rem !important;
  }

  .m-lg-93 {
    margin: 9.3rem !important;
  }

  .m-lg-94 {
    margin: 9.4rem !important;
  }

  .m-lg-95 {
    margin: 9.5rem !important;
  }

  .m-lg-96 {
    margin: 9.6rem !important;
  }

  .m-lg-97 {
    margin: 9.7rem !important;
  }

  .m-lg-98 {
    margin: 9.8rem !important;
  }

  .m-lg-99 {
    margin: 9.9rem !important;
  }

  .m-lg-100 {
    margin: 10rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-6 {
    margin-right: 0.6rem !important;
    margin-left: 0.6rem !important;
  }

  .mx-lg-7 {
    margin-right: 0.7rem !important;
    margin-left: 0.7rem !important;
  }

  .mx-lg-8 {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }

  .mx-lg-9 {
    margin-right: 0.9rem !important;
    margin-left: 0.9rem !important;
  }

  .mx-lg-10 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-11 {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
  }

  .mx-lg-12 {
    margin-right: 1.2rem !important;
    margin-left: 1.2rem !important;
  }

  .mx-lg-13 {
    margin-right: 1.3rem !important;
    margin-left: 1.3rem !important;
  }

  .mx-lg-14 {
    margin-right: 1.4rem !important;
    margin-left: 1.4rem !important;
  }

  .mx-lg-15 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-16 {
    margin-right: 1.6rem !important;
    margin-left: 1.6rem !important;
  }

  .mx-lg-17 {
    margin-right: 1.7rem !important;
    margin-left: 1.7rem !important;
  }

  .mx-lg-18 {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }

  .mx-lg-19 {
    margin-right: 1.9rem !important;
    margin-left: 1.9rem !important;
  }

  .mx-lg-20 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-lg-21 {
    margin-right: 2.1rem !important;
    margin-left: 2.1rem !important;
  }

  .mx-lg-22 {
    margin-right: 2.2rem !important;
    margin-left: 2.2rem !important;
  }

  .mx-lg-23 {
    margin-right: 2.3rem !important;
    margin-left: 2.3rem !important;
  }

  .mx-lg-24 {
    margin-right: 2.4rem !important;
    margin-left: 2.4rem !important;
  }

  .mx-lg-25 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-lg-26 {
    margin-right: 2.6rem !important;
    margin-left: 2.6rem !important;
  }

  .mx-lg-27 {
    margin-right: 2.7rem !important;
    margin-left: 2.7rem !important;
  }

  .mx-lg-28 {
    margin-right: 2.8rem !important;
    margin-left: 2.8rem !important;
  }

  .mx-lg-29 {
    margin-right: 2.9rem !important;
    margin-left: 2.9rem !important;
  }

  .mx-lg-30 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-31 {
    margin-right: 3.1rem !important;
    margin-left: 3.1rem !important;
  }

  .mx-lg-32 {
    margin-right: 3.2rem !important;
    margin-left: 3.2rem !important;
  }

  .mx-lg-33 {
    margin-right: 3.3rem !important;
    margin-left: 3.3rem !important;
  }

  .mx-lg-34 {
    margin-right: 3.4rem !important;
    margin-left: 3.4rem !important;
  }

  .mx-lg-35 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-lg-36 {
    margin-right: 3.6rem !important;
    margin-left: 3.6rem !important;
  }

  .mx-lg-37 {
    margin-right: 3.7rem !important;
    margin-left: 3.7rem !important;
  }

  .mx-lg-38 {
    margin-right: 3.8rem !important;
    margin-left: 3.8rem !important;
  }

  .mx-lg-39 {
    margin-right: 3.9rem !important;
    margin-left: 3.9rem !important;
  }

  .mx-lg-40 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-lg-41 {
    margin-right: 4.1rem !important;
    margin-left: 4.1rem !important;
  }

  .mx-lg-42 {
    margin-right: 4.2rem !important;
    margin-left: 4.2rem !important;
  }

  .mx-lg-43 {
    margin-right: 4.3rem !important;
    margin-left: 4.3rem !important;
  }

  .mx-lg-44 {
    margin-right: 4.4rem !important;
    margin-left: 4.4rem !important;
  }

  .mx-lg-45 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-lg-46 {
    margin-right: 4.6rem !important;
    margin-left: 4.6rem !important;
  }

  .mx-lg-47 {
    margin-right: 4.7rem !important;
    margin-left: 4.7rem !important;
  }

  .mx-lg-48 {
    margin-right: 4.8rem !important;
    margin-left: 4.8rem !important;
  }

  .mx-lg-49 {
    margin-right: 4.9rem !important;
    margin-left: 4.9rem !important;
  }

  .mx-lg-50 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-lg-51 {
    margin-right: 5.1rem !important;
    margin-left: 5.1rem !important;
  }

  .mx-lg-52 {
    margin-right: 5.2rem !important;
    margin-left: 5.2rem !important;
  }

  .mx-lg-53 {
    margin-right: 5.3rem !important;
    margin-left: 5.3rem !important;
  }

  .mx-lg-54 {
    margin-right: 5.4rem !important;
    margin-left: 5.4rem !important;
  }

  .mx-lg-55 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }

  .mx-lg-56 {
    margin-right: 5.6rem !important;
    margin-left: 5.6rem !important;
  }

  .mx-lg-57 {
    margin-right: 5.7rem !important;
    margin-left: 5.7rem !important;
  }

  .mx-lg-58 {
    margin-right: 5.8rem !important;
    margin-left: 5.8rem !important;
  }

  .mx-lg-59 {
    margin-right: 5.9rem !important;
    margin-left: 5.9rem !important;
  }

  .mx-lg-60 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-lg-61 {
    margin-right: 6.1rem !important;
    margin-left: 6.1rem !important;
  }

  .mx-lg-62 {
    margin-right: 6.2rem !important;
    margin-left: 6.2rem !important;
  }

  .mx-lg-63 {
    margin-right: 6.3rem !important;
    margin-left: 6.3rem !important;
  }

  .mx-lg-64 {
    margin-right: 6.4rem !important;
    margin-left: 6.4rem !important;
  }

  .mx-lg-65 {
    margin-right: 6.5rem !important;
    margin-left: 6.5rem !important;
  }

  .mx-lg-66 {
    margin-right: 6.6rem !important;
    margin-left: 6.6rem !important;
  }

  .mx-lg-67 {
    margin-right: 6.7rem !important;
    margin-left: 6.7rem !important;
  }

  .mx-lg-68 {
    margin-right: 6.8rem !important;
    margin-left: 6.8rem !important;
  }

  .mx-lg-69 {
    margin-right: 6.9rem !important;
    margin-left: 6.9rem !important;
  }

  .mx-lg-70 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }

  .mx-lg-71 {
    margin-right: 7.1rem !important;
    margin-left: 7.1rem !important;
  }

  .mx-lg-72 {
    margin-right: 7.2rem !important;
    margin-left: 7.2rem !important;
  }

  .mx-lg-73 {
    margin-right: 7.3rem !important;
    margin-left: 7.3rem !important;
  }

  .mx-lg-74 {
    margin-right: 7.4rem !important;
    margin-left: 7.4rem !important;
  }

  .mx-lg-75 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-lg-76 {
    margin-right: 7.6rem !important;
    margin-left: 7.6rem !important;
  }

  .mx-lg-77 {
    margin-right: 7.7rem !important;
    margin-left: 7.7rem !important;
  }

  .mx-lg-78 {
    margin-right: 7.8rem !important;
    margin-left: 7.8rem !important;
  }

  .mx-lg-79 {
    margin-right: 7.9rem !important;
    margin-left: 7.9rem !important;
  }

  .mx-lg-80 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-lg-81 {
    margin-right: 8.1rem !important;
    margin-left: 8.1rem !important;
  }

  .mx-lg-82 {
    margin-right: 8.2rem !important;
    margin-left: 8.2rem !important;
  }

  .mx-lg-83 {
    margin-right: 8.3rem !important;
    margin-left: 8.3rem !important;
  }

  .mx-lg-84 {
    margin-right: 8.4rem !important;
    margin-left: 8.4rem !important;
  }

  .mx-lg-85 {
    margin-right: 8.5rem !important;
    margin-left: 8.5rem !important;
  }

  .mx-lg-86 {
    margin-right: 8.6rem !important;
    margin-left: 8.6rem !important;
  }

  .mx-lg-87 {
    margin-right: 8.7rem !important;
    margin-left: 8.7rem !important;
  }

  .mx-lg-88 {
    margin-right: 8.8rem !important;
    margin-left: 8.8rem !important;
  }

  .mx-lg-89 {
    margin-right: 8.9rem !important;
    margin-left: 8.9rem !important;
  }

  .mx-lg-90 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }

  .mx-lg-91 {
    margin-right: 9.1rem !important;
    margin-left: 9.1rem !important;
  }

  .mx-lg-92 {
    margin-right: 9.2rem !important;
    margin-left: 9.2rem !important;
  }

  .mx-lg-93 {
    margin-right: 9.3rem !important;
    margin-left: 9.3rem !important;
  }

  .mx-lg-94 {
    margin-right: 9.4rem !important;
    margin-left: 9.4rem !important;
  }

  .mx-lg-95 {
    margin-right: 9.5rem !important;
    margin-left: 9.5rem !important;
  }

  .mx-lg-96 {
    margin-right: 9.6rem !important;
    margin-left: 9.6rem !important;
  }

  .mx-lg-97 {
    margin-right: 9.7rem !important;
    margin-left: 9.7rem !important;
  }

  .mx-lg-98 {
    margin-right: 9.8rem !important;
    margin-left: 9.8rem !important;
  }

  .mx-lg-99 {
    margin-right: 9.9rem !important;
    margin-left: 9.9rem !important;
  }

  .mx-lg-100 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-6 {
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .my-lg-7 {
    margin-top: 0.7rem !important;
    margin-bottom: 0.7rem !important;
  }

  .my-lg-8 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  .my-lg-9 {
    margin-top: 0.9rem !important;
    margin-bottom: 0.9rem !important;
  }

  .my-lg-10 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-11 {
    margin-top: 1.1rem !important;
    margin-bottom: 1.1rem !important;
  }

  .my-lg-12 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }

  .my-lg-13 {
    margin-top: 1.3rem !important;
    margin-bottom: 1.3rem !important;
  }

  .my-lg-14 {
    margin-top: 1.4rem !important;
    margin-bottom: 1.4rem !important;
  }

  .my-lg-15 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-16 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }

  .my-lg-17 {
    margin-top: 1.7rem !important;
    margin-bottom: 1.7rem !important;
  }

  .my-lg-18 {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }

  .my-lg-19 {
    margin-top: 1.9rem !important;
    margin-bottom: 1.9rem !important;
  }

  .my-lg-20 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-lg-21 {
    margin-top: 2.1rem !important;
    margin-bottom: 2.1rem !important;
  }

  .my-lg-22 {
    margin-top: 2.2rem !important;
    margin-bottom: 2.2rem !important;
  }

  .my-lg-23 {
    margin-top: 2.3rem !important;
    margin-bottom: 2.3rem !important;
  }

  .my-lg-24 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }

  .my-lg-25 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-lg-26 {
    margin-top: 2.6rem !important;
    margin-bottom: 2.6rem !important;
  }

  .my-lg-27 {
    margin-top: 2.7rem !important;
    margin-bottom: 2.7rem !important;
  }

  .my-lg-28 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }

  .my-lg-29 {
    margin-top: 2.9rem !important;
    margin-bottom: 2.9rem !important;
  }

  .my-lg-30 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-31 {
    margin-top: 3.1rem !important;
    margin-bottom: 3.1rem !important;
  }

  .my-lg-32 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }

  .my-lg-33 {
    margin-top: 3.3rem !important;
    margin-bottom: 3.3rem !important;
  }

  .my-lg-34 {
    margin-top: 3.4rem !important;
    margin-bottom: 3.4rem !important;
  }

  .my-lg-35 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-lg-36 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }

  .my-lg-37 {
    margin-top: 3.7rem !important;
    margin-bottom: 3.7rem !important;
  }

  .my-lg-38 {
    margin-top: 3.8rem !important;
    margin-bottom: 3.8rem !important;
  }

  .my-lg-39 {
    margin-top: 3.9rem !important;
    margin-bottom: 3.9rem !important;
  }

  .my-lg-40 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-lg-41 {
    margin-top: 4.1rem !important;
    margin-bottom: 4.1rem !important;
  }

  .my-lg-42 {
    margin-top: 4.2rem !important;
    margin-bottom: 4.2rem !important;
  }

  .my-lg-43 {
    margin-top: 4.3rem !important;
    margin-bottom: 4.3rem !important;
  }

  .my-lg-44 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }

  .my-lg-45 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-lg-46 {
    margin-top: 4.6rem !important;
    margin-bottom: 4.6rem !important;
  }

  .my-lg-47 {
    margin-top: 4.7rem !important;
    margin-bottom: 4.7rem !important;
  }

  .my-lg-48 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }

  .my-lg-49 {
    margin-top: 4.9rem !important;
    margin-bottom: 4.9rem !important;
  }

  .my-lg-50 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-lg-51 {
    margin-top: 5.1rem !important;
    margin-bottom: 5.1rem !important;
  }

  .my-lg-52 {
    margin-top: 5.2rem !important;
    margin-bottom: 5.2rem !important;
  }

  .my-lg-53 {
    margin-top: 5.3rem !important;
    margin-bottom: 5.3rem !important;
  }

  .my-lg-54 {
    margin-top: 5.4rem !important;
    margin-bottom: 5.4rem !important;
  }

  .my-lg-55 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .my-lg-56 {
    margin-top: 5.6rem !important;
    margin-bottom: 5.6rem !important;
  }

  .my-lg-57 {
    margin-top: 5.7rem !important;
    margin-bottom: 5.7rem !important;
  }

  .my-lg-58 {
    margin-top: 5.8rem !important;
    margin-bottom: 5.8rem !important;
  }

  .my-lg-59 {
    margin-top: 5.9rem !important;
    margin-bottom: 5.9rem !important;
  }

  .my-lg-60 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-lg-61 {
    margin-top: 6.1rem !important;
    margin-bottom: 6.1rem !important;
  }

  .my-lg-62 {
    margin-top: 6.2rem !important;
    margin-bottom: 6.2rem !important;
  }

  .my-lg-63 {
    margin-top: 6.3rem !important;
    margin-bottom: 6.3rem !important;
  }

  .my-lg-64 {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }

  .my-lg-65 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .my-lg-66 {
    margin-top: 6.6rem !important;
    margin-bottom: 6.6rem !important;
  }

  .my-lg-67 {
    margin-top: 6.7rem !important;
    margin-bottom: 6.7rem !important;
  }

  .my-lg-68 {
    margin-top: 6.8rem !important;
    margin-bottom: 6.8rem !important;
  }

  .my-lg-69 {
    margin-top: 6.9rem !important;
    margin-bottom: 6.9rem !important;
  }

  .my-lg-70 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .my-lg-71 {
    margin-top: 7.1rem !important;
    margin-bottom: 7.1rem !important;
  }

  .my-lg-72 {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important;
  }

  .my-lg-73 {
    margin-top: 7.3rem !important;
    margin-bottom: 7.3rem !important;
  }

  .my-lg-74 {
    margin-top: 7.4rem !important;
    margin-bottom: 7.4rem !important;
  }

  .my-lg-75 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-lg-76 {
    margin-top: 7.6rem !important;
    margin-bottom: 7.6rem !important;
  }

  .my-lg-77 {
    margin-top: 7.7rem !important;
    margin-bottom: 7.7rem !important;
  }

  .my-lg-78 {
    margin-top: 7.8rem !important;
    margin-bottom: 7.8rem !important;
  }

  .my-lg-79 {
    margin-top: 7.9rem !important;
    margin-bottom: 7.9rem !important;
  }

  .my-lg-80 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-lg-81 {
    margin-top: 8.1rem !important;
    margin-bottom: 8.1rem !important;
  }

  .my-lg-82 {
    margin-top: 8.2rem !important;
    margin-bottom: 8.2rem !important;
  }

  .my-lg-83 {
    margin-top: 8.3rem !important;
    margin-bottom: 8.3rem !important;
  }

  .my-lg-84 {
    margin-top: 8.4rem !important;
    margin-bottom: 8.4rem !important;
  }

  .my-lg-85 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }

  .my-lg-86 {
    margin-top: 8.6rem !important;
    margin-bottom: 8.6rem !important;
  }

  .my-lg-87 {
    margin-top: 8.7rem !important;
    margin-bottom: 8.7rem !important;
  }

  .my-lg-88 {
    margin-top: 8.8rem !important;
    margin-bottom: 8.8rem !important;
  }

  .my-lg-89 {
    margin-top: 8.9rem !important;
    margin-bottom: 8.9rem !important;
  }

  .my-lg-90 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .my-lg-91 {
    margin-top: 9.1rem !important;
    margin-bottom: 9.1rem !important;
  }

  .my-lg-92 {
    margin-top: 9.2rem !important;
    margin-bottom: 9.2rem !important;
  }

  .my-lg-93 {
    margin-top: 9.3rem !important;
    margin-bottom: 9.3rem !important;
  }

  .my-lg-94 {
    margin-top: 9.4rem !important;
    margin-bottom: 9.4rem !important;
  }

  .my-lg-95 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }

  .my-lg-96 {
    margin-top: 9.6rem !important;
    margin-bottom: 9.6rem !important;
  }

  .my-lg-97 {
    margin-top: 9.7rem !important;
    margin-bottom: 9.7rem !important;
  }

  .my-lg-98 {
    margin-top: 9.8rem !important;
    margin-bottom: 9.8rem !important;
  }

  .my-lg-99 {
    margin-top: 9.9rem !important;
    margin-bottom: 9.9rem !important;
  }

  .my-lg-100 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-6 {
    margin-top: 0.6rem !important;
  }

  .mt-lg-7 {
    margin-top: 0.7rem !important;
  }

  .mt-lg-8 {
    margin-top: 0.8rem !important;
  }

  .mt-lg-9 {
    margin-top: 0.9rem !important;
  }

  .mt-lg-10 {
    margin-top: 1rem !important;
  }

  .mt-lg-11 {
    margin-top: 1.1rem !important;
  }

  .mt-lg-12 {
    margin-top: 1.2rem !important;
  }

  .mt-lg-13 {
    margin-top: 1.3rem !important;
  }

  .mt-lg-14 {
    margin-top: 1.4rem !important;
  }

  .mt-lg-15 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-16 {
    margin-top: 1.6rem !important;
  }

  .mt-lg-17 {
    margin-top: 1.7rem !important;
  }

  .mt-lg-18 {
    margin-top: 1.8rem !important;
  }

  .mt-lg-19 {
    margin-top: 1.9rem !important;
  }

  .mt-lg-20 {
    margin-top: 2rem !important;
  }

  .mt-lg-21 {
    margin-top: 2.1rem !important;
  }

  .mt-lg-22 {
    margin-top: 2.2rem !important;
  }

  .mt-lg-23 {
    margin-top: 2.3rem !important;
  }

  .mt-lg-24 {
    margin-top: 2.4rem !important;
  }

  .mt-lg-25 {
    margin-top: 2.5rem !important;
  }

  .mt-lg-26 {
    margin-top: 2.6rem !important;
  }

  .mt-lg-27 {
    margin-top: 2.7rem !important;
  }

  .mt-lg-28 {
    margin-top: 2.8rem !important;
  }

  .mt-lg-29 {
    margin-top: 2.9rem !important;
  }

  .mt-lg-30 {
    margin-top: 3rem !important;
  }

  .mt-lg-31 {
    margin-top: 3.1rem !important;
  }

  .mt-lg-32 {
    margin-top: 3.2rem !important;
  }

  .mt-lg-33 {
    margin-top: 3.3rem !important;
  }

  .mt-lg-34 {
    margin-top: 3.4rem !important;
  }

  .mt-lg-35 {
    margin-top: 3.5rem !important;
  }

  .mt-lg-36 {
    margin-top: 3.6rem !important;
  }

  .mt-lg-37 {
    margin-top: 3.7rem !important;
  }

  .mt-lg-38 {
    margin-top: 3.8rem !important;
  }

  .mt-lg-39 {
    margin-top: 3.9rem !important;
  }

  .mt-lg-40 {
    margin-top: 4rem !important;
  }

  .mt-lg-41 {
    margin-top: 4.1rem !important;
  }

  .mt-lg-42 {
    margin-top: 4.2rem !important;
  }

  .mt-lg-43 {
    margin-top: 4.3rem !important;
  }

  .mt-lg-44 {
    margin-top: 4.4rem !important;
  }

  .mt-lg-45 {
    margin-top: 4.5rem !important;
  }

  .mt-lg-46 {
    margin-top: 4.6rem !important;
  }

  .mt-lg-47 {
    margin-top: 4.7rem !important;
  }

  .mt-lg-48 {
    margin-top: 4.8rem !important;
  }

  .mt-lg-49 {
    margin-top: 4.9rem !important;
  }

  .mt-lg-50 {
    margin-top: 5rem !important;
  }

  .mt-lg-51 {
    margin-top: 5.1rem !important;
  }

  .mt-lg-52 {
    margin-top: 5.2rem !important;
  }

  .mt-lg-53 {
    margin-top: 5.3rem !important;
  }

  .mt-lg-54 {
    margin-top: 5.4rem !important;
  }

  .mt-lg-55 {
    margin-top: 5.5rem !important;
  }

  .mt-lg-56 {
    margin-top: 5.6rem !important;
  }

  .mt-lg-57 {
    margin-top: 5.7rem !important;
  }

  .mt-lg-58 {
    margin-top: 5.8rem !important;
  }

  .mt-lg-59 {
    margin-top: 5.9rem !important;
  }

  .mt-lg-60 {
    margin-top: 6rem !important;
  }

  .mt-lg-61 {
    margin-top: 6.1rem !important;
  }

  .mt-lg-62 {
    margin-top: 6.2rem !important;
  }

  .mt-lg-63 {
    margin-top: 6.3rem !important;
  }

  .mt-lg-64 {
    margin-top: 6.4rem !important;
  }

  .mt-lg-65 {
    margin-top: 6.5rem !important;
  }

  .mt-lg-66 {
    margin-top: 6.6rem !important;
  }

  .mt-lg-67 {
    margin-top: 6.7rem !important;
  }

  .mt-lg-68 {
    margin-top: 6.8rem !important;
  }

  .mt-lg-69 {
    margin-top: 6.9rem !important;
  }

  .mt-lg-70 {
    margin-top: 7rem !important;
  }

  .mt-lg-71 {
    margin-top: 7.1rem !important;
  }

  .mt-lg-72 {
    margin-top: 7.2rem !important;
  }

  .mt-lg-73 {
    margin-top: 7.3rem !important;
  }

  .mt-lg-74 {
    margin-top: 7.4rem !important;
  }

  .mt-lg-75 {
    margin-top: 7.5rem !important;
  }

  .mt-lg-76 {
    margin-top: 7.6rem !important;
  }

  .mt-lg-77 {
    margin-top: 7.7rem !important;
  }

  .mt-lg-78 {
    margin-top: 7.8rem !important;
  }

  .mt-lg-79 {
    margin-top: 7.9rem !important;
  }

  .mt-lg-80 {
    margin-top: 8rem !important;
  }

  .mt-lg-81 {
    margin-top: 8.1rem !important;
  }

  .mt-lg-82 {
    margin-top: 8.2rem !important;
  }

  .mt-lg-83 {
    margin-top: 8.3rem !important;
  }

  .mt-lg-84 {
    margin-top: 8.4rem !important;
  }

  .mt-lg-85 {
    margin-top: 8.5rem !important;
  }

  .mt-lg-86 {
    margin-top: 8.6rem !important;
  }

  .mt-lg-87 {
    margin-top: 8.7rem !important;
  }

  .mt-lg-88 {
    margin-top: 8.8rem !important;
  }

  .mt-lg-89 {
    margin-top: 8.9rem !important;
  }

  .mt-lg-90 {
    margin-top: 9rem !important;
  }

  .mt-lg-91 {
    margin-top: 9.1rem !important;
  }

  .mt-lg-92 {
    margin-top: 9.2rem !important;
  }

  .mt-lg-93 {
    margin-top: 9.3rem !important;
  }

  .mt-lg-94 {
    margin-top: 9.4rem !important;
  }

  .mt-lg-95 {
    margin-top: 9.5rem !important;
  }

  .mt-lg-96 {
    margin-top: 9.6rem !important;
  }

  .mt-lg-97 {
    margin-top: 9.7rem !important;
  }

  .mt-lg-98 {
    margin-top: 9.8rem !important;
  }

  .mt-lg-99 {
    margin-top: 9.9rem !important;
  }

  .mt-lg-100 {
    margin-top: 10rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-6 {
    margin-right: 0.6rem !important;
  }

  .me-lg-7 {
    margin-right: 0.7rem !important;
  }

  .me-lg-8 {
    margin-right: 0.8rem !important;
  }

  .me-lg-9 {
    margin-right: 0.9rem !important;
  }

  .me-lg-10 {
    margin-right: 1rem !important;
  }

  .me-lg-11 {
    margin-right: 1.1rem !important;
  }

  .me-lg-12 {
    margin-right: 1.2rem !important;
  }

  .me-lg-13 {
    margin-right: 1.3rem !important;
  }

  .me-lg-14 {
    margin-right: 1.4rem !important;
  }

  .me-lg-15 {
    margin-right: 1.5rem !important;
  }

  .me-lg-16 {
    margin-right: 1.6rem !important;
  }

  .me-lg-17 {
    margin-right: 1.7rem !important;
  }

  .me-lg-18 {
    margin-right: 1.8rem !important;
  }

  .me-lg-19 {
    margin-right: 1.9rem !important;
  }

  .me-lg-20 {
    margin-right: 2rem !important;
  }

  .me-lg-21 {
    margin-right: 2.1rem !important;
  }

  .me-lg-22 {
    margin-right: 2.2rem !important;
  }

  .me-lg-23 {
    margin-right: 2.3rem !important;
  }

  .me-lg-24 {
    margin-right: 2.4rem !important;
  }

  .me-lg-25 {
    margin-right: 2.5rem !important;
  }

  .me-lg-26 {
    margin-right: 2.6rem !important;
  }

  .me-lg-27 {
    margin-right: 2.7rem !important;
  }

  .me-lg-28 {
    margin-right: 2.8rem !important;
  }

  .me-lg-29 {
    margin-right: 2.9rem !important;
  }

  .me-lg-30 {
    margin-right: 3rem !important;
  }

  .me-lg-31 {
    margin-right: 3.1rem !important;
  }

  .me-lg-32 {
    margin-right: 3.2rem !important;
  }

  .me-lg-33 {
    margin-right: 3.3rem !important;
  }

  .me-lg-34 {
    margin-right: 3.4rem !important;
  }

  .me-lg-35 {
    margin-right: 3.5rem !important;
  }

  .me-lg-36 {
    margin-right: 3.6rem !important;
  }

  .me-lg-37 {
    margin-right: 3.7rem !important;
  }

  .me-lg-38 {
    margin-right: 3.8rem !important;
  }

  .me-lg-39 {
    margin-right: 3.9rem !important;
  }

  .me-lg-40 {
    margin-right: 4rem !important;
  }

  .me-lg-41 {
    margin-right: 4.1rem !important;
  }

  .me-lg-42 {
    margin-right: 4.2rem !important;
  }

  .me-lg-43 {
    margin-right: 4.3rem !important;
  }

  .me-lg-44 {
    margin-right: 4.4rem !important;
  }

  .me-lg-45 {
    margin-right: 4.5rem !important;
  }

  .me-lg-46 {
    margin-right: 4.6rem !important;
  }

  .me-lg-47 {
    margin-right: 4.7rem !important;
  }

  .me-lg-48 {
    margin-right: 4.8rem !important;
  }

  .me-lg-49 {
    margin-right: 4.9rem !important;
  }

  .me-lg-50 {
    margin-right: 5rem !important;
  }

  .me-lg-51 {
    margin-right: 5.1rem !important;
  }

  .me-lg-52 {
    margin-right: 5.2rem !important;
  }

  .me-lg-53 {
    margin-right: 5.3rem !important;
  }

  .me-lg-54 {
    margin-right: 5.4rem !important;
  }

  .me-lg-55 {
    margin-right: 5.5rem !important;
  }

  .me-lg-56 {
    margin-right: 5.6rem !important;
  }

  .me-lg-57 {
    margin-right: 5.7rem !important;
  }

  .me-lg-58 {
    margin-right: 5.8rem !important;
  }

  .me-lg-59 {
    margin-right: 5.9rem !important;
  }

  .me-lg-60 {
    margin-right: 6rem !important;
  }

  .me-lg-61 {
    margin-right: 6.1rem !important;
  }

  .me-lg-62 {
    margin-right: 6.2rem !important;
  }

  .me-lg-63 {
    margin-right: 6.3rem !important;
  }

  .me-lg-64 {
    margin-right: 6.4rem !important;
  }

  .me-lg-65 {
    margin-right: 6.5rem !important;
  }

  .me-lg-66 {
    margin-right: 6.6rem !important;
  }

  .me-lg-67 {
    margin-right: 6.7rem !important;
  }

  .me-lg-68 {
    margin-right: 6.8rem !important;
  }

  .me-lg-69 {
    margin-right: 6.9rem !important;
  }

  .me-lg-70 {
    margin-right: 7rem !important;
  }

  .me-lg-71 {
    margin-right: 7.1rem !important;
  }

  .me-lg-72 {
    margin-right: 7.2rem !important;
  }

  .me-lg-73 {
    margin-right: 7.3rem !important;
  }

  .me-lg-74 {
    margin-right: 7.4rem !important;
  }

  .me-lg-75 {
    margin-right: 7.5rem !important;
  }

  .me-lg-76 {
    margin-right: 7.6rem !important;
  }

  .me-lg-77 {
    margin-right: 7.7rem !important;
  }

  .me-lg-78 {
    margin-right: 7.8rem !important;
  }

  .me-lg-79 {
    margin-right: 7.9rem !important;
  }

  .me-lg-80 {
    margin-right: 8rem !important;
  }

  .me-lg-81 {
    margin-right: 8.1rem !important;
  }

  .me-lg-82 {
    margin-right: 8.2rem !important;
  }

  .me-lg-83 {
    margin-right: 8.3rem !important;
  }

  .me-lg-84 {
    margin-right: 8.4rem !important;
  }

  .me-lg-85 {
    margin-right: 8.5rem !important;
  }

  .me-lg-86 {
    margin-right: 8.6rem !important;
  }

  .me-lg-87 {
    margin-right: 8.7rem !important;
  }

  .me-lg-88 {
    margin-right: 8.8rem !important;
  }

  .me-lg-89 {
    margin-right: 8.9rem !important;
  }

  .me-lg-90 {
    margin-right: 9rem !important;
  }

  .me-lg-91 {
    margin-right: 9.1rem !important;
  }

  .me-lg-92 {
    margin-right: 9.2rem !important;
  }

  .me-lg-93 {
    margin-right: 9.3rem !important;
  }

  .me-lg-94 {
    margin-right: 9.4rem !important;
  }

  .me-lg-95 {
    margin-right: 9.5rem !important;
  }

  .me-lg-96 {
    margin-right: 9.6rem !important;
  }

  .me-lg-97 {
    margin-right: 9.7rem !important;
  }

  .me-lg-98 {
    margin-right: 9.8rem !important;
  }

  .me-lg-99 {
    margin-right: 9.9rem !important;
  }

  .me-lg-100 {
    margin-right: 10rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-6 {
    margin-bottom: 0.6rem !important;
  }

  .mb-lg-7 {
    margin-bottom: 0.7rem !important;
  }

  .mb-lg-8 {
    margin-bottom: 0.8rem !important;
  }

  .mb-lg-9 {
    margin-bottom: 0.9rem !important;
  }

  .mb-lg-10 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-11 {
    margin-bottom: 1.1rem !important;
  }

  .mb-lg-12 {
    margin-bottom: 1.2rem !important;
  }

  .mb-lg-13 {
    margin-bottom: 1.3rem !important;
  }

  .mb-lg-14 {
    margin-bottom: 1.4rem !important;
  }

  .mb-lg-15 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-16 {
    margin-bottom: 1.6rem !important;
  }

  .mb-lg-17 {
    margin-bottom: 1.7rem !important;
  }

  .mb-lg-18 {
    margin-bottom: 1.8rem !important;
  }

  .mb-lg-19 {
    margin-bottom: 1.9rem !important;
  }

  .mb-lg-20 {
    margin-bottom: 2rem !important;
  }

  .mb-lg-21 {
    margin-bottom: 2.1rem !important;
  }

  .mb-lg-22 {
    margin-bottom: 2.2rem !important;
  }

  .mb-lg-23 {
    margin-bottom: 2.3rem !important;
  }

  .mb-lg-24 {
    margin-bottom: 2.4rem !important;
  }

  .mb-lg-25 {
    margin-bottom: 2.5rem !important;
  }

  .mb-lg-26 {
    margin-bottom: 2.6rem !important;
  }

  .mb-lg-27 {
    margin-bottom: 2.7rem !important;
  }

  .mb-lg-28 {
    margin-bottom: 2.8rem !important;
  }

  .mb-lg-29 {
    margin-bottom: 2.9rem !important;
  }

  .mb-lg-30 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-31 {
    margin-bottom: 3.1rem !important;
  }

  .mb-lg-32 {
    margin-bottom: 3.2rem !important;
  }

  .mb-lg-33 {
    margin-bottom: 3.3rem !important;
  }

  .mb-lg-34 {
    margin-bottom: 3.4rem !important;
  }

  .mb-lg-35 {
    margin-bottom: 3.5rem !important;
  }

  .mb-lg-36 {
    margin-bottom: 3.6rem !important;
  }

  .mb-lg-37 {
    margin-bottom: 3.7rem !important;
  }

  .mb-lg-38 {
    margin-bottom: 3.8rem !important;
  }

  .mb-lg-39 {
    margin-bottom: 3.9rem !important;
  }

  .mb-lg-40 {
    margin-bottom: 4rem !important;
  }

  .mb-lg-41 {
    margin-bottom: 4.1rem !important;
  }

  .mb-lg-42 {
    margin-bottom: 4.2rem !important;
  }

  .mb-lg-43 {
    margin-bottom: 4.3rem !important;
  }

  .mb-lg-44 {
    margin-bottom: 4.4rem !important;
  }

  .mb-lg-45 {
    margin-bottom: 4.5rem !important;
  }

  .mb-lg-46 {
    margin-bottom: 4.6rem !important;
  }

  .mb-lg-47 {
    margin-bottom: 4.7rem !important;
  }

  .mb-lg-48 {
    margin-bottom: 4.8rem !important;
  }

  .mb-lg-49 {
    margin-bottom: 4.9rem !important;
  }

  .mb-lg-50 {
    margin-bottom: 5rem !important;
  }

  .mb-lg-51 {
    margin-bottom: 5.1rem !important;
  }

  .mb-lg-52 {
    margin-bottom: 5.2rem !important;
  }

  .mb-lg-53 {
    margin-bottom: 5.3rem !important;
  }

  .mb-lg-54 {
    margin-bottom: 5.4rem !important;
  }

  .mb-lg-55 {
    margin-bottom: 5.5rem !important;
  }

  .mb-lg-56 {
    margin-bottom: 5.6rem !important;
  }

  .mb-lg-57 {
    margin-bottom: 5.7rem !important;
  }

  .mb-lg-58 {
    margin-bottom: 5.8rem !important;
  }

  .mb-lg-59 {
    margin-bottom: 5.9rem !important;
  }

  .mb-lg-60 {
    margin-bottom: 6rem !important;
  }

  .mb-lg-61 {
    margin-bottom: 6.1rem !important;
  }

  .mb-lg-62 {
    margin-bottom: 6.2rem !important;
  }

  .mb-lg-63 {
    margin-bottom: 6.3rem !important;
  }

  .mb-lg-64 {
    margin-bottom: 6.4rem !important;
  }

  .mb-lg-65 {
    margin-bottom: 6.5rem !important;
  }

  .mb-lg-66 {
    margin-bottom: 6.6rem !important;
  }

  .mb-lg-67 {
    margin-bottom: 6.7rem !important;
  }

  .mb-lg-68 {
    margin-bottom: 6.8rem !important;
  }

  .mb-lg-69 {
    margin-bottom: 6.9rem !important;
  }

  .mb-lg-70 {
    margin-bottom: 7rem !important;
  }

  .mb-lg-71 {
    margin-bottom: 7.1rem !important;
  }

  .mb-lg-72 {
    margin-bottom: 7.2rem !important;
  }

  .mb-lg-73 {
    margin-bottom: 7.3rem !important;
  }

  .mb-lg-74 {
    margin-bottom: 7.4rem !important;
  }

  .mb-lg-75 {
    margin-bottom: 7.5rem !important;
  }

  .mb-lg-76 {
    margin-bottom: 7.6rem !important;
  }

  .mb-lg-77 {
    margin-bottom: 7.7rem !important;
  }

  .mb-lg-78 {
    margin-bottom: 7.8rem !important;
  }

  .mb-lg-79 {
    margin-bottom: 7.9rem !important;
  }

  .mb-lg-80 {
    margin-bottom: 8rem !important;
  }

  .mb-lg-81 {
    margin-bottom: 8.1rem !important;
  }

  .mb-lg-82 {
    margin-bottom: 8.2rem !important;
  }

  .mb-lg-83 {
    margin-bottom: 8.3rem !important;
  }

  .mb-lg-84 {
    margin-bottom: 8.4rem !important;
  }

  .mb-lg-85 {
    margin-bottom: 8.5rem !important;
  }

  .mb-lg-86 {
    margin-bottom: 8.6rem !important;
  }

  .mb-lg-87 {
    margin-bottom: 8.7rem !important;
  }

  .mb-lg-88 {
    margin-bottom: 8.8rem !important;
  }

  .mb-lg-89 {
    margin-bottom: 8.9rem !important;
  }

  .mb-lg-90 {
    margin-bottom: 9rem !important;
  }

  .mb-lg-91 {
    margin-bottom: 9.1rem !important;
  }

  .mb-lg-92 {
    margin-bottom: 9.2rem !important;
  }

  .mb-lg-93 {
    margin-bottom: 9.3rem !important;
  }

  .mb-lg-94 {
    margin-bottom: 9.4rem !important;
  }

  .mb-lg-95 {
    margin-bottom: 9.5rem !important;
  }

  .mb-lg-96 {
    margin-bottom: 9.6rem !important;
  }

  .mb-lg-97 {
    margin-bottom: 9.7rem !important;
  }

  .mb-lg-98 {
    margin-bottom: 9.8rem !important;
  }

  .mb-lg-99 {
    margin-bottom: 9.9rem !important;
  }

  .mb-lg-100 {
    margin-bottom: 10rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-6 {
    margin-left: 0.6rem !important;
  }

  .ms-lg-7 {
    margin-left: 0.7rem !important;
  }

  .ms-lg-8 {
    margin-left: 0.8rem !important;
  }

  .ms-lg-9 {
    margin-left: 0.9rem !important;
  }

  .ms-lg-10 {
    margin-left: 1rem !important;
  }

  .ms-lg-11 {
    margin-left: 1.1rem !important;
  }

  .ms-lg-12 {
    margin-left: 1.2rem !important;
  }

  .ms-lg-13 {
    margin-left: 1.3rem !important;
  }

  .ms-lg-14 {
    margin-left: 1.4rem !important;
  }

  .ms-lg-15 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-16 {
    margin-left: 1.6rem !important;
  }

  .ms-lg-17 {
    margin-left: 1.7rem !important;
  }

  .ms-lg-18 {
    margin-left: 1.8rem !important;
  }

  .ms-lg-19 {
    margin-left: 1.9rem !important;
  }

  .ms-lg-20 {
    margin-left: 2rem !important;
  }

  .ms-lg-21 {
    margin-left: 2.1rem !important;
  }

  .ms-lg-22 {
    margin-left: 2.2rem !important;
  }

  .ms-lg-23 {
    margin-left: 2.3rem !important;
  }

  .ms-lg-24 {
    margin-left: 2.4rem !important;
  }

  .ms-lg-25 {
    margin-left: 2.5rem !important;
  }

  .ms-lg-26 {
    margin-left: 2.6rem !important;
  }

  .ms-lg-27 {
    margin-left: 2.7rem !important;
  }

  .ms-lg-28 {
    margin-left: 2.8rem !important;
  }

  .ms-lg-29 {
    margin-left: 2.9rem !important;
  }

  .ms-lg-30 {
    margin-left: 3rem !important;
  }

  .ms-lg-31 {
    margin-left: 3.1rem !important;
  }

  .ms-lg-32 {
    margin-left: 3.2rem !important;
  }

  .ms-lg-33 {
    margin-left: 3.3rem !important;
  }

  .ms-lg-34 {
    margin-left: 3.4rem !important;
  }

  .ms-lg-35 {
    margin-left: 3.5rem !important;
  }

  .ms-lg-36 {
    margin-left: 3.6rem !important;
  }

  .ms-lg-37 {
    margin-left: 3.7rem !important;
  }

  .ms-lg-38 {
    margin-left: 3.8rem !important;
  }

  .ms-lg-39 {
    margin-left: 3.9rem !important;
  }

  .ms-lg-40 {
    margin-left: 4rem !important;
  }

  .ms-lg-41 {
    margin-left: 4.1rem !important;
  }

  .ms-lg-42 {
    margin-left: 4.2rem !important;
  }

  .ms-lg-43 {
    margin-left: 4.3rem !important;
  }

  .ms-lg-44 {
    margin-left: 4.4rem !important;
  }

  .ms-lg-45 {
    margin-left: 4.5rem !important;
  }

  .ms-lg-46 {
    margin-left: 4.6rem !important;
  }

  .ms-lg-47 {
    margin-left: 4.7rem !important;
  }

  .ms-lg-48 {
    margin-left: 4.8rem !important;
  }

  .ms-lg-49 {
    margin-left: 4.9rem !important;
  }

  .ms-lg-50 {
    margin-left: 5rem !important;
  }

  .ms-lg-51 {
    margin-left: 5.1rem !important;
  }

  .ms-lg-52 {
    margin-left: 5.2rem !important;
  }

  .ms-lg-53 {
    margin-left: 5.3rem !important;
  }

  .ms-lg-54 {
    margin-left: 5.4rem !important;
  }

  .ms-lg-55 {
    margin-left: 5.5rem !important;
  }

  .ms-lg-56 {
    margin-left: 5.6rem !important;
  }

  .ms-lg-57 {
    margin-left: 5.7rem !important;
  }

  .ms-lg-58 {
    margin-left: 5.8rem !important;
  }

  .ms-lg-59 {
    margin-left: 5.9rem !important;
  }

  .ms-lg-60 {
    margin-left: 6rem !important;
  }

  .ms-lg-61 {
    margin-left: 6.1rem !important;
  }

  .ms-lg-62 {
    margin-left: 6.2rem !important;
  }

  .ms-lg-63 {
    margin-left: 6.3rem !important;
  }

  .ms-lg-64 {
    margin-left: 6.4rem !important;
  }

  .ms-lg-65 {
    margin-left: 6.5rem !important;
  }

  .ms-lg-66 {
    margin-left: 6.6rem !important;
  }

  .ms-lg-67 {
    margin-left: 6.7rem !important;
  }

  .ms-lg-68 {
    margin-left: 6.8rem !important;
  }

  .ms-lg-69 {
    margin-left: 6.9rem !important;
  }

  .ms-lg-70 {
    margin-left: 7rem !important;
  }

  .ms-lg-71 {
    margin-left: 7.1rem !important;
  }

  .ms-lg-72 {
    margin-left: 7.2rem !important;
  }

  .ms-lg-73 {
    margin-left: 7.3rem !important;
  }

  .ms-lg-74 {
    margin-left: 7.4rem !important;
  }

  .ms-lg-75 {
    margin-left: 7.5rem !important;
  }

  .ms-lg-76 {
    margin-left: 7.6rem !important;
  }

  .ms-lg-77 {
    margin-left: 7.7rem !important;
  }

  .ms-lg-78 {
    margin-left: 7.8rem !important;
  }

  .ms-lg-79 {
    margin-left: 7.9rem !important;
  }

  .ms-lg-80 {
    margin-left: 8rem !important;
  }

  .ms-lg-81 {
    margin-left: 8.1rem !important;
  }

  .ms-lg-82 {
    margin-left: 8.2rem !important;
  }

  .ms-lg-83 {
    margin-left: 8.3rem !important;
  }

  .ms-lg-84 {
    margin-left: 8.4rem !important;
  }

  .ms-lg-85 {
    margin-left: 8.5rem !important;
  }

  .ms-lg-86 {
    margin-left: 8.6rem !important;
  }

  .ms-lg-87 {
    margin-left: 8.7rem !important;
  }

  .ms-lg-88 {
    margin-left: 8.8rem !important;
  }

  .ms-lg-89 {
    margin-left: 8.9rem !important;
  }

  .ms-lg-90 {
    margin-left: 9rem !important;
  }

  .ms-lg-91 {
    margin-left: 9.1rem !important;
  }

  .ms-lg-92 {
    margin-left: 9.2rem !important;
  }

  .ms-lg-93 {
    margin-left: 9.3rem !important;
  }

  .ms-lg-94 {
    margin-left: 9.4rem !important;
  }

  .ms-lg-95 {
    margin-left: 9.5rem !important;
  }

  .ms-lg-96 {
    margin-left: 9.6rem !important;
  }

  .ms-lg-97 {
    margin-left: 9.7rem !important;
  }

  .ms-lg-98 {
    margin-left: 9.8rem !important;
  }

  .ms-lg-99 {
    margin-left: 9.9rem !important;
  }

  .ms-lg-100 {
    margin-left: 10rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .p-lg-6 {
    padding: 0.6rem !important;
  }

  .p-lg-7 {
    padding: 0.7rem !important;
  }

  .p-lg-8 {
    padding: 0.8rem !important;
  }

  .p-lg-9 {
    padding: 0.9rem !important;
  }

  .p-lg-10 {
    padding: 1rem !important;
  }

  .p-lg-11 {
    padding: 1.1rem !important;
  }

  .p-lg-12 {
    padding: 1.2rem !important;
  }

  .p-lg-13 {
    padding: 1.3rem !important;
  }

  .p-lg-14 {
    padding: 1.4rem !important;
  }

  .p-lg-15 {
    padding: 1.5rem !important;
  }

  .p-lg-16 {
    padding: 1.6rem !important;
  }

  .p-lg-17 {
    padding: 1.7rem !important;
  }

  .p-lg-18 {
    padding: 1.8rem !important;
  }

  .p-lg-19 {
    padding: 1.9rem !important;
  }

  .p-lg-20 {
    padding: 2rem !important;
  }

  .p-lg-21 {
    padding: 2.1rem !important;
  }

  .p-lg-22 {
    padding: 2.2rem !important;
  }

  .p-lg-23 {
    padding: 2.3rem !important;
  }

  .p-lg-24 {
    padding: 2.4rem !important;
  }

  .p-lg-25 {
    padding: 2.5rem !important;
  }

  .p-lg-26 {
    padding: 2.6rem !important;
  }

  .p-lg-27 {
    padding: 2.7rem !important;
  }

  .p-lg-28 {
    padding: 2.8rem !important;
  }

  .p-lg-29 {
    padding: 2.9rem !important;
  }

  .p-lg-30 {
    padding: 3rem !important;
  }

  .p-lg-31 {
    padding: 3.1rem !important;
  }

  .p-lg-32 {
    padding: 3.2rem !important;
  }

  .p-lg-33 {
    padding: 3.3rem !important;
  }

  .p-lg-34 {
    padding: 3.4rem !important;
  }

  .p-lg-35 {
    padding: 3.5rem !important;
  }

  .p-lg-36 {
    padding: 3.6rem !important;
  }

  .p-lg-37 {
    padding: 3.7rem !important;
  }

  .p-lg-38 {
    padding: 3.8rem !important;
  }

  .p-lg-39 {
    padding: 3.9rem !important;
  }

  .p-lg-40 {
    padding: 4rem !important;
  }

  .p-lg-41 {
    padding: 4.1rem !important;
  }

  .p-lg-42 {
    padding: 4.2rem !important;
  }

  .p-lg-43 {
    padding: 4.3rem !important;
  }

  .p-lg-44 {
    padding: 4.4rem !important;
  }

  .p-lg-45 {
    padding: 4.5rem !important;
  }

  .p-lg-46 {
    padding: 4.6rem !important;
  }

  .p-lg-47 {
    padding: 4.7rem !important;
  }

  .p-lg-48 {
    padding: 4.8rem !important;
  }

  .p-lg-49 {
    padding: 4.9rem !important;
  }

  .p-lg-50 {
    padding: 5rem !important;
  }

  .p-lg-51 {
    padding: 5.1rem !important;
  }

  .p-lg-52 {
    padding: 5.2rem !important;
  }

  .p-lg-53 {
    padding: 5.3rem !important;
  }

  .p-lg-54 {
    padding: 5.4rem !important;
  }

  .p-lg-55 {
    padding: 5.5rem !important;
  }

  .p-lg-56 {
    padding: 5.6rem !important;
  }

  .p-lg-57 {
    padding: 5.7rem !important;
  }

  .p-lg-58 {
    padding: 5.8rem !important;
  }

  .p-lg-59 {
    padding: 5.9rem !important;
  }

  .p-lg-60 {
    padding: 6rem !important;
  }

  .p-lg-61 {
    padding: 6.1rem !important;
  }

  .p-lg-62 {
    padding: 6.2rem !important;
  }

  .p-lg-63 {
    padding: 6.3rem !important;
  }

  .p-lg-64 {
    padding: 6.4rem !important;
  }

  .p-lg-65 {
    padding: 6.5rem !important;
  }

  .p-lg-66 {
    padding: 6.6rem !important;
  }

  .p-lg-67 {
    padding: 6.7rem !important;
  }

  .p-lg-68 {
    padding: 6.8rem !important;
  }

  .p-lg-69 {
    padding: 6.9rem !important;
  }

  .p-lg-70 {
    padding: 7rem !important;
  }

  .p-lg-71 {
    padding: 7.1rem !important;
  }

  .p-lg-72 {
    padding: 7.2rem !important;
  }

  .p-lg-73 {
    padding: 7.3rem !important;
  }

  .p-lg-74 {
    padding: 7.4rem !important;
  }

  .p-lg-75 {
    padding: 7.5rem !important;
  }

  .p-lg-76 {
    padding: 7.6rem !important;
  }

  .p-lg-77 {
    padding: 7.7rem !important;
  }

  .p-lg-78 {
    padding: 7.8rem !important;
  }

  .p-lg-79 {
    padding: 7.9rem !important;
  }

  .p-lg-80 {
    padding: 8rem !important;
  }

  .p-lg-81 {
    padding: 8.1rem !important;
  }

  .p-lg-82 {
    padding: 8.2rem !important;
  }

  .p-lg-83 {
    padding: 8.3rem !important;
  }

  .p-lg-84 {
    padding: 8.4rem !important;
  }

  .p-lg-85 {
    padding: 8.5rem !important;
  }

  .p-lg-86 {
    padding: 8.6rem !important;
  }

  .p-lg-87 {
    padding: 8.7rem !important;
  }

  .p-lg-88 {
    padding: 8.8rem !important;
  }

  .p-lg-89 {
    padding: 8.9rem !important;
  }

  .p-lg-90 {
    padding: 9rem !important;
  }

  .p-lg-91 {
    padding: 9.1rem !important;
  }

  .p-lg-92 {
    padding: 9.2rem !important;
  }

  .p-lg-93 {
    padding: 9.3rem !important;
  }

  .p-lg-94 {
    padding: 9.4rem !important;
  }

  .p-lg-95 {
    padding: 9.5rem !important;
  }

  .p-lg-96 {
    padding: 9.6rem !important;
  }

  .p-lg-97 {
    padding: 9.7rem !important;
  }

  .p-lg-98 {
    padding: 9.8rem !important;
  }

  .p-lg-99 {
    padding: 9.9rem !important;
  }

  .p-lg-100 {
    padding: 10rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-lg-6 {
    padding-right: 0.6rem !important;
    padding-left: 0.6rem !important;
  }

  .px-lg-7 {
    padding-right: 0.7rem !important;
    padding-left: 0.7rem !important;
  }

  .px-lg-8 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
  }

  .px-lg-9 {
    padding-right: 0.9rem !important;
    padding-left: 0.9rem !important;
  }

  .px-lg-10 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-11 {
    padding-right: 1.1rem !important;
    padding-left: 1.1rem !important;
  }

  .px-lg-12 {
    padding-right: 1.2rem !important;
    padding-left: 1.2rem !important;
  }

  .px-lg-13 {
    padding-right: 1.3rem !important;
    padding-left: 1.3rem !important;
  }

  .px-lg-14 {
    padding-right: 1.4rem !important;
    padding-left: 1.4rem !important;
  }

  .px-lg-15 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-16 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important;
  }

  .px-lg-17 {
    padding-right: 1.7rem !important;
    padding-left: 1.7rem !important;
  }

  .px-lg-18 {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }

  .px-lg-19 {
    padding-right: 1.9rem !important;
    padding-left: 1.9rem !important;
  }

  .px-lg-20 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-lg-21 {
    padding-right: 2.1rem !important;
    padding-left: 2.1rem !important;
  }

  .px-lg-22 {
    padding-right: 2.2rem !important;
    padding-left: 2.2rem !important;
  }

  .px-lg-23 {
    padding-right: 2.3rem !important;
    padding-left: 2.3rem !important;
  }

  .px-lg-24 {
    padding-right: 2.4rem !important;
    padding-left: 2.4rem !important;
  }

  .px-lg-25 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-lg-26 {
    padding-right: 2.6rem !important;
    padding-left: 2.6rem !important;
  }

  .px-lg-27 {
    padding-right: 2.7rem !important;
    padding-left: 2.7rem !important;
  }

  .px-lg-28 {
    padding-right: 2.8rem !important;
    padding-left: 2.8rem !important;
  }

  .px-lg-29 {
    padding-right: 2.9rem !important;
    padding-left: 2.9rem !important;
  }

  .px-lg-30 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-lg-31 {
    padding-right: 3.1rem !important;
    padding-left: 3.1rem !important;
  }

  .px-lg-32 {
    padding-right: 3.2rem !important;
    padding-left: 3.2rem !important;
  }

  .px-lg-33 {
    padding-right: 3.3rem !important;
    padding-left: 3.3rem !important;
  }

  .px-lg-34 {
    padding-right: 3.4rem !important;
    padding-left: 3.4rem !important;
  }

  .px-lg-35 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-lg-36 {
    padding-right: 3.6rem !important;
    padding-left: 3.6rem !important;
  }

  .px-lg-37 {
    padding-right: 3.7rem !important;
    padding-left: 3.7rem !important;
  }

  .px-lg-38 {
    padding-right: 3.8rem !important;
    padding-left: 3.8rem !important;
  }

  .px-lg-39 {
    padding-right: 3.9rem !important;
    padding-left: 3.9rem !important;
  }

  .px-lg-40 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-lg-41 {
    padding-right: 4.1rem !important;
    padding-left: 4.1rem !important;
  }

  .px-lg-42 {
    padding-right: 4.2rem !important;
    padding-left: 4.2rem !important;
  }

  .px-lg-43 {
    padding-right: 4.3rem !important;
    padding-left: 4.3rem !important;
  }

  .px-lg-44 {
    padding-right: 4.4rem !important;
    padding-left: 4.4rem !important;
  }

  .px-lg-45 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-lg-46 {
    padding-right: 4.6rem !important;
    padding-left: 4.6rem !important;
  }

  .px-lg-47 {
    padding-right: 4.7rem !important;
    padding-left: 4.7rem !important;
  }

  .px-lg-48 {
    padding-right: 4.8rem !important;
    padding-left: 4.8rem !important;
  }

  .px-lg-49 {
    padding-right: 4.9rem !important;
    padding-left: 4.9rem !important;
  }

  .px-lg-50 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-lg-51 {
    padding-right: 5.1rem !important;
    padding-left: 5.1rem !important;
  }

  .px-lg-52 {
    padding-right: 5.2rem !important;
    padding-left: 5.2rem !important;
  }

  .px-lg-53 {
    padding-right: 5.3rem !important;
    padding-left: 5.3rem !important;
  }

  .px-lg-54 {
    padding-right: 5.4rem !important;
    padding-left: 5.4rem !important;
  }

  .px-lg-55 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }

  .px-lg-56 {
    padding-right: 5.6rem !important;
    padding-left: 5.6rem !important;
  }

  .px-lg-57 {
    padding-right: 5.7rem !important;
    padding-left: 5.7rem !important;
  }

  .px-lg-58 {
    padding-right: 5.8rem !important;
    padding-left: 5.8rem !important;
  }

  .px-lg-59 {
    padding-right: 5.9rem !important;
    padding-left: 5.9rem !important;
  }

  .px-lg-60 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-lg-61 {
    padding-right: 6.1rem !important;
    padding-left: 6.1rem !important;
  }

  .px-lg-62 {
    padding-right: 6.2rem !important;
    padding-left: 6.2rem !important;
  }

  .px-lg-63 {
    padding-right: 6.3rem !important;
    padding-left: 6.3rem !important;
  }

  .px-lg-64 {
    padding-right: 6.4rem !important;
    padding-left: 6.4rem !important;
  }

  .px-lg-65 {
    padding-right: 6.5rem !important;
    padding-left: 6.5rem !important;
  }

  .px-lg-66 {
    padding-right: 6.6rem !important;
    padding-left: 6.6rem !important;
  }

  .px-lg-67 {
    padding-right: 6.7rem !important;
    padding-left: 6.7rem !important;
  }

  .px-lg-68 {
    padding-right: 6.8rem !important;
    padding-left: 6.8rem !important;
  }

  .px-lg-69 {
    padding-right: 6.9rem !important;
    padding-left: 6.9rem !important;
  }

  .px-lg-70 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }

  .px-lg-71 {
    padding-right: 7.1rem !important;
    padding-left: 7.1rem !important;
  }

  .px-lg-72 {
    padding-right: 7.2rem !important;
    padding-left: 7.2rem !important;
  }

  .px-lg-73 {
    padding-right: 7.3rem !important;
    padding-left: 7.3rem !important;
  }

  .px-lg-74 {
    padding-right: 7.4rem !important;
    padding-left: 7.4rem !important;
  }

  .px-lg-75 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-lg-76 {
    padding-right: 7.6rem !important;
    padding-left: 7.6rem !important;
  }

  .px-lg-77 {
    padding-right: 7.7rem !important;
    padding-left: 7.7rem !important;
  }

  .px-lg-78 {
    padding-right: 7.8rem !important;
    padding-left: 7.8rem !important;
  }

  .px-lg-79 {
    padding-right: 7.9rem !important;
    padding-left: 7.9rem !important;
  }

  .px-lg-80 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-lg-81 {
    padding-right: 8.1rem !important;
    padding-left: 8.1rem !important;
  }

  .px-lg-82 {
    padding-right: 8.2rem !important;
    padding-left: 8.2rem !important;
  }

  .px-lg-83 {
    padding-right: 8.3rem !important;
    padding-left: 8.3rem !important;
  }

  .px-lg-84 {
    padding-right: 8.4rem !important;
    padding-left: 8.4rem !important;
  }

  .px-lg-85 {
    padding-right: 8.5rem !important;
    padding-left: 8.5rem !important;
  }

  .px-lg-86 {
    padding-right: 8.6rem !important;
    padding-left: 8.6rem !important;
  }

  .px-lg-87 {
    padding-right: 8.7rem !important;
    padding-left: 8.7rem !important;
  }

  .px-lg-88 {
    padding-right: 8.8rem !important;
    padding-left: 8.8rem !important;
  }

  .px-lg-89 {
    padding-right: 8.9rem !important;
    padding-left: 8.9rem !important;
  }

  .px-lg-90 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }

  .px-lg-91 {
    padding-right: 9.1rem !important;
    padding-left: 9.1rem !important;
  }

  .px-lg-92 {
    padding-right: 9.2rem !important;
    padding-left: 9.2rem !important;
  }

  .px-lg-93 {
    padding-right: 9.3rem !important;
    padding-left: 9.3rem !important;
  }

  .px-lg-94 {
    padding-right: 9.4rem !important;
    padding-left: 9.4rem !important;
  }

  .px-lg-95 {
    padding-right: 9.5rem !important;
    padding-left: 9.5rem !important;
  }

  .px-lg-96 {
    padding-right: 9.6rem !important;
    padding-left: 9.6rem !important;
  }

  .px-lg-97 {
    padding-right: 9.7rem !important;
    padding-left: 9.7rem !important;
  }

  .px-lg-98 {
    padding-right: 9.8rem !important;
    padding-left: 9.8rem !important;
  }

  .px-lg-99 {
    padding-right: 9.9rem !important;
    padding-left: 9.9rem !important;
  }

  .px-lg-100 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-lg-6 {
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
  }

  .py-lg-7 {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
  }

  .py-lg-8 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }

  .py-lg-9 {
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
  }

  .py-lg-10 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-11 {
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
  }

  .py-lg-12 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }

  .py-lg-13 {
    padding-top: 1.3rem !important;
    padding-bottom: 1.3rem !important;
  }

  .py-lg-14 {
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
  }

  .py-lg-15 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-16 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }

  .py-lg-17 {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
  }

  .py-lg-18 {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }

  .py-lg-19 {
    padding-top: 1.9rem !important;
    padding-bottom: 1.9rem !important;
  }

  .py-lg-20 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-lg-21 {
    padding-top: 2.1rem !important;
    padding-bottom: 2.1rem !important;
  }

  .py-lg-22 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }

  .py-lg-23 {
    padding-top: 2.3rem !important;
    padding-bottom: 2.3rem !important;
  }

  .py-lg-24 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  .py-lg-25 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-lg-26 {
    padding-top: 2.6rem !important;
    padding-bottom: 2.6rem !important;
  }

  .py-lg-27 {
    padding-top: 2.7rem !important;
    padding-bottom: 2.7rem !important;
  }

  .py-lg-28 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }

  .py-lg-29 {
    padding-top: 2.9rem !important;
    padding-bottom: 2.9rem !important;
  }

  .py-lg-30 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-lg-31 {
    padding-top: 3.1rem !important;
    padding-bottom: 3.1rem !important;
  }

  .py-lg-32 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }

  .py-lg-33 {
    padding-top: 3.3rem !important;
    padding-bottom: 3.3rem !important;
  }

  .py-lg-34 {
    padding-top: 3.4rem !important;
    padding-bottom: 3.4rem !important;
  }

  .py-lg-35 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-lg-36 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }

  .py-lg-37 {
    padding-top: 3.7rem !important;
    padding-bottom: 3.7rem !important;
  }

  .py-lg-38 {
    padding-top: 3.8rem !important;
    padding-bottom: 3.8rem !important;
  }

  .py-lg-39 {
    padding-top: 3.9rem !important;
    padding-bottom: 3.9rem !important;
  }

  .py-lg-40 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-lg-41 {
    padding-top: 4.1rem !important;
    padding-bottom: 4.1rem !important;
  }

  .py-lg-42 {
    padding-top: 4.2rem !important;
    padding-bottom: 4.2rem !important;
  }

  .py-lg-43 {
    padding-top: 4.3rem !important;
    padding-bottom: 4.3rem !important;
  }

  .py-lg-44 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }

  .py-lg-45 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-lg-46 {
    padding-top: 4.6rem !important;
    padding-bottom: 4.6rem !important;
  }

  .py-lg-47 {
    padding-top: 4.7rem !important;
    padding-bottom: 4.7rem !important;
  }

  .py-lg-48 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }

  .py-lg-49 {
    padding-top: 4.9rem !important;
    padding-bottom: 4.9rem !important;
  }

  .py-lg-50 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-lg-51 {
    padding-top: 5.1rem !important;
    padding-bottom: 5.1rem !important;
  }

  .py-lg-52 {
    padding-top: 5.2rem !important;
    padding-bottom: 5.2rem !important;
  }

  .py-lg-53 {
    padding-top: 5.3rem !important;
    padding-bottom: 5.3rem !important;
  }

  .py-lg-54 {
    padding-top: 5.4rem !important;
    padding-bottom: 5.4rem !important;
  }

  .py-lg-55 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .py-lg-56 {
    padding-top: 5.6rem !important;
    padding-bottom: 5.6rem !important;
  }

  .py-lg-57 {
    padding-top: 5.7rem !important;
    padding-bottom: 5.7rem !important;
  }

  .py-lg-58 {
    padding-top: 5.8rem !important;
    padding-bottom: 5.8rem !important;
  }

  .py-lg-59 {
    padding-top: 5.9rem !important;
    padding-bottom: 5.9rem !important;
  }

  .py-lg-60 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-lg-61 {
    padding-top: 6.1rem !important;
    padding-bottom: 6.1rem !important;
  }

  .py-lg-62 {
    padding-top: 6.2rem !important;
    padding-bottom: 6.2rem !important;
  }

  .py-lg-63 {
    padding-top: 6.3rem !important;
    padding-bottom: 6.3rem !important;
  }

  .py-lg-64 {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }

  .py-lg-65 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .py-lg-66 {
    padding-top: 6.6rem !important;
    padding-bottom: 6.6rem !important;
  }

  .py-lg-67 {
    padding-top: 6.7rem !important;
    padding-bottom: 6.7rem !important;
  }

  .py-lg-68 {
    padding-top: 6.8rem !important;
    padding-bottom: 6.8rem !important;
  }

  .py-lg-69 {
    padding-top: 6.9rem !important;
    padding-bottom: 6.9rem !important;
  }

  .py-lg-70 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .py-lg-71 {
    padding-top: 7.1rem !important;
    padding-bottom: 7.1rem !important;
  }

  .py-lg-72 {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }

  .py-lg-73 {
    padding-top: 7.3rem !important;
    padding-bottom: 7.3rem !important;
  }

  .py-lg-74 {
    padding-top: 7.4rem !important;
    padding-bottom: 7.4rem !important;
  }

  .py-lg-75 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-lg-76 {
    padding-top: 7.6rem !important;
    padding-bottom: 7.6rem !important;
  }

  .py-lg-77 {
    padding-top: 7.7rem !important;
    padding-bottom: 7.7rem !important;
  }

  .py-lg-78 {
    padding-top: 7.8rem !important;
    padding-bottom: 7.8rem !important;
  }

  .py-lg-79 {
    padding-top: 7.9rem !important;
    padding-bottom: 7.9rem !important;
  }

  .py-lg-80 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-lg-81 {
    padding-top: 8.1rem !important;
    padding-bottom: 8.1rem !important;
  }

  .py-lg-82 {
    padding-top: 8.2rem !important;
    padding-bottom: 8.2rem !important;
  }

  .py-lg-83 {
    padding-top: 8.3rem !important;
    padding-bottom: 8.3rem !important;
  }

  .py-lg-84 {
    padding-top: 8.4rem !important;
    padding-bottom: 8.4rem !important;
  }

  .py-lg-85 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }

  .py-lg-86 {
    padding-top: 8.6rem !important;
    padding-bottom: 8.6rem !important;
  }

  .py-lg-87 {
    padding-top: 8.7rem !important;
    padding-bottom: 8.7rem !important;
  }

  .py-lg-88 {
    padding-top: 8.8rem !important;
    padding-bottom: 8.8rem !important;
  }

  .py-lg-89 {
    padding-top: 8.9rem !important;
    padding-bottom: 8.9rem !important;
  }

  .py-lg-90 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .py-lg-91 {
    padding-top: 9.1rem !important;
    padding-bottom: 9.1rem !important;
  }

  .py-lg-92 {
    padding-top: 9.2rem !important;
    padding-bottom: 9.2rem !important;
  }

  .py-lg-93 {
    padding-top: 9.3rem !important;
    padding-bottom: 9.3rem !important;
  }

  .py-lg-94 {
    padding-top: 9.4rem !important;
    padding-bottom: 9.4rem !important;
  }

  .py-lg-95 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }

  .py-lg-96 {
    padding-top: 9.6rem !important;
    padding-bottom: 9.6rem !important;
  }

  .py-lg-97 {
    padding-top: 9.7rem !important;
    padding-bottom: 9.7rem !important;
  }

  .py-lg-98 {
    padding-top: 9.8rem !important;
    padding-bottom: 9.8rem !important;
  }

  .py-lg-99 {
    padding-top: 9.9rem !important;
    padding-bottom: 9.9rem !important;
  }

  .py-lg-100 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pt-lg-6 {
    padding-top: 0.6rem !important;
  }

  .pt-lg-7 {
    padding-top: 0.7rem !important;
  }

  .pt-lg-8 {
    padding-top: 0.8rem !important;
  }

  .pt-lg-9 {
    padding-top: 0.9rem !important;
  }

  .pt-lg-10 {
    padding-top: 1rem !important;
  }

  .pt-lg-11 {
    padding-top: 1.1rem !important;
  }

  .pt-lg-12 {
    padding-top: 1.2rem !important;
  }

  .pt-lg-13 {
    padding-top: 1.3rem !important;
  }

  .pt-lg-14 {
    padding-top: 1.4rem !important;
  }

  .pt-lg-15 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-16 {
    padding-top: 1.6rem !important;
  }

  .pt-lg-17 {
    padding-top: 1.7rem !important;
  }

  .pt-lg-18 {
    padding-top: 1.8rem !important;
  }

  .pt-lg-19 {
    padding-top: 1.9rem !important;
  }

  .pt-lg-20 {
    padding-top: 2rem !important;
  }

  .pt-lg-21 {
    padding-top: 2.1rem !important;
  }

  .pt-lg-22 {
    padding-top: 2.2rem !important;
  }

  .pt-lg-23 {
    padding-top: 2.3rem !important;
  }

  .pt-lg-24 {
    padding-top: 2.4rem !important;
  }

  .pt-lg-25 {
    padding-top: 2.5rem !important;
  }

  .pt-lg-26 {
    padding-top: 2.6rem !important;
  }

  .pt-lg-27 {
    padding-top: 2.7rem !important;
  }

  .pt-lg-28 {
    padding-top: 2.8rem !important;
  }

  .pt-lg-29 {
    padding-top: 2.9rem !important;
  }

  .pt-lg-30 {
    padding-top: 3rem !important;
  }

  .pt-lg-31 {
    padding-top: 3.1rem !important;
  }

  .pt-lg-32 {
    padding-top: 3.2rem !important;
  }

  .pt-lg-33 {
    padding-top: 3.3rem !important;
  }

  .pt-lg-34 {
    padding-top: 3.4rem !important;
  }

  .pt-lg-35 {
    padding-top: 3.5rem !important;
  }

  .pt-lg-36 {
    padding-top: 3.6rem !important;
  }

  .pt-lg-37 {
    padding-top: 3.7rem !important;
  }

  .pt-lg-38 {
    padding-top: 3.8rem !important;
  }

  .pt-lg-39 {
    padding-top: 3.9rem !important;
  }

  .pt-lg-40 {
    padding-top: 4rem !important;
  }

  .pt-lg-41 {
    padding-top: 4.1rem !important;
  }

  .pt-lg-42 {
    padding-top: 4.2rem !important;
  }

  .pt-lg-43 {
    padding-top: 4.3rem !important;
  }

  .pt-lg-44 {
    padding-top: 4.4rem !important;
  }

  .pt-lg-45 {
    padding-top: 4.5rem !important;
  }

  .pt-lg-46 {
    padding-top: 4.6rem !important;
  }

  .pt-lg-47 {
    padding-top: 4.7rem !important;
  }

  .pt-lg-48 {
    padding-top: 4.8rem !important;
  }

  .pt-lg-49 {
    padding-top: 4.9rem !important;
  }

  .pt-lg-50 {
    padding-top: 5rem !important;
  }

  .pt-lg-51 {
    padding-top: 5.1rem !important;
  }

  .pt-lg-52 {
    padding-top: 5.2rem !important;
  }

  .pt-lg-53 {
    padding-top: 5.3rem !important;
  }

  .pt-lg-54 {
    padding-top: 5.4rem !important;
  }

  .pt-lg-55 {
    padding-top: 5.5rem !important;
  }

  .pt-lg-56 {
    padding-top: 5.6rem !important;
  }

  .pt-lg-57 {
    padding-top: 5.7rem !important;
  }

  .pt-lg-58 {
    padding-top: 5.8rem !important;
  }

  .pt-lg-59 {
    padding-top: 5.9rem !important;
  }

  .pt-lg-60 {
    padding-top: 6rem !important;
  }

  .pt-lg-61 {
    padding-top: 6.1rem !important;
  }

  .pt-lg-62 {
    padding-top: 6.2rem !important;
  }

  .pt-lg-63 {
    padding-top: 6.3rem !important;
  }

  .pt-lg-64 {
    padding-top: 6.4rem !important;
  }

  .pt-lg-65 {
    padding-top: 6.5rem !important;
  }

  .pt-lg-66 {
    padding-top: 6.6rem !important;
  }

  .pt-lg-67 {
    padding-top: 6.7rem !important;
  }

  .pt-lg-68 {
    padding-top: 6.8rem !important;
  }

  .pt-lg-69 {
    padding-top: 6.9rem !important;
  }

  .pt-lg-70 {
    padding-top: 7rem !important;
  }

  .pt-lg-71 {
    padding-top: 7.1rem !important;
  }

  .pt-lg-72 {
    padding-top: 7.2rem !important;
  }

  .pt-lg-73 {
    padding-top: 7.3rem !important;
  }

  .pt-lg-74 {
    padding-top: 7.4rem !important;
  }

  .pt-lg-75 {
    padding-top: 7.5rem !important;
  }

  .pt-lg-76 {
    padding-top: 7.6rem !important;
  }

  .pt-lg-77 {
    padding-top: 7.7rem !important;
  }

  .pt-lg-78 {
    padding-top: 7.8rem !important;
  }

  .pt-lg-79 {
    padding-top: 7.9rem !important;
  }

  .pt-lg-80 {
    padding-top: 8rem !important;
  }

  .pt-lg-81 {
    padding-top: 8.1rem !important;
  }

  .pt-lg-82 {
    padding-top: 8.2rem !important;
  }

  .pt-lg-83 {
    padding-top: 8.3rem !important;
  }

  .pt-lg-84 {
    padding-top: 8.4rem !important;
  }

  .pt-lg-85 {
    padding-top: 8.5rem !important;
  }

  .pt-lg-86 {
    padding-top: 8.6rem !important;
  }

  .pt-lg-87 {
    padding-top: 8.7rem !important;
  }

  .pt-lg-88 {
    padding-top: 8.8rem !important;
  }

  .pt-lg-89 {
    padding-top: 8.9rem !important;
  }

  .pt-lg-90 {
    padding-top: 9rem !important;
  }

  .pt-lg-91 {
    padding-top: 9.1rem !important;
  }

  .pt-lg-92 {
    padding-top: 9.2rem !important;
  }

  .pt-lg-93 {
    padding-top: 9.3rem !important;
  }

  .pt-lg-94 {
    padding-top: 9.4rem !important;
  }

  .pt-lg-95 {
    padding-top: 9.5rem !important;
  }

  .pt-lg-96 {
    padding-top: 9.6rem !important;
  }

  .pt-lg-97 {
    padding-top: 9.7rem !important;
  }

  .pt-lg-98 {
    padding-top: 9.8rem !important;
  }

  .pt-lg-99 {
    padding-top: 9.9rem !important;
  }

  .pt-lg-100 {
    padding-top: 10rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pe-lg-6 {
    padding-right: 0.6rem !important;
  }

  .pe-lg-7 {
    padding-right: 0.7rem !important;
  }

  .pe-lg-8 {
    padding-right: 0.8rem !important;
  }

  .pe-lg-9 {
    padding-right: 0.9rem !important;
  }

  .pe-lg-10 {
    padding-right: 1rem !important;
  }

  .pe-lg-11 {
    padding-right: 1.1rem !important;
  }

  .pe-lg-12 {
    padding-right: 1.2rem !important;
  }

  .pe-lg-13 {
    padding-right: 1.3rem !important;
  }

  .pe-lg-14 {
    padding-right: 1.4rem !important;
  }

  .pe-lg-15 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-16 {
    padding-right: 1.6rem !important;
  }

  .pe-lg-17 {
    padding-right: 1.7rem !important;
  }

  .pe-lg-18 {
    padding-right: 1.8rem !important;
  }

  .pe-lg-19 {
    padding-right: 1.9rem !important;
  }

  .pe-lg-20 {
    padding-right: 2rem !important;
  }

  .pe-lg-21 {
    padding-right: 2.1rem !important;
  }

  .pe-lg-22 {
    padding-right: 2.2rem !important;
  }

  .pe-lg-23 {
    padding-right: 2.3rem !important;
  }

  .pe-lg-24 {
    padding-right: 2.4rem !important;
  }

  .pe-lg-25 {
    padding-right: 2.5rem !important;
  }

  .pe-lg-26 {
    padding-right: 2.6rem !important;
  }

  .pe-lg-27 {
    padding-right: 2.7rem !important;
  }

  .pe-lg-28 {
    padding-right: 2.8rem !important;
  }

  .pe-lg-29 {
    padding-right: 2.9rem !important;
  }

  .pe-lg-30 {
    padding-right: 3rem !important;
  }

  .pe-lg-31 {
    padding-right: 3.1rem !important;
  }

  .pe-lg-32 {
    padding-right: 3.2rem !important;
  }

  .pe-lg-33 {
    padding-right: 3.3rem !important;
  }

  .pe-lg-34 {
    padding-right: 3.4rem !important;
  }

  .pe-lg-35 {
    padding-right: 3.5rem !important;
  }

  .pe-lg-36 {
    padding-right: 3.6rem !important;
  }

  .pe-lg-37 {
    padding-right: 3.7rem !important;
  }

  .pe-lg-38 {
    padding-right: 3.8rem !important;
  }

  .pe-lg-39 {
    padding-right: 3.9rem !important;
  }

  .pe-lg-40 {
    padding-right: 4rem !important;
  }

  .pe-lg-41 {
    padding-right: 4.1rem !important;
  }

  .pe-lg-42 {
    padding-right: 4.2rem !important;
  }

  .pe-lg-43 {
    padding-right: 4.3rem !important;
  }

  .pe-lg-44 {
    padding-right: 4.4rem !important;
  }

  .pe-lg-45 {
    padding-right: 4.5rem !important;
  }

  .pe-lg-46 {
    padding-right: 4.6rem !important;
  }

  .pe-lg-47 {
    padding-right: 4.7rem !important;
  }

  .pe-lg-48 {
    padding-right: 4.8rem !important;
  }

  .pe-lg-49 {
    padding-right: 4.9rem !important;
  }

  .pe-lg-50 {
    padding-right: 5rem !important;
  }

  .pe-lg-51 {
    padding-right: 5.1rem !important;
  }

  .pe-lg-52 {
    padding-right: 5.2rem !important;
  }

  .pe-lg-53 {
    padding-right: 5.3rem !important;
  }

  .pe-lg-54 {
    padding-right: 5.4rem !important;
  }

  .pe-lg-55 {
    padding-right: 5.5rem !important;
  }

  .pe-lg-56 {
    padding-right: 5.6rem !important;
  }

  .pe-lg-57 {
    padding-right: 5.7rem !important;
  }

  .pe-lg-58 {
    padding-right: 5.8rem !important;
  }

  .pe-lg-59 {
    padding-right: 5.9rem !important;
  }

  .pe-lg-60 {
    padding-right: 6rem !important;
  }

  .pe-lg-61 {
    padding-right: 6.1rem !important;
  }

  .pe-lg-62 {
    padding-right: 6.2rem !important;
  }

  .pe-lg-63 {
    padding-right: 6.3rem !important;
  }

  .pe-lg-64 {
    padding-right: 6.4rem !important;
  }

  .pe-lg-65 {
    padding-right: 6.5rem !important;
  }

  .pe-lg-66 {
    padding-right: 6.6rem !important;
  }

  .pe-lg-67 {
    padding-right: 6.7rem !important;
  }

  .pe-lg-68 {
    padding-right: 6.8rem !important;
  }

  .pe-lg-69 {
    padding-right: 6.9rem !important;
  }

  .pe-lg-70 {
    padding-right: 7rem !important;
  }

  .pe-lg-71 {
    padding-right: 7.1rem !important;
  }

  .pe-lg-72 {
    padding-right: 7.2rem !important;
  }

  .pe-lg-73 {
    padding-right: 7.3rem !important;
  }

  .pe-lg-74 {
    padding-right: 7.4rem !important;
  }

  .pe-lg-75 {
    padding-right: 7.5rem !important;
  }

  .pe-lg-76 {
    padding-right: 7.6rem !important;
  }

  .pe-lg-77 {
    padding-right: 7.7rem !important;
  }

  .pe-lg-78 {
    padding-right: 7.8rem !important;
  }

  .pe-lg-79 {
    padding-right: 7.9rem !important;
  }

  .pe-lg-80 {
    padding-right: 8rem !important;
  }

  .pe-lg-81 {
    padding-right: 8.1rem !important;
  }

  .pe-lg-82 {
    padding-right: 8.2rem !important;
  }

  .pe-lg-83 {
    padding-right: 8.3rem !important;
  }

  .pe-lg-84 {
    padding-right: 8.4rem !important;
  }

  .pe-lg-85 {
    padding-right: 8.5rem !important;
  }

  .pe-lg-86 {
    padding-right: 8.6rem !important;
  }

  .pe-lg-87 {
    padding-right: 8.7rem !important;
  }

  .pe-lg-88 {
    padding-right: 8.8rem !important;
  }

  .pe-lg-89 {
    padding-right: 8.9rem !important;
  }

  .pe-lg-90 {
    padding-right: 9rem !important;
  }

  .pe-lg-91 {
    padding-right: 9.1rem !important;
  }

  .pe-lg-92 {
    padding-right: 9.2rem !important;
  }

  .pe-lg-93 {
    padding-right: 9.3rem !important;
  }

  .pe-lg-94 {
    padding-right: 9.4rem !important;
  }

  .pe-lg-95 {
    padding-right: 9.5rem !important;
  }

  .pe-lg-96 {
    padding-right: 9.6rem !important;
  }

  .pe-lg-97 {
    padding-right: 9.7rem !important;
  }

  .pe-lg-98 {
    padding-right: 9.8rem !important;
  }

  .pe-lg-99 {
    padding-right: 9.9rem !important;
  }

  .pe-lg-100 {
    padding-right: 10rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pb-lg-6 {
    padding-bottom: 0.6rem !important;
  }

  .pb-lg-7 {
    padding-bottom: 0.7rem !important;
  }

  .pb-lg-8 {
    padding-bottom: 0.8rem !important;
  }

  .pb-lg-9 {
    padding-bottom: 0.9rem !important;
  }

  .pb-lg-10 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-11 {
    padding-bottom: 1.1rem !important;
  }

  .pb-lg-12 {
    padding-bottom: 1.2rem !important;
  }

  .pb-lg-13 {
    padding-bottom: 1.3rem !important;
  }

  .pb-lg-14 {
    padding-bottom: 1.4rem !important;
  }

  .pb-lg-15 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-16 {
    padding-bottom: 1.6rem !important;
  }

  .pb-lg-17 {
    padding-bottom: 1.7rem !important;
  }

  .pb-lg-18 {
    padding-bottom: 1.8rem !important;
  }

  .pb-lg-19 {
    padding-bottom: 1.9rem !important;
  }

  .pb-lg-20 {
    padding-bottom: 2rem !important;
  }

  .pb-lg-21 {
    padding-bottom: 2.1rem !important;
  }

  .pb-lg-22 {
    padding-bottom: 2.2rem !important;
  }

  .pb-lg-23 {
    padding-bottom: 2.3rem !important;
  }

  .pb-lg-24 {
    padding-bottom: 2.4rem !important;
  }

  .pb-lg-25 {
    padding-bottom: 2.5rem !important;
  }

  .pb-lg-26 {
    padding-bottom: 2.6rem !important;
  }

  .pb-lg-27 {
    padding-bottom: 2.7rem !important;
  }

  .pb-lg-28 {
    padding-bottom: 2.8rem !important;
  }

  .pb-lg-29 {
    padding-bottom: 2.9rem !important;
  }

  .pb-lg-30 {
    padding-bottom: 3rem !important;
  }

  .pb-lg-31 {
    padding-bottom: 3.1rem !important;
  }

  .pb-lg-32 {
    padding-bottom: 3.2rem !important;
  }

  .pb-lg-33 {
    padding-bottom: 3.3rem !important;
  }

  .pb-lg-34 {
    padding-bottom: 3.4rem !important;
  }

  .pb-lg-35 {
    padding-bottom: 3.5rem !important;
  }

  .pb-lg-36 {
    padding-bottom: 3.6rem !important;
  }

  .pb-lg-37 {
    padding-bottom: 3.7rem !important;
  }

  .pb-lg-38 {
    padding-bottom: 3.8rem !important;
  }

  .pb-lg-39 {
    padding-bottom: 3.9rem !important;
  }

  .pb-lg-40 {
    padding-bottom: 4rem !important;
  }

  .pb-lg-41 {
    padding-bottom: 4.1rem !important;
  }

  .pb-lg-42 {
    padding-bottom: 4.2rem !important;
  }

  .pb-lg-43 {
    padding-bottom: 4.3rem !important;
  }

  .pb-lg-44 {
    padding-bottom: 4.4rem !important;
  }

  .pb-lg-45 {
    padding-bottom: 4.5rem !important;
  }

  .pb-lg-46 {
    padding-bottom: 4.6rem !important;
  }

  .pb-lg-47 {
    padding-bottom: 4.7rem !important;
  }

  .pb-lg-48 {
    padding-bottom: 4.8rem !important;
  }

  .pb-lg-49 {
    padding-bottom: 4.9rem !important;
  }

  .pb-lg-50 {
    padding-bottom: 5rem !important;
  }

  .pb-lg-51 {
    padding-bottom: 5.1rem !important;
  }

  .pb-lg-52 {
    padding-bottom: 5.2rem !important;
  }

  .pb-lg-53 {
    padding-bottom: 5.3rem !important;
  }

  .pb-lg-54 {
    padding-bottom: 5.4rem !important;
  }

  .pb-lg-55 {
    padding-bottom: 5.5rem !important;
  }

  .pb-lg-56 {
    padding-bottom: 5.6rem !important;
  }

  .pb-lg-57 {
    padding-bottom: 5.7rem !important;
  }

  .pb-lg-58 {
    padding-bottom: 5.8rem !important;
  }

  .pb-lg-59 {
    padding-bottom: 5.9rem !important;
  }

  .pb-lg-60 {
    padding-bottom: 6rem !important;
  }

  .pb-lg-61 {
    padding-bottom: 6.1rem !important;
  }

  .pb-lg-62 {
    padding-bottom: 6.2rem !important;
  }

  .pb-lg-63 {
    padding-bottom: 6.3rem !important;
  }

  .pb-lg-64 {
    padding-bottom: 6.4rem !important;
  }

  .pb-lg-65 {
    padding-bottom: 6.5rem !important;
  }

  .pb-lg-66 {
    padding-bottom: 6.6rem !important;
  }

  .pb-lg-67 {
    padding-bottom: 6.7rem !important;
  }

  .pb-lg-68 {
    padding-bottom: 6.8rem !important;
  }

  .pb-lg-69 {
    padding-bottom: 6.9rem !important;
  }

  .pb-lg-70 {
    padding-bottom: 7rem !important;
  }

  .pb-lg-71 {
    padding-bottom: 7.1rem !important;
  }

  .pb-lg-72 {
    padding-bottom: 7.2rem !important;
  }

  .pb-lg-73 {
    padding-bottom: 7.3rem !important;
  }

  .pb-lg-74 {
    padding-bottom: 7.4rem !important;
  }

  .pb-lg-75 {
    padding-bottom: 7.5rem !important;
  }

  .pb-lg-76 {
    padding-bottom: 7.6rem !important;
  }

  .pb-lg-77 {
    padding-bottom: 7.7rem !important;
  }

  .pb-lg-78 {
    padding-bottom: 7.8rem !important;
  }

  .pb-lg-79 {
    padding-bottom: 7.9rem !important;
  }

  .pb-lg-80 {
    padding-bottom: 8rem !important;
  }

  .pb-lg-81 {
    padding-bottom: 8.1rem !important;
  }

  .pb-lg-82 {
    padding-bottom: 8.2rem !important;
  }

  .pb-lg-83 {
    padding-bottom: 8.3rem !important;
  }

  .pb-lg-84 {
    padding-bottom: 8.4rem !important;
  }

  .pb-lg-85 {
    padding-bottom: 8.5rem !important;
  }

  .pb-lg-86 {
    padding-bottom: 8.6rem !important;
  }

  .pb-lg-87 {
    padding-bottom: 8.7rem !important;
  }

  .pb-lg-88 {
    padding-bottom: 8.8rem !important;
  }

  .pb-lg-89 {
    padding-bottom: 8.9rem !important;
  }

  .pb-lg-90 {
    padding-bottom: 9rem !important;
  }

  .pb-lg-91 {
    padding-bottom: 9.1rem !important;
  }

  .pb-lg-92 {
    padding-bottom: 9.2rem !important;
  }

  .pb-lg-93 {
    padding-bottom: 9.3rem !important;
  }

  .pb-lg-94 {
    padding-bottom: 9.4rem !important;
  }

  .pb-lg-95 {
    padding-bottom: 9.5rem !important;
  }

  .pb-lg-96 {
    padding-bottom: 9.6rem !important;
  }

  .pb-lg-97 {
    padding-bottom: 9.7rem !important;
  }

  .pb-lg-98 {
    padding-bottom: 9.8rem !important;
  }

  .pb-lg-99 {
    padding-bottom: 9.9rem !important;
  }

  .pb-lg-100 {
    padding-bottom: 10rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .ps-lg-6 {
    padding-left: 0.6rem !important;
  }

  .ps-lg-7 {
    padding-left: 0.7rem !important;
  }

  .ps-lg-8 {
    padding-left: 0.8rem !important;
  }

  .ps-lg-9 {
    padding-left: 0.9rem !important;
  }

  .ps-lg-10 {
    padding-left: 1rem !important;
  }

  .ps-lg-11 {
    padding-left: 1.1rem !important;
  }

  .ps-lg-12 {
    padding-left: 1.2rem !important;
  }

  .ps-lg-13 {
    padding-left: 1.3rem !important;
  }

  .ps-lg-14 {
    padding-left: 1.4rem !important;
  }

  .ps-lg-15 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-16 {
    padding-left: 1.6rem !important;
  }

  .ps-lg-17 {
    padding-left: 1.7rem !important;
  }

  .ps-lg-18 {
    padding-left: 1.8rem !important;
  }

  .ps-lg-19 {
    padding-left: 1.9rem !important;
  }

  .ps-lg-20 {
    padding-left: 2rem !important;
  }

  .ps-lg-21 {
    padding-left: 2.1rem !important;
  }

  .ps-lg-22 {
    padding-left: 2.2rem !important;
  }

  .ps-lg-23 {
    padding-left: 2.3rem !important;
  }

  .ps-lg-24 {
    padding-left: 2.4rem !important;
  }

  .ps-lg-25 {
    padding-left: 2.5rem !important;
  }

  .ps-lg-26 {
    padding-left: 2.6rem !important;
  }

  .ps-lg-27 {
    padding-left: 2.7rem !important;
  }

  .ps-lg-28 {
    padding-left: 2.8rem !important;
  }

  .ps-lg-29 {
    padding-left: 2.9rem !important;
  }

  .ps-lg-30 {
    padding-left: 3rem !important;
  }

  .ps-lg-31 {
    padding-left: 3.1rem !important;
  }

  .ps-lg-32 {
    padding-left: 3.2rem !important;
  }

  .ps-lg-33 {
    padding-left: 3.3rem !important;
  }

  .ps-lg-34 {
    padding-left: 3.4rem !important;
  }

  .ps-lg-35 {
    padding-left: 3.5rem !important;
  }

  .ps-lg-36 {
    padding-left: 3.6rem !important;
  }

  .ps-lg-37 {
    padding-left: 3.7rem !important;
  }

  .ps-lg-38 {
    padding-left: 3.8rem !important;
  }

  .ps-lg-39 {
    padding-left: 3.9rem !important;
  }

  .ps-lg-40 {
    padding-left: 4rem !important;
  }

  .ps-lg-41 {
    padding-left: 4.1rem !important;
  }

  .ps-lg-42 {
    padding-left: 4.2rem !important;
  }

  .ps-lg-43 {
    padding-left: 4.3rem !important;
  }

  .ps-lg-44 {
    padding-left: 4.4rem !important;
  }

  .ps-lg-45 {
    padding-left: 4.5rem !important;
  }

  .ps-lg-46 {
    padding-left: 4.6rem !important;
  }

  .ps-lg-47 {
    padding-left: 4.7rem !important;
  }

  .ps-lg-48 {
    padding-left: 4.8rem !important;
  }

  .ps-lg-49 {
    padding-left: 4.9rem !important;
  }

  .ps-lg-50 {
    padding-left: 5rem !important;
  }

  .ps-lg-51 {
    padding-left: 5.1rem !important;
  }

  .ps-lg-52 {
    padding-left: 5.2rem !important;
  }

  .ps-lg-53 {
    padding-left: 5.3rem !important;
  }

  .ps-lg-54 {
    padding-left: 5.4rem !important;
  }

  .ps-lg-55 {
    padding-left: 5.5rem !important;
  }

  .ps-lg-56 {
    padding-left: 5.6rem !important;
  }

  .ps-lg-57 {
    padding-left: 5.7rem !important;
  }

  .ps-lg-58 {
    padding-left: 5.8rem !important;
  }

  .ps-lg-59 {
    padding-left: 5.9rem !important;
  }

  .ps-lg-60 {
    padding-left: 6rem !important;
  }

  .ps-lg-61 {
    padding-left: 6.1rem !important;
  }

  .ps-lg-62 {
    padding-left: 6.2rem !important;
  }

  .ps-lg-63 {
    padding-left: 6.3rem !important;
  }

  .ps-lg-64 {
    padding-left: 6.4rem !important;
  }

  .ps-lg-65 {
    padding-left: 6.5rem !important;
  }

  .ps-lg-66 {
    padding-left: 6.6rem !important;
  }

  .ps-lg-67 {
    padding-left: 6.7rem !important;
  }

  .ps-lg-68 {
    padding-left: 6.8rem !important;
  }

  .ps-lg-69 {
    padding-left: 6.9rem !important;
  }

  .ps-lg-70 {
    padding-left: 7rem !important;
  }

  .ps-lg-71 {
    padding-left: 7.1rem !important;
  }

  .ps-lg-72 {
    padding-left: 7.2rem !important;
  }

  .ps-lg-73 {
    padding-left: 7.3rem !important;
  }

  .ps-lg-74 {
    padding-left: 7.4rem !important;
  }

  .ps-lg-75 {
    padding-left: 7.5rem !important;
  }

  .ps-lg-76 {
    padding-left: 7.6rem !important;
  }

  .ps-lg-77 {
    padding-left: 7.7rem !important;
  }

  .ps-lg-78 {
    padding-left: 7.8rem !important;
  }

  .ps-lg-79 {
    padding-left: 7.9rem !important;
  }

  .ps-lg-80 {
    padding-left: 8rem !important;
  }

  .ps-lg-81 {
    padding-left: 8.1rem !important;
  }

  .ps-lg-82 {
    padding-left: 8.2rem !important;
  }

  .ps-lg-83 {
    padding-left: 8.3rem !important;
  }

  .ps-lg-84 {
    padding-left: 8.4rem !important;
  }

  .ps-lg-85 {
    padding-left: 8.5rem !important;
  }

  .ps-lg-86 {
    padding-left: 8.6rem !important;
  }

  .ps-lg-87 {
    padding-left: 8.7rem !important;
  }

  .ps-lg-88 {
    padding-left: 8.8rem !important;
  }

  .ps-lg-89 {
    padding-left: 8.9rem !important;
  }

  .ps-lg-90 {
    padding-left: 9rem !important;
  }

  .ps-lg-91 {
    padding-left: 9.1rem !important;
  }

  .ps-lg-92 {
    padding-left: 9.2rem !important;
  }

  .ps-lg-93 {
    padding-left: 9.3rem !important;
  }

  .ps-lg-94 {
    padding-left: 9.4rem !important;
  }

  .ps-lg-95 {
    padding-left: 9.5rem !important;
  }

  .ps-lg-96 {
    padding-left: 9.6rem !important;
  }

  .ps-lg-97 {
    padding-left: 9.7rem !important;
  }

  .ps-lg-98 {
    padding-left: 9.8rem !important;
  }

  .ps-lg-99 {
    padding-left: 9.9rem !important;
  }

  .ps-lg-100 {
    padding-left: 10rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !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;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .gap-xl-6 {
    gap: 0.6rem !important;
  }

  .gap-xl-7 {
    gap: 0.7rem !important;
  }

  .gap-xl-8 {
    gap: 0.8rem !important;
  }

  .gap-xl-9 {
    gap: 0.9rem !important;
  }

  .gap-xl-10 {
    gap: 1rem !important;
  }

  .gap-xl-11 {
    gap: 1.1rem !important;
  }

  .gap-xl-12 {
    gap: 1.2rem !important;
  }

  .gap-xl-13 {
    gap: 1.3rem !important;
  }

  .gap-xl-14 {
    gap: 1.4rem !important;
  }

  .gap-xl-15 {
    gap: 1.5rem !important;
  }

  .gap-xl-16 {
    gap: 1.6rem !important;
  }

  .gap-xl-17 {
    gap: 1.7rem !important;
  }

  .gap-xl-18 {
    gap: 1.8rem !important;
  }

  .gap-xl-19 {
    gap: 1.9rem !important;
  }

  .gap-xl-20 {
    gap: 2rem !important;
  }

  .gap-xl-21 {
    gap: 2.1rem !important;
  }

  .gap-xl-22 {
    gap: 2.2rem !important;
  }

  .gap-xl-23 {
    gap: 2.3rem !important;
  }

  .gap-xl-24 {
    gap: 2.4rem !important;
  }

  .gap-xl-25 {
    gap: 2.5rem !important;
  }

  .gap-xl-26 {
    gap: 2.6rem !important;
  }

  .gap-xl-27 {
    gap: 2.7rem !important;
  }

  .gap-xl-28 {
    gap: 2.8rem !important;
  }

  .gap-xl-29 {
    gap: 2.9rem !important;
  }

  .gap-xl-30 {
    gap: 3rem !important;
  }

  .gap-xl-31 {
    gap: 3.1rem !important;
  }

  .gap-xl-32 {
    gap: 3.2rem !important;
  }

  .gap-xl-33 {
    gap: 3.3rem !important;
  }

  .gap-xl-34 {
    gap: 3.4rem !important;
  }

  .gap-xl-35 {
    gap: 3.5rem !important;
  }

  .gap-xl-36 {
    gap: 3.6rem !important;
  }

  .gap-xl-37 {
    gap: 3.7rem !important;
  }

  .gap-xl-38 {
    gap: 3.8rem !important;
  }

  .gap-xl-39 {
    gap: 3.9rem !important;
  }

  .gap-xl-40 {
    gap: 4rem !important;
  }

  .gap-xl-41 {
    gap: 4.1rem !important;
  }

  .gap-xl-42 {
    gap: 4.2rem !important;
  }

  .gap-xl-43 {
    gap: 4.3rem !important;
  }

  .gap-xl-44 {
    gap: 4.4rem !important;
  }

  .gap-xl-45 {
    gap: 4.5rem !important;
  }

  .gap-xl-46 {
    gap: 4.6rem !important;
  }

  .gap-xl-47 {
    gap: 4.7rem !important;
  }

  .gap-xl-48 {
    gap: 4.8rem !important;
  }

  .gap-xl-49 {
    gap: 4.9rem !important;
  }

  .gap-xl-50 {
    gap: 5rem !important;
  }

  .gap-xl-51 {
    gap: 5.1rem !important;
  }

  .gap-xl-52 {
    gap: 5.2rem !important;
  }

  .gap-xl-53 {
    gap: 5.3rem !important;
  }

  .gap-xl-54 {
    gap: 5.4rem !important;
  }

  .gap-xl-55 {
    gap: 5.5rem !important;
  }

  .gap-xl-56 {
    gap: 5.6rem !important;
  }

  .gap-xl-57 {
    gap: 5.7rem !important;
  }

  .gap-xl-58 {
    gap: 5.8rem !important;
  }

  .gap-xl-59 {
    gap: 5.9rem !important;
  }

  .gap-xl-60 {
    gap: 6rem !important;
  }

  .gap-xl-61 {
    gap: 6.1rem !important;
  }

  .gap-xl-62 {
    gap: 6.2rem !important;
  }

  .gap-xl-63 {
    gap: 6.3rem !important;
  }

  .gap-xl-64 {
    gap: 6.4rem !important;
  }

  .gap-xl-65 {
    gap: 6.5rem !important;
  }

  .gap-xl-66 {
    gap: 6.6rem !important;
  }

  .gap-xl-67 {
    gap: 6.7rem !important;
  }

  .gap-xl-68 {
    gap: 6.8rem !important;
  }

  .gap-xl-69 {
    gap: 6.9rem !important;
  }

  .gap-xl-70 {
    gap: 7rem !important;
  }

  .gap-xl-71 {
    gap: 7.1rem !important;
  }

  .gap-xl-72 {
    gap: 7.2rem !important;
  }

  .gap-xl-73 {
    gap: 7.3rem !important;
  }

  .gap-xl-74 {
    gap: 7.4rem !important;
  }

  .gap-xl-75 {
    gap: 7.5rem !important;
  }

  .gap-xl-76 {
    gap: 7.6rem !important;
  }

  .gap-xl-77 {
    gap: 7.7rem !important;
  }

  .gap-xl-78 {
    gap: 7.8rem !important;
  }

  .gap-xl-79 {
    gap: 7.9rem !important;
  }

  .gap-xl-80 {
    gap: 8rem !important;
  }

  .gap-xl-81 {
    gap: 8.1rem !important;
  }

  .gap-xl-82 {
    gap: 8.2rem !important;
  }

  .gap-xl-83 {
    gap: 8.3rem !important;
  }

  .gap-xl-84 {
    gap: 8.4rem !important;
  }

  .gap-xl-85 {
    gap: 8.5rem !important;
  }

  .gap-xl-86 {
    gap: 8.6rem !important;
  }

  .gap-xl-87 {
    gap: 8.7rem !important;
  }

  .gap-xl-88 {
    gap: 8.8rem !important;
  }

  .gap-xl-89 {
    gap: 8.9rem !important;
  }

  .gap-xl-90 {
    gap: 9rem !important;
  }

  .gap-xl-91 {
    gap: 9.1rem !important;
  }

  .gap-xl-92 {
    gap: 9.2rem !important;
  }

  .gap-xl-93 {
    gap: 9.3rem !important;
  }

  .gap-xl-94 {
    gap: 9.4rem !important;
  }

  .gap-xl-95 {
    gap: 9.5rem !important;
  }

  .gap-xl-96 {
    gap: 9.6rem !important;
  }

  .gap-xl-97 {
    gap: 9.7rem !important;
  }

  .gap-xl-98 {
    gap: 9.8rem !important;
  }

  .gap-xl-99 {
    gap: 9.9rem !important;
  }

  .gap-xl-100 {
    gap: 10rem !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !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-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .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;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-6 {
    margin: 0.6rem !important;
  }

  .m-xl-7 {
    margin: 0.7rem !important;
  }

  .m-xl-8 {
    margin: 0.8rem !important;
  }

  .m-xl-9 {
    margin: 0.9rem !important;
  }

  .m-xl-10 {
    margin: 1rem !important;
  }

  .m-xl-11 {
    margin: 1.1rem !important;
  }

  .m-xl-12 {
    margin: 1.2rem !important;
  }

  .m-xl-13 {
    margin: 1.3rem !important;
  }

  .m-xl-14 {
    margin: 1.4rem !important;
  }

  .m-xl-15 {
    margin: 1.5rem !important;
  }

  .m-xl-16 {
    margin: 1.6rem !important;
  }

  .m-xl-17 {
    margin: 1.7rem !important;
  }

  .m-xl-18 {
    margin: 1.8rem !important;
  }

  .m-xl-19 {
    margin: 1.9rem !important;
  }

  .m-xl-20 {
    margin: 2rem !important;
  }

  .m-xl-21 {
    margin: 2.1rem !important;
  }

  .m-xl-22 {
    margin: 2.2rem !important;
  }

  .m-xl-23 {
    margin: 2.3rem !important;
  }

  .m-xl-24 {
    margin: 2.4rem !important;
  }

  .m-xl-25 {
    margin: 2.5rem !important;
  }

  .m-xl-26 {
    margin: 2.6rem !important;
  }

  .m-xl-27 {
    margin: 2.7rem !important;
  }

  .m-xl-28 {
    margin: 2.8rem !important;
  }

  .m-xl-29 {
    margin: 2.9rem !important;
  }

  .m-xl-30 {
    margin: 3rem !important;
  }

  .m-xl-31 {
    margin: 3.1rem !important;
  }

  .m-xl-32 {
    margin: 3.2rem !important;
  }

  .m-xl-33 {
    margin: 3.3rem !important;
  }

  .m-xl-34 {
    margin: 3.4rem !important;
  }

  .m-xl-35 {
    margin: 3.5rem !important;
  }

  .m-xl-36 {
    margin: 3.6rem !important;
  }

  .m-xl-37 {
    margin: 3.7rem !important;
  }

  .m-xl-38 {
    margin: 3.8rem !important;
  }

  .m-xl-39 {
    margin: 3.9rem !important;
  }

  .m-xl-40 {
    margin: 4rem !important;
  }

  .m-xl-41 {
    margin: 4.1rem !important;
  }

  .m-xl-42 {
    margin: 4.2rem !important;
  }

  .m-xl-43 {
    margin: 4.3rem !important;
  }

  .m-xl-44 {
    margin: 4.4rem !important;
  }

  .m-xl-45 {
    margin: 4.5rem !important;
  }

  .m-xl-46 {
    margin: 4.6rem !important;
  }

  .m-xl-47 {
    margin: 4.7rem !important;
  }

  .m-xl-48 {
    margin: 4.8rem !important;
  }

  .m-xl-49 {
    margin: 4.9rem !important;
  }

  .m-xl-50 {
    margin: 5rem !important;
  }

  .m-xl-51 {
    margin: 5.1rem !important;
  }

  .m-xl-52 {
    margin: 5.2rem !important;
  }

  .m-xl-53 {
    margin: 5.3rem !important;
  }

  .m-xl-54 {
    margin: 5.4rem !important;
  }

  .m-xl-55 {
    margin: 5.5rem !important;
  }

  .m-xl-56 {
    margin: 5.6rem !important;
  }

  .m-xl-57 {
    margin: 5.7rem !important;
  }

  .m-xl-58 {
    margin: 5.8rem !important;
  }

  .m-xl-59 {
    margin: 5.9rem !important;
  }

  .m-xl-60 {
    margin: 6rem !important;
  }

  .m-xl-61 {
    margin: 6.1rem !important;
  }

  .m-xl-62 {
    margin: 6.2rem !important;
  }

  .m-xl-63 {
    margin: 6.3rem !important;
  }

  .m-xl-64 {
    margin: 6.4rem !important;
  }

  .m-xl-65 {
    margin: 6.5rem !important;
  }

  .m-xl-66 {
    margin: 6.6rem !important;
  }

  .m-xl-67 {
    margin: 6.7rem !important;
  }

  .m-xl-68 {
    margin: 6.8rem !important;
  }

  .m-xl-69 {
    margin: 6.9rem !important;
  }

  .m-xl-70 {
    margin: 7rem !important;
  }

  .m-xl-71 {
    margin: 7.1rem !important;
  }

  .m-xl-72 {
    margin: 7.2rem !important;
  }

  .m-xl-73 {
    margin: 7.3rem !important;
  }

  .m-xl-74 {
    margin: 7.4rem !important;
  }

  .m-xl-75 {
    margin: 7.5rem !important;
  }

  .m-xl-76 {
    margin: 7.6rem !important;
  }

  .m-xl-77 {
    margin: 7.7rem !important;
  }

  .m-xl-78 {
    margin: 7.8rem !important;
  }

  .m-xl-79 {
    margin: 7.9rem !important;
  }

  .m-xl-80 {
    margin: 8rem !important;
  }

  .m-xl-81 {
    margin: 8.1rem !important;
  }

  .m-xl-82 {
    margin: 8.2rem !important;
  }

  .m-xl-83 {
    margin: 8.3rem !important;
  }

  .m-xl-84 {
    margin: 8.4rem !important;
  }

  .m-xl-85 {
    margin: 8.5rem !important;
  }

  .m-xl-86 {
    margin: 8.6rem !important;
  }

  .m-xl-87 {
    margin: 8.7rem !important;
  }

  .m-xl-88 {
    margin: 8.8rem !important;
  }

  .m-xl-89 {
    margin: 8.9rem !important;
  }

  .m-xl-90 {
    margin: 9rem !important;
  }

  .m-xl-91 {
    margin: 9.1rem !important;
  }

  .m-xl-92 {
    margin: 9.2rem !important;
  }

  .m-xl-93 {
    margin: 9.3rem !important;
  }

  .m-xl-94 {
    margin: 9.4rem !important;
  }

  .m-xl-95 {
    margin: 9.5rem !important;
  }

  .m-xl-96 {
    margin: 9.6rem !important;
  }

  .m-xl-97 {
    margin: 9.7rem !important;
  }

  .m-xl-98 {
    margin: 9.8rem !important;
  }

  .m-xl-99 {
    margin: 9.9rem !important;
  }

  .m-xl-100 {
    margin: 10rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-6 {
    margin-right: 0.6rem !important;
    margin-left: 0.6rem !important;
  }

  .mx-xl-7 {
    margin-right: 0.7rem !important;
    margin-left: 0.7rem !important;
  }

  .mx-xl-8 {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }

  .mx-xl-9 {
    margin-right: 0.9rem !important;
    margin-left: 0.9rem !important;
  }

  .mx-xl-10 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-11 {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
  }

  .mx-xl-12 {
    margin-right: 1.2rem !important;
    margin-left: 1.2rem !important;
  }

  .mx-xl-13 {
    margin-right: 1.3rem !important;
    margin-left: 1.3rem !important;
  }

  .mx-xl-14 {
    margin-right: 1.4rem !important;
    margin-left: 1.4rem !important;
  }

  .mx-xl-15 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-16 {
    margin-right: 1.6rem !important;
    margin-left: 1.6rem !important;
  }

  .mx-xl-17 {
    margin-right: 1.7rem !important;
    margin-left: 1.7rem !important;
  }

  .mx-xl-18 {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }

  .mx-xl-19 {
    margin-right: 1.9rem !important;
    margin-left: 1.9rem !important;
  }

  .mx-xl-20 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-xl-21 {
    margin-right: 2.1rem !important;
    margin-left: 2.1rem !important;
  }

  .mx-xl-22 {
    margin-right: 2.2rem !important;
    margin-left: 2.2rem !important;
  }

  .mx-xl-23 {
    margin-right: 2.3rem !important;
    margin-left: 2.3rem !important;
  }

  .mx-xl-24 {
    margin-right: 2.4rem !important;
    margin-left: 2.4rem !important;
  }

  .mx-xl-25 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xl-26 {
    margin-right: 2.6rem !important;
    margin-left: 2.6rem !important;
  }

  .mx-xl-27 {
    margin-right: 2.7rem !important;
    margin-left: 2.7rem !important;
  }

  .mx-xl-28 {
    margin-right: 2.8rem !important;
    margin-left: 2.8rem !important;
  }

  .mx-xl-29 {
    margin-right: 2.9rem !important;
    margin-left: 2.9rem !important;
  }

  .mx-xl-30 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-31 {
    margin-right: 3.1rem !important;
    margin-left: 3.1rem !important;
  }

  .mx-xl-32 {
    margin-right: 3.2rem !important;
    margin-left: 3.2rem !important;
  }

  .mx-xl-33 {
    margin-right: 3.3rem !important;
    margin-left: 3.3rem !important;
  }

  .mx-xl-34 {
    margin-right: 3.4rem !important;
    margin-left: 3.4rem !important;
  }

  .mx-xl-35 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-xl-36 {
    margin-right: 3.6rem !important;
    margin-left: 3.6rem !important;
  }

  .mx-xl-37 {
    margin-right: 3.7rem !important;
    margin-left: 3.7rem !important;
  }

  .mx-xl-38 {
    margin-right: 3.8rem !important;
    margin-left: 3.8rem !important;
  }

  .mx-xl-39 {
    margin-right: 3.9rem !important;
    margin-left: 3.9rem !important;
  }

  .mx-xl-40 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-xl-41 {
    margin-right: 4.1rem !important;
    margin-left: 4.1rem !important;
  }

  .mx-xl-42 {
    margin-right: 4.2rem !important;
    margin-left: 4.2rem !important;
  }

  .mx-xl-43 {
    margin-right: 4.3rem !important;
    margin-left: 4.3rem !important;
  }

  .mx-xl-44 {
    margin-right: 4.4rem !important;
    margin-left: 4.4rem !important;
  }

  .mx-xl-45 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-xl-46 {
    margin-right: 4.6rem !important;
    margin-left: 4.6rem !important;
  }

  .mx-xl-47 {
    margin-right: 4.7rem !important;
    margin-left: 4.7rem !important;
  }

  .mx-xl-48 {
    margin-right: 4.8rem !important;
    margin-left: 4.8rem !important;
  }

  .mx-xl-49 {
    margin-right: 4.9rem !important;
    margin-left: 4.9rem !important;
  }

  .mx-xl-50 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-xl-51 {
    margin-right: 5.1rem !important;
    margin-left: 5.1rem !important;
  }

  .mx-xl-52 {
    margin-right: 5.2rem !important;
    margin-left: 5.2rem !important;
  }

  .mx-xl-53 {
    margin-right: 5.3rem !important;
    margin-left: 5.3rem !important;
  }

  .mx-xl-54 {
    margin-right: 5.4rem !important;
    margin-left: 5.4rem !important;
  }

  .mx-xl-55 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }

  .mx-xl-56 {
    margin-right: 5.6rem !important;
    margin-left: 5.6rem !important;
  }

  .mx-xl-57 {
    margin-right: 5.7rem !important;
    margin-left: 5.7rem !important;
  }

  .mx-xl-58 {
    margin-right: 5.8rem !important;
    margin-left: 5.8rem !important;
  }

  .mx-xl-59 {
    margin-right: 5.9rem !important;
    margin-left: 5.9rem !important;
  }

  .mx-xl-60 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-xl-61 {
    margin-right: 6.1rem !important;
    margin-left: 6.1rem !important;
  }

  .mx-xl-62 {
    margin-right: 6.2rem !important;
    margin-left: 6.2rem !important;
  }

  .mx-xl-63 {
    margin-right: 6.3rem !important;
    margin-left: 6.3rem !important;
  }

  .mx-xl-64 {
    margin-right: 6.4rem !important;
    margin-left: 6.4rem !important;
  }

  .mx-xl-65 {
    margin-right: 6.5rem !important;
    margin-left: 6.5rem !important;
  }

  .mx-xl-66 {
    margin-right: 6.6rem !important;
    margin-left: 6.6rem !important;
  }

  .mx-xl-67 {
    margin-right: 6.7rem !important;
    margin-left: 6.7rem !important;
  }

  .mx-xl-68 {
    margin-right: 6.8rem !important;
    margin-left: 6.8rem !important;
  }

  .mx-xl-69 {
    margin-right: 6.9rem !important;
    margin-left: 6.9rem !important;
  }

  .mx-xl-70 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }

  .mx-xl-71 {
    margin-right: 7.1rem !important;
    margin-left: 7.1rem !important;
  }

  .mx-xl-72 {
    margin-right: 7.2rem !important;
    margin-left: 7.2rem !important;
  }

  .mx-xl-73 {
    margin-right: 7.3rem !important;
    margin-left: 7.3rem !important;
  }

  .mx-xl-74 {
    margin-right: 7.4rem !important;
    margin-left: 7.4rem !important;
  }

  .mx-xl-75 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-xl-76 {
    margin-right: 7.6rem !important;
    margin-left: 7.6rem !important;
  }

  .mx-xl-77 {
    margin-right: 7.7rem !important;
    margin-left: 7.7rem !important;
  }

  .mx-xl-78 {
    margin-right: 7.8rem !important;
    margin-left: 7.8rem !important;
  }

  .mx-xl-79 {
    margin-right: 7.9rem !important;
    margin-left: 7.9rem !important;
  }

  .mx-xl-80 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-xl-81 {
    margin-right: 8.1rem !important;
    margin-left: 8.1rem !important;
  }

  .mx-xl-82 {
    margin-right: 8.2rem !important;
    margin-left: 8.2rem !important;
  }

  .mx-xl-83 {
    margin-right: 8.3rem !important;
    margin-left: 8.3rem !important;
  }

  .mx-xl-84 {
    margin-right: 8.4rem !important;
    margin-left: 8.4rem !important;
  }

  .mx-xl-85 {
    margin-right: 8.5rem !important;
    margin-left: 8.5rem !important;
  }

  .mx-xl-86 {
    margin-right: 8.6rem !important;
    margin-left: 8.6rem !important;
  }

  .mx-xl-87 {
    margin-right: 8.7rem !important;
    margin-left: 8.7rem !important;
  }

  .mx-xl-88 {
    margin-right: 8.8rem !important;
    margin-left: 8.8rem !important;
  }

  .mx-xl-89 {
    margin-right: 8.9rem !important;
    margin-left: 8.9rem !important;
  }

  .mx-xl-90 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }

  .mx-xl-91 {
    margin-right: 9.1rem !important;
    margin-left: 9.1rem !important;
  }

  .mx-xl-92 {
    margin-right: 9.2rem !important;
    margin-left: 9.2rem !important;
  }

  .mx-xl-93 {
    margin-right: 9.3rem !important;
    margin-left: 9.3rem !important;
  }

  .mx-xl-94 {
    margin-right: 9.4rem !important;
    margin-left: 9.4rem !important;
  }

  .mx-xl-95 {
    margin-right: 9.5rem !important;
    margin-left: 9.5rem !important;
  }

  .mx-xl-96 {
    margin-right: 9.6rem !important;
    margin-left: 9.6rem !important;
  }

  .mx-xl-97 {
    margin-right: 9.7rem !important;
    margin-left: 9.7rem !important;
  }

  .mx-xl-98 {
    margin-right: 9.8rem !important;
    margin-left: 9.8rem !important;
  }

  .mx-xl-99 {
    margin-right: 9.9rem !important;
    margin-left: 9.9rem !important;
  }

  .mx-xl-100 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-6 {
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .my-xl-7 {
    margin-top: 0.7rem !important;
    margin-bottom: 0.7rem !important;
  }

  .my-xl-8 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  .my-xl-9 {
    margin-top: 0.9rem !important;
    margin-bottom: 0.9rem !important;
  }

  .my-xl-10 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-11 {
    margin-top: 1.1rem !important;
    margin-bottom: 1.1rem !important;
  }

  .my-xl-12 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }

  .my-xl-13 {
    margin-top: 1.3rem !important;
    margin-bottom: 1.3rem !important;
  }

  .my-xl-14 {
    margin-top: 1.4rem !important;
    margin-bottom: 1.4rem !important;
  }

  .my-xl-15 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-16 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }

  .my-xl-17 {
    margin-top: 1.7rem !important;
    margin-bottom: 1.7rem !important;
  }

  .my-xl-18 {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }

  .my-xl-19 {
    margin-top: 1.9rem !important;
    margin-bottom: 1.9rem !important;
  }

  .my-xl-20 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-xl-21 {
    margin-top: 2.1rem !important;
    margin-bottom: 2.1rem !important;
  }

  .my-xl-22 {
    margin-top: 2.2rem !important;
    margin-bottom: 2.2rem !important;
  }

  .my-xl-23 {
    margin-top: 2.3rem !important;
    margin-bottom: 2.3rem !important;
  }

  .my-xl-24 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }

  .my-xl-25 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xl-26 {
    margin-top: 2.6rem !important;
    margin-bottom: 2.6rem !important;
  }

  .my-xl-27 {
    margin-top: 2.7rem !important;
    margin-bottom: 2.7rem !important;
  }

  .my-xl-28 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }

  .my-xl-29 {
    margin-top: 2.9rem !important;
    margin-bottom: 2.9rem !important;
  }

  .my-xl-30 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-31 {
    margin-top: 3.1rem !important;
    margin-bottom: 3.1rem !important;
  }

  .my-xl-32 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }

  .my-xl-33 {
    margin-top: 3.3rem !important;
    margin-bottom: 3.3rem !important;
  }

  .my-xl-34 {
    margin-top: 3.4rem !important;
    margin-bottom: 3.4rem !important;
  }

  .my-xl-35 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-xl-36 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }

  .my-xl-37 {
    margin-top: 3.7rem !important;
    margin-bottom: 3.7rem !important;
  }

  .my-xl-38 {
    margin-top: 3.8rem !important;
    margin-bottom: 3.8rem !important;
  }

  .my-xl-39 {
    margin-top: 3.9rem !important;
    margin-bottom: 3.9rem !important;
  }

  .my-xl-40 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-xl-41 {
    margin-top: 4.1rem !important;
    margin-bottom: 4.1rem !important;
  }

  .my-xl-42 {
    margin-top: 4.2rem !important;
    margin-bottom: 4.2rem !important;
  }

  .my-xl-43 {
    margin-top: 4.3rem !important;
    margin-bottom: 4.3rem !important;
  }

  .my-xl-44 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }

  .my-xl-45 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-xl-46 {
    margin-top: 4.6rem !important;
    margin-bottom: 4.6rem !important;
  }

  .my-xl-47 {
    margin-top: 4.7rem !important;
    margin-bottom: 4.7rem !important;
  }

  .my-xl-48 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }

  .my-xl-49 {
    margin-top: 4.9rem !important;
    margin-bottom: 4.9rem !important;
  }

  .my-xl-50 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-xl-51 {
    margin-top: 5.1rem !important;
    margin-bottom: 5.1rem !important;
  }

  .my-xl-52 {
    margin-top: 5.2rem !important;
    margin-bottom: 5.2rem !important;
  }

  .my-xl-53 {
    margin-top: 5.3rem !important;
    margin-bottom: 5.3rem !important;
  }

  .my-xl-54 {
    margin-top: 5.4rem !important;
    margin-bottom: 5.4rem !important;
  }

  .my-xl-55 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .my-xl-56 {
    margin-top: 5.6rem !important;
    margin-bottom: 5.6rem !important;
  }

  .my-xl-57 {
    margin-top: 5.7rem !important;
    margin-bottom: 5.7rem !important;
  }

  .my-xl-58 {
    margin-top: 5.8rem !important;
    margin-bottom: 5.8rem !important;
  }

  .my-xl-59 {
    margin-top: 5.9rem !important;
    margin-bottom: 5.9rem !important;
  }

  .my-xl-60 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-xl-61 {
    margin-top: 6.1rem !important;
    margin-bottom: 6.1rem !important;
  }

  .my-xl-62 {
    margin-top: 6.2rem !important;
    margin-bottom: 6.2rem !important;
  }

  .my-xl-63 {
    margin-top: 6.3rem !important;
    margin-bottom: 6.3rem !important;
  }

  .my-xl-64 {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }

  .my-xl-65 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .my-xl-66 {
    margin-top: 6.6rem !important;
    margin-bottom: 6.6rem !important;
  }

  .my-xl-67 {
    margin-top: 6.7rem !important;
    margin-bottom: 6.7rem !important;
  }

  .my-xl-68 {
    margin-top: 6.8rem !important;
    margin-bottom: 6.8rem !important;
  }

  .my-xl-69 {
    margin-top: 6.9rem !important;
    margin-bottom: 6.9rem !important;
  }

  .my-xl-70 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .my-xl-71 {
    margin-top: 7.1rem !important;
    margin-bottom: 7.1rem !important;
  }

  .my-xl-72 {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important;
  }

  .my-xl-73 {
    margin-top: 7.3rem !important;
    margin-bottom: 7.3rem !important;
  }

  .my-xl-74 {
    margin-top: 7.4rem !important;
    margin-bottom: 7.4rem !important;
  }

  .my-xl-75 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-xl-76 {
    margin-top: 7.6rem !important;
    margin-bottom: 7.6rem !important;
  }

  .my-xl-77 {
    margin-top: 7.7rem !important;
    margin-bottom: 7.7rem !important;
  }

  .my-xl-78 {
    margin-top: 7.8rem !important;
    margin-bottom: 7.8rem !important;
  }

  .my-xl-79 {
    margin-top: 7.9rem !important;
    margin-bottom: 7.9rem !important;
  }

  .my-xl-80 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-xl-81 {
    margin-top: 8.1rem !important;
    margin-bottom: 8.1rem !important;
  }

  .my-xl-82 {
    margin-top: 8.2rem !important;
    margin-bottom: 8.2rem !important;
  }

  .my-xl-83 {
    margin-top: 8.3rem !important;
    margin-bottom: 8.3rem !important;
  }

  .my-xl-84 {
    margin-top: 8.4rem !important;
    margin-bottom: 8.4rem !important;
  }

  .my-xl-85 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }

  .my-xl-86 {
    margin-top: 8.6rem !important;
    margin-bottom: 8.6rem !important;
  }

  .my-xl-87 {
    margin-top: 8.7rem !important;
    margin-bottom: 8.7rem !important;
  }

  .my-xl-88 {
    margin-top: 8.8rem !important;
    margin-bottom: 8.8rem !important;
  }

  .my-xl-89 {
    margin-top: 8.9rem !important;
    margin-bottom: 8.9rem !important;
  }

  .my-xl-90 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .my-xl-91 {
    margin-top: 9.1rem !important;
    margin-bottom: 9.1rem !important;
  }

  .my-xl-92 {
    margin-top: 9.2rem !important;
    margin-bottom: 9.2rem !important;
  }

  .my-xl-93 {
    margin-top: 9.3rem !important;
    margin-bottom: 9.3rem !important;
  }

  .my-xl-94 {
    margin-top: 9.4rem !important;
    margin-bottom: 9.4rem !important;
  }

  .my-xl-95 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }

  .my-xl-96 {
    margin-top: 9.6rem !important;
    margin-bottom: 9.6rem !important;
  }

  .my-xl-97 {
    margin-top: 9.7rem !important;
    margin-bottom: 9.7rem !important;
  }

  .my-xl-98 {
    margin-top: 9.8rem !important;
    margin-bottom: 9.8rem !important;
  }

  .my-xl-99 {
    margin-top: 9.9rem !important;
    margin-bottom: 9.9rem !important;
  }

  .my-xl-100 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-6 {
    margin-top: 0.6rem !important;
  }

  .mt-xl-7 {
    margin-top: 0.7rem !important;
  }

  .mt-xl-8 {
    margin-top: 0.8rem !important;
  }

  .mt-xl-9 {
    margin-top: 0.9rem !important;
  }

  .mt-xl-10 {
    margin-top: 1rem !important;
  }

  .mt-xl-11 {
    margin-top: 1.1rem !important;
  }

  .mt-xl-12 {
    margin-top: 1.2rem !important;
  }

  .mt-xl-13 {
    margin-top: 1.3rem !important;
  }

  .mt-xl-14 {
    margin-top: 1.4rem !important;
  }

  .mt-xl-15 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-16 {
    margin-top: 1.6rem !important;
  }

  .mt-xl-17 {
    margin-top: 1.7rem !important;
  }

  .mt-xl-18 {
    margin-top: 1.8rem !important;
  }

  .mt-xl-19 {
    margin-top: 1.9rem !important;
  }

  .mt-xl-20 {
    margin-top: 2rem !important;
  }

  .mt-xl-21 {
    margin-top: 2.1rem !important;
  }

  .mt-xl-22 {
    margin-top: 2.2rem !important;
  }

  .mt-xl-23 {
    margin-top: 2.3rem !important;
  }

  .mt-xl-24 {
    margin-top: 2.4rem !important;
  }

  .mt-xl-25 {
    margin-top: 2.5rem !important;
  }

  .mt-xl-26 {
    margin-top: 2.6rem !important;
  }

  .mt-xl-27 {
    margin-top: 2.7rem !important;
  }

  .mt-xl-28 {
    margin-top: 2.8rem !important;
  }

  .mt-xl-29 {
    margin-top: 2.9rem !important;
  }

  .mt-xl-30 {
    margin-top: 3rem !important;
  }

  .mt-xl-31 {
    margin-top: 3.1rem !important;
  }

  .mt-xl-32 {
    margin-top: 3.2rem !important;
  }

  .mt-xl-33 {
    margin-top: 3.3rem !important;
  }

  .mt-xl-34 {
    margin-top: 3.4rem !important;
  }

  .mt-xl-35 {
    margin-top: 3.5rem !important;
  }

  .mt-xl-36 {
    margin-top: 3.6rem !important;
  }

  .mt-xl-37 {
    margin-top: 3.7rem !important;
  }

  .mt-xl-38 {
    margin-top: 3.8rem !important;
  }

  .mt-xl-39 {
    margin-top: 3.9rem !important;
  }

  .mt-xl-40 {
    margin-top: 4rem !important;
  }

  .mt-xl-41 {
    margin-top: 4.1rem !important;
  }

  .mt-xl-42 {
    margin-top: 4.2rem !important;
  }

  .mt-xl-43 {
    margin-top: 4.3rem !important;
  }

  .mt-xl-44 {
    margin-top: 4.4rem !important;
  }

  .mt-xl-45 {
    margin-top: 4.5rem !important;
  }

  .mt-xl-46 {
    margin-top: 4.6rem !important;
  }

  .mt-xl-47 {
    margin-top: 4.7rem !important;
  }

  .mt-xl-48 {
    margin-top: 4.8rem !important;
  }

  .mt-xl-49 {
    margin-top: 4.9rem !important;
  }

  .mt-xl-50 {
    margin-top: 5rem !important;
  }

  .mt-xl-51 {
    margin-top: 5.1rem !important;
  }

  .mt-xl-52 {
    margin-top: 5.2rem !important;
  }

  .mt-xl-53 {
    margin-top: 5.3rem !important;
  }

  .mt-xl-54 {
    margin-top: 5.4rem !important;
  }

  .mt-xl-55 {
    margin-top: 5.5rem !important;
  }

  .mt-xl-56 {
    margin-top: 5.6rem !important;
  }

  .mt-xl-57 {
    margin-top: 5.7rem !important;
  }

  .mt-xl-58 {
    margin-top: 5.8rem !important;
  }

  .mt-xl-59 {
    margin-top: 5.9rem !important;
  }

  .mt-xl-60 {
    margin-top: 6rem !important;
  }

  .mt-xl-61 {
    margin-top: 6.1rem !important;
  }

  .mt-xl-62 {
    margin-top: 6.2rem !important;
  }

  .mt-xl-63 {
    margin-top: 6.3rem !important;
  }

  .mt-xl-64 {
    margin-top: 6.4rem !important;
  }

  .mt-xl-65 {
    margin-top: 6.5rem !important;
  }

  .mt-xl-66 {
    margin-top: 6.6rem !important;
  }

  .mt-xl-67 {
    margin-top: 6.7rem !important;
  }

  .mt-xl-68 {
    margin-top: 6.8rem !important;
  }

  .mt-xl-69 {
    margin-top: 6.9rem !important;
  }

  .mt-xl-70 {
    margin-top: 7rem !important;
  }

  .mt-xl-71 {
    margin-top: 7.1rem !important;
  }

  .mt-xl-72 {
    margin-top: 7.2rem !important;
  }

  .mt-xl-73 {
    margin-top: 7.3rem !important;
  }

  .mt-xl-74 {
    margin-top: 7.4rem !important;
  }

  .mt-xl-75 {
    margin-top: 7.5rem !important;
  }

  .mt-xl-76 {
    margin-top: 7.6rem !important;
  }

  .mt-xl-77 {
    margin-top: 7.7rem !important;
  }

  .mt-xl-78 {
    margin-top: 7.8rem !important;
  }

  .mt-xl-79 {
    margin-top: 7.9rem !important;
  }

  .mt-xl-80 {
    margin-top: 8rem !important;
  }

  .mt-xl-81 {
    margin-top: 8.1rem !important;
  }

  .mt-xl-82 {
    margin-top: 8.2rem !important;
  }

  .mt-xl-83 {
    margin-top: 8.3rem !important;
  }

  .mt-xl-84 {
    margin-top: 8.4rem !important;
  }

  .mt-xl-85 {
    margin-top: 8.5rem !important;
  }

  .mt-xl-86 {
    margin-top: 8.6rem !important;
  }

  .mt-xl-87 {
    margin-top: 8.7rem !important;
  }

  .mt-xl-88 {
    margin-top: 8.8rem !important;
  }

  .mt-xl-89 {
    margin-top: 8.9rem !important;
  }

  .mt-xl-90 {
    margin-top: 9rem !important;
  }

  .mt-xl-91 {
    margin-top: 9.1rem !important;
  }

  .mt-xl-92 {
    margin-top: 9.2rem !important;
  }

  .mt-xl-93 {
    margin-top: 9.3rem !important;
  }

  .mt-xl-94 {
    margin-top: 9.4rem !important;
  }

  .mt-xl-95 {
    margin-top: 9.5rem !important;
  }

  .mt-xl-96 {
    margin-top: 9.6rem !important;
  }

  .mt-xl-97 {
    margin-top: 9.7rem !important;
  }

  .mt-xl-98 {
    margin-top: 9.8rem !important;
  }

  .mt-xl-99 {
    margin-top: 9.9rem !important;
  }

  .mt-xl-100 {
    margin-top: 10rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-6 {
    margin-right: 0.6rem !important;
  }

  .me-xl-7 {
    margin-right: 0.7rem !important;
  }

  .me-xl-8 {
    margin-right: 0.8rem !important;
  }

  .me-xl-9 {
    margin-right: 0.9rem !important;
  }

  .me-xl-10 {
    margin-right: 1rem !important;
  }

  .me-xl-11 {
    margin-right: 1.1rem !important;
  }

  .me-xl-12 {
    margin-right: 1.2rem !important;
  }

  .me-xl-13 {
    margin-right: 1.3rem !important;
  }

  .me-xl-14 {
    margin-right: 1.4rem !important;
  }

  .me-xl-15 {
    margin-right: 1.5rem !important;
  }

  .me-xl-16 {
    margin-right: 1.6rem !important;
  }

  .me-xl-17 {
    margin-right: 1.7rem !important;
  }

  .me-xl-18 {
    margin-right: 1.8rem !important;
  }

  .me-xl-19 {
    margin-right: 1.9rem !important;
  }

  .me-xl-20 {
    margin-right: 2rem !important;
  }

  .me-xl-21 {
    margin-right: 2.1rem !important;
  }

  .me-xl-22 {
    margin-right: 2.2rem !important;
  }

  .me-xl-23 {
    margin-right: 2.3rem !important;
  }

  .me-xl-24 {
    margin-right: 2.4rem !important;
  }

  .me-xl-25 {
    margin-right: 2.5rem !important;
  }

  .me-xl-26 {
    margin-right: 2.6rem !important;
  }

  .me-xl-27 {
    margin-right: 2.7rem !important;
  }

  .me-xl-28 {
    margin-right: 2.8rem !important;
  }

  .me-xl-29 {
    margin-right: 2.9rem !important;
  }

  .me-xl-30 {
    margin-right: 3rem !important;
  }

  .me-xl-31 {
    margin-right: 3.1rem !important;
  }

  .me-xl-32 {
    margin-right: 3.2rem !important;
  }

  .me-xl-33 {
    margin-right: 3.3rem !important;
  }

  .me-xl-34 {
    margin-right: 3.4rem !important;
  }

  .me-xl-35 {
    margin-right: 3.5rem !important;
  }

  .me-xl-36 {
    margin-right: 3.6rem !important;
  }

  .me-xl-37 {
    margin-right: 3.7rem !important;
  }

  .me-xl-38 {
    margin-right: 3.8rem !important;
  }

  .me-xl-39 {
    margin-right: 3.9rem !important;
  }

  .me-xl-40 {
    margin-right: 4rem !important;
  }

  .me-xl-41 {
    margin-right: 4.1rem !important;
  }

  .me-xl-42 {
    margin-right: 4.2rem !important;
  }

  .me-xl-43 {
    margin-right: 4.3rem !important;
  }

  .me-xl-44 {
    margin-right: 4.4rem !important;
  }

  .me-xl-45 {
    margin-right: 4.5rem !important;
  }

  .me-xl-46 {
    margin-right: 4.6rem !important;
  }

  .me-xl-47 {
    margin-right: 4.7rem !important;
  }

  .me-xl-48 {
    margin-right: 4.8rem !important;
  }

  .me-xl-49 {
    margin-right: 4.9rem !important;
  }

  .me-xl-50 {
    margin-right: 5rem !important;
  }

  .me-xl-51 {
    margin-right: 5.1rem !important;
  }

  .me-xl-52 {
    margin-right: 5.2rem !important;
  }

  .me-xl-53 {
    margin-right: 5.3rem !important;
  }

  .me-xl-54 {
    margin-right: 5.4rem !important;
  }

  .me-xl-55 {
    margin-right: 5.5rem !important;
  }

  .me-xl-56 {
    margin-right: 5.6rem !important;
  }

  .me-xl-57 {
    margin-right: 5.7rem !important;
  }

  .me-xl-58 {
    margin-right: 5.8rem !important;
  }

  .me-xl-59 {
    margin-right: 5.9rem !important;
  }

  .me-xl-60 {
    margin-right: 6rem !important;
  }

  .me-xl-61 {
    margin-right: 6.1rem !important;
  }

  .me-xl-62 {
    margin-right: 6.2rem !important;
  }

  .me-xl-63 {
    margin-right: 6.3rem !important;
  }

  .me-xl-64 {
    margin-right: 6.4rem !important;
  }

  .me-xl-65 {
    margin-right: 6.5rem !important;
  }

  .me-xl-66 {
    margin-right: 6.6rem !important;
  }

  .me-xl-67 {
    margin-right: 6.7rem !important;
  }

  .me-xl-68 {
    margin-right: 6.8rem !important;
  }

  .me-xl-69 {
    margin-right: 6.9rem !important;
  }

  .me-xl-70 {
    margin-right: 7rem !important;
  }

  .me-xl-71 {
    margin-right: 7.1rem !important;
  }

  .me-xl-72 {
    margin-right: 7.2rem !important;
  }

  .me-xl-73 {
    margin-right: 7.3rem !important;
  }

  .me-xl-74 {
    margin-right: 7.4rem !important;
  }

  .me-xl-75 {
    margin-right: 7.5rem !important;
  }

  .me-xl-76 {
    margin-right: 7.6rem !important;
  }

  .me-xl-77 {
    margin-right: 7.7rem !important;
  }

  .me-xl-78 {
    margin-right: 7.8rem !important;
  }

  .me-xl-79 {
    margin-right: 7.9rem !important;
  }

  .me-xl-80 {
    margin-right: 8rem !important;
  }

  .me-xl-81 {
    margin-right: 8.1rem !important;
  }

  .me-xl-82 {
    margin-right: 8.2rem !important;
  }

  .me-xl-83 {
    margin-right: 8.3rem !important;
  }

  .me-xl-84 {
    margin-right: 8.4rem !important;
  }

  .me-xl-85 {
    margin-right: 8.5rem !important;
  }

  .me-xl-86 {
    margin-right: 8.6rem !important;
  }

  .me-xl-87 {
    margin-right: 8.7rem !important;
  }

  .me-xl-88 {
    margin-right: 8.8rem !important;
  }

  .me-xl-89 {
    margin-right: 8.9rem !important;
  }

  .me-xl-90 {
    margin-right: 9rem !important;
  }

  .me-xl-91 {
    margin-right: 9.1rem !important;
  }

  .me-xl-92 {
    margin-right: 9.2rem !important;
  }

  .me-xl-93 {
    margin-right: 9.3rem !important;
  }

  .me-xl-94 {
    margin-right: 9.4rem !important;
  }

  .me-xl-95 {
    margin-right: 9.5rem !important;
  }

  .me-xl-96 {
    margin-right: 9.6rem !important;
  }

  .me-xl-97 {
    margin-right: 9.7rem !important;
  }

  .me-xl-98 {
    margin-right: 9.8rem !important;
  }

  .me-xl-99 {
    margin-right: 9.9rem !important;
  }

  .me-xl-100 {
    margin-right: 10rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-6 {
    margin-bottom: 0.6rem !important;
  }

  .mb-xl-7 {
    margin-bottom: 0.7rem !important;
  }

  .mb-xl-8 {
    margin-bottom: 0.8rem !important;
  }

  .mb-xl-9 {
    margin-bottom: 0.9rem !important;
  }

  .mb-xl-10 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-11 {
    margin-bottom: 1.1rem !important;
  }

  .mb-xl-12 {
    margin-bottom: 1.2rem !important;
  }

  .mb-xl-13 {
    margin-bottom: 1.3rem !important;
  }

  .mb-xl-14 {
    margin-bottom: 1.4rem !important;
  }

  .mb-xl-15 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-16 {
    margin-bottom: 1.6rem !important;
  }

  .mb-xl-17 {
    margin-bottom: 1.7rem !important;
  }

  .mb-xl-18 {
    margin-bottom: 1.8rem !important;
  }

  .mb-xl-19 {
    margin-bottom: 1.9rem !important;
  }

  .mb-xl-20 {
    margin-bottom: 2rem !important;
  }

  .mb-xl-21 {
    margin-bottom: 2.1rem !important;
  }

  .mb-xl-22 {
    margin-bottom: 2.2rem !important;
  }

  .mb-xl-23 {
    margin-bottom: 2.3rem !important;
  }

  .mb-xl-24 {
    margin-bottom: 2.4rem !important;
  }

  .mb-xl-25 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xl-26 {
    margin-bottom: 2.6rem !important;
  }

  .mb-xl-27 {
    margin-bottom: 2.7rem !important;
  }

  .mb-xl-28 {
    margin-bottom: 2.8rem !important;
  }

  .mb-xl-29 {
    margin-bottom: 2.9rem !important;
  }

  .mb-xl-30 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-31 {
    margin-bottom: 3.1rem !important;
  }

  .mb-xl-32 {
    margin-bottom: 3.2rem !important;
  }

  .mb-xl-33 {
    margin-bottom: 3.3rem !important;
  }

  .mb-xl-34 {
    margin-bottom: 3.4rem !important;
  }

  .mb-xl-35 {
    margin-bottom: 3.5rem !important;
  }

  .mb-xl-36 {
    margin-bottom: 3.6rem !important;
  }

  .mb-xl-37 {
    margin-bottom: 3.7rem !important;
  }

  .mb-xl-38 {
    margin-bottom: 3.8rem !important;
  }

  .mb-xl-39 {
    margin-bottom: 3.9rem !important;
  }

  .mb-xl-40 {
    margin-bottom: 4rem !important;
  }

  .mb-xl-41 {
    margin-bottom: 4.1rem !important;
  }

  .mb-xl-42 {
    margin-bottom: 4.2rem !important;
  }

  .mb-xl-43 {
    margin-bottom: 4.3rem !important;
  }

  .mb-xl-44 {
    margin-bottom: 4.4rem !important;
  }

  .mb-xl-45 {
    margin-bottom: 4.5rem !important;
  }

  .mb-xl-46 {
    margin-bottom: 4.6rem !important;
  }

  .mb-xl-47 {
    margin-bottom: 4.7rem !important;
  }

  .mb-xl-48 {
    margin-bottom: 4.8rem !important;
  }

  .mb-xl-49 {
    margin-bottom: 4.9rem !important;
  }

  .mb-xl-50 {
    margin-bottom: 5rem !important;
  }

  .mb-xl-51 {
    margin-bottom: 5.1rem !important;
  }

  .mb-xl-52 {
    margin-bottom: 5.2rem !important;
  }

  .mb-xl-53 {
    margin-bottom: 5.3rem !important;
  }

  .mb-xl-54 {
    margin-bottom: 5.4rem !important;
  }

  .mb-xl-55 {
    margin-bottom: 5.5rem !important;
  }

  .mb-xl-56 {
    margin-bottom: 5.6rem !important;
  }

  .mb-xl-57 {
    margin-bottom: 5.7rem !important;
  }

  .mb-xl-58 {
    margin-bottom: 5.8rem !important;
  }

  .mb-xl-59 {
    margin-bottom: 5.9rem !important;
  }

  .mb-xl-60 {
    margin-bottom: 6rem !important;
  }

  .mb-xl-61 {
    margin-bottom: 6.1rem !important;
  }

  .mb-xl-62 {
    margin-bottom: 6.2rem !important;
  }

  .mb-xl-63 {
    margin-bottom: 6.3rem !important;
  }

  .mb-xl-64 {
    margin-bottom: 6.4rem !important;
  }

  .mb-xl-65 {
    margin-bottom: 6.5rem !important;
  }

  .mb-xl-66 {
    margin-bottom: 6.6rem !important;
  }

  .mb-xl-67 {
    margin-bottom: 6.7rem !important;
  }

  .mb-xl-68 {
    margin-bottom: 6.8rem !important;
  }

  .mb-xl-69 {
    margin-bottom: 6.9rem !important;
  }

  .mb-xl-70 {
    margin-bottom: 7rem !important;
  }

  .mb-xl-71 {
    margin-bottom: 7.1rem !important;
  }

  .mb-xl-72 {
    margin-bottom: 7.2rem !important;
  }

  .mb-xl-73 {
    margin-bottom: 7.3rem !important;
  }

  .mb-xl-74 {
    margin-bottom: 7.4rem !important;
  }

  .mb-xl-75 {
    margin-bottom: 7.5rem !important;
  }

  .mb-xl-76 {
    margin-bottom: 7.6rem !important;
  }

  .mb-xl-77 {
    margin-bottom: 7.7rem !important;
  }

  .mb-xl-78 {
    margin-bottom: 7.8rem !important;
  }

  .mb-xl-79 {
    margin-bottom: 7.9rem !important;
  }

  .mb-xl-80 {
    margin-bottom: 8rem !important;
  }

  .mb-xl-81 {
    margin-bottom: 8.1rem !important;
  }

  .mb-xl-82 {
    margin-bottom: 8.2rem !important;
  }

  .mb-xl-83 {
    margin-bottom: 8.3rem !important;
  }

  .mb-xl-84 {
    margin-bottom: 8.4rem !important;
  }

  .mb-xl-85 {
    margin-bottom: 8.5rem !important;
  }

  .mb-xl-86 {
    margin-bottom: 8.6rem !important;
  }

  .mb-xl-87 {
    margin-bottom: 8.7rem !important;
  }

  .mb-xl-88 {
    margin-bottom: 8.8rem !important;
  }

  .mb-xl-89 {
    margin-bottom: 8.9rem !important;
  }

  .mb-xl-90 {
    margin-bottom: 9rem !important;
  }

  .mb-xl-91 {
    margin-bottom: 9.1rem !important;
  }

  .mb-xl-92 {
    margin-bottom: 9.2rem !important;
  }

  .mb-xl-93 {
    margin-bottom: 9.3rem !important;
  }

  .mb-xl-94 {
    margin-bottom: 9.4rem !important;
  }

  .mb-xl-95 {
    margin-bottom: 9.5rem !important;
  }

  .mb-xl-96 {
    margin-bottom: 9.6rem !important;
  }

  .mb-xl-97 {
    margin-bottom: 9.7rem !important;
  }

  .mb-xl-98 {
    margin-bottom: 9.8rem !important;
  }

  .mb-xl-99 {
    margin-bottom: 9.9rem !important;
  }

  .mb-xl-100 {
    margin-bottom: 10rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-6 {
    margin-left: 0.6rem !important;
  }

  .ms-xl-7 {
    margin-left: 0.7rem !important;
  }

  .ms-xl-8 {
    margin-left: 0.8rem !important;
  }

  .ms-xl-9 {
    margin-left: 0.9rem !important;
  }

  .ms-xl-10 {
    margin-left: 1rem !important;
  }

  .ms-xl-11 {
    margin-left: 1.1rem !important;
  }

  .ms-xl-12 {
    margin-left: 1.2rem !important;
  }

  .ms-xl-13 {
    margin-left: 1.3rem !important;
  }

  .ms-xl-14 {
    margin-left: 1.4rem !important;
  }

  .ms-xl-15 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-16 {
    margin-left: 1.6rem !important;
  }

  .ms-xl-17 {
    margin-left: 1.7rem !important;
  }

  .ms-xl-18 {
    margin-left: 1.8rem !important;
  }

  .ms-xl-19 {
    margin-left: 1.9rem !important;
  }

  .ms-xl-20 {
    margin-left: 2rem !important;
  }

  .ms-xl-21 {
    margin-left: 2.1rem !important;
  }

  .ms-xl-22 {
    margin-left: 2.2rem !important;
  }

  .ms-xl-23 {
    margin-left: 2.3rem !important;
  }

  .ms-xl-24 {
    margin-left: 2.4rem !important;
  }

  .ms-xl-25 {
    margin-left: 2.5rem !important;
  }

  .ms-xl-26 {
    margin-left: 2.6rem !important;
  }

  .ms-xl-27 {
    margin-left: 2.7rem !important;
  }

  .ms-xl-28 {
    margin-left: 2.8rem !important;
  }

  .ms-xl-29 {
    margin-left: 2.9rem !important;
  }

  .ms-xl-30 {
    margin-left: 3rem !important;
  }

  .ms-xl-31 {
    margin-left: 3.1rem !important;
  }

  .ms-xl-32 {
    margin-left: 3.2rem !important;
  }

  .ms-xl-33 {
    margin-left: 3.3rem !important;
  }

  .ms-xl-34 {
    margin-left: 3.4rem !important;
  }

  .ms-xl-35 {
    margin-left: 3.5rem !important;
  }

  .ms-xl-36 {
    margin-left: 3.6rem !important;
  }

  .ms-xl-37 {
    margin-left: 3.7rem !important;
  }

  .ms-xl-38 {
    margin-left: 3.8rem !important;
  }

  .ms-xl-39 {
    margin-left: 3.9rem !important;
  }

  .ms-xl-40 {
    margin-left: 4rem !important;
  }

  .ms-xl-41 {
    margin-left: 4.1rem !important;
  }

  .ms-xl-42 {
    margin-left: 4.2rem !important;
  }

  .ms-xl-43 {
    margin-left: 4.3rem !important;
  }

  .ms-xl-44 {
    margin-left: 4.4rem !important;
  }

  .ms-xl-45 {
    margin-left: 4.5rem !important;
  }

  .ms-xl-46 {
    margin-left: 4.6rem !important;
  }

  .ms-xl-47 {
    margin-left: 4.7rem !important;
  }

  .ms-xl-48 {
    margin-left: 4.8rem !important;
  }

  .ms-xl-49 {
    margin-left: 4.9rem !important;
  }

  .ms-xl-50 {
    margin-left: 5rem !important;
  }

  .ms-xl-51 {
    margin-left: 5.1rem !important;
  }

  .ms-xl-52 {
    margin-left: 5.2rem !important;
  }

  .ms-xl-53 {
    margin-left: 5.3rem !important;
  }

  .ms-xl-54 {
    margin-left: 5.4rem !important;
  }

  .ms-xl-55 {
    margin-left: 5.5rem !important;
  }

  .ms-xl-56 {
    margin-left: 5.6rem !important;
  }

  .ms-xl-57 {
    margin-left: 5.7rem !important;
  }

  .ms-xl-58 {
    margin-left: 5.8rem !important;
  }

  .ms-xl-59 {
    margin-left: 5.9rem !important;
  }

  .ms-xl-60 {
    margin-left: 6rem !important;
  }

  .ms-xl-61 {
    margin-left: 6.1rem !important;
  }

  .ms-xl-62 {
    margin-left: 6.2rem !important;
  }

  .ms-xl-63 {
    margin-left: 6.3rem !important;
  }

  .ms-xl-64 {
    margin-left: 6.4rem !important;
  }

  .ms-xl-65 {
    margin-left: 6.5rem !important;
  }

  .ms-xl-66 {
    margin-left: 6.6rem !important;
  }

  .ms-xl-67 {
    margin-left: 6.7rem !important;
  }

  .ms-xl-68 {
    margin-left: 6.8rem !important;
  }

  .ms-xl-69 {
    margin-left: 6.9rem !important;
  }

  .ms-xl-70 {
    margin-left: 7rem !important;
  }

  .ms-xl-71 {
    margin-left: 7.1rem !important;
  }

  .ms-xl-72 {
    margin-left: 7.2rem !important;
  }

  .ms-xl-73 {
    margin-left: 7.3rem !important;
  }

  .ms-xl-74 {
    margin-left: 7.4rem !important;
  }

  .ms-xl-75 {
    margin-left: 7.5rem !important;
  }

  .ms-xl-76 {
    margin-left: 7.6rem !important;
  }

  .ms-xl-77 {
    margin-left: 7.7rem !important;
  }

  .ms-xl-78 {
    margin-left: 7.8rem !important;
  }

  .ms-xl-79 {
    margin-left: 7.9rem !important;
  }

  .ms-xl-80 {
    margin-left: 8rem !important;
  }

  .ms-xl-81 {
    margin-left: 8.1rem !important;
  }

  .ms-xl-82 {
    margin-left: 8.2rem !important;
  }

  .ms-xl-83 {
    margin-left: 8.3rem !important;
  }

  .ms-xl-84 {
    margin-left: 8.4rem !important;
  }

  .ms-xl-85 {
    margin-left: 8.5rem !important;
  }

  .ms-xl-86 {
    margin-left: 8.6rem !important;
  }

  .ms-xl-87 {
    margin-left: 8.7rem !important;
  }

  .ms-xl-88 {
    margin-left: 8.8rem !important;
  }

  .ms-xl-89 {
    margin-left: 8.9rem !important;
  }

  .ms-xl-90 {
    margin-left: 9rem !important;
  }

  .ms-xl-91 {
    margin-left: 9.1rem !important;
  }

  .ms-xl-92 {
    margin-left: 9.2rem !important;
  }

  .ms-xl-93 {
    margin-left: 9.3rem !important;
  }

  .ms-xl-94 {
    margin-left: 9.4rem !important;
  }

  .ms-xl-95 {
    margin-left: 9.5rem !important;
  }

  .ms-xl-96 {
    margin-left: 9.6rem !important;
  }

  .ms-xl-97 {
    margin-left: 9.7rem !important;
  }

  .ms-xl-98 {
    margin-left: 9.8rem !important;
  }

  .ms-xl-99 {
    margin-left: 9.9rem !important;
  }

  .ms-xl-100 {
    margin-left: 10rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .p-xl-6 {
    padding: 0.6rem !important;
  }

  .p-xl-7 {
    padding: 0.7rem !important;
  }

  .p-xl-8 {
    padding: 0.8rem !important;
  }

  .p-xl-9 {
    padding: 0.9rem !important;
  }

  .p-xl-10 {
    padding: 1rem !important;
  }

  .p-xl-11 {
    padding: 1.1rem !important;
  }

  .p-xl-12 {
    padding: 1.2rem !important;
  }

  .p-xl-13 {
    padding: 1.3rem !important;
  }

  .p-xl-14 {
    padding: 1.4rem !important;
  }

  .p-xl-15 {
    padding: 1.5rem !important;
  }

  .p-xl-16 {
    padding: 1.6rem !important;
  }

  .p-xl-17 {
    padding: 1.7rem !important;
  }

  .p-xl-18 {
    padding: 1.8rem !important;
  }

  .p-xl-19 {
    padding: 1.9rem !important;
  }

  .p-xl-20 {
    padding: 2rem !important;
  }

  .p-xl-21 {
    padding: 2.1rem !important;
  }

  .p-xl-22 {
    padding: 2.2rem !important;
  }

  .p-xl-23 {
    padding: 2.3rem !important;
  }

  .p-xl-24 {
    padding: 2.4rem !important;
  }

  .p-xl-25 {
    padding: 2.5rem !important;
  }

  .p-xl-26 {
    padding: 2.6rem !important;
  }

  .p-xl-27 {
    padding: 2.7rem !important;
  }

  .p-xl-28 {
    padding: 2.8rem !important;
  }

  .p-xl-29 {
    padding: 2.9rem !important;
  }

  .p-xl-30 {
    padding: 3rem !important;
  }

  .p-xl-31 {
    padding: 3.1rem !important;
  }

  .p-xl-32 {
    padding: 3.2rem !important;
  }

  .p-xl-33 {
    padding: 3.3rem !important;
  }

  .p-xl-34 {
    padding: 3.4rem !important;
  }

  .p-xl-35 {
    padding: 3.5rem !important;
  }

  .p-xl-36 {
    padding: 3.6rem !important;
  }

  .p-xl-37 {
    padding: 3.7rem !important;
  }

  .p-xl-38 {
    padding: 3.8rem !important;
  }

  .p-xl-39 {
    padding: 3.9rem !important;
  }

  .p-xl-40 {
    padding: 4rem !important;
  }

  .p-xl-41 {
    padding: 4.1rem !important;
  }

  .p-xl-42 {
    padding: 4.2rem !important;
  }

  .p-xl-43 {
    padding: 4.3rem !important;
  }

  .p-xl-44 {
    padding: 4.4rem !important;
  }

  .p-xl-45 {
    padding: 4.5rem !important;
  }

  .p-xl-46 {
    padding: 4.6rem !important;
  }

  .p-xl-47 {
    padding: 4.7rem !important;
  }

  .p-xl-48 {
    padding: 4.8rem !important;
  }

  .p-xl-49 {
    padding: 4.9rem !important;
  }

  .p-xl-50 {
    padding: 5rem !important;
  }

  .p-xl-51 {
    padding: 5.1rem !important;
  }

  .p-xl-52 {
    padding: 5.2rem !important;
  }

  .p-xl-53 {
    padding: 5.3rem !important;
  }

  .p-xl-54 {
    padding: 5.4rem !important;
  }

  .p-xl-55 {
    padding: 5.5rem !important;
  }

  .p-xl-56 {
    padding: 5.6rem !important;
  }

  .p-xl-57 {
    padding: 5.7rem !important;
  }

  .p-xl-58 {
    padding: 5.8rem !important;
  }

  .p-xl-59 {
    padding: 5.9rem !important;
  }

  .p-xl-60 {
    padding: 6rem !important;
  }

  .p-xl-61 {
    padding: 6.1rem !important;
  }

  .p-xl-62 {
    padding: 6.2rem !important;
  }

  .p-xl-63 {
    padding: 6.3rem !important;
  }

  .p-xl-64 {
    padding: 6.4rem !important;
  }

  .p-xl-65 {
    padding: 6.5rem !important;
  }

  .p-xl-66 {
    padding: 6.6rem !important;
  }

  .p-xl-67 {
    padding: 6.7rem !important;
  }

  .p-xl-68 {
    padding: 6.8rem !important;
  }

  .p-xl-69 {
    padding: 6.9rem !important;
  }

  .p-xl-70 {
    padding: 7rem !important;
  }

  .p-xl-71 {
    padding: 7.1rem !important;
  }

  .p-xl-72 {
    padding: 7.2rem !important;
  }

  .p-xl-73 {
    padding: 7.3rem !important;
  }

  .p-xl-74 {
    padding: 7.4rem !important;
  }

  .p-xl-75 {
    padding: 7.5rem !important;
  }

  .p-xl-76 {
    padding: 7.6rem !important;
  }

  .p-xl-77 {
    padding: 7.7rem !important;
  }

  .p-xl-78 {
    padding: 7.8rem !important;
  }

  .p-xl-79 {
    padding: 7.9rem !important;
  }

  .p-xl-80 {
    padding: 8rem !important;
  }

  .p-xl-81 {
    padding: 8.1rem !important;
  }

  .p-xl-82 {
    padding: 8.2rem !important;
  }

  .p-xl-83 {
    padding: 8.3rem !important;
  }

  .p-xl-84 {
    padding: 8.4rem !important;
  }

  .p-xl-85 {
    padding: 8.5rem !important;
  }

  .p-xl-86 {
    padding: 8.6rem !important;
  }

  .p-xl-87 {
    padding: 8.7rem !important;
  }

  .p-xl-88 {
    padding: 8.8rem !important;
  }

  .p-xl-89 {
    padding: 8.9rem !important;
  }

  .p-xl-90 {
    padding: 9rem !important;
  }

  .p-xl-91 {
    padding: 9.1rem !important;
  }

  .p-xl-92 {
    padding: 9.2rem !important;
  }

  .p-xl-93 {
    padding: 9.3rem !important;
  }

  .p-xl-94 {
    padding: 9.4rem !important;
  }

  .p-xl-95 {
    padding: 9.5rem !important;
  }

  .p-xl-96 {
    padding: 9.6rem !important;
  }

  .p-xl-97 {
    padding: 9.7rem !important;
  }

  .p-xl-98 {
    padding: 9.8rem !important;
  }

  .p-xl-99 {
    padding: 9.9rem !important;
  }

  .p-xl-100 {
    padding: 10rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-xl-6 {
    padding-right: 0.6rem !important;
    padding-left: 0.6rem !important;
  }

  .px-xl-7 {
    padding-right: 0.7rem !important;
    padding-left: 0.7rem !important;
  }

  .px-xl-8 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
  }

  .px-xl-9 {
    padding-right: 0.9rem !important;
    padding-left: 0.9rem !important;
  }

  .px-xl-10 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-11 {
    padding-right: 1.1rem !important;
    padding-left: 1.1rem !important;
  }

  .px-xl-12 {
    padding-right: 1.2rem !important;
    padding-left: 1.2rem !important;
  }

  .px-xl-13 {
    padding-right: 1.3rem !important;
    padding-left: 1.3rem !important;
  }

  .px-xl-14 {
    padding-right: 1.4rem !important;
    padding-left: 1.4rem !important;
  }

  .px-xl-15 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-16 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important;
  }

  .px-xl-17 {
    padding-right: 1.7rem !important;
    padding-left: 1.7rem !important;
  }

  .px-xl-18 {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }

  .px-xl-19 {
    padding-right: 1.9rem !important;
    padding-left: 1.9rem !important;
  }

  .px-xl-20 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-xl-21 {
    padding-right: 2.1rem !important;
    padding-left: 2.1rem !important;
  }

  .px-xl-22 {
    padding-right: 2.2rem !important;
    padding-left: 2.2rem !important;
  }

  .px-xl-23 {
    padding-right: 2.3rem !important;
    padding-left: 2.3rem !important;
  }

  .px-xl-24 {
    padding-right: 2.4rem !important;
    padding-left: 2.4rem !important;
  }

  .px-xl-25 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xl-26 {
    padding-right: 2.6rem !important;
    padding-left: 2.6rem !important;
  }

  .px-xl-27 {
    padding-right: 2.7rem !important;
    padding-left: 2.7rem !important;
  }

  .px-xl-28 {
    padding-right: 2.8rem !important;
    padding-left: 2.8rem !important;
  }

  .px-xl-29 {
    padding-right: 2.9rem !important;
    padding-left: 2.9rem !important;
  }

  .px-xl-30 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-xl-31 {
    padding-right: 3.1rem !important;
    padding-left: 3.1rem !important;
  }

  .px-xl-32 {
    padding-right: 3.2rem !important;
    padding-left: 3.2rem !important;
  }

  .px-xl-33 {
    padding-right: 3.3rem !important;
    padding-left: 3.3rem !important;
  }

  .px-xl-34 {
    padding-right: 3.4rem !important;
    padding-left: 3.4rem !important;
  }

  .px-xl-35 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-xl-36 {
    padding-right: 3.6rem !important;
    padding-left: 3.6rem !important;
  }

  .px-xl-37 {
    padding-right: 3.7rem !important;
    padding-left: 3.7rem !important;
  }

  .px-xl-38 {
    padding-right: 3.8rem !important;
    padding-left: 3.8rem !important;
  }

  .px-xl-39 {
    padding-right: 3.9rem !important;
    padding-left: 3.9rem !important;
  }

  .px-xl-40 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-xl-41 {
    padding-right: 4.1rem !important;
    padding-left: 4.1rem !important;
  }

  .px-xl-42 {
    padding-right: 4.2rem !important;
    padding-left: 4.2rem !important;
  }

  .px-xl-43 {
    padding-right: 4.3rem !important;
    padding-left: 4.3rem !important;
  }

  .px-xl-44 {
    padding-right: 4.4rem !important;
    padding-left: 4.4rem !important;
  }

  .px-xl-45 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-xl-46 {
    padding-right: 4.6rem !important;
    padding-left: 4.6rem !important;
  }

  .px-xl-47 {
    padding-right: 4.7rem !important;
    padding-left: 4.7rem !important;
  }

  .px-xl-48 {
    padding-right: 4.8rem !important;
    padding-left: 4.8rem !important;
  }

  .px-xl-49 {
    padding-right: 4.9rem !important;
    padding-left: 4.9rem !important;
  }

  .px-xl-50 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-xl-51 {
    padding-right: 5.1rem !important;
    padding-left: 5.1rem !important;
  }

  .px-xl-52 {
    padding-right: 5.2rem !important;
    padding-left: 5.2rem !important;
  }

  .px-xl-53 {
    padding-right: 5.3rem !important;
    padding-left: 5.3rem !important;
  }

  .px-xl-54 {
    padding-right: 5.4rem !important;
    padding-left: 5.4rem !important;
  }

  .px-xl-55 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }

  .px-xl-56 {
    padding-right: 5.6rem !important;
    padding-left: 5.6rem !important;
  }

  .px-xl-57 {
    padding-right: 5.7rem !important;
    padding-left: 5.7rem !important;
  }

  .px-xl-58 {
    padding-right: 5.8rem !important;
    padding-left: 5.8rem !important;
  }

  .px-xl-59 {
    padding-right: 5.9rem !important;
    padding-left: 5.9rem !important;
  }

  .px-xl-60 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-xl-61 {
    padding-right: 6.1rem !important;
    padding-left: 6.1rem !important;
  }

  .px-xl-62 {
    padding-right: 6.2rem !important;
    padding-left: 6.2rem !important;
  }

  .px-xl-63 {
    padding-right: 6.3rem !important;
    padding-left: 6.3rem !important;
  }

  .px-xl-64 {
    padding-right: 6.4rem !important;
    padding-left: 6.4rem !important;
  }

  .px-xl-65 {
    padding-right: 6.5rem !important;
    padding-left: 6.5rem !important;
  }

  .px-xl-66 {
    padding-right: 6.6rem !important;
    padding-left: 6.6rem !important;
  }

  .px-xl-67 {
    padding-right: 6.7rem !important;
    padding-left: 6.7rem !important;
  }

  .px-xl-68 {
    padding-right: 6.8rem !important;
    padding-left: 6.8rem !important;
  }

  .px-xl-69 {
    padding-right: 6.9rem !important;
    padding-left: 6.9rem !important;
  }

  .px-xl-70 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }

  .px-xl-71 {
    padding-right: 7.1rem !important;
    padding-left: 7.1rem !important;
  }

  .px-xl-72 {
    padding-right: 7.2rem !important;
    padding-left: 7.2rem !important;
  }

  .px-xl-73 {
    padding-right: 7.3rem !important;
    padding-left: 7.3rem !important;
  }

  .px-xl-74 {
    padding-right: 7.4rem !important;
    padding-left: 7.4rem !important;
  }

  .px-xl-75 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-xl-76 {
    padding-right: 7.6rem !important;
    padding-left: 7.6rem !important;
  }

  .px-xl-77 {
    padding-right: 7.7rem !important;
    padding-left: 7.7rem !important;
  }

  .px-xl-78 {
    padding-right: 7.8rem !important;
    padding-left: 7.8rem !important;
  }

  .px-xl-79 {
    padding-right: 7.9rem !important;
    padding-left: 7.9rem !important;
  }

  .px-xl-80 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-xl-81 {
    padding-right: 8.1rem !important;
    padding-left: 8.1rem !important;
  }

  .px-xl-82 {
    padding-right: 8.2rem !important;
    padding-left: 8.2rem !important;
  }

  .px-xl-83 {
    padding-right: 8.3rem !important;
    padding-left: 8.3rem !important;
  }

  .px-xl-84 {
    padding-right: 8.4rem !important;
    padding-left: 8.4rem !important;
  }

  .px-xl-85 {
    padding-right: 8.5rem !important;
    padding-left: 8.5rem !important;
  }

  .px-xl-86 {
    padding-right: 8.6rem !important;
    padding-left: 8.6rem !important;
  }

  .px-xl-87 {
    padding-right: 8.7rem !important;
    padding-left: 8.7rem !important;
  }

  .px-xl-88 {
    padding-right: 8.8rem !important;
    padding-left: 8.8rem !important;
  }

  .px-xl-89 {
    padding-right: 8.9rem !important;
    padding-left: 8.9rem !important;
  }

  .px-xl-90 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }

  .px-xl-91 {
    padding-right: 9.1rem !important;
    padding-left: 9.1rem !important;
  }

  .px-xl-92 {
    padding-right: 9.2rem !important;
    padding-left: 9.2rem !important;
  }

  .px-xl-93 {
    padding-right: 9.3rem !important;
    padding-left: 9.3rem !important;
  }

  .px-xl-94 {
    padding-right: 9.4rem !important;
    padding-left: 9.4rem !important;
  }

  .px-xl-95 {
    padding-right: 9.5rem !important;
    padding-left: 9.5rem !important;
  }

  .px-xl-96 {
    padding-right: 9.6rem !important;
    padding-left: 9.6rem !important;
  }

  .px-xl-97 {
    padding-right: 9.7rem !important;
    padding-left: 9.7rem !important;
  }

  .px-xl-98 {
    padding-right: 9.8rem !important;
    padding-left: 9.8rem !important;
  }

  .px-xl-99 {
    padding-right: 9.9rem !important;
    padding-left: 9.9rem !important;
  }

  .px-xl-100 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-xl-6 {
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
  }

  .py-xl-7 {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
  }

  .py-xl-8 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }

  .py-xl-9 {
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
  }

  .py-xl-10 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-11 {
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
  }

  .py-xl-12 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }

  .py-xl-13 {
    padding-top: 1.3rem !important;
    padding-bottom: 1.3rem !important;
  }

  .py-xl-14 {
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
  }

  .py-xl-15 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-16 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }

  .py-xl-17 {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
  }

  .py-xl-18 {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }

  .py-xl-19 {
    padding-top: 1.9rem !important;
    padding-bottom: 1.9rem !important;
  }

  .py-xl-20 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-xl-21 {
    padding-top: 2.1rem !important;
    padding-bottom: 2.1rem !important;
  }

  .py-xl-22 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }

  .py-xl-23 {
    padding-top: 2.3rem !important;
    padding-bottom: 2.3rem !important;
  }

  .py-xl-24 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  .py-xl-25 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xl-26 {
    padding-top: 2.6rem !important;
    padding-bottom: 2.6rem !important;
  }

  .py-xl-27 {
    padding-top: 2.7rem !important;
    padding-bottom: 2.7rem !important;
  }

  .py-xl-28 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }

  .py-xl-29 {
    padding-top: 2.9rem !important;
    padding-bottom: 2.9rem !important;
  }

  .py-xl-30 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-xl-31 {
    padding-top: 3.1rem !important;
    padding-bottom: 3.1rem !important;
  }

  .py-xl-32 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }

  .py-xl-33 {
    padding-top: 3.3rem !important;
    padding-bottom: 3.3rem !important;
  }

  .py-xl-34 {
    padding-top: 3.4rem !important;
    padding-bottom: 3.4rem !important;
  }

  .py-xl-35 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-xl-36 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }

  .py-xl-37 {
    padding-top: 3.7rem !important;
    padding-bottom: 3.7rem !important;
  }

  .py-xl-38 {
    padding-top: 3.8rem !important;
    padding-bottom: 3.8rem !important;
  }

  .py-xl-39 {
    padding-top: 3.9rem !important;
    padding-bottom: 3.9rem !important;
  }

  .py-xl-40 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-xl-41 {
    padding-top: 4.1rem !important;
    padding-bottom: 4.1rem !important;
  }

  .py-xl-42 {
    padding-top: 4.2rem !important;
    padding-bottom: 4.2rem !important;
  }

  .py-xl-43 {
    padding-top: 4.3rem !important;
    padding-bottom: 4.3rem !important;
  }

  .py-xl-44 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }

  .py-xl-45 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-xl-46 {
    padding-top: 4.6rem !important;
    padding-bottom: 4.6rem !important;
  }

  .py-xl-47 {
    padding-top: 4.7rem !important;
    padding-bottom: 4.7rem !important;
  }

  .py-xl-48 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }

  .py-xl-49 {
    padding-top: 4.9rem !important;
    padding-bottom: 4.9rem !important;
  }

  .py-xl-50 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-xl-51 {
    padding-top: 5.1rem !important;
    padding-bottom: 5.1rem !important;
  }

  .py-xl-52 {
    padding-top: 5.2rem !important;
    padding-bottom: 5.2rem !important;
  }

  .py-xl-53 {
    padding-top: 5.3rem !important;
    padding-bottom: 5.3rem !important;
  }

  .py-xl-54 {
    padding-top: 5.4rem !important;
    padding-bottom: 5.4rem !important;
  }

  .py-xl-55 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .py-xl-56 {
    padding-top: 5.6rem !important;
    padding-bottom: 5.6rem !important;
  }

  .py-xl-57 {
    padding-top: 5.7rem !important;
    padding-bottom: 5.7rem !important;
  }

  .py-xl-58 {
    padding-top: 5.8rem !important;
    padding-bottom: 5.8rem !important;
  }

  .py-xl-59 {
    padding-top: 5.9rem !important;
    padding-bottom: 5.9rem !important;
  }

  .py-xl-60 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-xl-61 {
    padding-top: 6.1rem !important;
    padding-bottom: 6.1rem !important;
  }

  .py-xl-62 {
    padding-top: 6.2rem !important;
    padding-bottom: 6.2rem !important;
  }

  .py-xl-63 {
    padding-top: 6.3rem !important;
    padding-bottom: 6.3rem !important;
  }

  .py-xl-64 {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }

  .py-xl-65 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .py-xl-66 {
    padding-top: 6.6rem !important;
    padding-bottom: 6.6rem !important;
  }

  .py-xl-67 {
    padding-top: 6.7rem !important;
    padding-bottom: 6.7rem !important;
  }

  .py-xl-68 {
    padding-top: 6.8rem !important;
    padding-bottom: 6.8rem !important;
  }

  .py-xl-69 {
    padding-top: 6.9rem !important;
    padding-bottom: 6.9rem !important;
  }

  .py-xl-70 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .py-xl-71 {
    padding-top: 7.1rem !important;
    padding-bottom: 7.1rem !important;
  }

  .py-xl-72 {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }

  .py-xl-73 {
    padding-top: 7.3rem !important;
    padding-bottom: 7.3rem !important;
  }

  .py-xl-74 {
    padding-top: 7.4rem !important;
    padding-bottom: 7.4rem !important;
  }

  .py-xl-75 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-xl-76 {
    padding-top: 7.6rem !important;
    padding-bottom: 7.6rem !important;
  }

  .py-xl-77 {
    padding-top: 7.7rem !important;
    padding-bottom: 7.7rem !important;
  }

  .py-xl-78 {
    padding-top: 7.8rem !important;
    padding-bottom: 7.8rem !important;
  }

  .py-xl-79 {
    padding-top: 7.9rem !important;
    padding-bottom: 7.9rem !important;
  }

  .py-xl-80 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-xl-81 {
    padding-top: 8.1rem !important;
    padding-bottom: 8.1rem !important;
  }

  .py-xl-82 {
    padding-top: 8.2rem !important;
    padding-bottom: 8.2rem !important;
  }

  .py-xl-83 {
    padding-top: 8.3rem !important;
    padding-bottom: 8.3rem !important;
  }

  .py-xl-84 {
    padding-top: 8.4rem !important;
    padding-bottom: 8.4rem !important;
  }

  .py-xl-85 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }

  .py-xl-86 {
    padding-top: 8.6rem !important;
    padding-bottom: 8.6rem !important;
  }

  .py-xl-87 {
    padding-top: 8.7rem !important;
    padding-bottom: 8.7rem !important;
  }

  .py-xl-88 {
    padding-top: 8.8rem !important;
    padding-bottom: 8.8rem !important;
  }

  .py-xl-89 {
    padding-top: 8.9rem !important;
    padding-bottom: 8.9rem !important;
  }

  .py-xl-90 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .py-xl-91 {
    padding-top: 9.1rem !important;
    padding-bottom: 9.1rem !important;
  }

  .py-xl-92 {
    padding-top: 9.2rem !important;
    padding-bottom: 9.2rem !important;
  }

  .py-xl-93 {
    padding-top: 9.3rem !important;
    padding-bottom: 9.3rem !important;
  }

  .py-xl-94 {
    padding-top: 9.4rem !important;
    padding-bottom: 9.4rem !important;
  }

  .py-xl-95 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }

  .py-xl-96 {
    padding-top: 9.6rem !important;
    padding-bottom: 9.6rem !important;
  }

  .py-xl-97 {
    padding-top: 9.7rem !important;
    padding-bottom: 9.7rem !important;
  }

  .py-xl-98 {
    padding-top: 9.8rem !important;
    padding-bottom: 9.8rem !important;
  }

  .py-xl-99 {
    padding-top: 9.9rem !important;
    padding-bottom: 9.9rem !important;
  }

  .py-xl-100 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pt-xl-6 {
    padding-top: 0.6rem !important;
  }

  .pt-xl-7 {
    padding-top: 0.7rem !important;
  }

  .pt-xl-8 {
    padding-top: 0.8rem !important;
  }

  .pt-xl-9 {
    padding-top: 0.9rem !important;
  }

  .pt-xl-10 {
    padding-top: 1rem !important;
  }

  .pt-xl-11 {
    padding-top: 1.1rem !important;
  }

  .pt-xl-12 {
    padding-top: 1.2rem !important;
  }

  .pt-xl-13 {
    padding-top: 1.3rem !important;
  }

  .pt-xl-14 {
    padding-top: 1.4rem !important;
  }

  .pt-xl-15 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-16 {
    padding-top: 1.6rem !important;
  }

  .pt-xl-17 {
    padding-top: 1.7rem !important;
  }

  .pt-xl-18 {
    padding-top: 1.8rem !important;
  }

  .pt-xl-19 {
    padding-top: 1.9rem !important;
  }

  .pt-xl-20 {
    padding-top: 2rem !important;
  }

  .pt-xl-21 {
    padding-top: 2.1rem !important;
  }

  .pt-xl-22 {
    padding-top: 2.2rem !important;
  }

  .pt-xl-23 {
    padding-top: 2.3rem !important;
  }

  .pt-xl-24 {
    padding-top: 2.4rem !important;
  }

  .pt-xl-25 {
    padding-top: 2.5rem !important;
  }

  .pt-xl-26 {
    padding-top: 2.6rem !important;
  }

  .pt-xl-27 {
    padding-top: 2.7rem !important;
  }

  .pt-xl-28 {
    padding-top: 2.8rem !important;
  }

  .pt-xl-29 {
    padding-top: 2.9rem !important;
  }

  .pt-xl-30 {
    padding-top: 3rem !important;
  }

  .pt-xl-31 {
    padding-top: 3.1rem !important;
  }

  .pt-xl-32 {
    padding-top: 3.2rem !important;
  }

  .pt-xl-33 {
    padding-top: 3.3rem !important;
  }

  .pt-xl-34 {
    padding-top: 3.4rem !important;
  }

  .pt-xl-35 {
    padding-top: 3.5rem !important;
  }

  .pt-xl-36 {
    padding-top: 3.6rem !important;
  }

  .pt-xl-37 {
    padding-top: 3.7rem !important;
  }

  .pt-xl-38 {
    padding-top: 3.8rem !important;
  }

  .pt-xl-39 {
    padding-top: 3.9rem !important;
  }

  .pt-xl-40 {
    padding-top: 4rem !important;
  }

  .pt-xl-41 {
    padding-top: 4.1rem !important;
  }

  .pt-xl-42 {
    padding-top: 4.2rem !important;
  }

  .pt-xl-43 {
    padding-top: 4.3rem !important;
  }

  .pt-xl-44 {
    padding-top: 4.4rem !important;
  }

  .pt-xl-45 {
    padding-top: 4.5rem !important;
  }

  .pt-xl-46 {
    padding-top: 4.6rem !important;
  }

  .pt-xl-47 {
    padding-top: 4.7rem !important;
  }

  .pt-xl-48 {
    padding-top: 4.8rem !important;
  }

  .pt-xl-49 {
    padding-top: 4.9rem !important;
  }

  .pt-xl-50 {
    padding-top: 5rem !important;
  }

  .pt-xl-51 {
    padding-top: 5.1rem !important;
  }

  .pt-xl-52 {
    padding-top: 5.2rem !important;
  }

  .pt-xl-53 {
    padding-top: 5.3rem !important;
  }

  .pt-xl-54 {
    padding-top: 5.4rem !important;
  }

  .pt-xl-55 {
    padding-top: 5.5rem !important;
  }

  .pt-xl-56 {
    padding-top: 5.6rem !important;
  }

  .pt-xl-57 {
    padding-top: 5.7rem !important;
  }

  .pt-xl-58 {
    padding-top: 5.8rem !important;
  }

  .pt-xl-59 {
    padding-top: 5.9rem !important;
  }

  .pt-xl-60 {
    padding-top: 6rem !important;
  }

  .pt-xl-61 {
    padding-top: 6.1rem !important;
  }

  .pt-xl-62 {
    padding-top: 6.2rem !important;
  }

  .pt-xl-63 {
    padding-top: 6.3rem !important;
  }

  .pt-xl-64 {
    padding-top: 6.4rem !important;
  }

  .pt-xl-65 {
    padding-top: 6.5rem !important;
  }

  .pt-xl-66 {
    padding-top: 6.6rem !important;
  }

  .pt-xl-67 {
    padding-top: 6.7rem !important;
  }

  .pt-xl-68 {
    padding-top: 6.8rem !important;
  }

  .pt-xl-69 {
    padding-top: 6.9rem !important;
  }

  .pt-xl-70 {
    padding-top: 7rem !important;
  }

  .pt-xl-71 {
    padding-top: 7.1rem !important;
  }

  .pt-xl-72 {
    padding-top: 7.2rem !important;
  }

  .pt-xl-73 {
    padding-top: 7.3rem !important;
  }

  .pt-xl-74 {
    padding-top: 7.4rem !important;
  }

  .pt-xl-75 {
    padding-top: 7.5rem !important;
  }

  .pt-xl-76 {
    padding-top: 7.6rem !important;
  }

  .pt-xl-77 {
    padding-top: 7.7rem !important;
  }

  .pt-xl-78 {
    padding-top: 7.8rem !important;
  }

  .pt-xl-79 {
    padding-top: 7.9rem !important;
  }

  .pt-xl-80 {
    padding-top: 8rem !important;
  }

  .pt-xl-81 {
    padding-top: 8.1rem !important;
  }

  .pt-xl-82 {
    padding-top: 8.2rem !important;
  }

  .pt-xl-83 {
    padding-top: 8.3rem !important;
  }

  .pt-xl-84 {
    padding-top: 8.4rem !important;
  }

  .pt-xl-85 {
    padding-top: 8.5rem !important;
  }

  .pt-xl-86 {
    padding-top: 8.6rem !important;
  }

  .pt-xl-87 {
    padding-top: 8.7rem !important;
  }

  .pt-xl-88 {
    padding-top: 8.8rem !important;
  }

  .pt-xl-89 {
    padding-top: 8.9rem !important;
  }

  .pt-xl-90 {
    padding-top: 9rem !important;
  }

  .pt-xl-91 {
    padding-top: 9.1rem !important;
  }

  .pt-xl-92 {
    padding-top: 9.2rem !important;
  }

  .pt-xl-93 {
    padding-top: 9.3rem !important;
  }

  .pt-xl-94 {
    padding-top: 9.4rem !important;
  }

  .pt-xl-95 {
    padding-top: 9.5rem !important;
  }

  .pt-xl-96 {
    padding-top: 9.6rem !important;
  }

  .pt-xl-97 {
    padding-top: 9.7rem !important;
  }

  .pt-xl-98 {
    padding-top: 9.8rem !important;
  }

  .pt-xl-99 {
    padding-top: 9.9rem !important;
  }

  .pt-xl-100 {
    padding-top: 10rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pe-xl-6 {
    padding-right: 0.6rem !important;
  }

  .pe-xl-7 {
    padding-right: 0.7rem !important;
  }

  .pe-xl-8 {
    padding-right: 0.8rem !important;
  }

  .pe-xl-9 {
    padding-right: 0.9rem !important;
  }

  .pe-xl-10 {
    padding-right: 1rem !important;
  }

  .pe-xl-11 {
    padding-right: 1.1rem !important;
  }

  .pe-xl-12 {
    padding-right: 1.2rem !important;
  }

  .pe-xl-13 {
    padding-right: 1.3rem !important;
  }

  .pe-xl-14 {
    padding-right: 1.4rem !important;
  }

  .pe-xl-15 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-16 {
    padding-right: 1.6rem !important;
  }

  .pe-xl-17 {
    padding-right: 1.7rem !important;
  }

  .pe-xl-18 {
    padding-right: 1.8rem !important;
  }

  .pe-xl-19 {
    padding-right: 1.9rem !important;
  }

  .pe-xl-20 {
    padding-right: 2rem !important;
  }

  .pe-xl-21 {
    padding-right: 2.1rem !important;
  }

  .pe-xl-22 {
    padding-right: 2.2rem !important;
  }

  .pe-xl-23 {
    padding-right: 2.3rem !important;
  }

  .pe-xl-24 {
    padding-right: 2.4rem !important;
  }

  .pe-xl-25 {
    padding-right: 2.5rem !important;
  }

  .pe-xl-26 {
    padding-right: 2.6rem !important;
  }

  .pe-xl-27 {
    padding-right: 2.7rem !important;
  }

  .pe-xl-28 {
    padding-right: 2.8rem !important;
  }

  .pe-xl-29 {
    padding-right: 2.9rem !important;
  }

  .pe-xl-30 {
    padding-right: 3rem !important;
  }

  .pe-xl-31 {
    padding-right: 3.1rem !important;
  }

  .pe-xl-32 {
    padding-right: 3.2rem !important;
  }

  .pe-xl-33 {
    padding-right: 3.3rem !important;
  }

  .pe-xl-34 {
    padding-right: 3.4rem !important;
  }

  .pe-xl-35 {
    padding-right: 3.5rem !important;
  }

  .pe-xl-36 {
    padding-right: 3.6rem !important;
  }

  .pe-xl-37 {
    padding-right: 3.7rem !important;
  }

  .pe-xl-38 {
    padding-right: 3.8rem !important;
  }

  .pe-xl-39 {
    padding-right: 3.9rem !important;
  }

  .pe-xl-40 {
    padding-right: 4rem !important;
  }

  .pe-xl-41 {
    padding-right: 4.1rem !important;
  }

  .pe-xl-42 {
    padding-right: 4.2rem !important;
  }

  .pe-xl-43 {
    padding-right: 4.3rem !important;
  }

  .pe-xl-44 {
    padding-right: 4.4rem !important;
  }

  .pe-xl-45 {
    padding-right: 4.5rem !important;
  }

  .pe-xl-46 {
    padding-right: 4.6rem !important;
  }

  .pe-xl-47 {
    padding-right: 4.7rem !important;
  }

  .pe-xl-48 {
    padding-right: 4.8rem !important;
  }

  .pe-xl-49 {
    padding-right: 4.9rem !important;
  }

  .pe-xl-50 {
    padding-right: 5rem !important;
  }

  .pe-xl-51 {
    padding-right: 5.1rem !important;
  }

  .pe-xl-52 {
    padding-right: 5.2rem !important;
  }

  .pe-xl-53 {
    padding-right: 5.3rem !important;
  }

  .pe-xl-54 {
    padding-right: 5.4rem !important;
  }

  .pe-xl-55 {
    padding-right: 5.5rem !important;
  }

  .pe-xl-56 {
    padding-right: 5.6rem !important;
  }

  .pe-xl-57 {
    padding-right: 5.7rem !important;
  }

  .pe-xl-58 {
    padding-right: 5.8rem !important;
  }

  .pe-xl-59 {
    padding-right: 5.9rem !important;
  }

  .pe-xl-60 {
    padding-right: 6rem !important;
  }

  .pe-xl-61 {
    padding-right: 6.1rem !important;
  }

  .pe-xl-62 {
    padding-right: 6.2rem !important;
  }

  .pe-xl-63 {
    padding-right: 6.3rem !important;
  }

  .pe-xl-64 {
    padding-right: 6.4rem !important;
  }

  .pe-xl-65 {
    padding-right: 6.5rem !important;
  }

  .pe-xl-66 {
    padding-right: 6.6rem !important;
  }

  .pe-xl-67 {
    padding-right: 6.7rem !important;
  }

  .pe-xl-68 {
    padding-right: 6.8rem !important;
  }

  .pe-xl-69 {
    padding-right: 6.9rem !important;
  }

  .pe-xl-70 {
    padding-right: 7rem !important;
  }

  .pe-xl-71 {
    padding-right: 7.1rem !important;
  }

  .pe-xl-72 {
    padding-right: 7.2rem !important;
  }

  .pe-xl-73 {
    padding-right: 7.3rem !important;
  }

  .pe-xl-74 {
    padding-right: 7.4rem !important;
  }

  .pe-xl-75 {
    padding-right: 7.5rem !important;
  }

  .pe-xl-76 {
    padding-right: 7.6rem !important;
  }

  .pe-xl-77 {
    padding-right: 7.7rem !important;
  }

  .pe-xl-78 {
    padding-right: 7.8rem !important;
  }

  .pe-xl-79 {
    padding-right: 7.9rem !important;
  }

  .pe-xl-80 {
    padding-right: 8rem !important;
  }

  .pe-xl-81 {
    padding-right: 8.1rem !important;
  }

  .pe-xl-82 {
    padding-right: 8.2rem !important;
  }

  .pe-xl-83 {
    padding-right: 8.3rem !important;
  }

  .pe-xl-84 {
    padding-right: 8.4rem !important;
  }

  .pe-xl-85 {
    padding-right: 8.5rem !important;
  }

  .pe-xl-86 {
    padding-right: 8.6rem !important;
  }

  .pe-xl-87 {
    padding-right: 8.7rem !important;
  }

  .pe-xl-88 {
    padding-right: 8.8rem !important;
  }

  .pe-xl-89 {
    padding-right: 8.9rem !important;
  }

  .pe-xl-90 {
    padding-right: 9rem !important;
  }

  .pe-xl-91 {
    padding-right: 9.1rem !important;
  }

  .pe-xl-92 {
    padding-right: 9.2rem !important;
  }

  .pe-xl-93 {
    padding-right: 9.3rem !important;
  }

  .pe-xl-94 {
    padding-right: 9.4rem !important;
  }

  .pe-xl-95 {
    padding-right: 9.5rem !important;
  }

  .pe-xl-96 {
    padding-right: 9.6rem !important;
  }

  .pe-xl-97 {
    padding-right: 9.7rem !important;
  }

  .pe-xl-98 {
    padding-right: 9.8rem !important;
  }

  .pe-xl-99 {
    padding-right: 9.9rem !important;
  }

  .pe-xl-100 {
    padding-right: 10rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pb-xl-6 {
    padding-bottom: 0.6rem !important;
  }

  .pb-xl-7 {
    padding-bottom: 0.7rem !important;
  }

  .pb-xl-8 {
    padding-bottom: 0.8rem !important;
  }

  .pb-xl-9 {
    padding-bottom: 0.9rem !important;
  }

  .pb-xl-10 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-11 {
    padding-bottom: 1.1rem !important;
  }

  .pb-xl-12 {
    padding-bottom: 1.2rem !important;
  }

  .pb-xl-13 {
    padding-bottom: 1.3rem !important;
  }

  .pb-xl-14 {
    padding-bottom: 1.4rem !important;
  }

  .pb-xl-15 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-16 {
    padding-bottom: 1.6rem !important;
  }

  .pb-xl-17 {
    padding-bottom: 1.7rem !important;
  }

  .pb-xl-18 {
    padding-bottom: 1.8rem !important;
  }

  .pb-xl-19 {
    padding-bottom: 1.9rem !important;
  }

  .pb-xl-20 {
    padding-bottom: 2rem !important;
  }

  .pb-xl-21 {
    padding-bottom: 2.1rem !important;
  }

  .pb-xl-22 {
    padding-bottom: 2.2rem !important;
  }

  .pb-xl-23 {
    padding-bottom: 2.3rem !important;
  }

  .pb-xl-24 {
    padding-bottom: 2.4rem !important;
  }

  .pb-xl-25 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xl-26 {
    padding-bottom: 2.6rem !important;
  }

  .pb-xl-27 {
    padding-bottom: 2.7rem !important;
  }

  .pb-xl-28 {
    padding-bottom: 2.8rem !important;
  }

  .pb-xl-29 {
    padding-bottom: 2.9rem !important;
  }

  .pb-xl-30 {
    padding-bottom: 3rem !important;
  }

  .pb-xl-31 {
    padding-bottom: 3.1rem !important;
  }

  .pb-xl-32 {
    padding-bottom: 3.2rem !important;
  }

  .pb-xl-33 {
    padding-bottom: 3.3rem !important;
  }

  .pb-xl-34 {
    padding-bottom: 3.4rem !important;
  }

  .pb-xl-35 {
    padding-bottom: 3.5rem !important;
  }

  .pb-xl-36 {
    padding-bottom: 3.6rem !important;
  }

  .pb-xl-37 {
    padding-bottom: 3.7rem !important;
  }

  .pb-xl-38 {
    padding-bottom: 3.8rem !important;
  }

  .pb-xl-39 {
    padding-bottom: 3.9rem !important;
  }

  .pb-xl-40 {
    padding-bottom: 4rem !important;
  }

  .pb-xl-41 {
    padding-bottom: 4.1rem !important;
  }

  .pb-xl-42 {
    padding-bottom: 4.2rem !important;
  }

  .pb-xl-43 {
    padding-bottom: 4.3rem !important;
  }

  .pb-xl-44 {
    padding-bottom: 4.4rem !important;
  }

  .pb-xl-45 {
    padding-bottom: 4.5rem !important;
  }

  .pb-xl-46 {
    padding-bottom: 4.6rem !important;
  }

  .pb-xl-47 {
    padding-bottom: 4.7rem !important;
  }

  .pb-xl-48 {
    padding-bottom: 4.8rem !important;
  }

  .pb-xl-49 {
    padding-bottom: 4.9rem !important;
  }

  .pb-xl-50 {
    padding-bottom: 5rem !important;
  }

  .pb-xl-51 {
    padding-bottom: 5.1rem !important;
  }

  .pb-xl-52 {
    padding-bottom: 5.2rem !important;
  }

  .pb-xl-53 {
    padding-bottom: 5.3rem !important;
  }

  .pb-xl-54 {
    padding-bottom: 5.4rem !important;
  }

  .pb-xl-55 {
    padding-bottom: 5.5rem !important;
  }

  .pb-xl-56 {
    padding-bottom: 5.6rem !important;
  }

  .pb-xl-57 {
    padding-bottom: 5.7rem !important;
  }

  .pb-xl-58 {
    padding-bottom: 5.8rem !important;
  }

  .pb-xl-59 {
    padding-bottom: 5.9rem !important;
  }

  .pb-xl-60 {
    padding-bottom: 6rem !important;
  }

  .pb-xl-61 {
    padding-bottom: 6.1rem !important;
  }

  .pb-xl-62 {
    padding-bottom: 6.2rem !important;
  }

  .pb-xl-63 {
    padding-bottom: 6.3rem !important;
  }

  .pb-xl-64 {
    padding-bottom: 6.4rem !important;
  }

  .pb-xl-65 {
    padding-bottom: 6.5rem !important;
  }

  .pb-xl-66 {
    padding-bottom: 6.6rem !important;
  }

  .pb-xl-67 {
    padding-bottom: 6.7rem !important;
  }

  .pb-xl-68 {
    padding-bottom: 6.8rem !important;
  }

  .pb-xl-69 {
    padding-bottom: 6.9rem !important;
  }

  .pb-xl-70 {
    padding-bottom: 7rem !important;
  }

  .pb-xl-71 {
    padding-bottom: 7.1rem !important;
  }

  .pb-xl-72 {
    padding-bottom: 7.2rem !important;
  }

  .pb-xl-73 {
    padding-bottom: 7.3rem !important;
  }

  .pb-xl-74 {
    padding-bottom: 7.4rem !important;
  }

  .pb-xl-75 {
    padding-bottom: 7.5rem !important;
  }

  .pb-xl-76 {
    padding-bottom: 7.6rem !important;
  }

  .pb-xl-77 {
    padding-bottom: 7.7rem !important;
  }

  .pb-xl-78 {
    padding-bottom: 7.8rem !important;
  }

  .pb-xl-79 {
    padding-bottom: 7.9rem !important;
  }

  .pb-xl-80 {
    padding-bottom: 8rem !important;
  }

  .pb-xl-81 {
    padding-bottom: 8.1rem !important;
  }

  .pb-xl-82 {
    padding-bottom: 8.2rem !important;
  }

  .pb-xl-83 {
    padding-bottom: 8.3rem !important;
  }

  .pb-xl-84 {
    padding-bottom: 8.4rem !important;
  }

  .pb-xl-85 {
    padding-bottom: 8.5rem !important;
  }

  .pb-xl-86 {
    padding-bottom: 8.6rem !important;
  }

  .pb-xl-87 {
    padding-bottom: 8.7rem !important;
  }

  .pb-xl-88 {
    padding-bottom: 8.8rem !important;
  }

  .pb-xl-89 {
    padding-bottom: 8.9rem !important;
  }

  .pb-xl-90 {
    padding-bottom: 9rem !important;
  }

  .pb-xl-91 {
    padding-bottom: 9.1rem !important;
  }

  .pb-xl-92 {
    padding-bottom: 9.2rem !important;
  }

  .pb-xl-93 {
    padding-bottom: 9.3rem !important;
  }

  .pb-xl-94 {
    padding-bottom: 9.4rem !important;
  }

  .pb-xl-95 {
    padding-bottom: 9.5rem !important;
  }

  .pb-xl-96 {
    padding-bottom: 9.6rem !important;
  }

  .pb-xl-97 {
    padding-bottom: 9.7rem !important;
  }

  .pb-xl-98 {
    padding-bottom: 9.8rem !important;
  }

  .pb-xl-99 {
    padding-bottom: 9.9rem !important;
  }

  .pb-xl-100 {
    padding-bottom: 10rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .ps-xl-6 {
    padding-left: 0.6rem !important;
  }

  .ps-xl-7 {
    padding-left: 0.7rem !important;
  }

  .ps-xl-8 {
    padding-left: 0.8rem !important;
  }

  .ps-xl-9 {
    padding-left: 0.9rem !important;
  }

  .ps-xl-10 {
    padding-left: 1rem !important;
  }

  .ps-xl-11 {
    padding-left: 1.1rem !important;
  }

  .ps-xl-12 {
    padding-left: 1.2rem !important;
  }

  .ps-xl-13 {
    padding-left: 1.3rem !important;
  }

  .ps-xl-14 {
    padding-left: 1.4rem !important;
  }

  .ps-xl-15 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-16 {
    padding-left: 1.6rem !important;
  }

  .ps-xl-17 {
    padding-left: 1.7rem !important;
  }

  .ps-xl-18 {
    padding-left: 1.8rem !important;
  }

  .ps-xl-19 {
    padding-left: 1.9rem !important;
  }

  .ps-xl-20 {
    padding-left: 2rem !important;
  }

  .ps-xl-21 {
    padding-left: 2.1rem !important;
  }

  .ps-xl-22 {
    padding-left: 2.2rem !important;
  }

  .ps-xl-23 {
    padding-left: 2.3rem !important;
  }

  .ps-xl-24 {
    padding-left: 2.4rem !important;
  }

  .ps-xl-25 {
    padding-left: 2.5rem !important;
  }

  .ps-xl-26 {
    padding-left: 2.6rem !important;
  }

  .ps-xl-27 {
    padding-left: 2.7rem !important;
  }

  .ps-xl-28 {
    padding-left: 2.8rem !important;
  }

  .ps-xl-29 {
    padding-left: 2.9rem !important;
  }

  .ps-xl-30 {
    padding-left: 3rem !important;
  }

  .ps-xl-31 {
    padding-left: 3.1rem !important;
  }

  .ps-xl-32 {
    padding-left: 3.2rem !important;
  }

  .ps-xl-33 {
    padding-left: 3.3rem !important;
  }

  .ps-xl-34 {
    padding-left: 3.4rem !important;
  }

  .ps-xl-35 {
    padding-left: 3.5rem !important;
  }

  .ps-xl-36 {
    padding-left: 3.6rem !important;
  }

  .ps-xl-37 {
    padding-left: 3.7rem !important;
  }

  .ps-xl-38 {
    padding-left: 3.8rem !important;
  }

  .ps-xl-39 {
    padding-left: 3.9rem !important;
  }

  .ps-xl-40 {
    padding-left: 4rem !important;
  }

  .ps-xl-41 {
    padding-left: 4.1rem !important;
  }

  .ps-xl-42 {
    padding-left: 4.2rem !important;
  }

  .ps-xl-43 {
    padding-left: 4.3rem !important;
  }

  .ps-xl-44 {
    padding-left: 4.4rem !important;
  }

  .ps-xl-45 {
    padding-left: 4.5rem !important;
  }

  .ps-xl-46 {
    padding-left: 4.6rem !important;
  }

  .ps-xl-47 {
    padding-left: 4.7rem !important;
  }

  .ps-xl-48 {
    padding-left: 4.8rem !important;
  }

  .ps-xl-49 {
    padding-left: 4.9rem !important;
  }

  .ps-xl-50 {
    padding-left: 5rem !important;
  }

  .ps-xl-51 {
    padding-left: 5.1rem !important;
  }

  .ps-xl-52 {
    padding-left: 5.2rem !important;
  }

  .ps-xl-53 {
    padding-left: 5.3rem !important;
  }

  .ps-xl-54 {
    padding-left: 5.4rem !important;
  }

  .ps-xl-55 {
    padding-left: 5.5rem !important;
  }

  .ps-xl-56 {
    padding-left: 5.6rem !important;
  }

  .ps-xl-57 {
    padding-left: 5.7rem !important;
  }

  .ps-xl-58 {
    padding-left: 5.8rem !important;
  }

  .ps-xl-59 {
    padding-left: 5.9rem !important;
  }

  .ps-xl-60 {
    padding-left: 6rem !important;
  }

  .ps-xl-61 {
    padding-left: 6.1rem !important;
  }

  .ps-xl-62 {
    padding-left: 6.2rem !important;
  }

  .ps-xl-63 {
    padding-left: 6.3rem !important;
  }

  .ps-xl-64 {
    padding-left: 6.4rem !important;
  }

  .ps-xl-65 {
    padding-left: 6.5rem !important;
  }

  .ps-xl-66 {
    padding-left: 6.6rem !important;
  }

  .ps-xl-67 {
    padding-left: 6.7rem !important;
  }

  .ps-xl-68 {
    padding-left: 6.8rem !important;
  }

  .ps-xl-69 {
    padding-left: 6.9rem !important;
  }

  .ps-xl-70 {
    padding-left: 7rem !important;
  }

  .ps-xl-71 {
    padding-left: 7.1rem !important;
  }

  .ps-xl-72 {
    padding-left: 7.2rem !important;
  }

  .ps-xl-73 {
    padding-left: 7.3rem !important;
  }

  .ps-xl-74 {
    padding-left: 7.4rem !important;
  }

  .ps-xl-75 {
    padding-left: 7.5rem !important;
  }

  .ps-xl-76 {
    padding-left: 7.6rem !important;
  }

  .ps-xl-77 {
    padding-left: 7.7rem !important;
  }

  .ps-xl-78 {
    padding-left: 7.8rem !important;
  }

  .ps-xl-79 {
    padding-left: 7.9rem !important;
  }

  .ps-xl-80 {
    padding-left: 8rem !important;
  }

  .ps-xl-81 {
    padding-left: 8.1rem !important;
  }

  .ps-xl-82 {
    padding-left: 8.2rem !important;
  }

  .ps-xl-83 {
    padding-left: 8.3rem !important;
  }

  .ps-xl-84 {
    padding-left: 8.4rem !important;
  }

  .ps-xl-85 {
    padding-left: 8.5rem !important;
  }

  .ps-xl-86 {
    padding-left: 8.6rem !important;
  }

  .ps-xl-87 {
    padding-left: 8.7rem !important;
  }

  .ps-xl-88 {
    padding-left: 8.8rem !important;
  }

  .ps-xl-89 {
    padding-left: 8.9rem !important;
  }

  .ps-xl-90 {
    padding-left: 9rem !important;
  }

  .ps-xl-91 {
    padding-left: 9.1rem !important;
  }

  .ps-xl-92 {
    padding-left: 9.2rem !important;
  }

  .ps-xl-93 {
    padding-left: 9.3rem !important;
  }

  .ps-xl-94 {
    padding-left: 9.4rem !important;
  }

  .ps-xl-95 {
    padding-left: 9.5rem !important;
  }

  .ps-xl-96 {
    padding-left: 9.6rem !important;
  }

  .ps-xl-97 {
    padding-left: 9.7rem !important;
  }

  .ps-xl-98 {
    padding-left: 9.8rem !important;
  }

  .ps-xl-99 {
    padding-left: 9.9rem !important;
  }

  .ps-xl-100 {
    padding-left: 10rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .gap-xxl-6 {
    gap: 0.6rem !important;
  }

  .gap-xxl-7 {
    gap: 0.7rem !important;
  }

  .gap-xxl-8 {
    gap: 0.8rem !important;
  }

  .gap-xxl-9 {
    gap: 0.9rem !important;
  }

  .gap-xxl-10 {
    gap: 1rem !important;
  }

  .gap-xxl-11 {
    gap: 1.1rem !important;
  }

  .gap-xxl-12 {
    gap: 1.2rem !important;
  }

  .gap-xxl-13 {
    gap: 1.3rem !important;
  }

  .gap-xxl-14 {
    gap: 1.4rem !important;
  }

  .gap-xxl-15 {
    gap: 1.5rem !important;
  }

  .gap-xxl-16 {
    gap: 1.6rem !important;
  }

  .gap-xxl-17 {
    gap: 1.7rem !important;
  }

  .gap-xxl-18 {
    gap: 1.8rem !important;
  }

  .gap-xxl-19 {
    gap: 1.9rem !important;
  }

  .gap-xxl-20 {
    gap: 2rem !important;
  }

  .gap-xxl-21 {
    gap: 2.1rem !important;
  }

  .gap-xxl-22 {
    gap: 2.2rem !important;
  }

  .gap-xxl-23 {
    gap: 2.3rem !important;
  }

  .gap-xxl-24 {
    gap: 2.4rem !important;
  }

  .gap-xxl-25 {
    gap: 2.5rem !important;
  }

  .gap-xxl-26 {
    gap: 2.6rem !important;
  }

  .gap-xxl-27 {
    gap: 2.7rem !important;
  }

  .gap-xxl-28 {
    gap: 2.8rem !important;
  }

  .gap-xxl-29 {
    gap: 2.9rem !important;
  }

  .gap-xxl-30 {
    gap: 3rem !important;
  }

  .gap-xxl-31 {
    gap: 3.1rem !important;
  }

  .gap-xxl-32 {
    gap: 3.2rem !important;
  }

  .gap-xxl-33 {
    gap: 3.3rem !important;
  }

  .gap-xxl-34 {
    gap: 3.4rem !important;
  }

  .gap-xxl-35 {
    gap: 3.5rem !important;
  }

  .gap-xxl-36 {
    gap: 3.6rem !important;
  }

  .gap-xxl-37 {
    gap: 3.7rem !important;
  }

  .gap-xxl-38 {
    gap: 3.8rem !important;
  }

  .gap-xxl-39 {
    gap: 3.9rem !important;
  }

  .gap-xxl-40 {
    gap: 4rem !important;
  }

  .gap-xxl-41 {
    gap: 4.1rem !important;
  }

  .gap-xxl-42 {
    gap: 4.2rem !important;
  }

  .gap-xxl-43 {
    gap: 4.3rem !important;
  }

  .gap-xxl-44 {
    gap: 4.4rem !important;
  }

  .gap-xxl-45 {
    gap: 4.5rem !important;
  }

  .gap-xxl-46 {
    gap: 4.6rem !important;
  }

  .gap-xxl-47 {
    gap: 4.7rem !important;
  }

  .gap-xxl-48 {
    gap: 4.8rem !important;
  }

  .gap-xxl-49 {
    gap: 4.9rem !important;
  }

  .gap-xxl-50 {
    gap: 5rem !important;
  }

  .gap-xxl-51 {
    gap: 5.1rem !important;
  }

  .gap-xxl-52 {
    gap: 5.2rem !important;
  }

  .gap-xxl-53 {
    gap: 5.3rem !important;
  }

  .gap-xxl-54 {
    gap: 5.4rem !important;
  }

  .gap-xxl-55 {
    gap: 5.5rem !important;
  }

  .gap-xxl-56 {
    gap: 5.6rem !important;
  }

  .gap-xxl-57 {
    gap: 5.7rem !important;
  }

  .gap-xxl-58 {
    gap: 5.8rem !important;
  }

  .gap-xxl-59 {
    gap: 5.9rem !important;
  }

  .gap-xxl-60 {
    gap: 6rem !important;
  }

  .gap-xxl-61 {
    gap: 6.1rem !important;
  }

  .gap-xxl-62 {
    gap: 6.2rem !important;
  }

  .gap-xxl-63 {
    gap: 6.3rem !important;
  }

  .gap-xxl-64 {
    gap: 6.4rem !important;
  }

  .gap-xxl-65 {
    gap: 6.5rem !important;
  }

  .gap-xxl-66 {
    gap: 6.6rem !important;
  }

  .gap-xxl-67 {
    gap: 6.7rem !important;
  }

  .gap-xxl-68 {
    gap: 6.8rem !important;
  }

  .gap-xxl-69 {
    gap: 6.9rem !important;
  }

  .gap-xxl-70 {
    gap: 7rem !important;
  }

  .gap-xxl-71 {
    gap: 7.1rem !important;
  }

  .gap-xxl-72 {
    gap: 7.2rem !important;
  }

  .gap-xxl-73 {
    gap: 7.3rem !important;
  }

  .gap-xxl-74 {
    gap: 7.4rem !important;
  }

  .gap-xxl-75 {
    gap: 7.5rem !important;
  }

  .gap-xxl-76 {
    gap: 7.6rem !important;
  }

  .gap-xxl-77 {
    gap: 7.7rem !important;
  }

  .gap-xxl-78 {
    gap: 7.8rem !important;
  }

  .gap-xxl-79 {
    gap: 7.9rem !important;
  }

  .gap-xxl-80 {
    gap: 8rem !important;
  }

  .gap-xxl-81 {
    gap: 8.1rem !important;
  }

  .gap-xxl-82 {
    gap: 8.2rem !important;
  }

  .gap-xxl-83 {
    gap: 8.3rem !important;
  }

  .gap-xxl-84 {
    gap: 8.4rem !important;
  }

  .gap-xxl-85 {
    gap: 8.5rem !important;
  }

  .gap-xxl-86 {
    gap: 8.6rem !important;
  }

  .gap-xxl-87 {
    gap: 8.7rem !important;
  }

  .gap-xxl-88 {
    gap: 8.8rem !important;
  }

  .gap-xxl-89 {
    gap: 8.9rem !important;
  }

  .gap-xxl-90 {
    gap: 9rem !important;
  }

  .gap-xxl-91 {
    gap: 9.1rem !important;
  }

  .gap-xxl-92 {
    gap: 9.2rem !important;
  }

  .gap-xxl-93 {
    gap: 9.3rem !important;
  }

  .gap-xxl-94 {
    gap: 9.4rem !important;
  }

  .gap-xxl-95 {
    gap: 9.5rem !important;
  }

  .gap-xxl-96 {
    gap: 9.6rem !important;
  }

  .gap-xxl-97 {
    gap: 9.7rem !important;
  }

  .gap-xxl-98 {
    gap: 9.8rem !important;
  }

  .gap-xxl-99 {
    gap: 9.9rem !important;
  }

  .gap-xxl-100 {
    gap: 10rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-6 {
    margin: 0.6rem !important;
  }

  .m-xxl-7 {
    margin: 0.7rem !important;
  }

  .m-xxl-8 {
    margin: 0.8rem !important;
  }

  .m-xxl-9 {
    margin: 0.9rem !important;
  }

  .m-xxl-10 {
    margin: 1rem !important;
  }

  .m-xxl-11 {
    margin: 1.1rem !important;
  }

  .m-xxl-12 {
    margin: 1.2rem !important;
  }

  .m-xxl-13 {
    margin: 1.3rem !important;
  }

  .m-xxl-14 {
    margin: 1.4rem !important;
  }

  .m-xxl-15 {
    margin: 1.5rem !important;
  }

  .m-xxl-16 {
    margin: 1.6rem !important;
  }

  .m-xxl-17 {
    margin: 1.7rem !important;
  }

  .m-xxl-18 {
    margin: 1.8rem !important;
  }

  .m-xxl-19 {
    margin: 1.9rem !important;
  }

  .m-xxl-20 {
    margin: 2rem !important;
  }

  .m-xxl-21 {
    margin: 2.1rem !important;
  }

  .m-xxl-22 {
    margin: 2.2rem !important;
  }

  .m-xxl-23 {
    margin: 2.3rem !important;
  }

  .m-xxl-24 {
    margin: 2.4rem !important;
  }

  .m-xxl-25 {
    margin: 2.5rem !important;
  }

  .m-xxl-26 {
    margin: 2.6rem !important;
  }

  .m-xxl-27 {
    margin: 2.7rem !important;
  }

  .m-xxl-28 {
    margin: 2.8rem !important;
  }

  .m-xxl-29 {
    margin: 2.9rem !important;
  }

  .m-xxl-30 {
    margin: 3rem !important;
  }

  .m-xxl-31 {
    margin: 3.1rem !important;
  }

  .m-xxl-32 {
    margin: 3.2rem !important;
  }

  .m-xxl-33 {
    margin: 3.3rem !important;
  }

  .m-xxl-34 {
    margin: 3.4rem !important;
  }

  .m-xxl-35 {
    margin: 3.5rem !important;
  }

  .m-xxl-36 {
    margin: 3.6rem !important;
  }

  .m-xxl-37 {
    margin: 3.7rem !important;
  }

  .m-xxl-38 {
    margin: 3.8rem !important;
  }

  .m-xxl-39 {
    margin: 3.9rem !important;
  }

  .m-xxl-40 {
    margin: 4rem !important;
  }

  .m-xxl-41 {
    margin: 4.1rem !important;
  }

  .m-xxl-42 {
    margin: 4.2rem !important;
  }

  .m-xxl-43 {
    margin: 4.3rem !important;
  }

  .m-xxl-44 {
    margin: 4.4rem !important;
  }

  .m-xxl-45 {
    margin: 4.5rem !important;
  }

  .m-xxl-46 {
    margin: 4.6rem !important;
  }

  .m-xxl-47 {
    margin: 4.7rem !important;
  }

  .m-xxl-48 {
    margin: 4.8rem !important;
  }

  .m-xxl-49 {
    margin: 4.9rem !important;
  }

  .m-xxl-50 {
    margin: 5rem !important;
  }

  .m-xxl-51 {
    margin: 5.1rem !important;
  }

  .m-xxl-52 {
    margin: 5.2rem !important;
  }

  .m-xxl-53 {
    margin: 5.3rem !important;
  }

  .m-xxl-54 {
    margin: 5.4rem !important;
  }

  .m-xxl-55 {
    margin: 5.5rem !important;
  }

  .m-xxl-56 {
    margin: 5.6rem !important;
  }

  .m-xxl-57 {
    margin: 5.7rem !important;
  }

  .m-xxl-58 {
    margin: 5.8rem !important;
  }

  .m-xxl-59 {
    margin: 5.9rem !important;
  }

  .m-xxl-60 {
    margin: 6rem !important;
  }

  .m-xxl-61 {
    margin: 6.1rem !important;
  }

  .m-xxl-62 {
    margin: 6.2rem !important;
  }

  .m-xxl-63 {
    margin: 6.3rem !important;
  }

  .m-xxl-64 {
    margin: 6.4rem !important;
  }

  .m-xxl-65 {
    margin: 6.5rem !important;
  }

  .m-xxl-66 {
    margin: 6.6rem !important;
  }

  .m-xxl-67 {
    margin: 6.7rem !important;
  }

  .m-xxl-68 {
    margin: 6.8rem !important;
  }

  .m-xxl-69 {
    margin: 6.9rem !important;
  }

  .m-xxl-70 {
    margin: 7rem !important;
  }

  .m-xxl-71 {
    margin: 7.1rem !important;
  }

  .m-xxl-72 {
    margin: 7.2rem !important;
  }

  .m-xxl-73 {
    margin: 7.3rem !important;
  }

  .m-xxl-74 {
    margin: 7.4rem !important;
  }

  .m-xxl-75 {
    margin: 7.5rem !important;
  }

  .m-xxl-76 {
    margin: 7.6rem !important;
  }

  .m-xxl-77 {
    margin: 7.7rem !important;
  }

  .m-xxl-78 {
    margin: 7.8rem !important;
  }

  .m-xxl-79 {
    margin: 7.9rem !important;
  }

  .m-xxl-80 {
    margin: 8rem !important;
  }

  .m-xxl-81 {
    margin: 8.1rem !important;
  }

  .m-xxl-82 {
    margin: 8.2rem !important;
  }

  .m-xxl-83 {
    margin: 8.3rem !important;
  }

  .m-xxl-84 {
    margin: 8.4rem !important;
  }

  .m-xxl-85 {
    margin: 8.5rem !important;
  }

  .m-xxl-86 {
    margin: 8.6rem !important;
  }

  .m-xxl-87 {
    margin: 8.7rem !important;
  }

  .m-xxl-88 {
    margin: 8.8rem !important;
  }

  .m-xxl-89 {
    margin: 8.9rem !important;
  }

  .m-xxl-90 {
    margin: 9rem !important;
  }

  .m-xxl-91 {
    margin: 9.1rem !important;
  }

  .m-xxl-92 {
    margin: 9.2rem !important;
  }

  .m-xxl-93 {
    margin: 9.3rem !important;
  }

  .m-xxl-94 {
    margin: 9.4rem !important;
  }

  .m-xxl-95 {
    margin: 9.5rem !important;
  }

  .m-xxl-96 {
    margin: 9.6rem !important;
  }

  .m-xxl-97 {
    margin: 9.7rem !important;
  }

  .m-xxl-98 {
    margin: 9.8rem !important;
  }

  .m-xxl-99 {
    margin: 9.9rem !important;
  }

  .m-xxl-100 {
    margin: 10rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-6 {
    margin-right: 0.6rem !important;
    margin-left: 0.6rem !important;
  }

  .mx-xxl-7 {
    margin-right: 0.7rem !important;
    margin-left: 0.7rem !important;
  }

  .mx-xxl-8 {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }

  .mx-xxl-9 {
    margin-right: 0.9rem !important;
    margin-left: 0.9rem !important;
  }

  .mx-xxl-10 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-11 {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
  }

  .mx-xxl-12 {
    margin-right: 1.2rem !important;
    margin-left: 1.2rem !important;
  }

  .mx-xxl-13 {
    margin-right: 1.3rem !important;
    margin-left: 1.3rem !important;
  }

  .mx-xxl-14 {
    margin-right: 1.4rem !important;
    margin-left: 1.4rem !important;
  }

  .mx-xxl-15 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-16 {
    margin-right: 1.6rem !important;
    margin-left: 1.6rem !important;
  }

  .mx-xxl-17 {
    margin-right: 1.7rem !important;
    margin-left: 1.7rem !important;
  }

  .mx-xxl-18 {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }

  .mx-xxl-19 {
    margin-right: 1.9rem !important;
    margin-left: 1.9rem !important;
  }

  .mx-xxl-20 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-xxl-21 {
    margin-right: 2.1rem !important;
    margin-left: 2.1rem !important;
  }

  .mx-xxl-22 {
    margin-right: 2.2rem !important;
    margin-left: 2.2rem !important;
  }

  .mx-xxl-23 {
    margin-right: 2.3rem !important;
    margin-left: 2.3rem !important;
  }

  .mx-xxl-24 {
    margin-right: 2.4rem !important;
    margin-left: 2.4rem !important;
  }

  .mx-xxl-25 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xxl-26 {
    margin-right: 2.6rem !important;
    margin-left: 2.6rem !important;
  }

  .mx-xxl-27 {
    margin-right: 2.7rem !important;
    margin-left: 2.7rem !important;
  }

  .mx-xxl-28 {
    margin-right: 2.8rem !important;
    margin-left: 2.8rem !important;
  }

  .mx-xxl-29 {
    margin-right: 2.9rem !important;
    margin-left: 2.9rem !important;
  }

  .mx-xxl-30 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-31 {
    margin-right: 3.1rem !important;
    margin-left: 3.1rem !important;
  }

  .mx-xxl-32 {
    margin-right: 3.2rem !important;
    margin-left: 3.2rem !important;
  }

  .mx-xxl-33 {
    margin-right: 3.3rem !important;
    margin-left: 3.3rem !important;
  }

  .mx-xxl-34 {
    margin-right: 3.4rem !important;
    margin-left: 3.4rem !important;
  }

  .mx-xxl-35 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-xxl-36 {
    margin-right: 3.6rem !important;
    margin-left: 3.6rem !important;
  }

  .mx-xxl-37 {
    margin-right: 3.7rem !important;
    margin-left: 3.7rem !important;
  }

  .mx-xxl-38 {
    margin-right: 3.8rem !important;
    margin-left: 3.8rem !important;
  }

  .mx-xxl-39 {
    margin-right: 3.9rem !important;
    margin-left: 3.9rem !important;
  }

  .mx-xxl-40 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-xxl-41 {
    margin-right: 4.1rem !important;
    margin-left: 4.1rem !important;
  }

  .mx-xxl-42 {
    margin-right: 4.2rem !important;
    margin-left: 4.2rem !important;
  }

  .mx-xxl-43 {
    margin-right: 4.3rem !important;
    margin-left: 4.3rem !important;
  }

  .mx-xxl-44 {
    margin-right: 4.4rem !important;
    margin-left: 4.4rem !important;
  }

  .mx-xxl-45 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-xxl-46 {
    margin-right: 4.6rem !important;
    margin-left: 4.6rem !important;
  }

  .mx-xxl-47 {
    margin-right: 4.7rem !important;
    margin-left: 4.7rem !important;
  }

  .mx-xxl-48 {
    margin-right: 4.8rem !important;
    margin-left: 4.8rem !important;
  }

  .mx-xxl-49 {
    margin-right: 4.9rem !important;
    margin-left: 4.9rem !important;
  }

  .mx-xxl-50 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-xxl-51 {
    margin-right: 5.1rem !important;
    margin-left: 5.1rem !important;
  }

  .mx-xxl-52 {
    margin-right: 5.2rem !important;
    margin-left: 5.2rem !important;
  }

  .mx-xxl-53 {
    margin-right: 5.3rem !important;
    margin-left: 5.3rem !important;
  }

  .mx-xxl-54 {
    margin-right: 5.4rem !important;
    margin-left: 5.4rem !important;
  }

  .mx-xxl-55 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }

  .mx-xxl-56 {
    margin-right: 5.6rem !important;
    margin-left: 5.6rem !important;
  }

  .mx-xxl-57 {
    margin-right: 5.7rem !important;
    margin-left: 5.7rem !important;
  }

  .mx-xxl-58 {
    margin-right: 5.8rem !important;
    margin-left: 5.8rem !important;
  }

  .mx-xxl-59 {
    margin-right: 5.9rem !important;
    margin-left: 5.9rem !important;
  }

  .mx-xxl-60 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-xxl-61 {
    margin-right: 6.1rem !important;
    margin-left: 6.1rem !important;
  }

  .mx-xxl-62 {
    margin-right: 6.2rem !important;
    margin-left: 6.2rem !important;
  }

  .mx-xxl-63 {
    margin-right: 6.3rem !important;
    margin-left: 6.3rem !important;
  }

  .mx-xxl-64 {
    margin-right: 6.4rem !important;
    margin-left: 6.4rem !important;
  }

  .mx-xxl-65 {
    margin-right: 6.5rem !important;
    margin-left: 6.5rem !important;
  }

  .mx-xxl-66 {
    margin-right: 6.6rem !important;
    margin-left: 6.6rem !important;
  }

  .mx-xxl-67 {
    margin-right: 6.7rem !important;
    margin-left: 6.7rem !important;
  }

  .mx-xxl-68 {
    margin-right: 6.8rem !important;
    margin-left: 6.8rem !important;
  }

  .mx-xxl-69 {
    margin-right: 6.9rem !important;
    margin-left: 6.9rem !important;
  }

  .mx-xxl-70 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }

  .mx-xxl-71 {
    margin-right: 7.1rem !important;
    margin-left: 7.1rem !important;
  }

  .mx-xxl-72 {
    margin-right: 7.2rem !important;
    margin-left: 7.2rem !important;
  }

  .mx-xxl-73 {
    margin-right: 7.3rem !important;
    margin-left: 7.3rem !important;
  }

  .mx-xxl-74 {
    margin-right: 7.4rem !important;
    margin-left: 7.4rem !important;
  }

  .mx-xxl-75 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-xxl-76 {
    margin-right: 7.6rem !important;
    margin-left: 7.6rem !important;
  }

  .mx-xxl-77 {
    margin-right: 7.7rem !important;
    margin-left: 7.7rem !important;
  }

  .mx-xxl-78 {
    margin-right: 7.8rem !important;
    margin-left: 7.8rem !important;
  }

  .mx-xxl-79 {
    margin-right: 7.9rem !important;
    margin-left: 7.9rem !important;
  }

  .mx-xxl-80 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-xxl-81 {
    margin-right: 8.1rem !important;
    margin-left: 8.1rem !important;
  }

  .mx-xxl-82 {
    margin-right: 8.2rem !important;
    margin-left: 8.2rem !important;
  }

  .mx-xxl-83 {
    margin-right: 8.3rem !important;
    margin-left: 8.3rem !important;
  }

  .mx-xxl-84 {
    margin-right: 8.4rem !important;
    margin-left: 8.4rem !important;
  }

  .mx-xxl-85 {
    margin-right: 8.5rem !important;
    margin-left: 8.5rem !important;
  }

  .mx-xxl-86 {
    margin-right: 8.6rem !important;
    margin-left: 8.6rem !important;
  }

  .mx-xxl-87 {
    margin-right: 8.7rem !important;
    margin-left: 8.7rem !important;
  }

  .mx-xxl-88 {
    margin-right: 8.8rem !important;
    margin-left: 8.8rem !important;
  }

  .mx-xxl-89 {
    margin-right: 8.9rem !important;
    margin-left: 8.9rem !important;
  }

  .mx-xxl-90 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }

  .mx-xxl-91 {
    margin-right: 9.1rem !important;
    margin-left: 9.1rem !important;
  }

  .mx-xxl-92 {
    margin-right: 9.2rem !important;
    margin-left: 9.2rem !important;
  }

  .mx-xxl-93 {
    margin-right: 9.3rem !important;
    margin-left: 9.3rem !important;
  }

  .mx-xxl-94 {
    margin-right: 9.4rem !important;
    margin-left: 9.4rem !important;
  }

  .mx-xxl-95 {
    margin-right: 9.5rem !important;
    margin-left: 9.5rem !important;
  }

  .mx-xxl-96 {
    margin-right: 9.6rem !important;
    margin-left: 9.6rem !important;
  }

  .mx-xxl-97 {
    margin-right: 9.7rem !important;
    margin-left: 9.7rem !important;
  }

  .mx-xxl-98 {
    margin-right: 9.8rem !important;
    margin-left: 9.8rem !important;
  }

  .mx-xxl-99 {
    margin-right: 9.9rem !important;
    margin-left: 9.9rem !important;
  }

  .mx-xxl-100 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-6 {
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .my-xxl-7 {
    margin-top: 0.7rem !important;
    margin-bottom: 0.7rem !important;
  }

  .my-xxl-8 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  .my-xxl-9 {
    margin-top: 0.9rem !important;
    margin-bottom: 0.9rem !important;
  }

  .my-xxl-10 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-11 {
    margin-top: 1.1rem !important;
    margin-bottom: 1.1rem !important;
  }

  .my-xxl-12 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }

  .my-xxl-13 {
    margin-top: 1.3rem !important;
    margin-bottom: 1.3rem !important;
  }

  .my-xxl-14 {
    margin-top: 1.4rem !important;
    margin-bottom: 1.4rem !important;
  }

  .my-xxl-15 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-16 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }

  .my-xxl-17 {
    margin-top: 1.7rem !important;
    margin-bottom: 1.7rem !important;
  }

  .my-xxl-18 {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }

  .my-xxl-19 {
    margin-top: 1.9rem !important;
    margin-bottom: 1.9rem !important;
  }

  .my-xxl-20 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-xxl-21 {
    margin-top: 2.1rem !important;
    margin-bottom: 2.1rem !important;
  }

  .my-xxl-22 {
    margin-top: 2.2rem !important;
    margin-bottom: 2.2rem !important;
  }

  .my-xxl-23 {
    margin-top: 2.3rem !important;
    margin-bottom: 2.3rem !important;
  }

  .my-xxl-24 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }

  .my-xxl-25 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xxl-26 {
    margin-top: 2.6rem !important;
    margin-bottom: 2.6rem !important;
  }

  .my-xxl-27 {
    margin-top: 2.7rem !important;
    margin-bottom: 2.7rem !important;
  }

  .my-xxl-28 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }

  .my-xxl-29 {
    margin-top: 2.9rem !important;
    margin-bottom: 2.9rem !important;
  }

  .my-xxl-30 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-31 {
    margin-top: 3.1rem !important;
    margin-bottom: 3.1rem !important;
  }

  .my-xxl-32 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }

  .my-xxl-33 {
    margin-top: 3.3rem !important;
    margin-bottom: 3.3rem !important;
  }

  .my-xxl-34 {
    margin-top: 3.4rem !important;
    margin-bottom: 3.4rem !important;
  }

  .my-xxl-35 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-xxl-36 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }

  .my-xxl-37 {
    margin-top: 3.7rem !important;
    margin-bottom: 3.7rem !important;
  }

  .my-xxl-38 {
    margin-top: 3.8rem !important;
    margin-bottom: 3.8rem !important;
  }

  .my-xxl-39 {
    margin-top: 3.9rem !important;
    margin-bottom: 3.9rem !important;
  }

  .my-xxl-40 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-xxl-41 {
    margin-top: 4.1rem !important;
    margin-bottom: 4.1rem !important;
  }

  .my-xxl-42 {
    margin-top: 4.2rem !important;
    margin-bottom: 4.2rem !important;
  }

  .my-xxl-43 {
    margin-top: 4.3rem !important;
    margin-bottom: 4.3rem !important;
  }

  .my-xxl-44 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }

  .my-xxl-45 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-xxl-46 {
    margin-top: 4.6rem !important;
    margin-bottom: 4.6rem !important;
  }

  .my-xxl-47 {
    margin-top: 4.7rem !important;
    margin-bottom: 4.7rem !important;
  }

  .my-xxl-48 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }

  .my-xxl-49 {
    margin-top: 4.9rem !important;
    margin-bottom: 4.9rem !important;
  }

  .my-xxl-50 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-xxl-51 {
    margin-top: 5.1rem !important;
    margin-bottom: 5.1rem !important;
  }

  .my-xxl-52 {
    margin-top: 5.2rem !important;
    margin-bottom: 5.2rem !important;
  }

  .my-xxl-53 {
    margin-top: 5.3rem !important;
    margin-bottom: 5.3rem !important;
  }

  .my-xxl-54 {
    margin-top: 5.4rem !important;
    margin-bottom: 5.4rem !important;
  }

  .my-xxl-55 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }

  .my-xxl-56 {
    margin-top: 5.6rem !important;
    margin-bottom: 5.6rem !important;
  }

  .my-xxl-57 {
    margin-top: 5.7rem !important;
    margin-bottom: 5.7rem !important;
  }

  .my-xxl-58 {
    margin-top: 5.8rem !important;
    margin-bottom: 5.8rem !important;
  }

  .my-xxl-59 {
    margin-top: 5.9rem !important;
    margin-bottom: 5.9rem !important;
  }

  .my-xxl-60 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-xxl-61 {
    margin-top: 6.1rem !important;
    margin-bottom: 6.1rem !important;
  }

  .my-xxl-62 {
    margin-top: 6.2rem !important;
    margin-bottom: 6.2rem !important;
  }

  .my-xxl-63 {
    margin-top: 6.3rem !important;
    margin-bottom: 6.3rem !important;
  }

  .my-xxl-64 {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }

  .my-xxl-65 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .my-xxl-66 {
    margin-top: 6.6rem !important;
    margin-bottom: 6.6rem !important;
  }

  .my-xxl-67 {
    margin-top: 6.7rem !important;
    margin-bottom: 6.7rem !important;
  }

  .my-xxl-68 {
    margin-top: 6.8rem !important;
    margin-bottom: 6.8rem !important;
  }

  .my-xxl-69 {
    margin-top: 6.9rem !important;
    margin-bottom: 6.9rem !important;
  }

  .my-xxl-70 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .my-xxl-71 {
    margin-top: 7.1rem !important;
    margin-bottom: 7.1rem !important;
  }

  .my-xxl-72 {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important;
  }

  .my-xxl-73 {
    margin-top: 7.3rem !important;
    margin-bottom: 7.3rem !important;
  }

  .my-xxl-74 {
    margin-top: 7.4rem !important;
    margin-bottom: 7.4rem !important;
  }

  .my-xxl-75 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-xxl-76 {
    margin-top: 7.6rem !important;
    margin-bottom: 7.6rem !important;
  }

  .my-xxl-77 {
    margin-top: 7.7rem !important;
    margin-bottom: 7.7rem !important;
  }

  .my-xxl-78 {
    margin-top: 7.8rem !important;
    margin-bottom: 7.8rem !important;
  }

  .my-xxl-79 {
    margin-top: 7.9rem !important;
    margin-bottom: 7.9rem !important;
  }

  .my-xxl-80 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-xxl-81 {
    margin-top: 8.1rem !important;
    margin-bottom: 8.1rem !important;
  }

  .my-xxl-82 {
    margin-top: 8.2rem !important;
    margin-bottom: 8.2rem !important;
  }

  .my-xxl-83 {
    margin-top: 8.3rem !important;
    margin-bottom: 8.3rem !important;
  }

  .my-xxl-84 {
    margin-top: 8.4rem !important;
    margin-bottom: 8.4rem !important;
  }

  .my-xxl-85 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }

  .my-xxl-86 {
    margin-top: 8.6rem !important;
    margin-bottom: 8.6rem !important;
  }

  .my-xxl-87 {
    margin-top: 8.7rem !important;
    margin-bottom: 8.7rem !important;
  }

  .my-xxl-88 {
    margin-top: 8.8rem !important;
    margin-bottom: 8.8rem !important;
  }

  .my-xxl-89 {
    margin-top: 8.9rem !important;
    margin-bottom: 8.9rem !important;
  }

  .my-xxl-90 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .my-xxl-91 {
    margin-top: 9.1rem !important;
    margin-bottom: 9.1rem !important;
  }

  .my-xxl-92 {
    margin-top: 9.2rem !important;
    margin-bottom: 9.2rem !important;
  }

  .my-xxl-93 {
    margin-top: 9.3rem !important;
    margin-bottom: 9.3rem !important;
  }

  .my-xxl-94 {
    margin-top: 9.4rem !important;
    margin-bottom: 9.4rem !important;
  }

  .my-xxl-95 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }

  .my-xxl-96 {
    margin-top: 9.6rem !important;
    margin-bottom: 9.6rem !important;
  }

  .my-xxl-97 {
    margin-top: 9.7rem !important;
    margin-bottom: 9.7rem !important;
  }

  .my-xxl-98 {
    margin-top: 9.8rem !important;
    margin-bottom: 9.8rem !important;
  }

  .my-xxl-99 {
    margin-top: 9.9rem !important;
    margin-bottom: 9.9rem !important;
  }

  .my-xxl-100 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-6 {
    margin-top: 0.6rem !important;
  }

  .mt-xxl-7 {
    margin-top: 0.7rem !important;
  }

  .mt-xxl-8 {
    margin-top: 0.8rem !important;
  }

  .mt-xxl-9 {
    margin-top: 0.9rem !important;
  }

  .mt-xxl-10 {
    margin-top: 1rem !important;
  }

  .mt-xxl-11 {
    margin-top: 1.1rem !important;
  }

  .mt-xxl-12 {
    margin-top: 1.2rem !important;
  }

  .mt-xxl-13 {
    margin-top: 1.3rem !important;
  }

  .mt-xxl-14 {
    margin-top: 1.4rem !important;
  }

  .mt-xxl-15 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-16 {
    margin-top: 1.6rem !important;
  }

  .mt-xxl-17 {
    margin-top: 1.7rem !important;
  }

  .mt-xxl-18 {
    margin-top: 1.8rem !important;
  }

  .mt-xxl-19 {
    margin-top: 1.9rem !important;
  }

  .mt-xxl-20 {
    margin-top: 2rem !important;
  }

  .mt-xxl-21 {
    margin-top: 2.1rem !important;
  }

  .mt-xxl-22 {
    margin-top: 2.2rem !important;
  }

  .mt-xxl-23 {
    margin-top: 2.3rem !important;
  }

  .mt-xxl-24 {
    margin-top: 2.4rem !important;
  }

  .mt-xxl-25 {
    margin-top: 2.5rem !important;
  }

  .mt-xxl-26 {
    margin-top: 2.6rem !important;
  }

  .mt-xxl-27 {
    margin-top: 2.7rem !important;
  }

  .mt-xxl-28 {
    margin-top: 2.8rem !important;
  }

  .mt-xxl-29 {
    margin-top: 2.9rem !important;
  }

  .mt-xxl-30 {
    margin-top: 3rem !important;
  }

  .mt-xxl-31 {
    margin-top: 3.1rem !important;
  }

  .mt-xxl-32 {
    margin-top: 3.2rem !important;
  }

  .mt-xxl-33 {
    margin-top: 3.3rem !important;
  }

  .mt-xxl-34 {
    margin-top: 3.4rem !important;
  }

  .mt-xxl-35 {
    margin-top: 3.5rem !important;
  }

  .mt-xxl-36 {
    margin-top: 3.6rem !important;
  }

  .mt-xxl-37 {
    margin-top: 3.7rem !important;
  }

  .mt-xxl-38 {
    margin-top: 3.8rem !important;
  }

  .mt-xxl-39 {
    margin-top: 3.9rem !important;
  }

  .mt-xxl-40 {
    margin-top: 4rem !important;
  }

  .mt-xxl-41 {
    margin-top: 4.1rem !important;
  }

  .mt-xxl-42 {
    margin-top: 4.2rem !important;
  }

  .mt-xxl-43 {
    margin-top: 4.3rem !important;
  }

  .mt-xxl-44 {
    margin-top: 4.4rem !important;
  }

  .mt-xxl-45 {
    margin-top: 4.5rem !important;
  }

  .mt-xxl-46 {
    margin-top: 4.6rem !important;
  }

  .mt-xxl-47 {
    margin-top: 4.7rem !important;
  }

  .mt-xxl-48 {
    margin-top: 4.8rem !important;
  }

  .mt-xxl-49 {
    margin-top: 4.9rem !important;
  }

  .mt-xxl-50 {
    margin-top: 5rem !important;
  }

  .mt-xxl-51 {
    margin-top: 5.1rem !important;
  }

  .mt-xxl-52 {
    margin-top: 5.2rem !important;
  }

  .mt-xxl-53 {
    margin-top: 5.3rem !important;
  }

  .mt-xxl-54 {
    margin-top: 5.4rem !important;
  }

  .mt-xxl-55 {
    margin-top: 5.5rem !important;
  }

  .mt-xxl-56 {
    margin-top: 5.6rem !important;
  }

  .mt-xxl-57 {
    margin-top: 5.7rem !important;
  }

  .mt-xxl-58 {
    margin-top: 5.8rem !important;
  }

  .mt-xxl-59 {
    margin-top: 5.9rem !important;
  }

  .mt-xxl-60 {
    margin-top: 6rem !important;
  }

  .mt-xxl-61 {
    margin-top: 6.1rem !important;
  }

  .mt-xxl-62 {
    margin-top: 6.2rem !important;
  }

  .mt-xxl-63 {
    margin-top: 6.3rem !important;
  }

  .mt-xxl-64 {
    margin-top: 6.4rem !important;
  }

  .mt-xxl-65 {
    margin-top: 6.5rem !important;
  }

  .mt-xxl-66 {
    margin-top: 6.6rem !important;
  }

  .mt-xxl-67 {
    margin-top: 6.7rem !important;
  }

  .mt-xxl-68 {
    margin-top: 6.8rem !important;
  }

  .mt-xxl-69 {
    margin-top: 6.9rem !important;
  }

  .mt-xxl-70 {
    margin-top: 7rem !important;
  }

  .mt-xxl-71 {
    margin-top: 7.1rem !important;
  }

  .mt-xxl-72 {
    margin-top: 7.2rem !important;
  }

  .mt-xxl-73 {
    margin-top: 7.3rem !important;
  }

  .mt-xxl-74 {
    margin-top: 7.4rem !important;
  }

  .mt-xxl-75 {
    margin-top: 7.5rem !important;
  }

  .mt-xxl-76 {
    margin-top: 7.6rem !important;
  }

  .mt-xxl-77 {
    margin-top: 7.7rem !important;
  }

  .mt-xxl-78 {
    margin-top: 7.8rem !important;
  }

  .mt-xxl-79 {
    margin-top: 7.9rem !important;
  }

  .mt-xxl-80 {
    margin-top: 8rem !important;
  }

  .mt-xxl-81 {
    margin-top: 8.1rem !important;
  }

  .mt-xxl-82 {
    margin-top: 8.2rem !important;
  }

  .mt-xxl-83 {
    margin-top: 8.3rem !important;
  }

  .mt-xxl-84 {
    margin-top: 8.4rem !important;
  }

  .mt-xxl-85 {
    margin-top: 8.5rem !important;
  }

  .mt-xxl-86 {
    margin-top: 8.6rem !important;
  }

  .mt-xxl-87 {
    margin-top: 8.7rem !important;
  }

  .mt-xxl-88 {
    margin-top: 8.8rem !important;
  }

  .mt-xxl-89 {
    margin-top: 8.9rem !important;
  }

  .mt-xxl-90 {
    margin-top: 9rem !important;
  }

  .mt-xxl-91 {
    margin-top: 9.1rem !important;
  }

  .mt-xxl-92 {
    margin-top: 9.2rem !important;
  }

  .mt-xxl-93 {
    margin-top: 9.3rem !important;
  }

  .mt-xxl-94 {
    margin-top: 9.4rem !important;
  }

  .mt-xxl-95 {
    margin-top: 9.5rem !important;
  }

  .mt-xxl-96 {
    margin-top: 9.6rem !important;
  }

  .mt-xxl-97 {
    margin-top: 9.7rem !important;
  }

  .mt-xxl-98 {
    margin-top: 9.8rem !important;
  }

  .mt-xxl-99 {
    margin-top: 9.9rem !important;
  }

  .mt-xxl-100 {
    margin-top: 10rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-6 {
    margin-right: 0.6rem !important;
  }

  .me-xxl-7 {
    margin-right: 0.7rem !important;
  }

  .me-xxl-8 {
    margin-right: 0.8rem !important;
  }

  .me-xxl-9 {
    margin-right: 0.9rem !important;
  }

  .me-xxl-10 {
    margin-right: 1rem !important;
  }

  .me-xxl-11 {
    margin-right: 1.1rem !important;
  }

  .me-xxl-12 {
    margin-right: 1.2rem !important;
  }

  .me-xxl-13 {
    margin-right: 1.3rem !important;
  }

  .me-xxl-14 {
    margin-right: 1.4rem !important;
  }

  .me-xxl-15 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-16 {
    margin-right: 1.6rem !important;
  }

  .me-xxl-17 {
    margin-right: 1.7rem !important;
  }

  .me-xxl-18 {
    margin-right: 1.8rem !important;
  }

  .me-xxl-19 {
    margin-right: 1.9rem !important;
  }

  .me-xxl-20 {
    margin-right: 2rem !important;
  }

  .me-xxl-21 {
    margin-right: 2.1rem !important;
  }

  .me-xxl-22 {
    margin-right: 2.2rem !important;
  }

  .me-xxl-23 {
    margin-right: 2.3rem !important;
  }

  .me-xxl-24 {
    margin-right: 2.4rem !important;
  }

  .me-xxl-25 {
    margin-right: 2.5rem !important;
  }

  .me-xxl-26 {
    margin-right: 2.6rem !important;
  }

  .me-xxl-27 {
    margin-right: 2.7rem !important;
  }

  .me-xxl-28 {
    margin-right: 2.8rem !important;
  }

  .me-xxl-29 {
    margin-right: 2.9rem !important;
  }

  .me-xxl-30 {
    margin-right: 3rem !important;
  }

  .me-xxl-31 {
    margin-right: 3.1rem !important;
  }

  .me-xxl-32 {
    margin-right: 3.2rem !important;
  }

  .me-xxl-33 {
    margin-right: 3.3rem !important;
  }

  .me-xxl-34 {
    margin-right: 3.4rem !important;
  }

  .me-xxl-35 {
    margin-right: 3.5rem !important;
  }

  .me-xxl-36 {
    margin-right: 3.6rem !important;
  }

  .me-xxl-37 {
    margin-right: 3.7rem !important;
  }

  .me-xxl-38 {
    margin-right: 3.8rem !important;
  }

  .me-xxl-39 {
    margin-right: 3.9rem !important;
  }

  .me-xxl-40 {
    margin-right: 4rem !important;
  }

  .me-xxl-41 {
    margin-right: 4.1rem !important;
  }

  .me-xxl-42 {
    margin-right: 4.2rem !important;
  }

  .me-xxl-43 {
    margin-right: 4.3rem !important;
  }

  .me-xxl-44 {
    margin-right: 4.4rem !important;
  }

  .me-xxl-45 {
    margin-right: 4.5rem !important;
  }

  .me-xxl-46 {
    margin-right: 4.6rem !important;
  }

  .me-xxl-47 {
    margin-right: 4.7rem !important;
  }

  .me-xxl-48 {
    margin-right: 4.8rem !important;
  }

  .me-xxl-49 {
    margin-right: 4.9rem !important;
  }

  .me-xxl-50 {
    margin-right: 5rem !important;
  }

  .me-xxl-51 {
    margin-right: 5.1rem !important;
  }

  .me-xxl-52 {
    margin-right: 5.2rem !important;
  }

  .me-xxl-53 {
    margin-right: 5.3rem !important;
  }

  .me-xxl-54 {
    margin-right: 5.4rem !important;
  }

  .me-xxl-55 {
    margin-right: 5.5rem !important;
  }

  .me-xxl-56 {
    margin-right: 5.6rem !important;
  }

  .me-xxl-57 {
    margin-right: 5.7rem !important;
  }

  .me-xxl-58 {
    margin-right: 5.8rem !important;
  }

  .me-xxl-59 {
    margin-right: 5.9rem !important;
  }

  .me-xxl-60 {
    margin-right: 6rem !important;
  }

  .me-xxl-61 {
    margin-right: 6.1rem !important;
  }

  .me-xxl-62 {
    margin-right: 6.2rem !important;
  }

  .me-xxl-63 {
    margin-right: 6.3rem !important;
  }

  .me-xxl-64 {
    margin-right: 6.4rem !important;
  }

  .me-xxl-65 {
    margin-right: 6.5rem !important;
  }

  .me-xxl-66 {
    margin-right: 6.6rem !important;
  }

  .me-xxl-67 {
    margin-right: 6.7rem !important;
  }

  .me-xxl-68 {
    margin-right: 6.8rem !important;
  }

  .me-xxl-69 {
    margin-right: 6.9rem !important;
  }

  .me-xxl-70 {
    margin-right: 7rem !important;
  }

  .me-xxl-71 {
    margin-right: 7.1rem !important;
  }

  .me-xxl-72 {
    margin-right: 7.2rem !important;
  }

  .me-xxl-73 {
    margin-right: 7.3rem !important;
  }

  .me-xxl-74 {
    margin-right: 7.4rem !important;
  }

  .me-xxl-75 {
    margin-right: 7.5rem !important;
  }

  .me-xxl-76 {
    margin-right: 7.6rem !important;
  }

  .me-xxl-77 {
    margin-right: 7.7rem !important;
  }

  .me-xxl-78 {
    margin-right: 7.8rem !important;
  }

  .me-xxl-79 {
    margin-right: 7.9rem !important;
  }

  .me-xxl-80 {
    margin-right: 8rem !important;
  }

  .me-xxl-81 {
    margin-right: 8.1rem !important;
  }

  .me-xxl-82 {
    margin-right: 8.2rem !important;
  }

  .me-xxl-83 {
    margin-right: 8.3rem !important;
  }

  .me-xxl-84 {
    margin-right: 8.4rem !important;
  }

  .me-xxl-85 {
    margin-right: 8.5rem !important;
  }

  .me-xxl-86 {
    margin-right: 8.6rem !important;
  }

  .me-xxl-87 {
    margin-right: 8.7rem !important;
  }

  .me-xxl-88 {
    margin-right: 8.8rem !important;
  }

  .me-xxl-89 {
    margin-right: 8.9rem !important;
  }

  .me-xxl-90 {
    margin-right: 9rem !important;
  }

  .me-xxl-91 {
    margin-right: 9.1rem !important;
  }

  .me-xxl-92 {
    margin-right: 9.2rem !important;
  }

  .me-xxl-93 {
    margin-right: 9.3rem !important;
  }

  .me-xxl-94 {
    margin-right: 9.4rem !important;
  }

  .me-xxl-95 {
    margin-right: 9.5rem !important;
  }

  .me-xxl-96 {
    margin-right: 9.6rem !important;
  }

  .me-xxl-97 {
    margin-right: 9.7rem !important;
  }

  .me-xxl-98 {
    margin-right: 9.8rem !important;
  }

  .me-xxl-99 {
    margin-right: 9.9rem !important;
  }

  .me-xxl-100 {
    margin-right: 10rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-6 {
    margin-bottom: 0.6rem !important;
  }

  .mb-xxl-7 {
    margin-bottom: 0.7rem !important;
  }

  .mb-xxl-8 {
    margin-bottom: 0.8rem !important;
  }

  .mb-xxl-9 {
    margin-bottom: 0.9rem !important;
  }

  .mb-xxl-10 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-11 {
    margin-bottom: 1.1rem !important;
  }

  .mb-xxl-12 {
    margin-bottom: 1.2rem !important;
  }

  .mb-xxl-13 {
    margin-bottom: 1.3rem !important;
  }

  .mb-xxl-14 {
    margin-bottom: 1.4rem !important;
  }

  .mb-xxl-15 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-16 {
    margin-bottom: 1.6rem !important;
  }

  .mb-xxl-17 {
    margin-bottom: 1.7rem !important;
  }

  .mb-xxl-18 {
    margin-bottom: 1.8rem !important;
  }

  .mb-xxl-19 {
    margin-bottom: 1.9rem !important;
  }

  .mb-xxl-20 {
    margin-bottom: 2rem !important;
  }

  .mb-xxl-21 {
    margin-bottom: 2.1rem !important;
  }

  .mb-xxl-22 {
    margin-bottom: 2.2rem !important;
  }

  .mb-xxl-23 {
    margin-bottom: 2.3rem !important;
  }

  .mb-xxl-24 {
    margin-bottom: 2.4rem !important;
  }

  .mb-xxl-25 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xxl-26 {
    margin-bottom: 2.6rem !important;
  }

  .mb-xxl-27 {
    margin-bottom: 2.7rem !important;
  }

  .mb-xxl-28 {
    margin-bottom: 2.8rem !important;
  }

  .mb-xxl-29 {
    margin-bottom: 2.9rem !important;
  }

  .mb-xxl-30 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-31 {
    margin-bottom: 3.1rem !important;
  }

  .mb-xxl-32 {
    margin-bottom: 3.2rem !important;
  }

  .mb-xxl-33 {
    margin-bottom: 3.3rem !important;
  }

  .mb-xxl-34 {
    margin-bottom: 3.4rem !important;
  }

  .mb-xxl-35 {
    margin-bottom: 3.5rem !important;
  }

  .mb-xxl-36 {
    margin-bottom: 3.6rem !important;
  }

  .mb-xxl-37 {
    margin-bottom: 3.7rem !important;
  }

  .mb-xxl-38 {
    margin-bottom: 3.8rem !important;
  }

  .mb-xxl-39 {
    margin-bottom: 3.9rem !important;
  }

  .mb-xxl-40 {
    margin-bottom: 4rem !important;
  }

  .mb-xxl-41 {
    margin-bottom: 4.1rem !important;
  }

  .mb-xxl-42 {
    margin-bottom: 4.2rem !important;
  }

  .mb-xxl-43 {
    margin-bottom: 4.3rem !important;
  }

  .mb-xxl-44 {
    margin-bottom: 4.4rem !important;
  }

  .mb-xxl-45 {
    margin-bottom: 4.5rem !important;
  }

  .mb-xxl-46 {
    margin-bottom: 4.6rem !important;
  }

  .mb-xxl-47 {
    margin-bottom: 4.7rem !important;
  }

  .mb-xxl-48 {
    margin-bottom: 4.8rem !important;
  }

  .mb-xxl-49 {
    margin-bottom: 4.9rem !important;
  }

  .mb-xxl-50 {
    margin-bottom: 5rem !important;
  }

  .mb-xxl-51 {
    margin-bottom: 5.1rem !important;
  }

  .mb-xxl-52 {
    margin-bottom: 5.2rem !important;
  }

  .mb-xxl-53 {
    margin-bottom: 5.3rem !important;
  }

  .mb-xxl-54 {
    margin-bottom: 5.4rem !important;
  }

  .mb-xxl-55 {
    margin-bottom: 5.5rem !important;
  }

  .mb-xxl-56 {
    margin-bottom: 5.6rem !important;
  }

  .mb-xxl-57 {
    margin-bottom: 5.7rem !important;
  }

  .mb-xxl-58 {
    margin-bottom: 5.8rem !important;
  }

  .mb-xxl-59 {
    margin-bottom: 5.9rem !important;
  }

  .mb-xxl-60 {
    margin-bottom: 6rem !important;
  }

  .mb-xxl-61 {
    margin-bottom: 6.1rem !important;
  }

  .mb-xxl-62 {
    margin-bottom: 6.2rem !important;
  }

  .mb-xxl-63 {
    margin-bottom: 6.3rem !important;
  }

  .mb-xxl-64 {
    margin-bottom: 6.4rem !important;
  }

  .mb-xxl-65 {
    margin-bottom: 6.5rem !important;
  }

  .mb-xxl-66 {
    margin-bottom: 6.6rem !important;
  }

  .mb-xxl-67 {
    margin-bottom: 6.7rem !important;
  }

  .mb-xxl-68 {
    margin-bottom: 6.8rem !important;
  }

  .mb-xxl-69 {
    margin-bottom: 6.9rem !important;
  }

  .mb-xxl-70 {
    margin-bottom: 7rem !important;
  }

  .mb-xxl-71 {
    margin-bottom: 7.1rem !important;
  }

  .mb-xxl-72 {
    margin-bottom: 7.2rem !important;
  }

  .mb-xxl-73 {
    margin-bottom: 7.3rem !important;
  }

  .mb-xxl-74 {
    margin-bottom: 7.4rem !important;
  }

  .mb-xxl-75 {
    margin-bottom: 7.5rem !important;
  }

  .mb-xxl-76 {
    margin-bottom: 7.6rem !important;
  }

  .mb-xxl-77 {
    margin-bottom: 7.7rem !important;
  }

  .mb-xxl-78 {
    margin-bottom: 7.8rem !important;
  }

  .mb-xxl-79 {
    margin-bottom: 7.9rem !important;
  }

  .mb-xxl-80 {
    margin-bottom: 8rem !important;
  }

  .mb-xxl-81 {
    margin-bottom: 8.1rem !important;
  }

  .mb-xxl-82 {
    margin-bottom: 8.2rem !important;
  }

  .mb-xxl-83 {
    margin-bottom: 8.3rem !important;
  }

  .mb-xxl-84 {
    margin-bottom: 8.4rem !important;
  }

  .mb-xxl-85 {
    margin-bottom: 8.5rem !important;
  }

  .mb-xxl-86 {
    margin-bottom: 8.6rem !important;
  }

  .mb-xxl-87 {
    margin-bottom: 8.7rem !important;
  }

  .mb-xxl-88 {
    margin-bottom: 8.8rem !important;
  }

  .mb-xxl-89 {
    margin-bottom: 8.9rem !important;
  }

  .mb-xxl-90 {
    margin-bottom: 9rem !important;
  }

  .mb-xxl-91 {
    margin-bottom: 9.1rem !important;
  }

  .mb-xxl-92 {
    margin-bottom: 9.2rem !important;
  }

  .mb-xxl-93 {
    margin-bottom: 9.3rem !important;
  }

  .mb-xxl-94 {
    margin-bottom: 9.4rem !important;
  }

  .mb-xxl-95 {
    margin-bottom: 9.5rem !important;
  }

  .mb-xxl-96 {
    margin-bottom: 9.6rem !important;
  }

  .mb-xxl-97 {
    margin-bottom: 9.7rem !important;
  }

  .mb-xxl-98 {
    margin-bottom: 9.8rem !important;
  }

  .mb-xxl-99 {
    margin-bottom: 9.9rem !important;
  }

  .mb-xxl-100 {
    margin-bottom: 10rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-6 {
    margin-left: 0.6rem !important;
  }

  .ms-xxl-7 {
    margin-left: 0.7rem !important;
  }

  .ms-xxl-8 {
    margin-left: 0.8rem !important;
  }

  .ms-xxl-9 {
    margin-left: 0.9rem !important;
  }

  .ms-xxl-10 {
    margin-left: 1rem !important;
  }

  .ms-xxl-11 {
    margin-left: 1.1rem !important;
  }

  .ms-xxl-12 {
    margin-left: 1.2rem !important;
  }

  .ms-xxl-13 {
    margin-left: 1.3rem !important;
  }

  .ms-xxl-14 {
    margin-left: 1.4rem !important;
  }

  .ms-xxl-15 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-16 {
    margin-left: 1.6rem !important;
  }

  .ms-xxl-17 {
    margin-left: 1.7rem !important;
  }

  .ms-xxl-18 {
    margin-left: 1.8rem !important;
  }

  .ms-xxl-19 {
    margin-left: 1.9rem !important;
  }

  .ms-xxl-20 {
    margin-left: 2rem !important;
  }

  .ms-xxl-21 {
    margin-left: 2.1rem !important;
  }

  .ms-xxl-22 {
    margin-left: 2.2rem !important;
  }

  .ms-xxl-23 {
    margin-left: 2.3rem !important;
  }

  .ms-xxl-24 {
    margin-left: 2.4rem !important;
  }

  .ms-xxl-25 {
    margin-left: 2.5rem !important;
  }

  .ms-xxl-26 {
    margin-left: 2.6rem !important;
  }

  .ms-xxl-27 {
    margin-left: 2.7rem !important;
  }

  .ms-xxl-28 {
    margin-left: 2.8rem !important;
  }

  .ms-xxl-29 {
    margin-left: 2.9rem !important;
  }

  .ms-xxl-30 {
    margin-left: 3rem !important;
  }

  .ms-xxl-31 {
    margin-left: 3.1rem !important;
  }

  .ms-xxl-32 {
    margin-left: 3.2rem !important;
  }

  .ms-xxl-33 {
    margin-left: 3.3rem !important;
  }

  .ms-xxl-34 {
    margin-left: 3.4rem !important;
  }

  .ms-xxl-35 {
    margin-left: 3.5rem !important;
  }

  .ms-xxl-36 {
    margin-left: 3.6rem !important;
  }

  .ms-xxl-37 {
    margin-left: 3.7rem !important;
  }

  .ms-xxl-38 {
    margin-left: 3.8rem !important;
  }

  .ms-xxl-39 {
    margin-left: 3.9rem !important;
  }

  .ms-xxl-40 {
    margin-left: 4rem !important;
  }

  .ms-xxl-41 {
    margin-left: 4.1rem !important;
  }

  .ms-xxl-42 {
    margin-left: 4.2rem !important;
  }

  .ms-xxl-43 {
    margin-left: 4.3rem !important;
  }

  .ms-xxl-44 {
    margin-left: 4.4rem !important;
  }

  .ms-xxl-45 {
    margin-left: 4.5rem !important;
  }

  .ms-xxl-46 {
    margin-left: 4.6rem !important;
  }

  .ms-xxl-47 {
    margin-left: 4.7rem !important;
  }

  .ms-xxl-48 {
    margin-left: 4.8rem !important;
  }

  .ms-xxl-49 {
    margin-left: 4.9rem !important;
  }

  .ms-xxl-50 {
    margin-left: 5rem !important;
  }

  .ms-xxl-51 {
    margin-left: 5.1rem !important;
  }

  .ms-xxl-52 {
    margin-left: 5.2rem !important;
  }

  .ms-xxl-53 {
    margin-left: 5.3rem !important;
  }

  .ms-xxl-54 {
    margin-left: 5.4rem !important;
  }

  .ms-xxl-55 {
    margin-left: 5.5rem !important;
  }

  .ms-xxl-56 {
    margin-left: 5.6rem !important;
  }

  .ms-xxl-57 {
    margin-left: 5.7rem !important;
  }

  .ms-xxl-58 {
    margin-left: 5.8rem !important;
  }

  .ms-xxl-59 {
    margin-left: 5.9rem !important;
  }

  .ms-xxl-60 {
    margin-left: 6rem !important;
  }

  .ms-xxl-61 {
    margin-left: 6.1rem !important;
  }

  .ms-xxl-62 {
    margin-left: 6.2rem !important;
  }

  .ms-xxl-63 {
    margin-left: 6.3rem !important;
  }

  .ms-xxl-64 {
    margin-left: 6.4rem !important;
  }

  .ms-xxl-65 {
    margin-left: 6.5rem !important;
  }

  .ms-xxl-66 {
    margin-left: 6.6rem !important;
  }

  .ms-xxl-67 {
    margin-left: 6.7rem !important;
  }

  .ms-xxl-68 {
    margin-left: 6.8rem !important;
  }

  .ms-xxl-69 {
    margin-left: 6.9rem !important;
  }

  .ms-xxl-70 {
    margin-left: 7rem !important;
  }

  .ms-xxl-71 {
    margin-left: 7.1rem !important;
  }

  .ms-xxl-72 {
    margin-left: 7.2rem !important;
  }

  .ms-xxl-73 {
    margin-left: 7.3rem !important;
  }

  .ms-xxl-74 {
    margin-left: 7.4rem !important;
  }

  .ms-xxl-75 {
    margin-left: 7.5rem !important;
  }

  .ms-xxl-76 {
    margin-left: 7.6rem !important;
  }

  .ms-xxl-77 {
    margin-left: 7.7rem !important;
  }

  .ms-xxl-78 {
    margin-left: 7.8rem !important;
  }

  .ms-xxl-79 {
    margin-left: 7.9rem !important;
  }

  .ms-xxl-80 {
    margin-left: 8rem !important;
  }

  .ms-xxl-81 {
    margin-left: 8.1rem !important;
  }

  .ms-xxl-82 {
    margin-left: 8.2rem !important;
  }

  .ms-xxl-83 {
    margin-left: 8.3rem !important;
  }

  .ms-xxl-84 {
    margin-left: 8.4rem !important;
  }

  .ms-xxl-85 {
    margin-left: 8.5rem !important;
  }

  .ms-xxl-86 {
    margin-left: 8.6rem !important;
  }

  .ms-xxl-87 {
    margin-left: 8.7rem !important;
  }

  .ms-xxl-88 {
    margin-left: 8.8rem !important;
  }

  .ms-xxl-89 {
    margin-left: 8.9rem !important;
  }

  .ms-xxl-90 {
    margin-left: 9rem !important;
  }

  .ms-xxl-91 {
    margin-left: 9.1rem !important;
  }

  .ms-xxl-92 {
    margin-left: 9.2rem !important;
  }

  .ms-xxl-93 {
    margin-left: 9.3rem !important;
  }

  .ms-xxl-94 {
    margin-left: 9.4rem !important;
  }

  .ms-xxl-95 {
    margin-left: 9.5rem !important;
  }

  .ms-xxl-96 {
    margin-left: 9.6rem !important;
  }

  .ms-xxl-97 {
    margin-left: 9.7rem !important;
  }

  .ms-xxl-98 {
    margin-left: 9.8rem !important;
  }

  .ms-xxl-99 {
    margin-left: 9.9rem !important;
  }

  .ms-xxl-100 {
    margin-left: 10rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .p-xxl-6 {
    padding: 0.6rem !important;
  }

  .p-xxl-7 {
    padding: 0.7rem !important;
  }

  .p-xxl-8 {
    padding: 0.8rem !important;
  }

  .p-xxl-9 {
    padding: 0.9rem !important;
  }

  .p-xxl-10 {
    padding: 1rem !important;
  }

  .p-xxl-11 {
    padding: 1.1rem !important;
  }

  .p-xxl-12 {
    padding: 1.2rem !important;
  }

  .p-xxl-13 {
    padding: 1.3rem !important;
  }

  .p-xxl-14 {
    padding: 1.4rem !important;
  }

  .p-xxl-15 {
    padding: 1.5rem !important;
  }

  .p-xxl-16 {
    padding: 1.6rem !important;
  }

  .p-xxl-17 {
    padding: 1.7rem !important;
  }

  .p-xxl-18 {
    padding: 1.8rem !important;
  }

  .p-xxl-19 {
    padding: 1.9rem !important;
  }

  .p-xxl-20 {
    padding: 2rem !important;
  }

  .p-xxl-21 {
    padding: 2.1rem !important;
  }

  .p-xxl-22 {
    padding: 2.2rem !important;
  }

  .p-xxl-23 {
    padding: 2.3rem !important;
  }

  .p-xxl-24 {
    padding: 2.4rem !important;
  }

  .p-xxl-25 {
    padding: 2.5rem !important;
  }

  .p-xxl-26 {
    padding: 2.6rem !important;
  }

  .p-xxl-27 {
    padding: 2.7rem !important;
  }

  .p-xxl-28 {
    padding: 2.8rem !important;
  }

  .p-xxl-29 {
    padding: 2.9rem !important;
  }

  .p-xxl-30 {
    padding: 3rem !important;
  }

  .p-xxl-31 {
    padding: 3.1rem !important;
  }

  .p-xxl-32 {
    padding: 3.2rem !important;
  }

  .p-xxl-33 {
    padding: 3.3rem !important;
  }

  .p-xxl-34 {
    padding: 3.4rem !important;
  }

  .p-xxl-35 {
    padding: 3.5rem !important;
  }

  .p-xxl-36 {
    padding: 3.6rem !important;
  }

  .p-xxl-37 {
    padding: 3.7rem !important;
  }

  .p-xxl-38 {
    padding: 3.8rem !important;
  }

  .p-xxl-39 {
    padding: 3.9rem !important;
  }

  .p-xxl-40 {
    padding: 4rem !important;
  }

  .p-xxl-41 {
    padding: 4.1rem !important;
  }

  .p-xxl-42 {
    padding: 4.2rem !important;
  }

  .p-xxl-43 {
    padding: 4.3rem !important;
  }

  .p-xxl-44 {
    padding: 4.4rem !important;
  }

  .p-xxl-45 {
    padding: 4.5rem !important;
  }

  .p-xxl-46 {
    padding: 4.6rem !important;
  }

  .p-xxl-47 {
    padding: 4.7rem !important;
  }

  .p-xxl-48 {
    padding: 4.8rem !important;
  }

  .p-xxl-49 {
    padding: 4.9rem !important;
  }

  .p-xxl-50 {
    padding: 5rem !important;
  }

  .p-xxl-51 {
    padding: 5.1rem !important;
  }

  .p-xxl-52 {
    padding: 5.2rem !important;
  }

  .p-xxl-53 {
    padding: 5.3rem !important;
  }

  .p-xxl-54 {
    padding: 5.4rem !important;
  }

  .p-xxl-55 {
    padding: 5.5rem !important;
  }

  .p-xxl-56 {
    padding: 5.6rem !important;
  }

  .p-xxl-57 {
    padding: 5.7rem !important;
  }

  .p-xxl-58 {
    padding: 5.8rem !important;
  }

  .p-xxl-59 {
    padding: 5.9rem !important;
  }

  .p-xxl-60 {
    padding: 6rem !important;
  }

  .p-xxl-61 {
    padding: 6.1rem !important;
  }

  .p-xxl-62 {
    padding: 6.2rem !important;
  }

  .p-xxl-63 {
    padding: 6.3rem !important;
  }

  .p-xxl-64 {
    padding: 6.4rem !important;
  }

  .p-xxl-65 {
    padding: 6.5rem !important;
  }

  .p-xxl-66 {
    padding: 6.6rem !important;
  }

  .p-xxl-67 {
    padding: 6.7rem !important;
  }

  .p-xxl-68 {
    padding: 6.8rem !important;
  }

  .p-xxl-69 {
    padding: 6.9rem !important;
  }

  .p-xxl-70 {
    padding: 7rem !important;
  }

  .p-xxl-71 {
    padding: 7.1rem !important;
  }

  .p-xxl-72 {
    padding: 7.2rem !important;
  }

  .p-xxl-73 {
    padding: 7.3rem !important;
  }

  .p-xxl-74 {
    padding: 7.4rem !important;
  }

  .p-xxl-75 {
    padding: 7.5rem !important;
  }

  .p-xxl-76 {
    padding: 7.6rem !important;
  }

  .p-xxl-77 {
    padding: 7.7rem !important;
  }

  .p-xxl-78 {
    padding: 7.8rem !important;
  }

  .p-xxl-79 {
    padding: 7.9rem !important;
  }

  .p-xxl-80 {
    padding: 8rem !important;
  }

  .p-xxl-81 {
    padding: 8.1rem !important;
  }

  .p-xxl-82 {
    padding: 8.2rem !important;
  }

  .p-xxl-83 {
    padding: 8.3rem !important;
  }

  .p-xxl-84 {
    padding: 8.4rem !important;
  }

  .p-xxl-85 {
    padding: 8.5rem !important;
  }

  .p-xxl-86 {
    padding: 8.6rem !important;
  }

  .p-xxl-87 {
    padding: 8.7rem !important;
  }

  .p-xxl-88 {
    padding: 8.8rem !important;
  }

  .p-xxl-89 {
    padding: 8.9rem !important;
  }

  .p-xxl-90 {
    padding: 9rem !important;
  }

  .p-xxl-91 {
    padding: 9.1rem !important;
  }

  .p-xxl-92 {
    padding: 9.2rem !important;
  }

  .p-xxl-93 {
    padding: 9.3rem !important;
  }

  .p-xxl-94 {
    padding: 9.4rem !important;
  }

  .p-xxl-95 {
    padding: 9.5rem !important;
  }

  .p-xxl-96 {
    padding: 9.6rem !important;
  }

  .p-xxl-97 {
    padding: 9.7rem !important;
  }

  .p-xxl-98 {
    padding: 9.8rem !important;
  }

  .p-xxl-99 {
    padding: 9.9rem !important;
  }

  .p-xxl-100 {
    padding: 10rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-xxl-6 {
    padding-right: 0.6rem !important;
    padding-left: 0.6rem !important;
  }

  .px-xxl-7 {
    padding-right: 0.7rem !important;
    padding-left: 0.7rem !important;
  }

  .px-xxl-8 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
  }

  .px-xxl-9 {
    padding-right: 0.9rem !important;
    padding-left: 0.9rem !important;
  }

  .px-xxl-10 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-11 {
    padding-right: 1.1rem !important;
    padding-left: 1.1rem !important;
  }

  .px-xxl-12 {
    padding-right: 1.2rem !important;
    padding-left: 1.2rem !important;
  }

  .px-xxl-13 {
    padding-right: 1.3rem !important;
    padding-left: 1.3rem !important;
  }

  .px-xxl-14 {
    padding-right: 1.4rem !important;
    padding-left: 1.4rem !important;
  }

  .px-xxl-15 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-16 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important;
  }

  .px-xxl-17 {
    padding-right: 1.7rem !important;
    padding-left: 1.7rem !important;
  }

  .px-xxl-18 {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }

  .px-xxl-19 {
    padding-right: 1.9rem !important;
    padding-left: 1.9rem !important;
  }

  .px-xxl-20 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-xxl-21 {
    padding-right: 2.1rem !important;
    padding-left: 2.1rem !important;
  }

  .px-xxl-22 {
    padding-right: 2.2rem !important;
    padding-left: 2.2rem !important;
  }

  .px-xxl-23 {
    padding-right: 2.3rem !important;
    padding-left: 2.3rem !important;
  }

  .px-xxl-24 {
    padding-right: 2.4rem !important;
    padding-left: 2.4rem !important;
  }

  .px-xxl-25 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xxl-26 {
    padding-right: 2.6rem !important;
    padding-left: 2.6rem !important;
  }

  .px-xxl-27 {
    padding-right: 2.7rem !important;
    padding-left: 2.7rem !important;
  }

  .px-xxl-28 {
    padding-right: 2.8rem !important;
    padding-left: 2.8rem !important;
  }

  .px-xxl-29 {
    padding-right: 2.9rem !important;
    padding-left: 2.9rem !important;
  }

  .px-xxl-30 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-xxl-31 {
    padding-right: 3.1rem !important;
    padding-left: 3.1rem !important;
  }

  .px-xxl-32 {
    padding-right: 3.2rem !important;
    padding-left: 3.2rem !important;
  }

  .px-xxl-33 {
    padding-right: 3.3rem !important;
    padding-left: 3.3rem !important;
  }

  .px-xxl-34 {
    padding-right: 3.4rem !important;
    padding-left: 3.4rem !important;
  }

  .px-xxl-35 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-xxl-36 {
    padding-right: 3.6rem !important;
    padding-left: 3.6rem !important;
  }

  .px-xxl-37 {
    padding-right: 3.7rem !important;
    padding-left: 3.7rem !important;
  }

  .px-xxl-38 {
    padding-right: 3.8rem !important;
    padding-left: 3.8rem !important;
  }

  .px-xxl-39 {
    padding-right: 3.9rem !important;
    padding-left: 3.9rem !important;
  }

  .px-xxl-40 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-xxl-41 {
    padding-right: 4.1rem !important;
    padding-left: 4.1rem !important;
  }

  .px-xxl-42 {
    padding-right: 4.2rem !important;
    padding-left: 4.2rem !important;
  }

  .px-xxl-43 {
    padding-right: 4.3rem !important;
    padding-left: 4.3rem !important;
  }

  .px-xxl-44 {
    padding-right: 4.4rem !important;
    padding-left: 4.4rem !important;
  }

  .px-xxl-45 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-xxl-46 {
    padding-right: 4.6rem !important;
    padding-left: 4.6rem !important;
  }

  .px-xxl-47 {
    padding-right: 4.7rem !important;
    padding-left: 4.7rem !important;
  }

  .px-xxl-48 {
    padding-right: 4.8rem !important;
    padding-left: 4.8rem !important;
  }

  .px-xxl-49 {
    padding-right: 4.9rem !important;
    padding-left: 4.9rem !important;
  }

  .px-xxl-50 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-xxl-51 {
    padding-right: 5.1rem !important;
    padding-left: 5.1rem !important;
  }

  .px-xxl-52 {
    padding-right: 5.2rem !important;
    padding-left: 5.2rem !important;
  }

  .px-xxl-53 {
    padding-right: 5.3rem !important;
    padding-left: 5.3rem !important;
  }

  .px-xxl-54 {
    padding-right: 5.4rem !important;
    padding-left: 5.4rem !important;
  }

  .px-xxl-55 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }

  .px-xxl-56 {
    padding-right: 5.6rem !important;
    padding-left: 5.6rem !important;
  }

  .px-xxl-57 {
    padding-right: 5.7rem !important;
    padding-left: 5.7rem !important;
  }

  .px-xxl-58 {
    padding-right: 5.8rem !important;
    padding-left: 5.8rem !important;
  }

  .px-xxl-59 {
    padding-right: 5.9rem !important;
    padding-left: 5.9rem !important;
  }

  .px-xxl-60 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-xxl-61 {
    padding-right: 6.1rem !important;
    padding-left: 6.1rem !important;
  }

  .px-xxl-62 {
    padding-right: 6.2rem !important;
    padding-left: 6.2rem !important;
  }

  .px-xxl-63 {
    padding-right: 6.3rem !important;
    padding-left: 6.3rem !important;
  }

  .px-xxl-64 {
    padding-right: 6.4rem !important;
    padding-left: 6.4rem !important;
  }

  .px-xxl-65 {
    padding-right: 6.5rem !important;
    padding-left: 6.5rem !important;
  }

  .px-xxl-66 {
    padding-right: 6.6rem !important;
    padding-left: 6.6rem !important;
  }

  .px-xxl-67 {
    padding-right: 6.7rem !important;
    padding-left: 6.7rem !important;
  }

  .px-xxl-68 {
    padding-right: 6.8rem !important;
    padding-left: 6.8rem !important;
  }

  .px-xxl-69 {
    padding-right: 6.9rem !important;
    padding-left: 6.9rem !important;
  }

  .px-xxl-70 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }

  .px-xxl-71 {
    padding-right: 7.1rem !important;
    padding-left: 7.1rem !important;
  }

  .px-xxl-72 {
    padding-right: 7.2rem !important;
    padding-left: 7.2rem !important;
  }

  .px-xxl-73 {
    padding-right: 7.3rem !important;
    padding-left: 7.3rem !important;
  }

  .px-xxl-74 {
    padding-right: 7.4rem !important;
    padding-left: 7.4rem !important;
  }

  .px-xxl-75 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-xxl-76 {
    padding-right: 7.6rem !important;
    padding-left: 7.6rem !important;
  }

  .px-xxl-77 {
    padding-right: 7.7rem !important;
    padding-left: 7.7rem !important;
  }

  .px-xxl-78 {
    padding-right: 7.8rem !important;
    padding-left: 7.8rem !important;
  }

  .px-xxl-79 {
    padding-right: 7.9rem !important;
    padding-left: 7.9rem !important;
  }

  .px-xxl-80 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-xxl-81 {
    padding-right: 8.1rem !important;
    padding-left: 8.1rem !important;
  }

  .px-xxl-82 {
    padding-right: 8.2rem !important;
    padding-left: 8.2rem !important;
  }

  .px-xxl-83 {
    padding-right: 8.3rem !important;
    padding-left: 8.3rem !important;
  }

  .px-xxl-84 {
    padding-right: 8.4rem !important;
    padding-left: 8.4rem !important;
  }

  .px-xxl-85 {
    padding-right: 8.5rem !important;
    padding-left: 8.5rem !important;
  }

  .px-xxl-86 {
    padding-right: 8.6rem !important;
    padding-left: 8.6rem !important;
  }

  .px-xxl-87 {
    padding-right: 8.7rem !important;
    padding-left: 8.7rem !important;
  }

  .px-xxl-88 {
    padding-right: 8.8rem !important;
    padding-left: 8.8rem !important;
  }

  .px-xxl-89 {
    padding-right: 8.9rem !important;
    padding-left: 8.9rem !important;
  }

  .px-xxl-90 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }

  .px-xxl-91 {
    padding-right: 9.1rem !important;
    padding-left: 9.1rem !important;
  }

  .px-xxl-92 {
    padding-right: 9.2rem !important;
    padding-left: 9.2rem !important;
  }

  .px-xxl-93 {
    padding-right: 9.3rem !important;
    padding-left: 9.3rem !important;
  }

  .px-xxl-94 {
    padding-right: 9.4rem !important;
    padding-left: 9.4rem !important;
  }

  .px-xxl-95 {
    padding-right: 9.5rem !important;
    padding-left: 9.5rem !important;
  }

  .px-xxl-96 {
    padding-right: 9.6rem !important;
    padding-left: 9.6rem !important;
  }

  .px-xxl-97 {
    padding-right: 9.7rem !important;
    padding-left: 9.7rem !important;
  }

  .px-xxl-98 {
    padding-right: 9.8rem !important;
    padding-left: 9.8rem !important;
  }

  .px-xxl-99 {
    padding-right: 9.9rem !important;
    padding-left: 9.9rem !important;
  }

  .px-xxl-100 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-xxl-6 {
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
  }

  .py-xxl-7 {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
  }

  .py-xxl-8 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }

  .py-xxl-9 {
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
  }

  .py-xxl-10 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-11 {
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
  }

  .py-xxl-12 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }

  .py-xxl-13 {
    padding-top: 1.3rem !important;
    padding-bottom: 1.3rem !important;
  }

  .py-xxl-14 {
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
  }

  .py-xxl-15 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-16 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }

  .py-xxl-17 {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
  }

  .py-xxl-18 {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }

  .py-xxl-19 {
    padding-top: 1.9rem !important;
    padding-bottom: 1.9rem !important;
  }

  .py-xxl-20 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-xxl-21 {
    padding-top: 2.1rem !important;
    padding-bottom: 2.1rem !important;
  }

  .py-xxl-22 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }

  .py-xxl-23 {
    padding-top: 2.3rem !important;
    padding-bottom: 2.3rem !important;
  }

  .py-xxl-24 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  .py-xxl-25 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xxl-26 {
    padding-top: 2.6rem !important;
    padding-bottom: 2.6rem !important;
  }

  .py-xxl-27 {
    padding-top: 2.7rem !important;
    padding-bottom: 2.7rem !important;
  }

  .py-xxl-28 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }

  .py-xxl-29 {
    padding-top: 2.9rem !important;
    padding-bottom: 2.9rem !important;
  }

  .py-xxl-30 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-xxl-31 {
    padding-top: 3.1rem !important;
    padding-bottom: 3.1rem !important;
  }

  .py-xxl-32 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }

  .py-xxl-33 {
    padding-top: 3.3rem !important;
    padding-bottom: 3.3rem !important;
  }

  .py-xxl-34 {
    padding-top: 3.4rem !important;
    padding-bottom: 3.4rem !important;
  }

  .py-xxl-35 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-xxl-36 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }

  .py-xxl-37 {
    padding-top: 3.7rem !important;
    padding-bottom: 3.7rem !important;
  }

  .py-xxl-38 {
    padding-top: 3.8rem !important;
    padding-bottom: 3.8rem !important;
  }

  .py-xxl-39 {
    padding-top: 3.9rem !important;
    padding-bottom: 3.9rem !important;
  }

  .py-xxl-40 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-xxl-41 {
    padding-top: 4.1rem !important;
    padding-bottom: 4.1rem !important;
  }

  .py-xxl-42 {
    padding-top: 4.2rem !important;
    padding-bottom: 4.2rem !important;
  }

  .py-xxl-43 {
    padding-top: 4.3rem !important;
    padding-bottom: 4.3rem !important;
  }

  .py-xxl-44 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }

  .py-xxl-45 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-xxl-46 {
    padding-top: 4.6rem !important;
    padding-bottom: 4.6rem !important;
  }

  .py-xxl-47 {
    padding-top: 4.7rem !important;
    padding-bottom: 4.7rem !important;
  }

  .py-xxl-48 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }

  .py-xxl-49 {
    padding-top: 4.9rem !important;
    padding-bottom: 4.9rem !important;
  }

  .py-xxl-50 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-xxl-51 {
    padding-top: 5.1rem !important;
    padding-bottom: 5.1rem !important;
  }

  .py-xxl-52 {
    padding-top: 5.2rem !important;
    padding-bottom: 5.2rem !important;
  }

  .py-xxl-53 {
    padding-top: 5.3rem !important;
    padding-bottom: 5.3rem !important;
  }

  .py-xxl-54 {
    padding-top: 5.4rem !important;
    padding-bottom: 5.4rem !important;
  }

  .py-xxl-55 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .py-xxl-56 {
    padding-top: 5.6rem !important;
    padding-bottom: 5.6rem !important;
  }

  .py-xxl-57 {
    padding-top: 5.7rem !important;
    padding-bottom: 5.7rem !important;
  }

  .py-xxl-58 {
    padding-top: 5.8rem !important;
    padding-bottom: 5.8rem !important;
  }

  .py-xxl-59 {
    padding-top: 5.9rem !important;
    padding-bottom: 5.9rem !important;
  }

  .py-xxl-60 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-xxl-61 {
    padding-top: 6.1rem !important;
    padding-bottom: 6.1rem !important;
  }

  .py-xxl-62 {
    padding-top: 6.2rem !important;
    padding-bottom: 6.2rem !important;
  }

  .py-xxl-63 {
    padding-top: 6.3rem !important;
    padding-bottom: 6.3rem !important;
  }

  .py-xxl-64 {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }

  .py-xxl-65 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .py-xxl-66 {
    padding-top: 6.6rem !important;
    padding-bottom: 6.6rem !important;
  }

  .py-xxl-67 {
    padding-top: 6.7rem !important;
    padding-bottom: 6.7rem !important;
  }

  .py-xxl-68 {
    padding-top: 6.8rem !important;
    padding-bottom: 6.8rem !important;
  }

  .py-xxl-69 {
    padding-top: 6.9rem !important;
    padding-bottom: 6.9rem !important;
  }

  .py-xxl-70 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .py-xxl-71 {
    padding-top: 7.1rem !important;
    padding-bottom: 7.1rem !important;
  }

  .py-xxl-72 {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }

  .py-xxl-73 {
    padding-top: 7.3rem !important;
    padding-bottom: 7.3rem !important;
  }

  .py-xxl-74 {
    padding-top: 7.4rem !important;
    padding-bottom: 7.4rem !important;
  }

  .py-xxl-75 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-xxl-76 {
    padding-top: 7.6rem !important;
    padding-bottom: 7.6rem !important;
  }

  .py-xxl-77 {
    padding-top: 7.7rem !important;
    padding-bottom: 7.7rem !important;
  }

  .py-xxl-78 {
    padding-top: 7.8rem !important;
    padding-bottom: 7.8rem !important;
  }

  .py-xxl-79 {
    padding-top: 7.9rem !important;
    padding-bottom: 7.9rem !important;
  }

  .py-xxl-80 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-xxl-81 {
    padding-top: 8.1rem !important;
    padding-bottom: 8.1rem !important;
  }

  .py-xxl-82 {
    padding-top: 8.2rem !important;
    padding-bottom: 8.2rem !important;
  }

  .py-xxl-83 {
    padding-top: 8.3rem !important;
    padding-bottom: 8.3rem !important;
  }

  .py-xxl-84 {
    padding-top: 8.4rem !important;
    padding-bottom: 8.4rem !important;
  }

  .py-xxl-85 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }

  .py-xxl-86 {
    padding-top: 8.6rem !important;
    padding-bottom: 8.6rem !important;
  }

  .py-xxl-87 {
    padding-top: 8.7rem !important;
    padding-bottom: 8.7rem !important;
  }

  .py-xxl-88 {
    padding-top: 8.8rem !important;
    padding-bottom: 8.8rem !important;
  }

  .py-xxl-89 {
    padding-top: 8.9rem !important;
    padding-bottom: 8.9rem !important;
  }

  .py-xxl-90 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .py-xxl-91 {
    padding-top: 9.1rem !important;
    padding-bottom: 9.1rem !important;
  }

  .py-xxl-92 {
    padding-top: 9.2rem !important;
    padding-bottom: 9.2rem !important;
  }

  .py-xxl-93 {
    padding-top: 9.3rem !important;
    padding-bottom: 9.3rem !important;
  }

  .py-xxl-94 {
    padding-top: 9.4rem !important;
    padding-bottom: 9.4rem !important;
  }

  .py-xxl-95 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }

  .py-xxl-96 {
    padding-top: 9.6rem !important;
    padding-bottom: 9.6rem !important;
  }

  .py-xxl-97 {
    padding-top: 9.7rem !important;
    padding-bottom: 9.7rem !important;
  }

  .py-xxl-98 {
    padding-top: 9.8rem !important;
    padding-bottom: 9.8rem !important;
  }

  .py-xxl-99 {
    padding-top: 9.9rem !important;
    padding-bottom: 9.9rem !important;
  }

  .py-xxl-100 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pt-xxl-6 {
    padding-top: 0.6rem !important;
  }

  .pt-xxl-7 {
    padding-top: 0.7rem !important;
  }

  .pt-xxl-8 {
    padding-top: 0.8rem !important;
  }

  .pt-xxl-9 {
    padding-top: 0.9rem !important;
  }

  .pt-xxl-10 {
    padding-top: 1rem !important;
  }

  .pt-xxl-11 {
    padding-top: 1.1rem !important;
  }

  .pt-xxl-12 {
    padding-top: 1.2rem !important;
  }

  .pt-xxl-13 {
    padding-top: 1.3rem !important;
  }

  .pt-xxl-14 {
    padding-top: 1.4rem !important;
  }

  .pt-xxl-15 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-16 {
    padding-top: 1.6rem !important;
  }

  .pt-xxl-17 {
    padding-top: 1.7rem !important;
  }

  .pt-xxl-18 {
    padding-top: 1.8rem !important;
  }

  .pt-xxl-19 {
    padding-top: 1.9rem !important;
  }

  .pt-xxl-20 {
    padding-top: 2rem !important;
  }

  .pt-xxl-21 {
    padding-top: 2.1rem !important;
  }

  .pt-xxl-22 {
    padding-top: 2.2rem !important;
  }

  .pt-xxl-23 {
    padding-top: 2.3rem !important;
  }

  .pt-xxl-24 {
    padding-top: 2.4rem !important;
  }

  .pt-xxl-25 {
    padding-top: 2.5rem !important;
  }

  .pt-xxl-26 {
    padding-top: 2.6rem !important;
  }

  .pt-xxl-27 {
    padding-top: 2.7rem !important;
  }

  .pt-xxl-28 {
    padding-top: 2.8rem !important;
  }

  .pt-xxl-29 {
    padding-top: 2.9rem !important;
  }

  .pt-xxl-30 {
    padding-top: 3rem !important;
  }

  .pt-xxl-31 {
    padding-top: 3.1rem !important;
  }

  .pt-xxl-32 {
    padding-top: 3.2rem !important;
  }

  .pt-xxl-33 {
    padding-top: 3.3rem !important;
  }

  .pt-xxl-34 {
    padding-top: 3.4rem !important;
  }

  .pt-xxl-35 {
    padding-top: 3.5rem !important;
  }

  .pt-xxl-36 {
    padding-top: 3.6rem !important;
  }

  .pt-xxl-37 {
    padding-top: 3.7rem !important;
  }

  .pt-xxl-38 {
    padding-top: 3.8rem !important;
  }

  .pt-xxl-39 {
    padding-top: 3.9rem !important;
  }

  .pt-xxl-40 {
    padding-top: 4rem !important;
  }

  .pt-xxl-41 {
    padding-top: 4.1rem !important;
  }

  .pt-xxl-42 {
    padding-top: 4.2rem !important;
  }

  .pt-xxl-43 {
    padding-top: 4.3rem !important;
  }

  .pt-xxl-44 {
    padding-top: 4.4rem !important;
  }

  .pt-xxl-45 {
    padding-top: 4.5rem !important;
  }

  .pt-xxl-46 {
    padding-top: 4.6rem !important;
  }

  .pt-xxl-47 {
    padding-top: 4.7rem !important;
  }

  .pt-xxl-48 {
    padding-top: 4.8rem !important;
  }

  .pt-xxl-49 {
    padding-top: 4.9rem !important;
  }

  .pt-xxl-50 {
    padding-top: 5rem !important;
  }

  .pt-xxl-51 {
    padding-top: 5.1rem !important;
  }

  .pt-xxl-52 {
    padding-top: 5.2rem !important;
  }

  .pt-xxl-53 {
    padding-top: 5.3rem !important;
  }

  .pt-xxl-54 {
    padding-top: 5.4rem !important;
  }

  .pt-xxl-55 {
    padding-top: 5.5rem !important;
  }

  .pt-xxl-56 {
    padding-top: 5.6rem !important;
  }

  .pt-xxl-57 {
    padding-top: 5.7rem !important;
  }

  .pt-xxl-58 {
    padding-top: 5.8rem !important;
  }

  .pt-xxl-59 {
    padding-top: 5.9rem !important;
  }

  .pt-xxl-60 {
    padding-top: 6rem !important;
  }

  .pt-xxl-61 {
    padding-top: 6.1rem !important;
  }

  .pt-xxl-62 {
    padding-top: 6.2rem !important;
  }

  .pt-xxl-63 {
    padding-top: 6.3rem !important;
  }

  .pt-xxl-64 {
    padding-top: 6.4rem !important;
  }

  .pt-xxl-65 {
    padding-top: 6.5rem !important;
  }

  .pt-xxl-66 {
    padding-top: 6.6rem !important;
  }

  .pt-xxl-67 {
    padding-top: 6.7rem !important;
  }

  .pt-xxl-68 {
    padding-top: 6.8rem !important;
  }

  .pt-xxl-69 {
    padding-top: 6.9rem !important;
  }

  .pt-xxl-70 {
    padding-top: 7rem !important;
  }

  .pt-xxl-71 {
    padding-top: 7.1rem !important;
  }

  .pt-xxl-72 {
    padding-top: 7.2rem !important;
  }

  .pt-xxl-73 {
    padding-top: 7.3rem !important;
  }

  .pt-xxl-74 {
    padding-top: 7.4rem !important;
  }

  .pt-xxl-75 {
    padding-top: 7.5rem !important;
  }

  .pt-xxl-76 {
    padding-top: 7.6rem !important;
  }

  .pt-xxl-77 {
    padding-top: 7.7rem !important;
  }

  .pt-xxl-78 {
    padding-top: 7.8rem !important;
  }

  .pt-xxl-79 {
    padding-top: 7.9rem !important;
  }

  .pt-xxl-80 {
    padding-top: 8rem !important;
  }

  .pt-xxl-81 {
    padding-top: 8.1rem !important;
  }

  .pt-xxl-82 {
    padding-top: 8.2rem !important;
  }

  .pt-xxl-83 {
    padding-top: 8.3rem !important;
  }

  .pt-xxl-84 {
    padding-top: 8.4rem !important;
  }

  .pt-xxl-85 {
    padding-top: 8.5rem !important;
  }

  .pt-xxl-86 {
    padding-top: 8.6rem !important;
  }

  .pt-xxl-87 {
    padding-top: 8.7rem !important;
  }

  .pt-xxl-88 {
    padding-top: 8.8rem !important;
  }

  .pt-xxl-89 {
    padding-top: 8.9rem !important;
  }

  .pt-xxl-90 {
    padding-top: 9rem !important;
  }

  .pt-xxl-91 {
    padding-top: 9.1rem !important;
  }

  .pt-xxl-92 {
    padding-top: 9.2rem !important;
  }

  .pt-xxl-93 {
    padding-top: 9.3rem !important;
  }

  .pt-xxl-94 {
    padding-top: 9.4rem !important;
  }

  .pt-xxl-95 {
    padding-top: 9.5rem !important;
  }

  .pt-xxl-96 {
    padding-top: 9.6rem !important;
  }

  .pt-xxl-97 {
    padding-top: 9.7rem !important;
  }

  .pt-xxl-98 {
    padding-top: 9.8rem !important;
  }

  .pt-xxl-99 {
    padding-top: 9.9rem !important;
  }

  .pt-xxl-100 {
    padding-top: 10rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pe-xxl-6 {
    padding-right: 0.6rem !important;
  }

  .pe-xxl-7 {
    padding-right: 0.7rem !important;
  }

  .pe-xxl-8 {
    padding-right: 0.8rem !important;
  }

  .pe-xxl-9 {
    padding-right: 0.9rem !important;
  }

  .pe-xxl-10 {
    padding-right: 1rem !important;
  }

  .pe-xxl-11 {
    padding-right: 1.1rem !important;
  }

  .pe-xxl-12 {
    padding-right: 1.2rem !important;
  }

  .pe-xxl-13 {
    padding-right: 1.3rem !important;
  }

  .pe-xxl-14 {
    padding-right: 1.4rem !important;
  }

  .pe-xxl-15 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-16 {
    padding-right: 1.6rem !important;
  }

  .pe-xxl-17 {
    padding-right: 1.7rem !important;
  }

  .pe-xxl-18 {
    padding-right: 1.8rem !important;
  }

  .pe-xxl-19 {
    padding-right: 1.9rem !important;
  }

  .pe-xxl-20 {
    padding-right: 2rem !important;
  }

  .pe-xxl-21 {
    padding-right: 2.1rem !important;
  }

  .pe-xxl-22 {
    padding-right: 2.2rem !important;
  }

  .pe-xxl-23 {
    padding-right: 2.3rem !important;
  }

  .pe-xxl-24 {
    padding-right: 2.4rem !important;
  }

  .pe-xxl-25 {
    padding-right: 2.5rem !important;
  }

  .pe-xxl-26 {
    padding-right: 2.6rem !important;
  }

  .pe-xxl-27 {
    padding-right: 2.7rem !important;
  }

  .pe-xxl-28 {
    padding-right: 2.8rem !important;
  }

  .pe-xxl-29 {
    padding-right: 2.9rem !important;
  }

  .pe-xxl-30 {
    padding-right: 3rem !important;
  }

  .pe-xxl-31 {
    padding-right: 3.1rem !important;
  }

  .pe-xxl-32 {
    padding-right: 3.2rem !important;
  }

  .pe-xxl-33 {
    padding-right: 3.3rem !important;
  }

  .pe-xxl-34 {
    padding-right: 3.4rem !important;
  }

  .pe-xxl-35 {
    padding-right: 3.5rem !important;
  }

  .pe-xxl-36 {
    padding-right: 3.6rem !important;
  }

  .pe-xxl-37 {
    padding-right: 3.7rem !important;
  }

  .pe-xxl-38 {
    padding-right: 3.8rem !important;
  }

  .pe-xxl-39 {
    padding-right: 3.9rem !important;
  }

  .pe-xxl-40 {
    padding-right: 4rem !important;
  }

  .pe-xxl-41 {
    padding-right: 4.1rem !important;
  }

  .pe-xxl-42 {
    padding-right: 4.2rem !important;
  }

  .pe-xxl-43 {
    padding-right: 4.3rem !important;
  }

  .pe-xxl-44 {
    padding-right: 4.4rem !important;
  }

  .pe-xxl-45 {
    padding-right: 4.5rem !important;
  }

  .pe-xxl-46 {
    padding-right: 4.6rem !important;
  }

  .pe-xxl-47 {
    padding-right: 4.7rem !important;
  }

  .pe-xxl-48 {
    padding-right: 4.8rem !important;
  }

  .pe-xxl-49 {
    padding-right: 4.9rem !important;
  }

  .pe-xxl-50 {
    padding-right: 5rem !important;
  }

  .pe-xxl-51 {
    padding-right: 5.1rem !important;
  }

  .pe-xxl-52 {
    padding-right: 5.2rem !important;
  }

  .pe-xxl-53 {
    padding-right: 5.3rem !important;
  }

  .pe-xxl-54 {
    padding-right: 5.4rem !important;
  }

  .pe-xxl-55 {
    padding-right: 5.5rem !important;
  }

  .pe-xxl-56 {
    padding-right: 5.6rem !important;
  }

  .pe-xxl-57 {
    padding-right: 5.7rem !important;
  }

  .pe-xxl-58 {
    padding-right: 5.8rem !important;
  }

  .pe-xxl-59 {
    padding-right: 5.9rem !important;
  }

  .pe-xxl-60 {
    padding-right: 6rem !important;
  }

  .pe-xxl-61 {
    padding-right: 6.1rem !important;
  }

  .pe-xxl-62 {
    padding-right: 6.2rem !important;
  }

  .pe-xxl-63 {
    padding-right: 6.3rem !important;
  }

  .pe-xxl-64 {
    padding-right: 6.4rem !important;
  }

  .pe-xxl-65 {
    padding-right: 6.5rem !important;
  }

  .pe-xxl-66 {
    padding-right: 6.6rem !important;
  }

  .pe-xxl-67 {
    padding-right: 6.7rem !important;
  }

  .pe-xxl-68 {
    padding-right: 6.8rem !important;
  }

  .pe-xxl-69 {
    padding-right: 6.9rem !important;
  }

  .pe-xxl-70 {
    padding-right: 7rem !important;
  }

  .pe-xxl-71 {
    padding-right: 7.1rem !important;
  }

  .pe-xxl-72 {
    padding-right: 7.2rem !important;
  }

  .pe-xxl-73 {
    padding-right: 7.3rem !important;
  }

  .pe-xxl-74 {
    padding-right: 7.4rem !important;
  }

  .pe-xxl-75 {
    padding-right: 7.5rem !important;
  }

  .pe-xxl-76 {
    padding-right: 7.6rem !important;
  }

  .pe-xxl-77 {
    padding-right: 7.7rem !important;
  }

  .pe-xxl-78 {
    padding-right: 7.8rem !important;
  }

  .pe-xxl-79 {
    padding-right: 7.9rem !important;
  }

  .pe-xxl-80 {
    padding-right: 8rem !important;
  }

  .pe-xxl-81 {
    padding-right: 8.1rem !important;
  }

  .pe-xxl-82 {
    padding-right: 8.2rem !important;
  }

  .pe-xxl-83 {
    padding-right: 8.3rem !important;
  }

  .pe-xxl-84 {
    padding-right: 8.4rem !important;
  }

  .pe-xxl-85 {
    padding-right: 8.5rem !important;
  }

  .pe-xxl-86 {
    padding-right: 8.6rem !important;
  }

  .pe-xxl-87 {
    padding-right: 8.7rem !important;
  }

  .pe-xxl-88 {
    padding-right: 8.8rem !important;
  }

  .pe-xxl-89 {
    padding-right: 8.9rem !important;
  }

  .pe-xxl-90 {
    padding-right: 9rem !important;
  }

  .pe-xxl-91 {
    padding-right: 9.1rem !important;
  }

  .pe-xxl-92 {
    padding-right: 9.2rem !important;
  }

  .pe-xxl-93 {
    padding-right: 9.3rem !important;
  }

  .pe-xxl-94 {
    padding-right: 9.4rem !important;
  }

  .pe-xxl-95 {
    padding-right: 9.5rem !important;
  }

  .pe-xxl-96 {
    padding-right: 9.6rem !important;
  }

  .pe-xxl-97 {
    padding-right: 9.7rem !important;
  }

  .pe-xxl-98 {
    padding-right: 9.8rem !important;
  }

  .pe-xxl-99 {
    padding-right: 9.9rem !important;
  }

  .pe-xxl-100 {
    padding-right: 10rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pb-xxl-6 {
    padding-bottom: 0.6rem !important;
  }

  .pb-xxl-7 {
    padding-bottom: 0.7rem !important;
  }

  .pb-xxl-8 {
    padding-bottom: 0.8rem !important;
  }

  .pb-xxl-9 {
    padding-bottom: 0.9rem !important;
  }

  .pb-xxl-10 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-11 {
    padding-bottom: 1.1rem !important;
  }

  .pb-xxl-12 {
    padding-bottom: 1.2rem !important;
  }

  .pb-xxl-13 {
    padding-bottom: 1.3rem !important;
  }

  .pb-xxl-14 {
    padding-bottom: 1.4rem !important;
  }

  .pb-xxl-15 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-16 {
    padding-bottom: 1.6rem !important;
  }

  .pb-xxl-17 {
    padding-bottom: 1.7rem !important;
  }

  .pb-xxl-18 {
    padding-bottom: 1.8rem !important;
  }

  .pb-xxl-19 {
    padding-bottom: 1.9rem !important;
  }

  .pb-xxl-20 {
    padding-bottom: 2rem !important;
  }

  .pb-xxl-21 {
    padding-bottom: 2.1rem !important;
  }

  .pb-xxl-22 {
    padding-bottom: 2.2rem !important;
  }

  .pb-xxl-23 {
    padding-bottom: 2.3rem !important;
  }

  .pb-xxl-24 {
    padding-bottom: 2.4rem !important;
  }

  .pb-xxl-25 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xxl-26 {
    padding-bottom: 2.6rem !important;
  }

  .pb-xxl-27 {
    padding-bottom: 2.7rem !important;
  }

  .pb-xxl-28 {
    padding-bottom: 2.8rem !important;
  }

  .pb-xxl-29 {
    padding-bottom: 2.9rem !important;
  }

  .pb-xxl-30 {
    padding-bottom: 3rem !important;
  }

  .pb-xxl-31 {
    padding-bottom: 3.1rem !important;
  }

  .pb-xxl-32 {
    padding-bottom: 3.2rem !important;
  }

  .pb-xxl-33 {
    padding-bottom: 3.3rem !important;
  }

  .pb-xxl-34 {
    padding-bottom: 3.4rem !important;
  }

  .pb-xxl-35 {
    padding-bottom: 3.5rem !important;
  }

  .pb-xxl-36 {
    padding-bottom: 3.6rem !important;
  }

  .pb-xxl-37 {
    padding-bottom: 3.7rem !important;
  }

  .pb-xxl-38 {
    padding-bottom: 3.8rem !important;
  }

  .pb-xxl-39 {
    padding-bottom: 3.9rem !important;
  }

  .pb-xxl-40 {
    padding-bottom: 4rem !important;
  }

  .pb-xxl-41 {
    padding-bottom: 4.1rem !important;
  }

  .pb-xxl-42 {
    padding-bottom: 4.2rem !important;
  }

  .pb-xxl-43 {
    padding-bottom: 4.3rem !important;
  }

  .pb-xxl-44 {
    padding-bottom: 4.4rem !important;
  }

  .pb-xxl-45 {
    padding-bottom: 4.5rem !important;
  }

  .pb-xxl-46 {
    padding-bottom: 4.6rem !important;
  }

  .pb-xxl-47 {
    padding-bottom: 4.7rem !important;
  }

  .pb-xxl-48 {
    padding-bottom: 4.8rem !important;
  }

  .pb-xxl-49 {
    padding-bottom: 4.9rem !important;
  }

  .pb-xxl-50 {
    padding-bottom: 5rem !important;
  }

  .pb-xxl-51 {
    padding-bottom: 5.1rem !important;
  }

  .pb-xxl-52 {
    padding-bottom: 5.2rem !important;
  }

  .pb-xxl-53 {
    padding-bottom: 5.3rem !important;
  }

  .pb-xxl-54 {
    padding-bottom: 5.4rem !important;
  }

  .pb-xxl-55 {
    padding-bottom: 5.5rem !important;
  }

  .pb-xxl-56 {
    padding-bottom: 5.6rem !important;
  }

  .pb-xxl-57 {
    padding-bottom: 5.7rem !important;
  }

  .pb-xxl-58 {
    padding-bottom: 5.8rem !important;
  }

  .pb-xxl-59 {
    padding-bottom: 5.9rem !important;
  }

  .pb-xxl-60 {
    padding-bottom: 6rem !important;
  }

  .pb-xxl-61 {
    padding-bottom: 6.1rem !important;
  }

  .pb-xxl-62 {
    padding-bottom: 6.2rem !important;
  }

  .pb-xxl-63 {
    padding-bottom: 6.3rem !important;
  }

  .pb-xxl-64 {
    padding-bottom: 6.4rem !important;
  }

  .pb-xxl-65 {
    padding-bottom: 6.5rem !important;
  }

  .pb-xxl-66 {
    padding-bottom: 6.6rem !important;
  }

  .pb-xxl-67 {
    padding-bottom: 6.7rem !important;
  }

  .pb-xxl-68 {
    padding-bottom: 6.8rem !important;
  }

  .pb-xxl-69 {
    padding-bottom: 6.9rem !important;
  }

  .pb-xxl-70 {
    padding-bottom: 7rem !important;
  }

  .pb-xxl-71 {
    padding-bottom: 7.1rem !important;
  }

  .pb-xxl-72 {
    padding-bottom: 7.2rem !important;
  }

  .pb-xxl-73 {
    padding-bottom: 7.3rem !important;
  }

  .pb-xxl-74 {
    padding-bottom: 7.4rem !important;
  }

  .pb-xxl-75 {
    padding-bottom: 7.5rem !important;
  }

  .pb-xxl-76 {
    padding-bottom: 7.6rem !important;
  }

  .pb-xxl-77 {
    padding-bottom: 7.7rem !important;
  }

  .pb-xxl-78 {
    padding-bottom: 7.8rem !important;
  }

  .pb-xxl-79 {
    padding-bottom: 7.9rem !important;
  }

  .pb-xxl-80 {
    padding-bottom: 8rem !important;
  }

  .pb-xxl-81 {
    padding-bottom: 8.1rem !important;
  }

  .pb-xxl-82 {
    padding-bottom: 8.2rem !important;
  }

  .pb-xxl-83 {
    padding-bottom: 8.3rem !important;
  }

  .pb-xxl-84 {
    padding-bottom: 8.4rem !important;
  }

  .pb-xxl-85 {
    padding-bottom: 8.5rem !important;
  }

  .pb-xxl-86 {
    padding-bottom: 8.6rem !important;
  }

  .pb-xxl-87 {
    padding-bottom: 8.7rem !important;
  }

  .pb-xxl-88 {
    padding-bottom: 8.8rem !important;
  }

  .pb-xxl-89 {
    padding-bottom: 8.9rem !important;
  }

  .pb-xxl-90 {
    padding-bottom: 9rem !important;
  }

  .pb-xxl-91 {
    padding-bottom: 9.1rem !important;
  }

  .pb-xxl-92 {
    padding-bottom: 9.2rem !important;
  }

  .pb-xxl-93 {
    padding-bottom: 9.3rem !important;
  }

  .pb-xxl-94 {
    padding-bottom: 9.4rem !important;
  }

  .pb-xxl-95 {
    padding-bottom: 9.5rem !important;
  }

  .pb-xxl-96 {
    padding-bottom: 9.6rem !important;
  }

  .pb-xxl-97 {
    padding-bottom: 9.7rem !important;
  }

  .pb-xxl-98 {
    padding-bottom: 9.8rem !important;
  }

  .pb-xxl-99 {
    padding-bottom: 9.9rem !important;
  }

  .pb-xxl-100 {
    padding-bottom: 10rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .ps-xxl-6 {
    padding-left: 0.6rem !important;
  }

  .ps-xxl-7 {
    padding-left: 0.7rem !important;
  }

  .ps-xxl-8 {
    padding-left: 0.8rem !important;
  }

  .ps-xxl-9 {
    padding-left: 0.9rem !important;
  }

  .ps-xxl-10 {
    padding-left: 1rem !important;
  }

  .ps-xxl-11 {
    padding-left: 1.1rem !important;
  }

  .ps-xxl-12 {
    padding-left: 1.2rem !important;
  }

  .ps-xxl-13 {
    padding-left: 1.3rem !important;
  }

  .ps-xxl-14 {
    padding-left: 1.4rem !important;
  }

  .ps-xxl-15 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-16 {
    padding-left: 1.6rem !important;
  }

  .ps-xxl-17 {
    padding-left: 1.7rem !important;
  }

  .ps-xxl-18 {
    padding-left: 1.8rem !important;
  }

  .ps-xxl-19 {
    padding-left: 1.9rem !important;
  }

  .ps-xxl-20 {
    padding-left: 2rem !important;
  }

  .ps-xxl-21 {
    padding-left: 2.1rem !important;
  }

  .ps-xxl-22 {
    padding-left: 2.2rem !important;
  }

  .ps-xxl-23 {
    padding-left: 2.3rem !important;
  }

  .ps-xxl-24 {
    padding-left: 2.4rem !important;
  }

  .ps-xxl-25 {
    padding-left: 2.5rem !important;
  }

  .ps-xxl-26 {
    padding-left: 2.6rem !important;
  }

  .ps-xxl-27 {
    padding-left: 2.7rem !important;
  }

  .ps-xxl-28 {
    padding-left: 2.8rem !important;
  }

  .ps-xxl-29 {
    padding-left: 2.9rem !important;
  }

  .ps-xxl-30 {
    padding-left: 3rem !important;
  }

  .ps-xxl-31 {
    padding-left: 3.1rem !important;
  }

  .ps-xxl-32 {
    padding-left: 3.2rem !important;
  }

  .ps-xxl-33 {
    padding-left: 3.3rem !important;
  }

  .ps-xxl-34 {
    padding-left: 3.4rem !important;
  }

  .ps-xxl-35 {
    padding-left: 3.5rem !important;
  }

  .ps-xxl-36 {
    padding-left: 3.6rem !important;
  }

  .ps-xxl-37 {
    padding-left: 3.7rem !important;
  }

  .ps-xxl-38 {
    padding-left: 3.8rem !important;
  }

  .ps-xxl-39 {
    padding-left: 3.9rem !important;
  }

  .ps-xxl-40 {
    padding-left: 4rem !important;
  }

  .ps-xxl-41 {
    padding-left: 4.1rem !important;
  }

  .ps-xxl-42 {
    padding-left: 4.2rem !important;
  }

  .ps-xxl-43 {
    padding-left: 4.3rem !important;
  }

  .ps-xxl-44 {
    padding-left: 4.4rem !important;
  }

  .ps-xxl-45 {
    padding-left: 4.5rem !important;
  }

  .ps-xxl-46 {
    padding-left: 4.6rem !important;
  }

  .ps-xxl-47 {
    padding-left: 4.7rem !important;
  }

  .ps-xxl-48 {
    padding-left: 4.8rem !important;
  }

  .ps-xxl-49 {
    padding-left: 4.9rem !important;
  }

  .ps-xxl-50 {
    padding-left: 5rem !important;
  }

  .ps-xxl-51 {
    padding-left: 5.1rem !important;
  }

  .ps-xxl-52 {
    padding-left: 5.2rem !important;
  }

  .ps-xxl-53 {
    padding-left: 5.3rem !important;
  }

  .ps-xxl-54 {
    padding-left: 5.4rem !important;
  }

  .ps-xxl-55 {
    padding-left: 5.5rem !important;
  }

  .ps-xxl-56 {
    padding-left: 5.6rem !important;
  }

  .ps-xxl-57 {
    padding-left: 5.7rem !important;
  }

  .ps-xxl-58 {
    padding-left: 5.8rem !important;
  }

  .ps-xxl-59 {
    padding-left: 5.9rem !important;
  }

  .ps-xxl-60 {
    padding-left: 6rem !important;
  }

  .ps-xxl-61 {
    padding-left: 6.1rem !important;
  }

  .ps-xxl-62 {
    padding-left: 6.2rem !important;
  }

  .ps-xxl-63 {
    padding-left: 6.3rem !important;
  }

  .ps-xxl-64 {
    padding-left: 6.4rem !important;
  }

  .ps-xxl-65 {
    padding-left: 6.5rem !important;
  }

  .ps-xxl-66 {
    padding-left: 6.6rem !important;
  }

  .ps-xxl-67 {
    padding-left: 6.7rem !important;
  }

  .ps-xxl-68 {
    padding-left: 6.8rem !important;
  }

  .ps-xxl-69 {
    padding-left: 6.9rem !important;
  }

  .ps-xxl-70 {
    padding-left: 7rem !important;
  }

  .ps-xxl-71 {
    padding-left: 7.1rem !important;
  }

  .ps-xxl-72 {
    padding-left: 7.2rem !important;
  }

  .ps-xxl-73 {
    padding-left: 7.3rem !important;
  }

  .ps-xxl-74 {
    padding-left: 7.4rem !important;
  }

  .ps-xxl-75 {
    padding-left: 7.5rem !important;
  }

  .ps-xxl-76 {
    padding-left: 7.6rem !important;
  }

  .ps-xxl-77 {
    padding-left: 7.7rem !important;
  }

  .ps-xxl-78 {
    padding-left: 7.8rem !important;
  }

  .ps-xxl-79 {
    padding-left: 7.9rem !important;
  }

  .ps-xxl-80 {
    padding-left: 8rem !important;
  }

  .ps-xxl-81 {
    padding-left: 8.1rem !important;
  }

  .ps-xxl-82 {
    padding-left: 8.2rem !important;
  }

  .ps-xxl-83 {
    padding-left: 8.3rem !important;
  }

  .ps-xxl-84 {
    padding-left: 8.4rem !important;
  }

  .ps-xxl-85 {
    padding-left: 8.5rem !important;
  }

  .ps-xxl-86 {
    padding-left: 8.6rem !important;
  }

  .ps-xxl-87 {
    padding-left: 8.7rem !important;
  }

  .ps-xxl-88 {
    padding-left: 8.8rem !important;
  }

  .ps-xxl-89 {
    padding-left: 8.9rem !important;
  }

  .ps-xxl-90 {
    padding-left: 9rem !important;
  }

  .ps-xxl-91 {
    padding-left: 9.1rem !important;
  }

  .ps-xxl-92 {
    padding-left: 9.2rem !important;
  }

  .ps-xxl-93 {
    padding-left: 9.3rem !important;
  }

  .ps-xxl-94 {
    padding-left: 9.4rem !important;
  }

  .ps-xxl-95 {
    padding-left: 9.5rem !important;
  }

  .ps-xxl-96 {
    padding-left: 9.6rem !important;
  }

  .ps-xxl-97 {
    padding-left: 9.7rem !important;
  }

  .ps-xxl-98 {
    padding-left: 9.8rem !important;
  }

  .ps-xxl-99 {
    padding-left: 9.9rem !important;
  }

  .ps-xxl-100 {
    padding-left: 10rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
svg:not(:root).svg-inline--fa {
  overflow: visible;
}

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

.svg-inline--fa.fa-lg {
  vertical-align: -0.225em;
}

.svg-inline--fa.fa-w-1 {
  width: 0.0625em;
}

.svg-inline--fa.fa-w-2 {
  width: 0.125em;
}

.svg-inline--fa.fa-w-3 {
  width: 0.1875em;
}

.svg-inline--fa.fa-w-4 {
  width: 0.25em;
}

.svg-inline--fa.fa-w-5 {
  width: 0.3125em;
}

.svg-inline--fa.fa-w-6 {
  width: 0.375em;
}

.svg-inline--fa.fa-w-7 {
  width: 0.4375em;
}

.svg-inline--fa.fa-w-8 {
  width: 0.5em;
}

.svg-inline--fa.fa-w-9 {
  width: 0.5625em;
}

.svg-inline--fa.fa-w-10 {
  width: 0.625em;
}

.svg-inline--fa.fa-w-11 {
  width: 0.6875em;
}

.svg-inline--fa.fa-w-12 {
  width: 0.75em;
}

.svg-inline--fa.fa-w-13 {
  width: 0.8125em;
}

.svg-inline--fa.fa-w-14 {
  width: 0.875em;
}

.svg-inline--fa.fa-w-15 {
  width: 0.9375em;
}

.svg-inline--fa.fa-w-16 {
  width: 1em;
}

.svg-inline--fa.fa-w-17 {
  width: 1.0625em;
}

.svg-inline--fa.fa-w-18 {
  width: 1.125em;
}

.svg-inline--fa.fa-w-19 {
  width: 1.1875em;
}

.svg-inline--fa.fa-w-20 {
  width: 1.25em;
}

.svg-inline--fa.fa-pull-left {
  margin-right: 0.3em;
  width: auto;
}

.svg-inline--fa.fa-pull-right {
  margin-left: 0.3em;
  width: auto;
}

.svg-inline--fa.fa-border {
  height: 1.5em;
}

.svg-inline--fa.fa-li {
  width: 2em;
}

.svg-inline--fa.fa-fw {
  width: 1.25em;
}

.fa-layers svg.svg-inline--fa {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.fa-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: 1em;
}

.fa-layers svg.svg-inline--fa {
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.fa-layers-text, .fa-layers-counter {
  display: inline-block;
  position: absolute;
  text-align: center;
}

.fa-layers-text {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.fa-layers-counter {
  background-color: #ff253a;
  border-radius: 1em;
  box-sizing: border-box;
  color: #fff;
  height: 1.5em;
  line-height: 1;
  max-width: 5em;
  min-width: 1.5em;
  overflow: hidden;
  padding: 0.25em;
  right: 0;
  text-overflow: ellipsis;
  top: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

.fa-layers-bottom-right {
  bottom: 0;
  right: 0;
  top: auto;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}

.fa-layers-bottom-left {
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.fa-layers-top-right {
  right: 0;
  top: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

.fa-layers-top-left {
  left: 0;
  right: auto;
  top: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  position: relative;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.svg-inline--fa.fa-stack-1x {
  height: 1em;
  width: 1.25em;
}

.svg-inline--fa.fa-stack-2x {
  height: 2em;
  width: 2.5em;
}

.fa-inverse {
  color: #fff;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.svg-inline--fa .fa-primary {
  fill: var(--fa-primary-color, currentColor);
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa .fa-secondary {
  fill: var(--fa-secondary-color, currentColor);
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-primary {
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-secondary {
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
  fill: black;
}

.fad.fa-inverse {
  color: #fff;
}

/*@import "../../../node_modules/bootstrap/scss/functions";
@import "../../../node_modules/bootstrap/scss/variables";
*/
:root {
  --fa-primary-color: #707086;
  --fa-secondary-color: #e9a07b;
  --fa-secondary-opacity: 1;
}

.fa-layers-bottom-right {
  left: auto;
}

svg {
  fill: currentColor;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #101135;
}
.link-primary:hover, .link-primary:focus {
  color: #0d0e2a;
}

.link-secondary {
  color: #dA6123;
}
.link-secondary:hover, .link-secondary:focus {
  color: #e1814f;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.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;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.ui-helper-hidden-accessible {
  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;
}

.sf-autocomplete {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}
.sf-autocomplete .ui-menu-item {
  position: relative;
  display: block;
}
.sf-autocomplete .ui-menu-item:first-child .ui-menu-item-wrapper {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.sf-autocomplete .ui-menu-item:last-child .ui-menu-item-wrapper {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.sf-autocomplete .ui-menu-item + .sf-autocomplete .ui-menu-item .ui-menu-item-wrapper {
  border-top-width: 0;
}
.sf-autocomplete .ui-menu-item + .sf-autocomplete .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
  margin-top: -1px;
  border-top-width: 1px;
}
.sf-autocomplete .ui-menu-item-wrapper {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.sf-autocomplete .ui-menu-item-wrapper.ui-state-active {
  z-index: 2;
  color: #fff;
  background-color: #101135;
  border-color: #101135;
}

:root {
  --unnamed-color-ffffff: #ffffff;
  --top-banner-background: transparent linear-gradient(0deg, $secondary 0%, $primary 62%) 0% 0% no-repeat padding-box;
  /* Font/text values */
  --unnamed-font-family-cooper-hewitt-thin: "CooperHewitt Thin", sans-serif;
  --unnamed-font-family-cooper-hewitt: "Cooper Hewitt Book", sans-serif;
  --unnamed-font-family-cooper-hewitt-book: "Cooper Hewitt Book",sans-serif;
  --unnamed-font-family-cooper-hewitt-light: "Cooper Hewitt Light",sans-serif;
  --unnamed-font-family-cooper-hewitt-medium: "Cooper Hewitt Medium",sans-serif;
  --unnamed-font-family-cooperhewitt-bold: "Cooper Hewitt Bold", sans-serif;
  --unnamed-font-family-cooperhewitt-semibold: "Cooper Hewitt semibold", sans-serif;
  --unnamed-font-family-plantin-mt-pro: "plantin", sans-serif;
  --unnamed-font-family-plantin-mt-pro-light: "plantin", Light, sans-serif;
  --unnamed-font-style-normal: normal;
  --unnamed-font-style-italic: italic;
  --unnamed-font-weight-300: 300;
  --unnamed-font-weight-400: 400;
  --unnamed-font-weight-600: 600;
  --unnamed-font-weight-normal: normal;
  --unnamed-font-size-11: 11px;
  /*clamp(11px, 0.75vw, 100px);*/
  --unnamed-font-size-12: 12px;
  /*clamp(11px, 0.75vw, 100px);*/
  --unnamed-font-size-14: 14px;
  /*clamp(15px, 0.9375vw, 100px);*/
  --unnamed-font-size-15: 15px;
  /*clamp(15px, 0.9375vw, 100px);*/
  --unnamed-font-size-16: 16px;
  /*clamp(15px, 1vw, 100px);*/
  --unnamed-font-size-18: 18px;
  /*clamp(16px, 1.125vw, 100px);*/
  --unnamed-font-size-20: 20px;
  /*clamp(18px, 1.25vw, 100px);*/
  --unnamed-font-size-24: 24px;
  /*clamp(20px, 1.5vw, 100px);*/
  --unnamed-font-size-28: 28px;
  /*clamp(22px, 1.75vw, 100px);*/
  --unnamed-font-size-30: 30px;
  /* clamp(26px, 1.875vw, 100px); */
  --unnamed-font-size-34: 34px;
  /* clamp(30px, 2.125vw, 100px); */
  --unnamed-font-size-45: 45px;
  /* clamp(40px, 2.8125vw, 100px); */
  --unnamed-font-size-46: 46px;
  /* clamp(40px, 2.875vw, 100px); */
  --unnamed-font-size-57: 57px;
  /* clamp(50px, 3.56vw, 100px); */
  --unnamed-font-size-64: 64px;
  /* clamp(60px, 4vw, 100px); */
  --unnamed-character-spacing-0: 0px;
  --unnamed-character-spacing-0-5: 0.5px;
  --unnamed-character-spacing-0-6: 0.6px;
  --unnamed-character-spacing-0-07: 0.07px;
  --unnamed-character-spacing-0-09: 0.09px;
  --unnamed-character-spacing-0-10: 0.10px;
  --unnamed-character-spacing-0-12: 0.12px;
  --unnamed-character-spacing-0-14: 0.14px;
  --unnamed-character-spacing-0-15: 0.15px;
  --unnamed-character-spacing-0-16: 0.16px;
  --unnamed-character-spacing-0-25: 0.25px;
  --unnamed-character-spacing-0-28: 0.28px;
  --unnamed-character-spacing-0-32: 0.32px;
  --unnamed-character-spacing-0-75: 0.75px;
  --unnamed-character-spacing-1-32: 1.32px;
  --unnamed-line-spacing-18: 18px;
  --unnamed-line-spacing-20: 20px;
  --unnamed-line-spacing-22: 22px;
  --unnamed-line-spacing-24: 24px;
  --unnamed-line-spacing-26: 26px;
  --unnamed-line-spacing-28: 28px;
  --unnamed-line-spacing-29: 29px;
  --unnamed-line-spacing-32: 32px;
  --unnamed-line-spacing-36: 36px;
  --unnamed-line-spacing-37: 37px;
  --unnamed-line-spacing-38: 38px;
  --unnamed-line-spacing-42-25: 42.25px;
  --unnamed-line-spacing-43: 43px;
  --unnamed-line-spacing-52: 52px;
  --unnamed-line-spacing-62: 62px;
  --unnamed-line-spacing-63: 63px;
  --unnamed-line-spacing-65: 65px;
  --unnamed-line-spacing-82: 82px;
  --unnamed-line-spacing-42-25434112548828: 42.25434112548828px;
  --unnamed-line-spacing-36-000003814697266: 36.000003814697266px;
  --unnamed-text-transform-uppercase: uppercase;
  --unnamed-text-transform-capitalize: capitalize;
  --unnamed-text-transform-titlecase: titlecase;
  /* Boxing styles */
  --container-padding-inline-mobile: 38px;
  --container-padding: 0 32px;
  --container-max-width: 1300px;
  --container-margin: 0 auto;
  --border-radius-base: 20px;
  --border-radius-base-mobile: 15px;
  --border-radius-right: 0px var(--border-radius-base) var(--border-radius-base) 0px;
  --border-radius-left: var(--border-radius-base) 0px 0px var(--border-radius-base);
  --border-radius-right-mobile: 0px var(--border-radius-base-mobile) var(--border-radius-base-mobile) 0px;
  --border-radius-left-mobile: var(--border-radius-base-mobile) 0px 0px var(--border-radius-base-mobile);
  /* Override default font color */
  --bs-body-color: $primary;
  --bs-body-font-size: 18px;
  --bs-body-line-height: 32px;
}

html, body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  max-width: 100%;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

.skip-to-main {
  position: absolute;
  text-decoration: none;
  background: #ffc;
  padding: 0.2em;
  z-index: 10;
}

/* Set core body defaults */
body {
  /*    height: 100vh;
  */
  margin: 0;
  overflow-x: hidden;
  width: 100%;
}

.container {
  padding: 0 32px;
  max-width: 1372px;
  margin: 0 auto;
}

/*@media (max-width: 991px) {
    .container {
        padding-inline: 38px;
    }
}
*/
#main-content {
  padding-top: 86px;
}

/* Home Page Sections */
.home-page-2__sections_2 {
  margin-top: 371px;
}

@media screen and (max-width: 991px) {
  .home-page-2__sections_2 {
    margin-top: 137px;
  }
}
.home-page-2__sections_3 {
  margin-top: 355px;
}

@media screen and (max-width: 991px) {
  .home-page-2__sections_3 {
    margin-top: 188px;
  }
}
.home-page-2__sections_4 {
  margin-top: 260px;
}

.home-page-2__sections_5 {
  margin-top: 375px;
  padding: 0 36px;
}

.home-page-2__sections_5_part_1 {
  max-width: 1300px;
  margin: 0 auto;
}

.home-page-2__sections_5_part_1 {
  max-width: 1300px;
  margin: 245.5px auto 0px auto;
}

.home-page-2__sections_6 {
  /*margin-top: 57.85px;*/
  margin-top: 384.5px;
}

.home-page-2__sections_7 {
  margin-top: 368px;
}

.home-page-2__sections_8 {
  margin-top: 388.48px;
}

.home-page-2__sections_9 {
  margin-top: 408.43px;
}

.home-page-2__sections_10 {
  margin-top: 350px;
  margin-bottom: 424px;
}

@media screen and (max-width: 991px) {
  .home-page-2__sections_8 {
    margin-top: 163px;
  }

  .home-page-2__sections_9 {
    margin-top: 200px;
  }

  .home-page-2__sections_10 {
    margin-top: 184px;
    margin-bottom: 260px;
  }
}
.our-services h1, .our-services .h1 {
  font-size: 64px;
  line-height: 52px;
}

.capabilities-case-study {
  margin-bottom: 240px;
}

@media screen and (max-width: 991px) {
  .capabilities-our-services {
    position: relative;
    padding-bottom: 243px;
  }

  .our-services h1, .our-services .h1 {
    font-size: 34px;
    line-height: 52px;
  }

  .capabilities-case-study {
    margin-bottom: 150px;
  }
}
/*about us */
.guiding-principles {
  margin-top: 302px;
}
.guiding-principles .cards-overlay-image {
  position: absolute;
  width: 95vw;
  height: 1205px;
  left: 69%;
  translate: -33% 4%;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .guiding-principles {
    margin-top: 166px;
  }
  .guiding-principles .cards-overlay-image {
    position: absolute;
    width: 139vw;
    height: 764px;
    left: 50%;
    translate: -28% -5%;
  }
}
.insights-listing {
  margin-top: 195px;
  margin-bottom: 353px;
  position: relative;
}
.insights-listing .overlay-image {
  position: absolute;
  width: 1307px;
  height: 1646px;
  bottom: -350px;
  translate: -30% 25%;
  rotate: 254deg;
  z-index: -1;
  left: 0;
}
.insights-listing .overlay-image img {
  object-fit: contain;
  height: 100%;
  object-position: top;
}

@media screen and (max-width: 991px) {
  .insights-listing .overlay-image {
    display: none;
  }
}
.anchor:before {
  content: "";
  display: block;
  height: 170px;
  margin: -170px 0 0;
}

/*** HEADER ***/
header.page-header {
  height: auto;
  padding: 0 36px;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: white;
  z-index: 99999;
}
header.page-header button.search-item {
  border: 0;
  background: none;
  padding: 0;
  color: #101135;
}
header.page-header button.search-item:hover {
  color: #dA6123;
}
header.page-header button.search-item svg {
  fill: inherit;
}
header.page-header button.search-item svg path {
  fill: inherit;
}
header.page-header .search-filter__wrapper {
  position: absolute;
  max-width: inherit;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  height: 54px;
  width: 0;
  opacity: 0;
  transition: all 400ms ease;
  background-color: #ffffff;
}
header.page-header .search-filter__wrapper .search-filter_search-wrapper {
  position: relative;
  border: 1px solid #101135;
  display: flex;
  align-items: center;
  margin-right: -5px;
}
header.page-header .search-filter__wrapper .search-filter__input {
  display: block;
  color: #101135;
  border: none;
  font-size: 20px;
  line-height: 44px;
  font-family: "Cooper Hewitt Book", sans-serif;
  height: 54px;
  letter-spacing: 0;
  padding: 16px 17px 16px 17px;
  outline: none;
}
header.page-header .search-filter__wrapper .btn-search {
  border: none;
  background-color: transparent;
  /* width: 21.846px;
  height: 22.232px;
      position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 21px;
  display: flex;
  align-items: center;*/
  right: 5px;
  width: 21.846px;
  height: 22.232px;
  display: none;
}
header.page-header .search-filter__wrapper .btn-search:hover {
  color: #dA6123;
}
header.page-header .search-filter__wrapper svg.search-filter__icon {
  position: inherit;
  top: inherit;
  translate: inherit;
  right: auto;
  cursor: inherit;
  width: 21.846px;
  height: 22.232px;
  fill: currentColor;
}
header.page-header .search-filter__wrapper svg.search-filter__icon path {
  fill: inherit;
}
header.page-header .search-filter__wrapper.show {
  opacity: 1;
  width: 100%;
}
header.page-header .search-filter__wrapper.show .btn-search {
  display: flex;
}

.header-content {
  align-items: center;
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 1300px;
  transition: all 0.3s ease;
  height: 140px;
}

.logo-container {
  align-items: center;
  display: flex;
  height: 100%;
  width: 50%;
}
.logo-container a {
  display: block;
  width: 258px;
  transition: width 0.5s ease-in-out;
}
.logo-container img {
  width: 100%;
  border-radius: 0;
}

.header-condensed .header-content {
  height: 110px;
}
.header-condensed .header-content .logo-container a {
  width: 206px;
}

@media screen and (max-width: 991px) {
  .header-condensed .header-content {
    height: 70px;
  }
  .header-condensed .header-content .logo-container a {
    width: 166.92px;
  }
}
.mobile-nav-container {
  display: none;
}

.nav-container {
  align-items: center;
  color: #2e2b41;
  display: flex;
  font-size: 16px;
  height: 100%;
  justify-content: space-between;
  letter-spacing: 0.16px;
  line-height: 24px;
  width: 50%;
  position: relative;
}

.nav-progress-container {
  background-color: #eaeaea;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.nav-progress-bar {
  --scrollbar-background: #eaeaea;
  width: 0;
  height: 3px;
  background: #dA6123;
}
.nav-progress-bar::before {
  background-color: var(--scrollbar-background-start);
  border-radius: 50%;
  bottom: -5px;
  content: "";
  height: 12px;
  left: -6px;
  position: absolute;
  width: 12px;
}
.nav-progress-bar::after {
  background-color: var(--scrollbar-background-end);
  border-radius: 50%;
  bottom: -5px;
  content: "";
  height: 12px;
  position: absolute;
  right: -6px;
  width: 12px;
}
.nav-progress-bar .scrollbar-end::after {
  background-color: #dA6123;
}

/*** HEADER ***/
.nav-container a,
.nav-item-content-container-mobile a {
  color: #2e2b41;
  transition: color 0.3s ease-in-out;
  text-align: left;
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 1;
}

.nav-container .introduction a {
  font-family: "Cooper Hewitt Book", sans-serif;
}

.nav-container .item > .title a.inverted {
  color: #2e2b41;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-container .item > .title a.inverted:hover {
  color: #dA6123;
}

.nav-container .search-item:hover {
  color: #dA6123;
  cursor: pointer;
}

.nav-container .item > .title > a.inverted.active,
.nav-container .item > .title > a.inverted.active:hover {
  color: #dA6123;
}

.burger-menu {
  position: relative;
  width: 28px;
  height: 23.688px;
}
.burger-menu .svg-menu {
  opacity: 0;
  transition: opacity 400ms ease-out;
  position: absolute;
  left: 0;
  top: 0;
}
.burger-menu .svg-menu.active {
  opacity: 1;
}

.nav-item-content-container-mobile {
  display: none;
}

.nav-item-content-container {
  display: none;
  background-color: #F7F7F7;
  left: 0;
  position: absolute;
  top: 143px;
  width: 100%;
  z-index: 2;
}
.nav-item-content-container.open {
  position: fixed;
  /*height: 80vh;
  max-height: 850px;
  min-height: 400px;*/
  overflow-y: scroll;
  display: block;
  /*height: calc(100vh - 113px);*/
  min-height: 400px;
  max-height: calc(100vh - 113px);
}

.nav-item-content-inner-container {
  -webkit-column-gap: 61px;
          column-gap: 61px;
  display: grid;
  grid-template-columns: 350px 2fr;
  margin: 0 auto;
  max-width: 1372px;
  padding: 75px 36px 60px;
}

.nav-item-content-inner-container .MG-btn {
  font-size: 16px;
}

.nav-item-content-inner-container .introduction .title a.inverted {
  color: #101135;
  font-size: 28px;
  line-height: 43px;
  letter-spacing: 0;
  text-transform: none;
}

.nav-item-content-inner-container .introduction .title a:hover {
  color: #dA6123;
}

.nav-item-content-inner-container .introduction .description {
  color: #101135;
  font-size: 18px;
  letter-spacing: 0.09px;
  line-height: 32px;
  margin: 17px 0 32px;
}

.nav-item-content-inner-container .content {
  -webkit-column-gap: 28px;
          column-gap: 28px;
  display: grid;
  grid-template-columns: auto auto auto;
  overflow: hidden;
  row-gap: 30px;
}

.nav-item-content-inner-container .content .title a.inverted {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  border-bottom: solid 1px #eaeaea;
  color: #101135;
  display: -webkit-box;
  font-family: plantin;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.25px;
  line-height: 32px;
  overflow: hidden;
  padding-bottom: 5.5px;
  position: relative;
  text-overflow: ellipsis;
  text-transform: none;
  width: calc(100% + 43px);
}

.nav-item-content-inner-container .content .title a:hover {
  color: #dA6123;
}

.nav-item-content-inner-container .content ul {
  list-style-type: none;
  padding: 0;
  width: 90%;
}

.nav-item-content-inner-container .content ul li {
  padding: 0;
  margin: 0;
}

.nav-item-content-inner-container .content li a.inverted {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.1px;
  list-style: none;
  margin-bottom: 25px;
  color: #2e2b41;
  text-transform: uppercase;
  display: block;
  font-size: 15px;
  line-height: 20px;
  -webkit-transform: translateY(0.3166666667em);
          transform: translateY(0.3166666667em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
}
.nav-item-content-inner-container .content li a.inverted::before {
  content: "";
  margin-top: -5px;
  display: block;
  height: 0;
}

.nav-item-content-inner-container .content li:first-child {
  margin-top: 27.5px;
}

.nav-item-content-inner-container .content li a:hover {
  color: #dA6123;
}

.nav-item-content-container .nav-footer-outer-wrapper {
  background: #eaeaea;
  padding: 0 36px;
  position: relative;
  width: 100%;
}

.nav-item-content-container .nav-footer-outer-wrapper::before {
  content: "";
  position: absolute;
  width: 36px;
}

.nav-item-content-container .nav-footer {
  padding: 46px 0;
  display: grid;
  grid-template-columns: 3fr 1fr;
  -webkit-column-gap: 66px;
          column-gap: 66px;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}
.nav-item-content-container .nav-footer .button-primary {
  font-size: 16px;
  display: flex;
  align-self: center;
}
.nav-item-content-container .nav-footer .MG-btn {
  font-size: 16px;
}

.nav-item-content-container .nav-footer .nav-footer-left .title a.inverted {
  border-bottom: solid 1px #d0d0d0;
  color: #101135;
  display: inline-block;
  font-family: "plantin", serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.25px;
  line-height: 26px;
  padding-bottom: 10.5px;
  text-transform: none;
  width: 100%;
}

.nav-item-content-container .nav-footer .nav-footer-left .title a:hover {
  color: #dA6123;
}

.nav-item-content-container .nav-footer .nav-footer-left .case-study-wrapper {
  display: flex;
  gap: 12%;
  margin-top: 16px;
}

.nav-item-content-container .nav-footer .nav-footer-left .case-study-wrapper .case-study {
  flex: 1;
}

.nav-item-content-container .nav-footer .nav-footer-left .case-study a.inverted {
  color: #2e2b41;
  font-size: 15px;
  letter-spacing: 0.1px;
  line-height: 20px;
  font-family: "Cooper Hewitt Book", sans-serif;
}

.nav-item-content-container .nav-footer .nav-footer-left .case-study a:hover {
  color: #dA6123;
}

.nav-item-content-container.nav-item-Insights .content {
  /*grid-template-rows: minmax(min-content, 60px) minmax(min-content, 60px) auto;*/
  grid-template-rows: repeat(5, 45px);
}

.nav-item-content-container.nav-item-Insights .item-card:nth-child(1),
.nav-item-content-container.nav-item-Insights .item-card:nth-child(2) {
  grid-row-start: 1;
  grid-row-end: 6;
}

@media screen and (max-width: 991px) {
  header, .header-content {
    height: 70px;
  }

  header-condensed .header-content {
    height: 70px;
  }

  .nav-container,
.nav-item-content-container {
    display: none;
  }

  .header-content {
    justify-content: space-between;
  }

  .logo-container {
    width: 50%;
  }
  .logo-container a {
    width: 166.92px;
  }
  .logo-container img {
    width: 100%;
  }

  .mobile-nav-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
  }

  .nav-item-content-container-mobile {
    display: none;
    transition: all 0.5s ease-in-out;
  }
  .nav-item-content-container-mobile.open {
    display: flex;
    flex-direction: column;
    gap: 31px;
    background: #f4f4f4;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 55px 36px 128px;
    height: 100vh;
    overflow: scroll;
  }
  .nav-item-content-container-mobile .nav-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }
  .nav-item-content-container-mobile .nav-item .title a.inverted-mobile {
    color: #101135;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 43px;
    text-transform: none;
    font-weight: normal;
    font-family: "Cooper Hewitt Book";
  }
  .nav-item-content-container-mobile .nav-item .title-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .nav-item-content-container-mobile .nav-item .title-wrapper .title a.inverted-mobile {
    color: #101135;
    font-size: 28px;
    line-height: 43px;
  }
  .nav-item-content-container-mobile .nav-item .title-wrapper.active .title a.inverted-mobile {
    color: #dA6123;
  }
  .nav-item-content-container-mobile .nav-item .arrow svg {
    color: #101135;
    fill: #101135;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    width: 35px;
    height: 35px;
    transition: all 0.3s ease-in-out;
  }
  .nav-item-content-container-mobile .nav-item .arrow.active svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    color: #dA6123;
    fill: #dA6123;
  }
  .nav-item-content-container-mobile .nav-item .nav-subitem-container a.inverted {
    font-family: "Cooper Hewitt Book", sans-serif;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 44px;
    text-transform: none;
    color: #dA6123;
    letter-spacing: 0;
  }
  .nav-item-content-container-mobile .nav-item .nav-subitem-container a.inverted.third-level {
    text-transform: uppercase;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.1px;
  }
  .nav-item-content-container-mobile .nav-item .nav-subitem-container {
    transition: none;
    height: 0;
    opacity: 0;
  }
  .nav-item-content-container-mobile .nav-item .nav-subitem-container.open {
    opacity: 1;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transition: opacity 800ms ease-in;
  }
  .nav-item-content-container-mobile .nav-subitem-container ul {
    list-style-type: none;
    padding: 0;
    margin-left: 0;
  }
  .nav-item-content-container-mobile .nav-subitem-container ul li {
    padding: 0;
    margin: 0;
  }

  .nav-subitem-container {
    display: none;
    color: #dA6123;
    font-size: 22px;
    line-height: 28px;
    margin-top: 10px;
    /*display: block*/
    /* For transitions  - can't do this because they need to be hidden. */
  }
  .nav-subitem-container.open {
    display: block;
  }
  .nav-subitem-container .nav-subitem {
    margin-bottom: 12px;
  }
}
/*CooperHewitt*/
@font-face {
  font-family: "Cooper Hewitt Book";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Book"), url("../fonts/CooperHewitt-Book.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Thin";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Thin"), url("../fonts/CooperHewitt-Thin.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Thin Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Thin Italic"), url("../fonts/CooperHewitt-ThinItalic.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Light";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Light"), url("../fonts/CooperHewitt-Light.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Light Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Light Italic"), url("../fonts/CooperHewitt-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Book Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Book Italic"), url("../fonts/CooperHewitt-BookItalic.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Medium"), url("../fonts/CooperHewitt-Medium.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Medium Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Medium Italic"), url("../fonts/CooperHewitt-MediumItalic.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Semibold";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Semibold"), url("../fonts/CooperHewitt-Semibold.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Semibold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Semibold Italic"), url("../fonts/CooperHewitt-SemiboldItalic.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Bold"), url("../fonts/CooperHewitt-Bold.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Bold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Bold Italic"), url("../fonts/CooperHewitt-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Heavy";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Heavy"), url("../fonts/CooperHewitt-Heavy.woff") format("woff");
}
@font-face {
  font-family: "Cooper Hewitt Heavy Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Cooper Hewitt Heavy Italic"), url("../fonts/CooperHewitt-HeavyItalic.woff") format("woff");
}
body {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 1.125rem;
  /*18px*/
  line-height: 1.78rem;
  /*32px*/
  letter-spacing: 0.09px;
  color: #101135;
}

@media (max-width: 991px) {
  body {
    font-size: 0.9375rem;
    /*15px*/
    line-height: 1.87rem;
    /*28px*/
    letter-spacing: 0.07px;
  }
}
body strong {
  font-family: "Cooper Hewitt Semibold", sans-serif, sans-serif;
  font-weight: normal;
}

/** Should Always be the top heading and describe the page **/
h1, .h1 {
  font-family: "Cooper Hewitt Book", sans-serif;
  /*font-weight:300;*/
  font-size: 4rem;
  /*57px*/
  line-height: 82px;
}

h2, .h2 {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-weight: normal;
  font-size: 2.875rem;
  /*46px*/
  line-height: 62px;
}

h3, .h3 {
  font-family: "Cooper Hewitt Semibold", sans-serif;
  font-weight: normal;
  font-size: 1.875rem;
  /*30px*/
  line-height: 36px;
  letter-spacing: 0.75px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h4, .h4 {
  font-family: "plantin", serif;
  font-weight: 300;
  font-size: 1.875rem;
  /*30px*/
  text-transform: none;
  letter-spacing: 0.75px;
  line-height: 42.25px;
}

h5, .h5 {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-weight: normal;
  font-size: 1.25rem;
  /*20px*/
  text-transform: uppercase;
  line-height: 38px;
}

h6, .h6 {
  font-family: "plantin", serif;
  font-weight: 300;
  font-size: 1rem;
  /*16px*/
  color: #7E7F8F;
  font-style: italic;
}

@media (max-width: 991px) {
  /*page title*/
  h1, .h1 {
    font-family: "Cooper Hewitt Book", sans-serif;
    font-weight: 300;
    font-size: 2.125rem;
    /*34px*/
    line-height: 52px;
    letter-spacing: 0;
  }

  h2, .h2 {
    font-family: "Cooper Hewitt Book", sans-serif;
    font-weight: normal;
    font-size: 1.75rem;
    /*28px*/
    line-height: 43px;
  }

  h3, .h3 {
    font-family: "Cooper Hewitt Semibold", sans-serif;
    font-weight: normal;
    font-size: 1.5rem;
    /*24px*/
    line-height: 29px;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  h4, .h4 {
    font-family: "plantin", serif;
    font-weight: 300;
    font-size: 1.5rem;
    /*24px*/
    line-height: 37px;
    letter-spacing: 0.6px;
    margin-bottom: 26px;
  }

  h5, .h5 {
    font-family: "Cooper Hewitt Book", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  /*image caption*/
  h6, .h6 {
    font-family: "plantin", serif;
    font-weight: 300;
    font-size: 1rem;
    /*16px*/
    color: #7E7F8F;
    font-style: italic;
  }
}
/*a:not([class^="sf"]):not([class^="rp"]):not([class="navbar-button"]),*/
a {
  text-decoration: none;
  color: #dA6123;
  transition: color 0.3s ease-in-out;
  text-align: left;
  font-weight: normal;
  font-family: "Cooper Hewitt Medium", sans-serif;
  text-transform: uppercase;
  opacity: 1;
  /*font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;*/
}

a:hover {
  color: #101135;
  cursor: pointer;
}

a.site-link::after {
  content: "\203a";
  padding-left: 3px;
}

.search-result-item__content .h3:not(a),
a:not(.link-styled):not(.site-link):not([class=navbar-button]) {
  text-transform: none;
}

p {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 1.125rem;
  /*18px*/
  line-height: 1.78em;
  /*32px*/
  letter-spacing: 0.09px;
}

@media (max-width: 991px) {
  p {
    font-size: 0.9375rem;
    /*15px*/
    line-height: 1.87em;
    /*28px*/
    letter-spacing: 0.07px;
  }
}
ul {
  padding-left: 22px;
  margin-bottom: 30px;
}

li {
  padding-left: 11px;
  margin-bottom: 12px;
}

li::marker {
  color: #dA6123;
  font-size: 18px;
}

.cards__content li {
  margin-bottom: 10px;
}

.highlight {
  color: #dA6123;
}

.btn {
  text-transform: uppercase;
  color: #101135;
  background-color: transparent;
  padding: 31px 63px 31px 50px;
}

.btn:focus {
  outline: unset;
  box-shadow: unset;
}

.btn-link {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}

/*.button-placeholder a {
    text-decoration: none;
    color: $primary;
    transition: color 0.5s ease-in-out;
    text-align: left;
    font-family: $font-family-primary-medium;
    font-size: 0.875rem;
    letter-spacing: 0.875em;
    text-transform: uppercase;
    opacity: 1;
    line-height: 1.375em;
}

.button-placeholder:hover {
    color: $secondary;
    cursor: pointer;
}
*/
.button-placeholder button {
  background: none;
  border: 0 none;
}

a.button-primary {
  color: #101135;
  text-decoration: none;
  transition: color 0.4s ease-in-out;
  text-align: left;
  font-weight: normal;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 1;
  font-size: 20px;
  line-height: 38px;
}

/*div inside the a tag*/
.MG-btn {
  border: 1px solid #ffffff;
  -webkit-column-gap: 10.7px;
          column-gap: 10.7px;
  margin-bottom: 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 13px 0 0;
  position: relative;
  color: inherit;
  min-height: 77px;
}
.MG-btn:hover {
  color: unset;
}
.MG-btn span {
  margin-bottom: 0;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  opacity: 1;
  font-size: 20px;
  line-height: 38px;
  letter-spacing: 0;
  font-size: 20px;
  line-height: 38px;
  -webkit-transform: translateY(0.6em);
          transform: translateY(0.6em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
  padding-top: 0 !important;
}
.MG-btn span::before {
  content: "";
  margin-top: -21px;
  display: block;
  height: 0;
}
.MG-btn span.button-primary-text {
  display: block;
}
.MG-btn span.button-secondary-text {
  display: none;
}
.MG-btn svg, .MG-btn path, .MG-btn circle {
  /* color: currentColor;
  fill: currentColor;*/
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-property: all;
}
.MG-btn svg:first-child {
  position: relative;
  right: 5px;
}
.MG-btn:hover svg g {
  opacity: 1;
}
.MG-btn:hover svg:first-child path, .MG-btn:hover svg:first-child circle {
  fill: #dA6123;
}
.MG-btn:hover path {
  stroke: #dA6123;
}
.MG-btn:hover span.button-primary-text {
  display: none;
}
.MG-btn:hover span.button-secondary-text {
  display: block;
}

.MG-btn-white-background {
  border-color: inherit;
  border-radius: 6px;
}
.MG-btn-white-background span {
  color: inherit;
}

button.MG-btn {
  border: none;
  background: none;
}

@media screen and (max-width: 991px) {
  .MG-btn {
    min-height: 73px;
  }
  .MG-btn span {
    font-size: 16px;
    line-height: 20px;
    -webkit-transform: translateY(0.275em);
            transform: translateY(0.275em);
    padding-top: 1px;
    font-family: "Cooper Hewitt Book", sans-serif;
    padding-top: 0 !important;
  }
  .MG-btn span::before {
    content: "";
    margin-top: -5px;
    display: block;
    height: 0;
  }
}
@media screen and (max-width: 438px) {
  .MG-btn span {
    font-size: 15px;
    line-height: 24px;
    -webkit-transform: translateY(0.45em);
            transform: translateY(0.45em);
    padding-top: 1px;
    font-family: "Cooper Hewitt Book", sans-serif;
    padding-top: 0 !important;
    letter-spacing: 0;
    white-space: normal;
    line-break: auto;
  }
  .MG-btn span::before {
    content: "";
    margin-top: -9px;
    display: block;
    height: 0;
  }
}
a.navbar-button {
  /* display: inline-block;*/
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Cooper Hewitt Medium", sans-serif;
  font-size: 11px;
  line-height: 28px;
  height: 43px;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  text-wrap: nowrap;
  text-decoration: none;
  padding: 6px 24px 6px 18px;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a.navbar-button:hover {
  color: #ffffff;
  text-decoration: none;
}

a.navbar-button span {
  margin-left: 10px;
}

/******* Image / Image Mask ********/
img {
  max-width: 100%;
}

.image-mask {
  position: relative;
}
.image-mask::before {
  content: "";
  display: block;
  height: 100%;
  inset: 0;
  mix-blend-mode: color;
  position: absolute;
  width: 100%;
  z-index: 1;
  background: transparent linear-gradient(0deg, #dA6123 0%, #c9683500 100%) 0% 0% no-repeat padding-box;
  pointer-events: none;
}
.image-mask::after {
  content: "";
  display: block;
}
.image-mask:not(:has(img))::before {
  background: none;
}

.team-member-sec-1-inner-wrapper .image-mask::before {
  background: transparent linear-gradient(0deg, #dA6123 0%, #c9683500 30%) 0% 0% no-repeat padding-box;
}

/* Content Main */
/****** Content Options *****/
/* two columns used on home, about , and content elements */
.content-options__outer-container .content-options__container {
  padding: 0 32px;
  max-width: 1372px;
  margin: 0 auto;
}
.content-options__outer-container .content-options__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.content-options__outer-container .content-options-image__direction {
  direction: rtl;
}
.content-options__outer-container .content-options-wrapper__content {
  color: #101135;
}

.guiding-principles .icon-three-cards .remove-holding-content__container {
  padding: 0;
  max-width: inherit;
  margin: 0;
}

.you-have-tried__container {
  padding: 0 36px;
  width: auto;
}

.you-have-tried__background-container {
  /*position: relative;
  width: calc(50% - 38px);*/
  position: relative;
  width: 1200px;
}

.you-have-tried__background {
  /*width: 70vw;*/
  /*margin-right: calc(50% - 50vw);*/
  position: absolute;
  top: -322.5px;
  left: -295px;
  z-index: -1;
  background: transparent 0% 0% no-repeat padding-box;
  background-size: contain;
}
.you-have-tried__background img {
  border-radius: 0;
}

.you-have-content__container {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  color: #101135;
}

.you-have-left_container {
  display: flex;
  justify-content: center;
}

.you-have-left_container h2, .you-have-left_container .h2 {
  max-width: 440px;
  font-size: 46px;
  font-weight: normal;
  line-height: 65px;
  letter-spacing: 0px;
  text-transform: none;
}

.you-have-right_container p {
  font-size: 18px;
  font-weight: normal;
  line-height: 32px;
  letter-spacing: 0.09px;
  max-width: 530px;
  margin: 0px;
  padding: 0px;
  margin-top: 15px;
}

.you-have-right_container p:first-of-type {
  margin-top: unset;
}

@media screen and (max-width: 991px) {
  .you-have-left_container {
    justify-content: start;
  }

  .you-have-tried__background {
    width: 100%;
    margin-right: calc(50% - 50vw);
    position: absolute;
    top: -250px;
    left: -150px;
    right: 0;
    height: 500px;
    max-height: 850px;
    z-index: -1;
    background: transparent 0% 0% no-repeat padding-box;
  }

  .you-have-tried-image {
    width: auto;
    height: 100%;
  }

  .you-have-left_container h2, .you-have-left_container .h2 {
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0px;
    line-height: 43px;
    max-width: unset;
  }

  .you-have-right_container {
    margin-top: 61px;
  }

  .you-have-right_container p {
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.07px;
    line-height: 28px;
    max-width: unset;
    margin-top: 15px;
  }

  .you-have-right_container p:first-of-type {
    margin-top: 0;
  }
}
/*end*/
/* Two column with image bleed on left / content on right */
.two-column {
  margin-top: 210px;
}
.two-column .outer-wrapper {
  height: auto;
  padding: 0 36px;
}
.two-column .inner-wrapper {
  height: auto;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}
.two-column .image-col {
  display: flex;
  position: relative;
  justify-content: end;
  margin-right: 97px;
  height: 460px;
}
.two-column .image-wrapper {
  width: 45vw;
  position: absolute;
}
.two-column .image-wrapper img {
  /*max-height: 646px;*/
  max-height: 731px;
  border-radius: 0 20px 20px 0;
  object-fit: cover;
  width: 100%;
}
.two-column .content-col {
  margin-left: -12px;
}
.two-column .content-col p {
  max-width: 820px;
}
.two-column .content-col div.MG-btn {
  background-color: transparent;
  border-radius: 6px;
  height: 77px;
  font-size: 20px;
  margin-top: 57px;
}

@media screen and (max-width: 991px) {
  .two-column {
    margin-top: 160px;
  }
  .two-column .image-col {
    display: block;
    margin: 0;
    height: 100%;
  }
  .two-column .content-wrapper {
    flex-direction: column;
  }
  .two-column .content-col {
    margin-top: 44px;
    margin-left: 0;
  }
  .two-column .content-col div.MG-btn {
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
    margin-top: 45px;
  }
  .two-column .image-wrapper {
    position: unset;
    width: calc(100% + 36px);
  }
  .two-column .image-wrapper img {
    width: 100%;
    position: relative;
    left: -36px;
    max-height: 679px;
    height: 200px;
  }
}
@media screen and (min-width: 1500px) {
  .two-column .content-col {
    min-height: 645px;
  }
}
/* CTA Content */
.call-to-action .call-to-action__container {
  padding: 0 36px;
  position: relative;
  width: auto;
}
.call-to-action .call-to-action-content__contaier {
  margin: 0 auto;
  max-width: 1300px;
  position: relative;
  width: 100%;
  color: #101135;
}
.call-to-action .call-to-action-layout__container {
  width: calc(50% - 38px);
}
.call-to-action .call-to-action-background {
  background: transparent linear-gradient(90deg, #dA6123 0%, #101135 65%) 0% 0% no-repeat padding-box;
  bottom: 0;
  position: absolute;
  border-radius: 20px 0px 0px 20px;
  right: 0;
  top: 0;
  width: 61%;
  height: 100%;
  z-index: -1;
}
.call-to-action .call-to-action-content__block .MG-btn {
  margin-top: 62.15px;
}
.call-to-action .call-to-action-layout__block {
  margin-right: calc(50% - 30vw);
  border-radius: 20px 0px 0px 20px;
}
.call-to-action .call-to-action-content__block {
  max-width: 881px;
  padding-top: 131px;
  padding-left: 109px;
  padding: 131px 0 119px 109px;
  color: #ffffff;
}
.call-to-action .call-to-action-content__block h2, .call-to-action .call-to-action-content__block .h2 {
  color: #ffffff;
  font-size: 46px;
  font-weight: normal;
  line-height: 62px;
}
.call-to-action .call-to-action-content__block p {
  color: #ffffff;
  padding-top: 23.85px;
}

@media screen and (max-width: 992px) {
  .call-to-action .call-to-action-layout__block {
    width: 96vw;
  }
  .call-to-action .call-to-action-content__block {
    padding: 75px 36px 84.98px 47px;
  }
  .call-to-action .call-to-action-content__block h2, .call-to-action .call-to-action-content__block .h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: normal;
    line-height: 43px;
  }
  .call-to-action .call-to-action-content__block p {
    padding-top: 20.35px;
  }
  .call-to-action .call-to-action-background {
    width: 100%;
    right: -36px;
    border-radius: 15px 0px 0px 15px;
  }
}
/* CTA Content with Image (making this mg-group-team but this could be used instead) */
.call-to-action-with-image {
  overflow: hidden;
}
.call-to-action-with-image .call-to-action__wrapper {
  position: relative;
  background: transparent linear-gradient(90deg, #dA6123 0%, #101135 85%) 0% 0% no-repeat padding-box;
  min-height: 539px;
  border-radius: 20px 0px 0px 20px;
  margin-block: 303px;
}
.call-to-action-with-image .call-to-action__wrapper::after {
  background: #101135;
  content: "";
  display: block;
  position: absolute;
  right: -50vw;
  top: 0;
  height: 100%;
  width: 50vw;
  margin-right: 1px;
}
.call-to-action-with-image .call-to-action__wrapper {
  display: grid;
  grid-template-columns: 1.3fr 3.3fr;
}
.call-to-action-with-image .call-to-action-image__direction {
  direction: rtl;
}
.call-to-action-with-image .call-to-action-wrapper__image {
  position: relative;
  width: calc(50vw - 58.75% - 128px);
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
  max-height: 497px;
  right: 128px;
  top: -96px;
}
.call-to-action-with-image .call-to-action-wrapper__image::after {
  padding-top: 497px;
}
.call-to-action-with-image .call-to-action-wrapper__image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.call-to-action-with-image .call-to-action__content {
  position: relative;
  padding-block: 80px;
  color: #ffffff;
}
.call-to-action-with-image .call-to-action__content h4, .call-to-action-with-image .call-to-action__content .h4 {
  margin-bottom: 36px;
}
.call-to-action-with-image .call-to-action__content h2, .call-to-action-with-image .call-to-action__content .h2 {
  font-size: 2.875rem;
  line-height: 1.35em;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.call-to-action-with-image .call-to-action__content p {
  margin-bottom: 38px;
}
.call-to-action-with-image .call-to-action__content h5, .call-to-action-with-image .call-to-action__content .h5 {
  margin-bottom: 28px;
}

@media screen and (max-width: 992px) {
  .call-to-action-with-image .call-to-action__wrapper {
    width: 100vw;
    margin-block: 259px 252px;
  }
  .call-to-action-with-image .call-to-action__wrapper::after {
    content: none;
  }
  .call-to-action-with-image .call-to-action__wrapper {
    grid-template-columns: 1fr;
    border-radius: 15px 0px 0px 15px;
  }
  .call-to-action-with-image .call-to-action-image__direction {
    direction: ltr;
  }
  .call-to-action-with-image .call-to-action-wrapper__image {
    left: -38px;
    margin-left: 0;
    margin-right: 0;
    margin-top: -200px;
    height: 280px;
    right: auto;
    top: 0;
    width: calc(100vw - 38px);
    border-radius: 0px 15px 15px 0px;
  }
  .call-to-action-with-image .call-to-action-wrapper__image::after {
    padding-top: 70.4%;
  }
  .call-to-action-with-image .call-to-action__content {
    left: 0;
    padding: 69px 47px 83px;
    width: calc(100vw - 38px);
  }
  .call-to-action-with-image .call-to-action__content h4, .call-to-action-with-image .call-to-action__content .h4 {
    margin-bottom: 23px;
  }
  .call-to-action-with-image .call-to-action__content h2, .call-to-action-with-image .call-to-action__content .h2 {
    font-size: 1.75rem;
    line-height: 1.5357em;
    margin-bottom: 23px;
  }
  .call-to-action-with-image .call-to-action__content p {
    font-size: 0.9375rem;
    line-height: 1.867;
    letter-spacing: 0.07em;
    margin-bottom: 39px;
  }
  .call-to-action-with-image .call-to-action-wrapper__image img {
    height: 280px;
  }
  .call-to-action-with-image .call-to-action .text-decoration-none {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
/* On the About Us page but should use the above call-to-action-with-image */
/* Content Page */
/*.content-page {
    .heading--intro {
        margin-top: -84px;


        .intro-image {
            position: relative;
            margin-right: 133px;
            border-radius: 0px 20px 20px 0px;
            overflow: hidden;
            text-align: right;
        }

        div.intro__wrapper {
            align-items: flex-start;
        }

        .intro-wrapper__text {
            letter-spacing: 0.09px;
            align-self: flex-start;
            margin-block: 184px 92px;
        }

        .heading--quote:not(:has(h1, p)) + .heading__wrapper h2 {
            margin-top: 0;
        }

        .intro-image img {
            object-fit: cover;
            min-height: 497px;
            max-height: 497px;
        }

        .heading__wrapper {
            align-items: flex-start;

            h1 {
            }
        }
    }
}*/
/*- Home Page Our Story */
/*- content-2-col-img-bleed.html -*/
/*** Our Story - image+content*/
.our-story {
  margin-top: 205.99px;
}
.our-story .our-story .container {
  padding: 0 32px;
  max-width: 1372px;
  margin: 0 auto;
  font-family: "Cooper Hewitt Book", sans-serif;
  font-weight: normal;
}
.our-story .our-story__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.our-story .our-story-image__direction {
  direction: rtl;
}
.our-story .our-story-wrapper-content {
  color: #101135;
}
.our-story .our-story-wrapper__image {
  width: calc(50.65vw - 131px);
  margin-left: calc(50% - 50vw);
  margin-right: 131px;
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
  height: 486px;
}
.our-story .our-story-wrapper__image img {
  height: 100%;
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  width: 100%;
}
.our-story .our-story-wrapper-content h2, .our-story .our-story-wrapper-content .h2 {
  font: normal normal normal 46px/65px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  color: #101135;
  margin-bottom: 45px;
}
.our-story .our-story-wrapper-content p {
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #101135;
}

@media screen and (max-width: 991px) {
  .our-story {
    margin-top: 95.6px;
  }
  .our-story .our-story__wrapper {
    grid-template-columns: 1fr;
    display: block;
  }
  .our-story .our-story-image__direction {
    direction: rtl;
  }
  .our-story .our-story-wrapper__image {
    width: calc(100vw - 34px);
    margin: 0px 0px 48px 0px;
    min-height: 264px;
    height: unset;
  }
  .our-story .our-story-wrapper-content h2, .our-story .our-story-wrapper-content .h2 {
    font: normal normal normal 28px/43px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0;
    color: #101135;
    margin-bottom: 34px;
  }
  .our-story .our-story-wrapper-content p {
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    color: #101135;
  }
}
/*- Home Page - home-page-2__sections_7 What makes teams work? */
/*- content-2-col-img.html -*/
.what-makes-teams .what-makes-teams__outer-wrapper {
  padding: 0 32px;
}
.what-makes-teams .what-makes-teams__inner-wrapper {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}
.what-makes-teams .what-makes-teams__content {
  display: flex;
  gap: 115px;
}
.what-makes-teams .what-makes-teams__left-container {
  width: 37.5%;
  margin-top: 50px;
}
.what-makes-teams .what-makes-teams__right-container {
  width: 50%;
}
.what-makes-teams .what-makes-teams__background {
  width: 50vw;
  margin-right: calc(50% - 50vw);
  bottom: 0;
  position: absolute;
  top: -650px;
  right: -70%;
  z-index: -1;
  background: transparent 0% 0% no-repeat padding-box;
}
.what-makes-teams .what-makes-teams__background-container {
  position: relative;
  width: calc(50% - 38px);
}
.what-makes-teams .what-makes-teams__right-container h2, .what-makes-teams .what-makes-teams__right-container .h2 {
  margin-bottom: 28px;
  font-size: 46px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 65px;
}
.what-makes-teams .what-makes-teams__right-container p {
  max-width: 491px;
  margin-top: 15px;
}
.what-makes-teams .what-makes-teams__right-container p:first-of-type {
  margin-top: unset;
}
.what-makes-teams .what-makes-teams__right-container .MG-btn {
  margin-top: 45px;
}

@media screen and (max-width: 991px) {
  .what-makes-teams .what-makes-teams__background img {
    width: auto;
    max-width: 800px;
  }
  .what-makes-teams .what-makes-teams__background {
    top: -414px;
    height: 100%;
    right: 102px;
    width: 100%;
    min-height: 860px;
  }
  .what-makes-teams .what-makes-teams__content {
    margin-top: 21%;
    gap: 63px;
    flex-direction: column;
  }
  .what-makes-teams .home-page-2__sections_6 .carousel-indicators {
    margin-top: 48.4px;
  }
  .what-makes-teams .what-makes-teams__left-container {
    width: 100%;
    margin-top: unset;
  }
  .what-makes-teams .what-makes-teams__right-container {
    width: 100%;
  }
  .what-makes-teams .what-makes-teams__right-container h2, .what-makes-teams .what-makes-teams__right-container .h2 {
    margin-bottom: 33px;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 43px;
    font-weight: normal;
  }
  .what-makes-teams .what-makes-teams__right-container p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 20px;
    max-width: unset;
  }
  .what-makes-teams .what-makes-teams__right-container p:first-of-type {
    margin-top: 0;
  }
  .what-makes-teams .what-makes-teams__right-container .MG-btn {
    margin-top: 54px;
  }
  .what-makes-teams .what-makes-teams__right-container button {
    min-width: 239px;
    height: 73px;
    font-size: 16px;
  }
}
/*Genericize these*/
.card-image-unleash__description {
  margin-left: 32px;
  max-width: 300px;
}

/*** Home Page  - */
/*-- Icon-3-cards.html --*/
.icon-three-cards .remove-holding__container {
  /* padding: 0 36px;
  width: auto;*/
}
.icon-three-cards .remove-holding-content__container {
  width: 100%;
  padding: 0 32px;
  max-width: 1372px;
  margin: 0 auto;
}
.icon-three-cards .remove-holding-main__info {
  display: flex;
  justify-content: center;
  text-align: center;
}
.icon-three-cards .remove-holding-main__info h1, .icon-three-cards .remove-holding-main__info .h1 {
  font-size: 64px;
  font-family: "Cooper Hewitt Light", sans-serif;
  line-height: 82px;
  font-weight: 300;
  letter-spacing: 0;
  color: #101135;
  text-align: center;
  max-width: unset;
  text-transform: uppercase;
}
.icon-three-cards .remove-holding-main__info h4, .icon-three-cards .remove-holding-main__info .h4 {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.icon-three-cards .remove-holding-main__info p {
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
  letter-spacing: 0.09px;
  color: #101135;
  text-align: center;
  max-width: 820px;
  margin: 40.16px auto 0 auto;
}
.icon-three-cards .remove-holding-main__cards {
  margin-top: 115.81px;
}
.icon-three-cards .remove-holding-card__container {
  display: flex;
}
.icon-three-cards .remove-holding-image__block {
  align-items: center;
  background-color: #101135;
  border-radius: 10px;
  display: flex;
  height: 137px;
  justify-content: center;
  min-width: 137px;
}
.icon-three-cards .remove-holding-image__block img {
  max-height: 60px;
  max-width: 60px;
  border-radius: 0;
}
.icon-three-cards .remove-holding-image__info {
  margin-left: 61.42px;
}
.icon-three-cards .remove-holding-image__info h3, .icon-three-cards .remove-holding-image__info .h3 {
  color: #101135;
}
.icon-three-cards .remove-holding-image__info {
  max-width: 325px;
}
.icon-three-cards .holding-single-card__container {
  display: flex;
  justify-content: center;
  margin-top: 129.38px;
}
.icon-three-cards .button-middle-then-right a .MG-btn {
  display: flex;
  justify-content: center;
  margin: auto;
  margin-top: 129.38px;
}

@media screen and (max-width: 991px) {
  .icon-three-cards .remove-holding-main__info {
    justify-content: start;
    text-align: start;
  }
  .icon-three-cards .remove-holding-main__info h1, .icon-three-cards .remove-holding-main__info .h1 {
    font-size: 34px;
    font-family: "Cooper Hewitt Light", sans-serif;
    line-height: 52px;
    font-weight: 300;
    letter-spacing: 0;
    color: #101135;
    text-align: left;
    max-width: unset;
    text-transform: uppercase;
  }
  .icon-three-cards .remove-holding-main__info h4, .icon-three-cards .remove-holding-main__info .h4 {
    text-align: left;
    max-width: unset;
  }
  .icon-three-cards .remove-holding-main__info {
    text-align: left;
    font-size: 15px;
    line-height: 32px;
    font-weight: normal;
    letter-spacing: 0.07px;
    color: #101135;
    max-width: unset;
  }
  .icon-three-cards .remove-holding-main__info p {
    text-align: left;
    max-width: unset;
    margin: 19px 0 0 0;
  }
  .icon-three-cards .remove-holding-image__info {
    margin-left: 18px;
  }
  .icon-three-cards .remove-holding-main__cards {
    margin-top: 70.33px;
  }
  .icon-three-cards .remove-holding-image__info p {
    max-width: unset;
  }
  .icon-three-cards .remove-holding-image__info {
    max-width: unset;
  }
  .icon-three-cards .holding-single-card__container .remove-holding-image__info p {
    width: unset;
  }
  .icon-three-cards .remove-holding-image__block {
    min-width: 76px;
    height: 76px;
    border-radius: 6px;
  }
  .icon-three-cards .remove-holding-image__block img {
    max-width: 50px;
    max-height: 32px;
  }
  .icon-three-cards .remove-holding-card__container {
    margin-top: 81px;
  }
  .icon-three-cards .holding-single-card__container {
    display: block;
    margin-top: 0;
  }
  .icon-three-cards .remove-holding-first__card {
    margin-top: unset;
  }
  .icon-three-cards .button-middle-then-right .MG-btn {
    margin-top: 92.33px;
  }
}
.icon-four-cards .unleash-section__container {
  /*  padding: 0 36px;
    width: auto;*/
}
.icon-four-cards .unleash-section-content__container {
  /*  margin: 0 auto;
    max-width: calc(1300px);*/
  width: 100%;
  color: #101135;
}
.icon-four-cards .card-section-main__info {
  text-align: center;
}
.icon-four-cards .card-section-main__info h1, .icon-four-cards .card-section-main__info .h1 {
  font-size: 64px;
  font-family: "Cooper Hewitt Light";
  line-height: 82px;
  font-weight: 300;
  letter-spacing: 0;
  color: #101135;
  text-transform: uppercase;
}
.icon-four-cards .card-section-main__info h4, .icon-four-cards .card-section-main__info .h4 {
  margin-top: 16.25px;
}
.icon-four-cards .card-section-main__info div p {
  color: #101135;
  margin: 40.16px auto 0 auto;
}
.icon-four-cards .card-section-main__cards {
  margin-top: 99.33px;
}
.icon-four-cards .card-image-block__container {
  display: flex;
}
.icon-four-cards .card-image-unleash__description h3, .icon-four-cards .card-image-unleash__description .h3 {
  color: #101135;
}
.icon-four-cards .unleash-card-section__second {
  margin-top: 127.33px;
}
.icon-four-cards .unleash-card-section__second-container {
  display: flex;
  justify-content: end;
}
.icon-four-cards .button-container a .MG-btn {
  display: flex;
  font-size: 20px;
  justify-content: center;
  margin: auto;
  margin-top: 103.64px;
}

@media screen and (max-width: 991px) {
  .icon-four-cards .card-section-main__info {
    text-align: start;
    text-align: left;
    display: block;
  }
  .icon-four-cards .card-section-main__cards {
    margin-top: 0;
  }
  .icon-four-cards .card-section-main__info h1, .icon-four-cards .card-section-main__info .h1 {
    font-size: 34px;
    font-family: "Cooper Hewitt Light";
    line-height: 52px;
    font-weight: 300;
    letter-spacing: 0.6px;
    color: #101135;
  }
  .icon-four-cards .card-section-main__info h4, .icon-four-cards .card-section-main__info .h4 {
    margin-top: 19px;
  }
  .icon-four-cards .card-section-main__info div p {
    color: #101135;
    margin: 19px 0 0 0;
    max-width: none;
    width: 100%;
  }
  .icon-four-cards .unleash-card-section__second-container {
    justify-content: start;
  }
  .icon-four-cards .card-image-block__container {
    margin-top: 71px;
  }
  .icon-four-cards .card-block-image__container {
    border-radius: 6px;
    min-width: 76px;
    height: 76px;
  }
  .icon-four-cards .card-block-image__container img {
    max-width: 50px;
    max-height: 32px;
  }
  .icon-four-cards .card-image-unleash__description {
    margin-left: 18px;
    max-width: unset;
  }
  .icon-four-cards .card-image-unleash__description h3, .icon-four-cards .card-image-unleash__description .h3 {
    color: #101135;
  }
  .icon-four-cards .card-image-unleash__description p {
    color: #101135;
  }
  .icon-four-cards .unleash-card-section__second {
    margin-top: 0px;
  }
  .icon-four-cards .unleash-card-section__second-container {
    display: flex;
    justify-content: start;
  }
  .icon-four-cards .button-container a .MG-btn {
    display: block;
    margin: unset;
    font-size: 16px;
    line-height: 20px;
    margin-top: 70.33px;
    justify-content: center;
  }
}
/**  Capabilites page - Our Services **/
/*-- icon-5-cards.html --*/
.icon-five-cards .headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.icon-five-cards .headline__title {
  min-width: 300px;
  max-width: calc(100% - 345px);
}
.icon-five-cards .headline__title h1, .icon-five-cards .headline__title .h1 {
  font-family: "Cooper Hewitt Light", sans-serif;
}
.icon-five-cards .cards__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(0, 640px);
  margin-top: 120px;
}
.icon-five-cards .cards {
  margin-top: 132px;
  margin-bottom: 258px;
}
.icon-five-cards .cards__wrapper--left {
  justify-content: flex-start;
}
.icon-five-cards .cards__wrapper--right {
  justify-content: flex-end;
}
.icon-five-cards .cards__wrapper--right .cards__item {
  margin-left: auto;
}
.icon-five-cards .cards__item {
  display: flex;
  gap: 32px;
}
.icon-five-cards .cards__item:nth-child(1) {
  max-width: 440px;
}
.icon-five-cards .cards__item:nth-child(2) {
  max-width: 464px;
}
.icon-five-cards .cards__item:only-child {
  grid-column: 2/2;
}
.icon-five-cards .cards__image {
  align-items: center;
  background-color: #101135;
  border-radius: 10px;
  display: flex;
  height: 137px;
  justify-content: center;
  min-width: 137px;
}
.icon-five-cards .cards__image img {
  max-width: 55px;
  max-height: 83px;
  border-radius: 0;
}
.icon-five-cards .cards__item:not(:has(p, h2)) {
  display: none;
}
.icon-five-cards .cards__content h3, .icon-five-cards .cards__content .h3 {
  margin-bottom: 8px;
}
.icon-five-cards .cards__content {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  margin-bottom: 15px;
}
.icon-five-cards .cards__content p:has(a) {
  margin-bottom: 0;
}
.icon-five-cards .cards__content a {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  font-family: "Cooper Hewitt Medium", sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .icon-cards .headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .icon-cards .cards__wrapper {
    grid-template-columns: 1fr;
    gap: 71px;
    margin-top: 71px;
  }

  .icon-five-cards {
    position: relative;
    padding-bottom: 70px;
    margin-bottom: 170px;
  }
  .icon-five-cards .headline__title {
    min-width: none;
    max-width: none;
  }
  .icon-five-cards .cards {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .icon-five-cards .cards__wrapper--right .cards__item {
    margin-left: 0;
  }
  .icon-five-cards .cards__wrapper--left .cards__item:only-child {
    grid-column: 1/1;
  }
  .icon-five-cards .cards__item {
    gap: 19px;
  }
  .icon-five-cards .cards__image {
    width: 75px;
    min-width: 75px;
    height: 75px;
  }
  .icon-five-cards .cards__image img {
    width: 31px;
    height: auto;
  }
  .icon-five-cards .cards__content h3, .icon-five-cards .cards__content .h3 {
    margin-bottom: 8px;
  }
  .icon-five-cards .cards__content {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    margin-bottom: 6px;
  }
  .icon-five-cards .cards__content a {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.14px;
    letter-spacing: 0.14px;
    margin-bottom: 0;
  }
  .icon-five-cards .headline__button {
    position: absolute;
    bottom: 0;
    left: 35px;
  }
}
/***  Home Page View ****/
.carousel-header__container {
  /*margin-top: 83px;
  padding: 127px 36px 64px 36px;
  position: relative;*/
  /*margin-top: 223px;*/
  margin-top: 83px;
  padding: 94px 36px 10px 36px;
  position: relative;
}

.carousel-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

.home-page-2-sec-1-background {
  background: transparent linear-gradient(0deg, #dA6123 0%, #101135 60%) 0% 0% no-repeat padding-box;
  border-radius: 0 20px 20px 0;
  bottom: 0;
  left: 0;
  max-width: 90.5625%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.home-page-2-sec-1__inner-background {
  width: 1050px;
  margin-right: calc(50% - 1050px);
  bottom: 0;
  position: absolute;
  top: 20%;
  right: 0;
  z-index: -1;
  background: transparent 0% 0% no-repeat padding-box;
}

.home-page-2-sec-1__inner-background .inner-background-2 {
  z-index: -5;
}

.home-page-2__sections_1 .MG-btn {
  margin-top: 70px;
}

.home-page-2__sections_1 .carousel-buttons {
  margin-bottom: 0;
}

.home-page-2__sections_1 .carousel-buttons-container {
  margin-top: 0;
}

.home-page-2__sections_1 .carousel-header__container .carousel-header {
  width: 79%;
}

.carousel-header__container .carousel-widget-header-template-image-container {
  width: 55vw;
  margin-right: calc(50% - 55vw);
  /* overflow: visible; */
}

.carousel-header__container .carousel-widget-header-template-inner-wrapper {
  height: 500px;
  width: calc(55vw - 38px);
  overflow: visible;
  flex: 1;
}

.home-page-2-sec-2__background-container {
  width: calc(50% - 38px);
}

.home-page-2-sec__image-background {
  /* opacity: 0.2;*/
}

.carousel-header__container .carousel-buttons-container .slick-dots::before {
  /*width: 100%;*/
  /*width: calc(100% - 15px);*/
  display: none;
}

.carousel-header__container .carousel-buttons-container .carousel-buttons::before {
  background-color: #ffffff;
  height: 1.5px;
}

@media (max-width: 991px) {
  .carousel-header__container {
    padding: 33px 36px 36px 36px;
    margin-top: 0;
  }

  .home-page-2-sec-1__inner-background {
    width: 448px;
    margin-right: calc(50% - 448px);
    top: 8%;
  }

  .home-page-2-sec-1-background {
    background-size: 100% 87%;
    background-position: bottom;
    border-radius: 0px 15px 15px 0px;
  }

  .home-page-2-sec-1__inner-background {
    /*       right: -150px;
    top: 50px;
    width: 100%;
    height: 448px;*/
  }

  .home-page-2-sec__image-background {
    position: absolute;
    width: 100%;
    height: auto;
  }

  .home-page-2__sections_1 .carousel-buttons-container {
    margin-top: 0;
  }

  .carousel-header__container .carousel-header {
    width: 100%;
  }

  .carousel-header__container .carousel-item {
    width: calc(100vw - 38px);
  }

  .carousel-header__container .carousel-widget-header-template-image-container {
    width: 55vw;
    margin-right: calc(50% - 55vw);
    /* overflow: visible; */
  }

  .carousel-header__container .carousel-widget-header-template-inner-wrapper {
    width: 100%;
    height: 225px;
    max-width: unset;
  }

  .carousel-header__container .carousel-widget-header-template-image-container {
    width: 100vw;
    margin-right: 0;
    /* overflow: visible; */
  }
}
/*** All Views ***/
.carousel-indicators {
  min-width: 40%;
  max-width: 534px;
  width: 100%;
  top: 50px;
}

.carousel-inner {
  overflow: unset;
}

.carousel-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  inset: auto;
  margin: 30px 0 30px auto;
}

.carousel-buttons::before {
  content: "";
  top: 50%;
  translate: 0 -50%;
  background-color: #dA6123;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100vw;
}

.carousel-bottom {
  display: flex;
  flex-direction: column-reverse;
}

.carousel-left .carousel-buttons::before {
  left: auto;
  margin-left: -100%;
  right: 15px;
}

.carousel-left .carousel-title {
  grid-column: 2/2;
}

.carousel-left .carousel-description {
  grid-column: 2/2;
}

.carousel-left .carousel-buttons {
  grid-area: 1;
}

.carousel-header {
  display: grid;
  align-items: center;
  -webkit-column-gap: 16px;
          column-gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  justify-content: space-between;
}

.carousel-title {
  font-size: 46px;
  line-height: 65px;
  text-transform: none;
}

.carousel-description {
  font-size: 18px;
  letter-spacing: 0.09px;
  line-height: 32px;
  color: #101135;
}

.carousel-white .carousel-button,
.carousel-white .carousel-buttons::before,
.carousel-white .carousel-button.active {
  background-color: #ffffff;
}

.carousel-white .carousel-button.active::before {
  color: #dA6123;
}

/*Quote Carousel*/
.carousel-widget-quote-template-item-wrapper {
  margin-top: 62px;
  position: relative;
}

.carousel-widget-quote-template-bg-container {
  background: transparent linear-gradient(90deg, #eaeaea00 0%, #eaeaea 80%) 0% 0% no-repeat padding-box;
}

.carousel-widget-quote-template-bg-container {
  bottom: 0;
  position: absolute;
  border-radius: 0;
  right: 0;
  top: 0;
  width: 100vw;
  margin-right: calc(-50vw - 64px);
  z-index: -1;
}

.carousel-widget-quote-template-inner-wrapper {
  height: 100%;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}

.carousel-widget-quote-template-right-wrapper {
  display: flex;
  align-items: center;
  height: 325px;
}

.carousel-widget-quote-template-image-container {
  overflow: hidden;
  width: 155px;
  /* height: 97px;*/
}

.carousel-widget-quote-template-image-container img {
  height: 100%;
  /*  max-height: 97px;
  min-height: 56.6px;*/
  object-fit: scale-down;
  width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media (max-width: 991px) {
  .carousel-widget-quote-template-image-container {
    overflow: hidden;
    width: 180px;
    height: 97px;
  }

  .carousel-widget-quote-template-quote {
    top: -30px;
  }

  .carousel-widget-quote-template-inner-wrapper .col-2 {
    max-width: 48px;
  }

  .carousel-widget-quote-template-inner-wrapper .col-10 {
    margin-top: 35px;
  }
}
.team-member-testimonial .carousel-widget-quote-template-secondary-content {
  width: calc(100% - 205px);
  display: flex;
  flex-direction: column;
}
.team-member-testimonial .carousel-widget-quote-template-speaker-container {
  display: flex;
  gap: 33px;
  padding-left: 141px;
  align-items: flex-end;
}
.team-member-testimonial .carousel-widget-quote-template-secondary-content h5, .team-member-testimonial .carousel-widget-quote-template-secondary-content .h5,
.team-member-testimonial .carousel-widget-quote-template-secondary-content {
  margin-top: 0;
}
.team-member-testimonial .carousel-widget-quote-template-image-container {
  height: 180px;
  width: 172px;
  overflow: hidden;
}
.team-member-testimonial .carousel-widget-quote-template-image-container img {
  height: 180px;
  max-height: 180px;
  width: 172px;
  object-fit: cover;
  max-width: 100%;
  -webkit-filter: none;
          filter: none;
  border-radius: 10px;
}
.team-member-testimonial .carousel-widget-quote-template-secondary-content p {
  margin-bottom: 13px;
}
.team-member-testimonial .carousel-widget-quote-template-secondary-content p.view-details {
  line-height: 1;
  margin-bottom: 0;
}
.team-member-testimonial p.view-details a {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.14px;
}

@media (max-width: 991px) {
  .team-member-testimonial p.view-details a {
    text-transform: uppercase;
    font-family: "Cooper Hewitt Medium", sans-serif;
    font-size: 12px;
    letter-spacing: 0.12px;
  }
  .team-member-testimonial .carousel-widget-quote-template-speaker-container {
    display: flex;
    padding: 42px 0 68.24px 48px;
    align-items: flex-end;
  }
}
.carousel-widget-quote-template-secondary-content {
  margin-top: 23.85px;
}

.carousel-widget-quote-template-secondary-vertical-content {
  padding-left: 100px;
}

.carousel-widget-quote-template-secondary-content h5, .carousel-widget-quote-template-secondary-content .h5 {
  margin-bottom: 0;
  margin-top: 23.85px;
  padding-bottom: 0;
}

.carousel-widget-quote-template-quote-info {
  max-width: 426px;
  font-size: 18px;
  line-height: 32px;
  font-weight: normal;
  letter-spacing: 0.09px;
  padding-top: 59px;
}

.carousel-widget-quote-template-quote {
  position: relative;
}

.carousel-widget-quote-template-inner-wrapper .MG-btn {
  margin-top: 39px;
}

.carousel-widget-quote-template-content-wrapper {
  height: 100%;
}

.carousel-widget-quote-template-content-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carousel-widget-quote-template-left-content {
  margin-top: 55px;
}

.carousel-widget-quote-template-left-content p {
  font-size: 18px;
  line-height: 32px;
  font-weight: normal;
  letter-spacing: 0.09px;
}

/*Highlight Carousel*/
.carousel-widget-highlight-template-item-wrapper {
  margin-top: 58px;
  position: relative;
}

.active:not(.carousel-item-start) .carousel-widget-highlight-template-bg-container {
  background: transparent linear-gradient(90deg, #eaeaea00 0%, #eaeaea 100%) 0% 0% no-repeat padding-box;
}

.carousel-widget-highlight-template-bg-container {
  bottom: 0;
  position: absolute;
  border-radius: 20px 0px 0px 20px;
  right: 0;
  top: 0;
  width: 100vw;
  margin-right: -50vw;
  z-index: -1;
}

.carousel-widget-highlight-template-inner-wrapper {
  height: 100%;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}
.carousel-widget-highlight-template-right-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.carousel-widget-highlight-template-speaker-container {
  padding-left: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
}

.carousel-widget-highlight-template-image-container {
  overflow: hidden;
  box-shadow: 0 0 15px 0px #00000030;
}

.carousel-widget-highlight-template-image-container img {
  height: 100%;
  max-height: 230px;
  object-fit: scale-down;
  width: 100%;
}

.carousel-widget-highlight-template-quote-info {
  max-width: 426px;
  font-size: 18px;
  line-height: 321px;
  font-weight: normal;
  letter-spacing: 0.09px;
  padding-top: 59px;
}

.carousel-widget-highlight-template-quote {
  position: relative;
}

.carousel-widget-highlight-template-inner-wrapper .MG-btn {
  margin-top: 39px;
}

.carousel-widget-highlight-template-content-wrapper {
  height: 100%;
}

.carousel-widget-highlight-template-content-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carousel-widget-highlight-template-left-content {
  vertical-align: middle;
  margin: auto 0;
  font-weight: normal;
  padding-top: 22px;
}

.carousel-widget-highlight-template-left-content h3, .carousel-widget-highlight-template-left-content .h3 {
  margin-top: 0;
  font-family: Cooper Hewitt Semibold;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.75px;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.carousel-widget-highlight-template-left-content h5, .carousel-widget-highlight-template-left-content .h5 {
  font-size: 20px;
  line-height: 38px;
  letter-spacing: 0;
  color: #707070;
  margin-bottom: 36px;
}

.carousel-widget-highlight-template-left-content p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
}

.carousel-widget-highlight-template-left-content .button-placeholder {
  margin-left: 4px;
  margin-bottom: 27px;
}

/*Image Template*/
.carousel-inner-container.carousel-images-items-container {
  /* margin-top: 80px;*/
}

.carousel-items-container.carousel-images-items-container {
  display: flex;
  justify-content: space-around;
  gap: 100px;
  flex-wrap: wrap;
}

.carousel-widget-image-template-image-container {
  overflow: hidden;
  width: 250px;
  height: 212px;
}

.carousel-widget-image-template-image-container img {
  height: 100%;
  max-height: 250px;
  min-height: 127px;
  object-fit: scale-down;
  width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

/*Header Template*/
.carousel-items-container.carousel-header-items-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.carousel-widget-header-template-content-wrapper {
  max-width: 600px;
  color: #ffffff;
  word-wrap: break-word;
  padding-right: 60px;
  flex: 1;
}

.carousel-widget-header-template-content-wrapper h1, .carousel-widget-header-template-content-wrapper .h1,
.carousel-widget-header-template-content-wrapper h2,
.carousel-widget-header-template-content-wrapper .h2,
.carousel-widget-header-template-content-wrapper h3,
.carousel-widget-header-template-content-wrapper .h3,
.carousel-widget-header-template-content-wrapper h4,
.carousel-widget-header-template-content-wrapper .h4,
.carousel-widget-header-template-content-wrapper h5,
.carousel-widget-header-template-content-wrapper .h5,
.carousel-widget-header-template-content-wrapper span,
.carousel-widget-header-template-content-wrapper p {
  color: #ffffff;
}

.carousel-widget-header-template-content-wrapper h1, .carousel-widget-header-template-content-wrapper .h1 {
  font-size: 57px;
  line-height: 82px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  font-weight: normal;
  text-transform: capitalize;
  margin-bottom: 45px;
}

.carousel-widget-header-template-content-wrapper p {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
}

.carousel-widget-header-template-content-wrapper a:has(> div.MG-btn) {
  margin-top: 70px;
  margin-bottom: 172px;
}

.carousel-widget-header-template-inner-wrapper {
  height: 500px;
  width: calc(50% - 38px);
}

.carousel-widget-header-template-image-container {
  width: 50vw;
  margin-right: calc(50% - 50vw);
}

.carousel-widget-header-template-image-container img,
.carousel-widget-header-template-image-container video {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 20px 0px 0px 20px;
  z-index: 3;
}

.active.carousel-item-start .carousel-widget-header-template-inner-wrapper img {
  display: none;
  transition: display ease-out 0.5s;
}

.carousel-item-end .carousel-widget-header-template-inner-wrapper img {
  display: none;
  transition: display ease-out 0.5s;
}

@media (max-width: 991px) {
  .carousel-header {
    grid-template-columns: 1fr;
  }

  .carousel-title {
    font-size: 28px;
    line-height: 43px;
    grid-row: 1/1;
  }

  .carousel-description {
    grid-row: 2/2;
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
  }

  .carousel-buttons {
    grid-row: 3/3;
  }

  .carousel-left .carousel-buttons {
    grid-area: 3/1/3/3;
  }

  .carousel-indicators {
    max-width: unset;
  }

  .carousel-top-mobile {
    flex-direction: column;
  }

  /*Quote Carousel*/
  .carousel-widget-quote-template-bg-container {
    height: 240px;
  }

  /*Hightlights Carousel */
  .carousel-widget-highlight-template-item-wrapper .carousel-widget-quote-template-bg-container {
    height: 255px;
  }

  .carousel-widget-quote-template-right-wrapper {
    max-height: 240px;
  }

  .carousel-widget-quote-template-speaker-container {
    display: flex;
    padding: 42px 0 68.24px 13.24px;
    align-items: center;
  }

  .carousel-widget-quote-template-image-container img {
    width: auto;
    height: 100%;
    max-width: 155px;
  }

  .carousel-widget-quote-template-secondary-content {
    padding-left: 19.75px;
    margin-top: 0;
  }

  .carousel-widget-quote-template-secondary-vertical-content {
    padding-left: 0;
  }

  .carousel-widget-quote-template-secondary-content h5, .carousel-widget-quote-template-secondary-content .h5 {
    margin-top: unset;
  }

  .carousel-widget-quote-template-secondary-content p {
    margin-bottom: 0;
  }

  .carousel-widget-quote-template-quote-info {
    padding-top: 51.58px;
    max-width: unset;
  }

  .carousel-widget-quote-template-quote {
    top: -30px;
  }

  .carousel-widget-quote-template-quote svg {
    width: 48px;
    height: 47.58px;
  }

  .carousel-widget-quote-template-left-content p {
    font-size: 15px;
    line-height: 28px;
    font-weight: normal;
    letter-spacing: 0.07px;
  }

  .carousel-widget-quote-template-left-content {
    margin: unset;
  }

  /*Highlight Carousel*/
  .carousel-widget-highlight-template-bg-container {
    height: 255px;
    margin-top: -62px;
    border-radius: 15px 0px 0px 15px;
  }

  .carousel-widget-highlight-template-right-wrapper {
    display: flex;
    height: auto;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding-top: 25px;
  }

  .carousel-widget-highlight-template-speaker-container {
    display: flex;
    padding: 42px 0 68.24px 13.24px;
  }

  .carousel-widget-highlight-template-right-wrapper .carousel-widget-quote-template-speaker-container {
    padding: 30px 0 0 0;
  }

  .carousel-widget-highlight-template-image-container {
    width: auto;
    height: 100%;
  }

  .carousel-widget-highlight-template-image-container img {
    width: auto;
    height: 200px;
    max-width: none;
  }

  .carousel-widget-highlight-template-secondary-content {
    padding-left: 19.75px;
    margin-top: 0;
  }

  .carousel-widget-highlight-template-secondary-content h5, .carousel-widget-highlight-template-secondary-content .h5 {
    margin-top: unset;
  }

  .carousel-widget-highlight-template-quote-info {
    padding-top: 51.58px;
    max-width: unset;
  }

  .carousel-widget-highlight-template-inner-wrapper .col-10 {
    margin-top: 51.85px;
  }

  .carousel-widget-highlight-template-quote {
    top: -30px;
  }

  .carousel-widget-highlight-template-quote svg {
    width: 48px;
    height: 47.58px;
  }

  .carousel-widget-highlight-template-left-content .button-placeholder {
    margin-left: 4px;
  }

  .carousel-widget-highlight-template-left-content h3, .carousel-widget-highlight-template-left-content .h3 {
    margin-top: 50px;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.06px;
  }

  .carousel-widget-highlight-template-left-content h5, .carousel-widget-highlight-template-left-content .h5 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 24px;
  }

  .carousel-widget-highlight-template-left-content p {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }

  .carousel-widget-highlight-template-left-content {
    margin: unset;
  }

  /*Images carousel*/
  .content-options-clients-we-serve .carousel-inner-container {
    margin-top: 70px;
  }

  .carousel-widget-image-template-image-container {
    width: 151px;
    height: 127px;
  }

  .carousel-widget-image-template-image-container img {
    height: 127px;
    width: 151px;
  }

  .carousel-widget-quote-template-item-wrapper {
    margin-top: 41px;
  }

  /*Header Template*/
  .carousel-items-container.carousel-header-items-container {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .carousel-widget-header-template-content-wrapper {
    max-width: unset;
    padding-right: 0;
    padding-top: unset;
    width: 72%;
  }

  .carousel-widget-header-template-content-wrapper h1, .carousel-widget-header-template-content-wrapper .h1 {
    font-size: 45px;
    line-height: 63px;
    margin-top: 70px;
    margin-bottom: 30px;
  }

  .carousel-widget-header-template-content-wrapper p {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }

  .carousel-widget-header-template-content-wrapper a:has(> div.MG-btn) {
    margin-top: 40px;
    margin-bottom: 43px;
  }

  .carousel-widget-header-template-inner-wrapper {
    width: 100%;
    height: 225px;
    max-width: unset;
  }

  .carousel-header-template .carousel-buttons-container {
    /* padding-right: 62px;*/
  }

  .carousel-widget-header-template-image-container {
    width: 100vw;
    margin-right: 0;
  }

  .carousel-widget-header-template-image-container img,
.carousel-widget-header-template-image-container video {
    height: 225px;
    border-radius: 10px 0px 0px 10px;
  }

  .carousel-items-container.carousel-images-items-container {
    justify-content: space-around;
    gap: 44px;
  }
}
@media (max-width: 440px) {
  .team-member-testimonial .carousel-widget-quote-template-right-wrapper {
    width: 100%;
    max-height: inherit;
    height: 400px;
    display: block;
  }
  .team-member-testimonial .carousel-widget-quote-template-secondary-content {
    padding-left: 0;
    width: 100%;
    display: block;
  }
  .team-member-testimonial .carousel-widget-quote-template-secondary-content p {
    margin-bottom: 13px;
    line-height: 28px;
    font-size: 15px;
    letter-spacing: 0.07px;
  }
  .team-member-testimonial .carousel-widget-quote-template-bg-container {
    height: 400px;
  }
  .team-member-testimonial .carousel-widget-quote-template-speaker-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .careers-sec-5-outer-wrapper .team-member-testimonial .carousel-widget-quote-template-speaker-container {
    align-items: flex-start;
    flex-direction: column;
  }

  p.view-details a {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.12px;
  }
}
.slick-dots {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  inset: auto;
  margin: 30px 0 30px auto;
  min-width: 40%;
  max-width: 534px;
  width: 100%;
  padding: 0;
  list-style: none;
}
.slick-dots::before {
  content: "";
  top: 50%;
  translate: 0 -50%;
  background-color: #dA6123;
  height: 1px;
  left: 15px;
  position: absolute;
  width: 100vw;
}
.slick-dots li {
  width: 33px;
  height: 33px;
  margin: 0;
  color: #fff;
  font-family: "Cooper Hewitt Book", sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-dots li button {
  background-color: #dA6123;
  font-size: 0;
  line-height: 24px;
  text-indent: 0px;
  width: 9px;
  height: 9px;
  margin: 0;
  border: none;
  border-radius: 100%;
  opacity: 1;
  z-index: 1;
  transition: width 0.3s, height 0.3s;
}
.slick-dots li.slick-active button::before {
  content: "";
}
.slick-dots li button::before {
  content: "";
}
.slick-dots li.slick-active button {
  color: #ffffff;
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 14px;
  line-height: 1;
  height: 33px;
  width: 33px;
  text-align: center;
  opacity: 1;
  text-indent: 0;
  background-color: #dA6123;
}
.slick-dots li.slick-active {
  height: 33px;
  width: 33px;
}

.carousel-header__container .carousel-item {
  display: flex;
  opacity: 1;
}
.carousel-header__container .slick-list {
  overflow: visible;
}
.carousel-header__container .slick-initialized .slick-slide {
  display: flex;
}
.carousel-header__container .carousel-buttons-container .slick-dots li button {
  background-color: #ffffff;
  font-size: 0;
}
.carousel-header__container .carousel-buttons-container .slick-dots li.slick-active button {
  background-color: #ffffff;
  color: #101135;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-header__container .carousel-buttons-container .slick-dots li button:hover {
  height: 33px;
  width: 33px;
}

/*- Logo Carousels - Home Page -*/
.logo-carousel-container .carousel-header {
  display: grid;
  align-items: center;
  -webkit-column-gap: 16px;
          column-gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  justify-content: space-between;
}
.logo-carousel-container .item {
  display: flex;
  justify-content: center;
  height: 212px;
  width: 250px;
}
.logo-carousel-container .item img {
  height: 100%;
  max-height: 250px;
  min-height: 127px;
  object-fit: scale-down;
  width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.logo-carousel-container .carousel-title, .logo-carousel-container h2.carousel-title {
  color: #101135;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 46px;
  line-height: 65px;
  text-transform: none;
  margin: 0px;
}
.logo-carousel-container .carousel-description {
  font-size: 18px;
  letter-spacing: 0.09px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #101135;
}

@media (max-width: 991px) {
  .logo-carousel-container .carousel-header {
    grid-template-columns: 1fr;
  }
  .logo-carousel-container .carousel-title {
    font-size: 28px;
    line-height: 43px;
    grid-row: 1/1;
  }
  .logo-carousel-container .carousel-description {
    grid-row: 2/2;
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
  }
}
/*** Columns to carousel ***/
.carousel-columns {
  margin-top: 100px;
  margin-bottom: 150px;
}
.carousel-columns .carousel-columns-header {
  margin-bottom: 80px;
}
.carousel-columns .carousel-columns-header h2, .carousel-columns .carousel-columns-header .h2 {
  text-align: center;
}
.carousel-columns .column-slide-content {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 18px;
  line-height: 32px;
  padding-top: 30px;
}
.carousel-columns .column-slide-content h5, .carousel-columns .column-slide-content .h5 {
  margin-bottom: 20px;
}
.carousel-columns .column-slide-content img,
.carousel-columns .column-slide-content svg {
  margin-top: 35px;
  margin-bottom: 25px;
}
.carousel-columns .column-slide-content .figure-info {
  color: #dA6123;
  display: flex;
  flex-direction: column;
  font-family: "Cooper Hewitt Book", sans-serif;
  justify-content: center;
}
.carousel-columns .column-slide-content .figure-info .percentage {
  font-size: 95px;
  line-height: 80px;
}
.carousel-columns .column-slide-content .figure-info .text {
  font-size: 36px;
  line-height: 39px;
}
.carousel-columns .carousel-buttons-container {
  display: none;
}
.carousel-columns .button-container {
  margin-top: 80px;
  width: 100%;
  text-align: center;
}
.carousel-columns .button-container a {
  display: inline-block;
}

@media (max-width: 991px) {
  .carousel-columns .carousel-columns-header {
    margin-bottom: 35.74px;
  }
  .carousel-columns .carousel-columns-header h2, .carousel-columns .carousel-columns-header .h2 {
    text-align: left;
  }
  .carousel-columns .column-slide-content {
    font-family: "Cooper Hewitt Book", sans-serif;
    font-size: 18px;
    line-height: 32px;
  }
  .carousel-columns .column-slide-content img,
.carousel-columns .column-slide-content svg {
    margin-top: 25px;
    margin-right: 15px;
    max-width: 90%;
  }
  .carousel-columns .carousel-buttons-container {
    display: block;
  }
  .carousel-columns .button-container {
    margin-top: 80px;
    text-align: left;
  }
}
.testimonial-vertical-carousel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 170px;
}
.testimonial-vertical-carousel .carousel-widget-quote-template-inner-content {
  display: flex;
  flex-direction: column;
}
.testimonial-vertical-carousel h2.carousel-title, .testimonial-vertical-carousel .carousel-title.h2 {
  margin-bottom: 70px;
}
.testimonial-vertical-carousel .carousel-widget-quote-template-desc-wrapper {
  max-width: 530px;
}
.testimonial-vertical-carousel .carousel-widget-quote-template-item-wrapper {
  max-width: 640px;
}
.testimonial-vertical-carousel .carousel-widget-quote-template-content-wrapper {
  padding-top: 90px;
}
.testimonial-vertical-carousel .carousel-widget-quote-template-left-content {
  vertical-align: middle;
  margin: auto 0;
  padding: 52px 0 36px 0;
}
.testimonial-vertical-carousel .carousel-widget-quote-template-right-wrapper {
  display: flex;
  align-items: center;
  height: inherit;
}
.testimonial-vertical-carousel .carousel-widget-quote-template-speaker-container {
  padding-left: 0;
}

@media (max-width: 991px) {
  .testimonial-vertical-carousel .carousel-widget-quote-template-inner-content {
    display: flex;
    flex-direction: column-reverse;
  }
  .testimonial-vertical-carousel h2.carousel-title, .testimonial-vertical-carousel .carousel-title.h2 {
    margin-bottom: 30px;
  }
  .testimonial-vertical-carousel .carousel-description {
    margin-bottom: 160px;
  }
  .testimonial-vertical-carousel .carousel-widget-quote-template-content-wrapper {
    padding-top: 0;
  }
  .testimonial-vertical-carousel .carousel-widget-quote-template-right-wrapper {
    padding-left: 70px;
  }
  .testimonial-vertical-carousel .carousel-widget-quote-template-left-content {
    vertical-align: middle;
    margin: auto 0;
    padding: 0;
  }
  .testimonial-vertical-carousel .carousel-widget-quote-template-content-wrapper .col-2 {
    max-width: 75px;
  }
  .testimonial-vertical-carousel .carousel-widget-quote-template-content-container.col-10 {
    margin-left: 0;
  }
  .testimonial-vertical-carousel .slick-dots {
    position: absolute;
    top: -110px;
    padding-right: 12px;
    right: 0;
  }
}
@media (max-width: 445px) {
  .testimonial-vertical-carousel .carousel-widget-quote-template-speaker-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-vertical-carousel .carousel-widget-quote-template-secondary-content {
    padding-left: 0;
    margin-top: 10px;
  }
  .testimonial-vertical-carousel .carousel-widget-quote-template-content-wrapper {
    padding-top: 28px;
  }
  .testimonial-vertical-carousel .carousel-widget-quote-template-right-wrapper {
    padding-left: 70px;
  }
  .testimonial-vertical-carousel .slick-dots {
    padding-right: 12px;
  }
}
.hero {
  margin-block: 83px 69px;
  /* padding-bottom: 100px;*/
}
.hero .hero__wrapper {
  background: transparent linear-gradient(0deg, #dA6123 0%, #101135 65%) 0% 0% no-repeat padding-box;
  border-radius: 0px 20px 20px 0px;
  min-height: 431px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(0, 640px);
  align-items: center;
  padding-block: 70px;
}
.hero .hero__wrapper::before {
  background: transparent linear-gradient(0deg, #dA6123 0%, #101135 65%) 0% 0% no-repeat padding-box;
  content: "";
  display: block;
  position: absolute;
  left: -100vw;
  top: 0;
  right: 0;
  height: 100%;
  width: 100vw;
  margin-left: 1px;
}
.hero .hero-wrapper__content {
  max-width: 529px;
  color: #ffffff;
  padding-right: 16px;
}
.hero .hero-wrapper__content h1, .hero .hero-wrapper__content .h1 {
  font-size: 3.5625rem;
  line-height: 82px;
  letter-spacing: 0;
  margin-bottom: 26px;
  margin-top: 20px;
  color: #ffffff;
}
.hero .hero-wrapper__image {
  margin-top: 74px;
  width: 50vw;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  margin-bottom: -114px;
  align-self: flex-end;
  max-height: 400px;
  border-radius: 20px 0 0 20px;
}
.hero .hero-wrapper__image::after {
  padding-top: 51%;
}
.hero .hero-wrapper__image img {
  height: 100%;
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

@media (max-width: 991px) {
  .hero {
    margin-block: 33px 100px;
    /* padding-bottom: 54px;*/
  }
  .hero .hero__wrapper {
    grid-template-columns: 1fr;
    border-radius: 0px 15px 15px 0px;
  }
  .hero .hero-wrapper__content {
    padding-right: 32px;
  }
  .hero .hero-wrapper__content h1, .hero .hero-wrapper__content .h1 {
    font-size: 45px;
    line-height: 63px;
    margin-bottom: 30px;
    margin-top: 0;
  }
  .hero .hero-wrapper__image {
    width: calc(100vw - 32px);
    margin-block: 40px -124px;
    height: 200px;
    border-radius: 10px 0 0 10px;
  }
  .hero .hero-wrapper__image img {
    border-radius: 10px 0 0 10px;
  }
}
/* Content Page Hero */
.content-hero {
  margin-top: 83px;
  /*padding-right: 37px;*/
  /* not sure */
  /* Intro Section */
}
.content-hero div.hero__wrapper {
  padding-block: 105.5px 109.5px;
  grid-template-columns: 1fr 2fr;
}
.content-hero .hero-wrapper__title h1, .content-hero .hero-wrapper__title .h1 {
  font-size: 3.5625rem;
  line-height: 5.125em;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0px;
  margin-bottom: 0;
}
.content-hero .hero-wrapper__button {
  color: #fff;
  border-color: #fff;
  align-self: flex-start;
  margin-top: 16px;
}
.content-hero .hero-wrapper__title {
  align-self: center;
  margin-right: 42px;
  color: #fff;
}
.content-hero .button {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid #fff;
  color: #fff;
  font: 400 11px/28px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 1.32px;
  min-height: 43px;
  padding: 11px;
}
.content-hero .intro-image {
  margin-left: -36px;
  margin-right: 0;
  border-radius: 0 10px 10px 0;
  width: calc(100vw - 84px);
}
.content-hero .intro-image img {
  height: 200px;
  min-height: 200px;
}
.content-hero .left-bleed-1x3 {
  float: none;
}
.content-hero .intro-wrapper__text {
  margin-top: 100px;
  margin-bottom: 71px;
}

@media screen and (max-width: 991px) {
  .content-hero {
    margin-top: 33px;
  }
  .content-hero .heading--intro {
    margin-top: -58px;
  }
  .content-hero div.hero__wrapper {
    padding: 70px 47px 58px 33px;
    grid-template-columns: 1fr;
  }
  .content-hero .hero-wrapper__button {
    margin-top: 0;
  }
  .content-hero .hero-wrapper__title {
    margin: 36px 0 56px;
  }
  .content-hero .hero-wrapper__title h1, .content-hero .hero-wrapper__title .h1 {
    line-height: 63px;
    font-size: 45px;
    margin: 0;
  }
}
.about-page .hero {
  padding-bottom: 64px;
  overflow: hidden;
  margin-top: 83px;
}
.about-page .hero__wrapper {
  background: transparent linear-gradient(0deg, #dA6123 0%, #101135 65%) 0% 0% no-repeat padding-box;
  min-height: 444px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-block: 70px;
}
.about-page .hero-wrapper__content {
  max-width: 529px;
  color: white;
  padding-right: 16px;
}
.about-page .hero-wrapper__image {
  margin-top: 74px;
  width: 56vw;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  margin-bottom: -133px;
  align-self: flex-end;
  max-height: 338px;
  margin-left: 2px;
}
.about-page .hero-wrapper__image::after {
  padding-top: 51%;
}
.about-page .hero-wrapper__image img {
  height: 100%;
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  border-radius: 0px 20px 20px 0px;
}

@media screen and (max-width: 991px) {
  .about-page .hero {
    margin-block: 33px 95.6px;
    padding-bottom: 125px;
    margin-top: 33px;
  }
  .about-page .hero__wrapper {
    grid-template-columns: 1fr;
    border-radius: 0px 15px 15px 0px;
    min-height: 354px;
    padding-block: 70px 0px;
  }
  .about-page .hero-wrapper__content {
    padding-right: 47px;
  }
  .about-page .hero-wrapper__image {
    width: calc(100vw - 34px);
    margin-block: 44px -124px;
  }
}
/* Team of Teams  */
/* Capabilites Page  */
/* Callout with Image, Title, Content */
.callout-heading-image .wrapper {
  position: relative;
  background: transparent linear-gradient(90deg, #dA6123 0%, #101135 85%) 0% 0% no-repeat padding-box;
  min-height: 477px;
  border-radius: 20px 0px 0px 20px;
  margin-block: 100px 202px;
}
.callout-heading-image .wrapper::after {
  background: #101135;
  content: "";
  display: block;
  position: absolute;
  right: calc(-50vw + 1px);
  top: 0;
  height: 100%;
  width: 50vw;
  margin-right: 1px;
  z-index: -1;
}
.callout-heading-image .image {
  position: relative;
}
.callout-heading-image .text {
  display: grid;
  gap: 30px 0;
  grid-template-columns: minmax(0, 660px) minmax(0, 640px);
  padding-block: 156px;
  position: relative;
  padding-left: 16px;
}
.callout-heading-image .image__content {
  position: relative;
}
.callout-heading-image .wrapper__image.image-mask {
  position: absolute;
}
.callout-heading-image .wrapper__image {
  width: calc(50vw - 121px);
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
  max-height: 400px;
  right: calc(50% + 131px);
  translate: 0 calc(-100% + 133px);
}
.callout-heading-image .wrapper__image::after {
  padding-top: 497px;
}
.callout-heading-image .wrapper__image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.callout-heading-image .title {
  max-width: 472px;
  width: 100%;
  margin: auto 111px 0 auto;
  margin-bottom: -24px;
  padding-inline: 10px;
}
.callout-heading-image .title h2, .callout-heading-image .title .h2, .callout-heading-image .title h3, .callout-heading-image .title .h3 {
  font-weight: 300;
  font-size: 64px;
  line-height: 82px;
  font-family: "Cooper Hewitt Light", sans-serif;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  color: #ffffff;
}
.callout-heading-image .content {
  color: #ffffff;
}
.callout-heading-image .content p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  margin-bottom: 36px;
}

@media (max-width: 991px) {
  .callout-heading-image .wrapper {
    margin-block: 253px 151px;
    min-height: 494px;
  }
  .callout-heading-image .text {
    padding-left: 0;
    grid-template-columns: 1fr;
    border-radius: 15px 0px 0px 15px;
    padding-block: 147px 70px;
    gap: 24px 0;
  }
  .callout-heading-image .text {
    grid-template-columns: 1fr;
  }
  .callout-heading-image .image__direction {
    direction: ltr;
  }
  .callout-heading-image .wrapper__image {
    left: -38px;
    height: 200px;
    right: auto;
    width: calc(100vw - 38px);
    border-radius: 0px 10px 10px 0px;
    translate: 0 calc(-100% + 76px);
  }
  .callout-heading-image .wrapper__image::after {
    padding-top: 70.4%;
  }
  .callout-heading-image .title {
    margin-left: 0;
    max-width: 100%;
    padding-left: 47px;
    margin-bottom: 0;
    padding-right: 0;
  }
  .callout-heading-image .title h2, .callout-heading-image .title .h2, .callout-heading-image .title h3, .callout-heading-image .title .h3 {
    font-size: 34px;
    line-height: 52px;
    letter-spacing: 0;
  }
  .callout-heading-image .content {
    padding-left: 47px;
  }
  .callout-heading-image .content p {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    margin-bottom: 39px;
  }
  .callout-heading-image .wrapper__image img {
    height: 200px;
  }
}
.callout {
  overflow: hidden;
}
.callout .callout__wrapper {
  position: relative;
  background: transparent linear-gradient(90deg, #dA6123 0%, #101135 65%) 0% 0% no-repeat padding-box;
  min-height: 539px;
  border-radius: 20px 0px 0px 20px;
  margin-block: 303px;
}
.callout .callout__wrapper::after {
  background: #101135;
  content: "";
  display: block;
  position: absolute;
  right: -50vw;
  top: 0;
  height: 100%;
  width: 50vw;
  margin-right: 1px;
}
.callout .callout__wrapper {
  display: grid;
  grid-template-columns: 1.3fr 3.3fr;
}
.callout .callout-image__direction {
  direction: rtl;
}
.callout .callout-wrapper__image {
  position: relative;
  width: calc(50vw - 58.75% - 128px);
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
  max-height: 497px;
  right: 128px;
  top: -96px;
}
.callout .callout-wrapper__image::after {
  padding-top: 497px;
}
.callout .callout-wrapper__image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.callout .callout__content {
  position: relative;
  padding: 80px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.callout .callout__content h4, .callout .callout__content .h4 {
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 30px;
  line-height: 42.24px;
  -webkit-transform: translateY(0.354em);
          transform: translateY(0.354em);
  padding-top: 1px;
  font-family: "plantin", serif;
}
.callout .callout__content h4::before, .callout .callout__content .h4::before {
  content: "";
  margin-top: -17px;
  display: block;
  height: 0;
}
.callout .callout__content h2, .callout .callout__content .h2 {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-weight: normal;
  font-size: 46px;
  line-height: 62px;
  margin-bottom: 26.51px;
  font-size: 45px;
  line-height: 62px;
  -webkit-transform: translateY(0.3388888889em);
          transform: translateY(0.3388888889em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
}
.callout .callout__content h2::before, .callout .callout__content .h2::before {
  content: "";
  margin-top: -25px;
  display: block;
  height: 0;
}
.callout .callout__content h5, .callout .callout__content .h5 {
  margin-bottom: 28px;
}
.callout .callout__footer {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 62px;
}
.callout .callout__footer .btn-link a {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: #ffffff;
  text-transform: uppercase;
}
.callout .callout__footer .btn-link a:hover {
  color: #dA6123;
}

@media screen and (max-width: 992px) {
  .callout .callout__wrapper {
    width: 100vw;
    margin-block: 259px 252px;
  }
  .callout .callout__wrapper::after {
    content: none;
  }
  .callout .callout__wrapper {
    grid-template-columns: 1fr;
    border-radius: 15px 0px 0px 15px;
  }
  .callout .callout-image__direction {
    direction: ltr;
  }
  .callout .callout-wrapper__image {
    left: -38px;
    margin-left: 0;
    margin-right: 0;
    margin-top: -200px;
    height: 280px;
    right: auto;
    top: 0;
    width: calc(100vw - 38px);
    border-radius: 0px 15px 15px 0px;
  }
  .callout .callout-wrapper__image::after {
    padding-top: 70.4%;
  }
  .callout .callout__content {
    left: 0;
    padding: 69px 47px 83px;
    width: calc(100vw - 38px);
  }
  .callout .callout__content h4, .callout .callout__content .h4 {
    margin-bottom: 23px;
    font-weight: 300;
    font-size: 24px;
    line-height: 37px;
    -webkit-transform: translateY(0.4208333333em);
            transform: translateY(0.4208333333em);
    padding-top: 1px;
    font-family: "plantin", serif;
  }
  .callout .callout__content h4::before, .callout .callout__content .h4::before {
    content: "";
    margin-top: -17px;
    display: block;
    height: 0;
  }
  .callout .callout__content h2, .callout .callout__content .h2 {
    font-size: 28px;
    line-height: 43px;
    font-weight: normal;
    margin-bottom: 26.51px;
    font-size: 28px;
    line-height: 43px;
    -webkit-transform: translateY(0.4178571429em);
            transform: translateY(0.4178571429em);
    padding-top: 1px;
    font-family: "Cooper Hewitt Book", sans-serif;
  }
  .callout .callout__content h2::before, .callout .callout__content .h2::before {
    content: "";
    margin-top: -21px;
    display: block;
    height: 0;
  }
  .callout .callout__content p:last-child {
    margin-bottom: 0;
  }
  .callout .callout-wrapper__image img {
    height: 280px;
  }
  .callout .callout__footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 39px;
    gap: 45px;
  }
  .callout .callout__footer .btn-link {
    /*margin-top: 45.56px;*/
  }
  .callout .callout__footer .btn-link a {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.14px;
    color: #ffffff;
  }
  .callout .callout__footer .btn-link a:hover {
    color: #dA6123;
  }
}
/*-- Featured-area.html --*/
.featured-content .background-container {
  position: relative;
}
.featured-content .background-container .background {
  /*  width: 50vw;
  margin-right: calc(50% - 50vw);
  position: absolute;
  top: -430px;
  left: -331px;
  background: transparent 0% 0% no-repeat padding-box;
  z-index: -99;
  top: -430px;
  left: -170px;*/
  margin-right: calc(50% - 50vw);
  position: absolute;
  background: transparent 0% 0% no-repeat padding-box;
  top: -250px;
  left: -370px;
  min-width: 406px;
  z-index: -1;
  max-width: 1200px;
}
.featured-content .background-container .background img {
  min-width: 700px;
  bottom: inherit;
  position: relative;
  right: inherit;
  width: 100%;
  height: inherit;
  z-index: -1;
}
@media (max-width: 991px) {
  .featured-content .background-container .background .background {
    margin-right: calc(50% - 50vw);
    position: absolute;
    background: transparent 0% 0% no-repeat padding-box;
    top: -250px;
    left: -370px;
    min-width: 406px;
    z-index: -1;
    max-width: 1000px;
  }
  .featured-content .background-container .background .background img {
    min-width: 700px;
    bottom: inherit;
    position: relative;
    right: inherit;
    width: 100%;
    height: inherit;
    z-index: -1;
  }
}
.featured-content .featured__wrapper {
  display: flex;
  position: relative;
  justify-content: space-between;
}
.featured-content .featured__wrapper::before {
  background: rgba(234, 234, 234, 0.5) 0% 0% no-repeat padding-box;
  content: "";
  height: calc(100% - 140px);
  inset: 0;
  top: 50%;
  translate: 0 -50%;
  position: absolute;
  z-index: -1;
  border-radius: 20px 0px 0px 20px;
  width: calc(50vw + 50%);
}
.featured-content .featured__image {
  align-self: stretch;
  max-width: 529px;
  width: 100%;
  max-height: 687px;
  border-radius: 20px;
  display: flex;
}
.featured-content .featured__image .video-section,
.featured-content .featured__image .video-section-wrapper,
.featured-content .featured__image .video-container {
  max-height: none;
  align-self: stretch;
  display: flex;
}
.featured-content .featured__image .video-section img,
.featured-content .featured__image .video-section-wrapper img,
.featured-content .featured__image .video-container img {
  max-height: inherit;
}
.featured-content .featured__image .video-section {
  margin: 0;
}
.featured-content .featured__image img {
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
}
.featured-content .featured__text {
  max-width: 529px;
  padding-block: 173px;
  margin-inline: 110px 53.88px;
  font-weight: normal;
  width: 100%;
}
.featured-content .featured__text h4, .featured-content .featured__text .h4 {
  word-break: break-word;
  margin-block: 0 15px;
}
.featured-content .featured__text h2, .featured-content .featured__text .h2 {
  margin-block: 0 30px;
}
.featured-content .featured__text p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  margin-bottom: 20px;
}
.featured-content .buttons__end_section {
  direction: ltr;
  display: flex;
  align-items: baseline;
}
.featured-content .button-container {
  margin-top: 38px;
}
.featured-content .more-btn {
  margin-right: 47.84px;
  margin-bottom: 28px;
}

/** Same featured area but with tweaks for About Us */
.featured-content-news {
  margin-top: 307px;
  margin-bottom: 259px;
}
.featured-content-news .featured-content .background-container .background {
  width: 50vw;
  margin-right: calc(50% - 50vw);
  position: absolute;
  top: -290px;
  left: 25px;
  background: transparent 0% 0% no-repeat padding-box;
  z-index: -99;
}

.home-page-2__sections_4 .featured__text h2, .home-page-2__sections_4 .featured__text .h2 {
  font-size: 60px;
  line-height: 62px;
  letter-spacing: 0.6px;
  margin-top: 33px;
  font-family: "plantin", serif;
  font-weight: 300;
  margin-bottom: 33px;
  text-transform: none;
}
.home-page-2__sections_4 .featured-content .featured__image {
  max-height: 1080px;
}

@media (max-width: 991px) {
  .featured-content {
    margin-bottom: 150px;
  }
  .featured-content .background-container {
    position: relative;
    width: calc(50% - 38px);
  }
  .featured-content .background-container .background {
    margin-right: calc(50% - 50vw);
    position: absolute;
    background: transparent 0% 0% no-repeat padding-box;
    top: -250px;
    left: -152px;
    min-width: 406px;
    z-index: -1;
    max-width: 1200px;
  }
  .featured-content .background-container .background img {
    min-width: 700px;
    bottom: inherit;
    position: relative;
    right: inherit;
    width: 100%;
    height: inherit;
    z-index: -1;
  }
  .featured-content .featured__wrapper {
    flex-direction: column-reverse;
    padding-bottom: 70px;
  }
  .featured-content .featured__wrapper::before {
    bottom: 0;
    min-height: calc(100% - 118px);
    top: 118px;
    translate: none;
    width: calc(100% + 37px);
    z-index: -2;
    border-radius: 10px 0px 0px 10px;
  }
  .featured-content .featured__text {
    margin-inline: 47px 0;
    padding-block: 70px 0;
    max-width: 100%;
    width: auto;
  }
  .featured-content .featured__image img {
    height: 300px;
    border-radius: 10px;
  }
  .featured-content .featured__image {
    margin-left: 47px;
    align-self: flex-end;
    max-width: 100%;
    border-radius: 10px;
    width: calc(100% - 47px);
  }
  .featured-content .featured__text > *:first-child {
    margin-block: 0 15.02px;
  }
  .featured-content .featured__text > *:nth-child(3) {
    margin-block: 0px 40.73px;
  }
  .featured-content .featured__text h2, .featured-content .featured__text .h2 {
    font-size: 28px;
    line-height: 43px;
  }
  .featured-content .featured__text p {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }
  .featured-content .buttons__end_section {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .home-page-2__sections_4 .featured__text h2, .home-page-2__sections_4 .featured__text .h2 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: 0;
    margin-top: 23px;
    font-family: "plantin", serif;
    font-weight: 300;
    margin-bottom: 33px;
    text-transform: none;
  }
}
/** Same featured area but with tweaks for About Us */
@media (max-width: 991px) {
  .featured-content-news {
    margin-top: 202.52px;
    margin-bottom: 85.41px;
  }
  .featured-content-news .featured-content .background-container .background {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    position: absolute;
    top: -290px;
    left: 25px;
    background: transparent 0% 0% no-repeat padding-box;
    z-index: -99;
  }
}
/*** News List with Featured ***/
.related-article__outer-contaier {
  padding: 0 36px;
}

.related-article__container {
  max-width: 1300px;
  margin: 0 auto;
}

.related-article-details-left-side {
  width: 100%;
  margin-bottom: 63.85px;
}

.related-article-details-left-side h4, .related-article-details-left-side .h4 {
  margin-top: 24px;
}

.related-article-header {
  max-width: 330px;
  font-family: "plantin", serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: 0.6px;
  color: #101135;
  opacity: 1;
  margin-bottom: 46.85px;
}

.related-article__Section {
  display: flex;
  gap: 70px;
}

.related-article-left-side {
  max-width: 370px;
}

.related-article-category {
  max-width: 330px;
  text-align: left;
  font: normal normal normal 20px/38px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  color: #101135;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 22.15px;
}

.related-article-details-left-side h3, .related-article-details-left-side .h3 {
  max-width: 370px;
  text-align: left;
  color: #101135;
  font-family: "Cooper Hewitt Semibold", sans-serif;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.75px;
  margin-bottom: 16px;
  text-transform: uppercase;
  opacity: 1;
  margin: 0 0;
}

.related-article-description {
  max-width: 355px;
  text-align: left;
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #101135;
  opacity: 1;
  margin: 20px 0 0 0;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.related-article-details-left-side .related-article-read-article {
  text-align: left;
  font: normal normal normal 14px/22px "Cooper Hewitt Book", sans-serif;
  color: #dA6123;
  text-align: left;
  text-transform: uppercase;
  opacity: 1;
  margin: 20px 0 0 0;
}

.related-article-right-side {
  width: 65vw;
  margin-right: calc(50% - 58vw);
  border-radius: 20px 0 0 20px;
}

.related-image {
  margin: 0 0 -83px 109px;
}

.related-image img {
  width: 100%;
  border-radius: 20px 0px 0px 20px;
  opacity: 1;
  height: 476px;
  object-fit: cover;
}

.related-article-details {
  background: rgba(234, 234, 234, 0.5) 0% 0% no-repeat padding-box;
  border-radius: 20px 0px 0px 20px;
  padding: 140px 150px 86.4px 109px;
}

.related-article-details h4, .related-article-details .h4 {
  text-align: left;
  margin-bottom: 35.66px;
}

.related-article-main-title {
  text-align: left;
  font: normal normal normal 46px/65px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  color: #101135;
  opacity: 1;
  max-width: 611px;
  margin-bottom: 25.35px;
}

.related-article-description-container {
  max-width: 640px;
  text-align: left;
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #101135;
  opacity: 1;
  margin-bottom: 25.35px;
  margin-top: 25.35px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.related-article-inner-content h3, .related-article-inner-content .h3 {
  margin-top: 35.66px;
}

.related-article-details .MG-btn {
  margin-top: 25.43px;
}

.related-article-description-container:empty {
  display: none;
}

@media screen and (max-width: 991px) {
  .related-article__Section {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .related-image {
    width: 100vw;
    margin: 0 0 -97.87px 50px;
  }

  .related-article-title {
    font-weight: 300;
    font-size: 24px;
    line-height: 37px;
    font-family: "plantin", serif;
    font-weight: 300;
    letter-spacing: 0.6px;
    margin-bottom: 33.02px;
  }

  .related-article-details {
    width: 96vw;
    margin-bottom: 86px;
    border-radius: 15px 0px 0px 15px;
    padding: 141.58px 64px 63.67px 50px;
  }

  .related-article-details h4, .related-article-details .h4 {
    max-width: 69.76vw;
    margin-bottom: 33px;
  }

  .related-article-main-title {
    font-size: 28px;
    line-height: 43px;
    font-family: "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0;
    max-width: unset;
  }

  .related-article-description-container {
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    margin-bottom: 43.71px;
    max-width: unset;
  }

  .related-article__container .related-article__right-side.featured-content {
    margin-bottom: 0;
  }

  /* left */
  .related-article-details-left-side {
    margin-bottom: 46.85px;
  }

  .related-article-header {
    font: normal normal 300 24px/37px "plantin", serif;
    letter-spacing: 0.6px;
  }

  .related-image img {
    height: 273.64px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px 0px 0px 15px;
  }

  .related-article-category {
    max-width: unset;
    font: normal normal normal 16px/20px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0;
    margin-bottom: 17.15px;
  }

  .related-article-details-left-side h3, .related-article-details-left-side .h3 {
    max-width: unset;
    color: #101135;
    font-family: "Cooper Hewitt Semibold", sans-serif;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
    margin-top: 22.15px;
  }

  .related-article-details-left-side h4, .related-article-details-left-side .h4 {
    margin-top: 22.15px;
  }

  .related-article-description {
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    margin-bottom: 20px;
    max-width: unset;
    -webkit-line-clamp: 4;
  }

  .related-article-read-article {
    font: normal normal normal 14px/22px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.14px;
  }

  .related-article-details .MG-btn {
    margin-top: 43.71px;
  }

  .related-article-right-side {
    width: unset;
    margin: unset;
    max-height: unset;
    height: unset;
  }

  .related-article-left-side {
    max-width: unset;
  }
}
/**** Listings ****/
.playbooks-and-insights__wrapper h3, .playbooks-and-insights__wrapper .h3 {
  margin-bottom: 72px;
}
.playbooks-and-insights__wrapper h4, .playbooks-and-insights__wrapper .h4 {
  margin-bottom: 12px;
}
.playbooks-and-insights__wrapper h4.team-member-insights-header, .playbooks-and-insights__wrapper .team-member-insights-header.h4 {
  margin-bottom: 44px;
}
.playbooks-and-insights__wrapper .playbooks-and-insights__item {
  margin-bottom: 97.86px;
  display: flex;
}
.playbooks-and-insights__wrapper .featured-insights__item {
  margin-bottom: 60px;
}
.playbooks-and-insights__wrapper .playbooks-and-insights__image img {
  object-fit: cover;
  border-radius: 0;
  margin-right: 40px;
  max-width: 180px;
}
.playbooks-and-insights__wrapper .playbooks-and-insights__content {
  max-width: 520px;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
}
.playbooks-and-insights__wrapper .featured-insights__content {
  max-width: 450px;
}
.playbooks-and-insights__wrapper .featured-insights__content p {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow-y: hidden;
}
.playbooks-and-insights__wrapper a {
  font-size: 14px;
  line-height: 22px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.14px;
  margin-bottom: 0;
  margin-right: 20px;
}

@media screen and (max-width: 991px) {
  .playbooks-and-insights__wrapper h3, .playbooks-and-insights__wrapper .h3 {
    margin-bottom: 50px;
  }
  .playbooks-and-insights__wrapper .playbooks-and-insights__image img {
    max-width: 100px;
    object-fit: cover;
    border-radius: 0;
    margin-right: 14px;
    margin-bottom: 25px;
  }
  .playbooks-and-insights__wrapper .playbooks-and-insights__item {
    margin-bottom: 57.73px;
    display: block;
  }
}
/** Content Options **/
.content-options__main {
  padding-bottom: 141px;
}
.content-options__main .featured-content {
  margin-top: 276px;
}
.content-options__main .featured-content .featured__wrapper {
  margin: 110px 0 143px 0;
}

@media (max-width: 991px) {
  .content-options__main {
    padding-bottom: 70px;
  }
}
.content-options__main .image-hero-middle__container img {
  border-radius: 20px;
}

.content-options__main .team-member-testimonial {
  margin: 247.57px 0;
}

.content-options__outer-container {
  /* max-width: 1300px;
   margin: 0 auto;*/
  position: relative;
}

.content-options__container {
  padding: 0 32px;
  max-width: 1372px;
  margin: 0 auto;
}

.content-options-middle__media {
  margin-top: 339px;
}

.content-options-we__make-team-work {
  position: relative;
  margin-top: 247.57px;
}

.content-options-clients-we-serve {
  position: relative;
  min-height: 340px;
  margin-top: 450.57px;
}

.content-options-related-articles {
  /*margin-top: 448.39px;*/
  /*margin-bottom: 345.01px;*/
  /* most others */
  /*margin-bottom: 673px;*/
  /* in the XD */
  /*Article template*/
  margin-top: 271px;
  margin-bottom: 143px;
}

.article-detail .content-options-related-articles {
  margin-top: 120px;
  margin-bottom: 143px;
}

.content-options-related-articles .MG-article-external-links-wrapper {
  margin-top: 30px;
}

/* -- image-middle-hero -- */
.image-hero-middle__container img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

/*-- content-option-middle --*/
.content-options-middle-data {
  margin-top: 80px;
}

.content-options-text-block .MG-btn {
  margin-top: 23px;
}

.content-options-text-block .MG-btn h5, .content-options-text-block .MG-btn .h5 {
  color: #FFFFFF;
}

.content-options-middle-title p,
.content-options-middle-title .sfContentBlock div {
  max-width: 615px;
  margin-top: 32.5px;
}

.content-options-middle-section {
  margin-top: 81px;
  margin-bottom: 65px;
}

/*-- content-options-middle-2-col --*/
.content-options-middle__left-section p,
.content-options-middle__left-section .sfContentBlock div {
  margin: 21px 0 0 0;
  max-width: 484px;
}

.content-options-middle__left-section h3, .content-options-middle__left-section .h3 {
  margin-bottom: 24px;
}

.content-options-middle__right-section ul {
  margin-top: 32px;
}

/*-- content-option --*/
/* background image */
.content-options-middle__media .content-options__outer-container {
  position: relative;
}

.content-options__outer-container .content-options-lower__background {
  bottom: -445px;
  left: -793px;
  width: 100%;
  position: absolute;
  -webkit-transform: scale(-1);
          transform: scale(-1);
  z-index: -1;
}

.content-options__outer-container .content-options-lower__background img {
  height: 100%;
  width: auto;
}

.content-options__background,
.content-options-lower__background,
.what-makes-teams__background,
.you-have-tried__background {
  pointer-events: none;
}

/*-- content-option-cards --*/
/* Cards Background Options */
.content-options__cards {
  margin-top: 220px;
}

.content-options__cards .content-options__outer-container .content-options__background img {
  bottom: 100px;
  /*height: 1200px;*/
  position: absolute;
  right: -200px;
  -webkit-transform: scale(-1);
          transform: scale(-1);
  width: 1200px;
  z-index: -1;
}

/*-- content-option-carousel --*/
.content-options-programs__outer-container {
  margin: 0 auto;
  max-width: 1300px;
  margin-top: 468px;
  margin-bottom: 398px;
}

.content-options-programs__outer-container .MG-btn {
  margin: 80px auto 0 auto;
}

.content-options-programs__outer-container .MG-btn svg {
  margin: 0;
}

.content-options-programs {
  color: #101135;
  font-family: "Cooper Hewitt Book", sans-serif;
  padding: 0 36px;
}

.content-options-programs .sec-header {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 46px;
  line-height: 65px;
  text-align: center;
}

.content-options-programs .content-carousel-item {
  padding-right: 75px;
}

.program-card p,
.program-card .sfContentBlock div {
  margin-top: 30px;
}

.content-options-programs .program-cards-inner-container {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}

.content-options-programs .program-card {
  /* width: 28%;*/
}

.content-options-programs h4, .content-options-programs .h4 {
  color: #101135;
  font-family: "plantin", serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.75px;
  line-height: 42.2543411255px;
  margin: 0px;
}

.content-options-programs h5, .content-options-programs .h5 {
  color: #101135;
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 38px;
  text-transform: uppercase;
  margin: 0px;
  margin-top: 33px;
}

.content-options-programs .program-card-info {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 18px;
  line-height: 32px;
  margin-top: 10px;
  max-height: 98px;
  overflow-y: hidden;
}

.content-options-programs img,
.content-options-programs svg {
  margin-top: 35px;
  margin-right: 24px;
}

.content-options-programs .figure-info {
  color: #dA6123;
  display: flex;
  flex-direction: column;
  font-family: "Cooper Hewitt Book", sans-serif;
  justify-content: center;
}

.content-options-programs .figure-info .percentage {
  font-size: 95px;
  line-height: 80px;
}

.content-options-programs .figure-info .text {
  font-size: 36px;
  line-height: 39px;
}

.content-options-programs ul {
  margin-top: 61px;
}

.content-options-middle-section .button-container {
  margin-top: 46px;
}

.overlay-image-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.overlay-image-container .overlay-image {
  position: absolute;
  width: 1307px;
  height: 1646px;
  bottom: 28px;
  translate: -65% 25%;
  rotate: 254deg;
  z-index: -1;
}
.overlay-image-container .overlay-image img {
  object-fit: contain;
  height: 100%;
  object-position: top;
  width: 100%;
}

@media (max-width: 991px) {
  .content-options__cards {
    margin-top: 202.17px;
  }
}
@media (max-width: 991px) {
  div:has(> .sfContentBlock):not(:first-child) {
    margin-block: 20px;
  }

  .content-options__main li::before {
    margin-right: 21px;
  }

  .conten-options-middle__media {
    margin-top: 268.17px;
  }

  .image-hero-middle__container {
    max-height: 625px;
    height: auto;
    min-height: 205.82px;
    width: calc(100vw - 64px);
    overflow: hidden;
  }

  .image-hero-middle__container img {
    height: auto;
    width: 100%;
    min-height: 205.82px;
    border-radius: 10px;
    object-fit: cover;
  }

  .content-options-middle-data {
    margin-top: 43.17px;
  }

  content-options-middle__left-section button.call-button {
    margin-top: 49.17px;
  }

  .content-options-middle-title p,
.content-options-middle-title .sfContentBlock div {
    max-width: unset;
    margin-top: 43.17px;
  }

  .content-options-middle__left-section,
content-options-middle__right-section {
    /*margin-bottom:38.93px;*/
  }

  .content-options-middle__left-section p,
.content-options-middle__left-section .sfContentBlock div {
    max-width: unset;
    margin-bottom: 20.5px;
    margin-top: unset;
  }

  .content-options-middle__left-section p strong,
.content-options-middle__left-section .sfContentBlock div strong {
    font-family: "Cooper Hewitt Bold", sans-serif;
  }

  p strong {
    font-family: "Cooper Hewitt Bold", sans-serif;
  }

  .content-options-middle-section .button-container {
    margin-top: 46px;
  }

  .content-options-middle-section-1 {
    margin-top: 75.77px;
  }

  .content-options-middle-section-2 {
    margin-top: 94.39px;
  }

  .content-options-middle-section-3 {
    margin-top: 111.39px;
  }

  .content-options-middle__right-section h5, .content-options-middle__right-section .h5 {
    margin-top: 18.43px;
  }

  .content-options-middle__right-section ul {
    margin-top: 28px;
  }

  .content-options-middle__media {
    margin-top: 268.17px;
    overflow-x: unset;
  }

  .content-options-middle__media .MG-btn {
    margin-top: 49.17px;
  }

  /* the slider for the charts */
  .content-options-programs {
    /*  padding: 0 36px;
    overflow-x: hidden;*/
  }

  .content-options-programs .sec-header {
    font-size: 28px;
    line-height: 43px;
    margin: 0 auto;
    text-align: left;
  }

  .content-options-programs__outer-container {
    margin-top: 415.9px;
  }

  .content-options-programs .program-cards-inner-container {
    margin-top: 35.74px;
    justify-content: center;
    flex-direction: column;
  }

  .content-options-programs .program-card {
    /* display: none;
    width: auto;*/
  }

  .content-options-programs .program-card.active-card {
    display: block;
  }

  .content-options-programs .slide-bar {
    align-items: stretch;
    border-top: 2px solid #dA6123;
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 70px 0;
    padding: 0;
    position: relative;
    width: 110vw;
  }

  .content-options-programs .chart-slide {
    position: relative;
    width: 100%;
  }

  .content-options-programs .chart-slide::after {
    background: #dA6123;
    border-radius: 50%;
    content: "";
    top: -5.5px;
    height: 9px;
    position: absolute;
    width: 9px;
  }

  .content-options-programs .chart-slide.btn-slider__active::after {
    content: attr(data-after);
    background-color: #dA6123;
    border-radius: 50%;
    color: #ffffff;
    display: block;
    height: 33px;
    line-height: 33px;
    text-align: center;
    top: -16.5px;
    width: 33px;
  }

  .content-options-related-articles {
    /*margin-top: 359.23px;*/
    /*margin-bottom: 345.01px;*/
    /* most others */
    /*margin-bottom: 543px;*/
    /* in the XD */
    /*Article template*/
    margin-top: 148px;
    margin-bottom: 75px;
  }

  .slide-show-active-programs {
    display: unset !important;
  }

  .content-options__hero-wrapper__content h2, .content-options__hero-wrapper__content .h2,
.content-options__hero-wrapper__content h3,
.content-options__hero-wrapper__content .h3,
.content-options__hero-wrapper__content h4,
.content-options__hero-wrapper__content .h4,
.content-options__hero-wrapper__content h5,
.content-options__hero-wrapper__content .h5 {
    color: #ffffff;
  }

  .overlay-image-container {
    display: none;
  }
  .overlay-image-container .overlay-image {
    width: 100vw;
    height: 100vw;
    min-width: 455px;
    height: 455px;
    left: -28%;
    top: -100px;
    translate: -25% -50%;
  }
}
.button-middle .button-container a .MG-btn {
  display: flex;
  font-size: 20px;
  justify-content: center;
  margin: auto;
  margin-top: 103.64px;
}

.content__main {
  padding-bottom: 141px;
  /* left-bleed 1/3 */
  /* right bleed 2/3 */
  /* full right */
  /* image ratio */
  /* hero top to bottom gradient (left-bleed) */
  /* CTA left to right gradient (right-bleed) */
  /* grid 1/3 2/3 */
  /* single 2/3 column */
}
.content__main a,
.content__main p {
  word-break: break-word;
}
.content__main .intro-wrapper__text h3, .content__main .intro-wrapper__text .h3 {
  margin-top: 30px;
}
.content__main .two-columns-1fr-2fr h1, .content__main .two-columns-1fr-2fr .h1, .content__main .two-columns-1fr-2fr h2, .content__main .two-columns-1fr-2fr .h2, .content__main .two-columns-1fr-2fr h3, .content__main .two-columns-1fr-2fr .h3, .content__main .two-columns-1fr-2fr h4, .content__main .two-columns-1fr-2fr .h4 {
  margin-bottom: 27px;
}
.content__main .heading__wrapper {
  margin-top: 91px;
}
.content__main .heading__wrapper h1, .content__main .heading__wrapper .h1, .content__main .heading__wrapper h2, .content__main .heading__wrapper .h2, .content__main .heading__wrapper h3, .content__main .heading__wrapper .h3 {
  margin-bottom: 27px;
}
.content__main .heading__wrapper h2:not(:first-child), .content__main .heading__wrapper .h2:not(:first-child), .content__main .heading__wrapper h3:not(:first-child), .content__main .heading__wrapper .h3:not(:first-child) {
  margin-top: 40px;
}
.content__main .hero-wrapper__title h1, .content__main .hero-wrapper__title .h1 {
  font: 400 57px/82px "Cooper Hewitt Book", sans-serif;
  color: #fff;
  letter-spacing: 0px;
  margin-bottom: 0;
}
.content__main .hero-wrapper__title h4, .content__main .hero-wrapper__title .h4 {
  margin-bottom: 0;
}
.content__main .hero-wrapper__button {
  color: #fff;
  border-color: #fff;
  align-self: flex-start;
  margin-top: 16px;
}
.content__main .hero-wrapper__title {
  align-self: flex-start;
  margin-right: 42px;
  color: #fff;
}
.content__main .hero-wrapper__title .button-container {
  margin-top: 28px;
}
.content__main .heading--intro {
  margin-top: -84px;
}
.content__main .intro-image {
  position: relative;
  margin-right: 133px;
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
  text-align: right;
}
.content__main div.intro__wrapper {
  align-items: flex-start;
}
.content__main .intro-wrapper__text {
  letter-spacing: 0.09px;
  align-self: flex-start;
  margin-block: 184px 92px;
}
.content__main p:last-child, .content__main li:last-child, .content__main ul:last-child {
  /* margin-bottom: 0;*/
}
.content__main .left-bleed-1x3 {
  float: right;
  width: calc(50vw - 48.45% - 131px);
}
.content__main .right-bleed-2x3 {
  width: calc(50vw + 24.2%);
}
.content__main .right-bleed {
  width: calc(50vw + 50%);
}
.content__main .preview {
  position: relative;
  overflow: hidden;
}
.content__main .preview:before {
  content: "";
  display: block;
  /* default 16/9 */
  padding-bottom: 56.25%;
  position: relative;
  z-index: -1;
}
.content__main .preview img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}
.content__main .gradient--top-bottom {
  position: relative;
  height: 100%;
  background: transparent linear-gradient(0deg, #dA6123 0%, #101135 62%) 0% 0% no-repeat padding-box;
  border-radius: 0px 20px 20px 0px;
  /*min-height: 379px;*/
}
.content__main .gradient--top-bottom::before {
  background: transparent linear-gradient(0deg, #dA6123 0%, #101135 62%) 0% 0% no-repeat padding-box;
  content: "";
  display: block;
  position: absolute;
  left: calc(-100vw + 1px);
  top: 0;
  right: 0;
  height: 100%;
  width: 100vw;
  z-index: -1;
}
.content__main .gradient--left-right {
  position: relative;
  height: 100%;
  z-index: 1;
  background: transparent linear-gradient(90deg, #dA6123 0%, #101135 100%) 0% 0% no-repeat padding-box;
  border-radius: 20px 0px 0px 20px;
}
.content__main .gradient--left-right::after {
  background: #101135;
  content: "";
  display: block;
  position: absolute;
  left: calc(100% - 1px);
  top: 0;
  height: 100%;
  width: calc(50vw - 50%);
}
.content__main .two-columns-1fr-2fr {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
.content__main .two-columns-1fr-1fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.content__main .grid-column-two {
  grid-column: 2;
}
.content__main .intro-image {
  position: relative;
  margin-right: 133px;
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
  text-align: right;
}
.content__main div.intro__wrapper {
  align-items: flex-start;
}
.content__main .intro-wrapper__text {
  letter-spacing: 0.09px;
  align-self: flex-start;
  margin-block: 184px 92px;
}
.content__main .heading--quote:not(:has(h1, p)) + .heading__wrapper h2, .content__main .heading--quote:not(:has(h1, p)) + .heading__wrapper .h2 {
  margin-top: 0;
}
.content__main .intro-image img {
  object-fit: cover;
  min-height: 497px;
  max-height: 497px;
  width: 100%;
}
.content__main .heading__wrapper {
  align-items: flex-start;
}
.content__main .heading__wrapper h1, .content__main .heading__wrapper .h1 {
  font-family: "Cooper Hewitt Light", sans-serif;
}
.content__main .heading-wrapper__quote {
  margin-right: 111px;
  margin-top: auto;
}
.content__main .heading-wrapper__quote:has(.quote div) {
  padding-top: 54px;
}
.content__main .heading-wrapper__quote {
  margin-bottom: 0;
}
.content__main .heading-wrapper__quote p:first-child {
  margin-bottom: 41px;
}
.content__main .heading__wrapper:has(.heading-wrapper__quote) {
  margin-top: 0;
}
.content__main .heading-wrapper__quote .MG-text-wrapper {
  margin-bottom: 67.85px;
  margin-top: 67.85px;
}
.content__main .heading--quote {
  padding-left: 8px;
}
.content__main blockquote, .content__main .quote {
  position: relative;
  letter-spacing: 0;
  width: 100%;
}
.content__main blockquote p, .content__main .quote p {
  font-size: 20px;
  line-height: 32px;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin: 0 0 41px 0;
  letter-spacing: 0;
}
.content__main blockquote h5, .content__main blockquote .h5, .content__main .quote h5, .content__main .quote .h5 {
  font-size: 20px;
  line-height: 38px;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin: 0 0 41px 0;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}
.content__main blockquote h6, .content__main blockquote .h6, .content__main .quote h6, .content__main .quote .h6 {
  font-size: 18px;
  line-height: 32px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  margin: 0;
}
.content__main .quote:not(:has(div)) {
  display: none;
}
.content__main blockquote::before, .content__main .quote::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25.449" height="25.439" viewBox="0 0 25.449 25.439"><g id="Group_59" data-name="Group 59" transform="translate(-642.445 -5365.588)"><path id="Path_29" data-name="Path 29" d="M16.895-67.822a5.475,5.475,0,0,0-4.077,3.027,12.489,12.489,0,0,0-1.392,6.006q0,.293.024.562a3.363,3.363,0,0,0,.122.61h5.322v10.645H6.445v-9.814A21.657,21.657,0,0,1,8.887-67.163a9.857,9.857,0,0,1,8.008-5.249Z" transform="translate(636 5438)" fill="%23eaeaea"/><path id="Path_28" data-name="Path 28" d="M16.895-67.822a5.475,5.475,0,0,0-4.077,3.027,12.489,12.489,0,0,0-1.392,6.006q0,.293.024.562a3.363,3.363,0,0,0,.122.61h5.322v10.645H6.445v-9.814A21.657,21.657,0,0,1,8.887-67.163a9.857,9.857,0,0,1,8.008-5.249Z" transform="translate(651 5438)" fill="%23eaeaea"/></g></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  top: -12px;
  position: absolute;
  left: -40px;
}
.content__main .heading-image__caption {
  max-width: 330px;
  margin-top: auto;
  width: 100%;
}
.content__main .heading-image__caption div {
  font-family: "plantin", serif;
  font-style: italic;
  font-size: 16px;
  color: #7e7f8f;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.32px;
}
.content__main .heading-image__wrapper:has(img) {
  margin: 90px 0;
}
.content__main .heading-image {
  max-height: 400px;
  position: relative;
  left: 7px;
}
.content__main .heading-image img {
  border-radius: 20px 0 0 20px;
  /*max-height: 400px;*/
  width: 100%;
}
.content__main .heading-content {
  position: relative;
}
.content__main .call-to-action {
  margin-block: 116px 220px;
}
.content__main .call-to-action__wrapper {
  color: #fff;
  padding: 131px 0 119px 109px;
}
.content__main .call-to-action__content {
  width: calc(100% + 37px);
  z-index: 1;
  position: relative;
}
.content__main .call-to-action__content h2, .content__main .call-to-action__content .h2, .content__main .call-to-action__content h3, .content__main .call-to-action__content .h3 {
  margin-bottom: 43px;
  font-size: 46px;
  line-height: 62px;
  letter-spacing: 0;
}
.content__main .overlay-image-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.content__main div.overlay-image {
  position: absolute;
  width: 1181px;
  height: 1500px;
  left: -28%;
  top: -100px;
  translate: -25% -50%;
}
.content__main .overlay-image img {
  object-fit: contain;
  height: 100%;
}
.content__main .content-slider {
  margin-top: 140px;
  margin-bottom: 158px;
}
.content__main .featured-content .featured__wrapper {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin: 110px 0 143px 0;
}
.content__main .content-options-related-articles {
  margin-top: 110px;
  margin-bottom: 143px;
}

@media (max-width: 991px) {
  .content__main {
    padding-bottom: 70px;
  }
  .content__main div:has(> .sfContentBlock):not(:first-child) {
    margin-block: 20px;
  }
  .content__main .heading__wrapper {
    margin-top: 71px;
  }
  .content__main .heading__wrapper h1, .content__main .heading__wrapper .h1,
.content__main .heading__wrapper h2,
.content__main .heading__wrapper .h2,
.content__main .heading__wrapper h3,
.content__main .heading__wrapper .h3 {
    margin-bottom: 15px;
  }
  .content__main .order-reverse > *:nth-child(even) {
    order: -1;
  }
  .content__main .right-bleed-2x3 {
    width: calc(100% + 37px);
  }
  .content__main .two-columns-1fr-1fr,
.content__main .two-columns-1fr-2fr {
    grid-template-columns: 1fr;
  }
  .content__main .grid-column-two {
    grid-column: 1;
  }
  .content__main .content-hero {
    margin-top: 33px;
  }
  .content__main .heading--intro {
    margin-top: -58px;
  }
  .content__main div.hero__wrapper {
    padding: 70px 47px 58px 33px;
    grid-template-columns: 1fr;
  }
  .content__main .hero-wrapper__button {
    margin-top: 0;
  }
  .content__main .hero-wrapper__title {
    margin: 36px 0 56px;
  }
  .content__main .hero-wrapper__title h1, .content__main .hero-wrapper__title .h1 {
    line-height: 63px;
    font-size: 45px;
    margin: 0;
  }
  .content__main .intro-image {
    margin-left: -36px;
    margin-right: 0;
    border-radius: 0 10px 10px 0;
    width: calc(100vw - 84px);
  }
  .content__main .intro-image img {
    height: 200px;
    min-height: 200px;
    width: 100%;
  }
  .content__main .left-bleed-1x3 {
    float: none;
  }
  .content__main .intro-wrapper__text {
    margin-top: 100px;
    margin-bottom: 71px;
  }
  .content__main .heading--quote {
    padding-left: 0;
  }
  .content__main blockquote,
.content__main .quote {
    padding-left: 47px;
    padding-right: 51px;
    width: 100%;
    margin-left: 0;
  }
  .content__main blockquote p,
.content__main .quote p {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 30px 0;
  }
  .content__main blockquote h5, .content__main blockquote .h5,
.content__main .quote h5,
.content__main .quote .h5 {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
  }
  .content__main blockquote h6, .content__main blockquote .h6,
.content__main .quote h6,
.content__main .quote .h6 {
    font-size: 15px;
    line-height: 28px;
    margin: 0;
    letter-spacing: 0.07px;
  }
  .content__main blockquote::before,
.content__main .quote::before {
    left: 0;
  }
  .content__main .heading-wrapper__quote {
    margin-right: 0;
  }
  .content__main .sfContentBlock:has(blockquote:only-child) {
    padding-left: 36px;
    margin-top: 70px;
    width: calc(100% + 37px);
    padding: 58px 0 41px;
    background: transparent linear-gradient(90deg, #eaeaea00 0%, #eaeaea 100%) 0% 0% no-repeat padding-box;
  }
  .content__main .heading-wrapper__quote:has(.quote div) {
    margin-bottom: 71px;
    margin-top: 54px;
  }
  .content__main .heading-wrapper__quote p:first-child {
    margin-bottom: 30px;
  }
  .content__main .heading-wrapper__quote + .heading-wrapper__text h1, .content__main .heading-wrapper__quote + .heading-wrapper__text .h1 {
    margin-top: 0;
  }
  .content__main .heading-image__wrapper:has(img) {
    margin: 70px 0;
  }
  .content__main .heading-image__caption {
    margin-top: 30px;
    max-width: initial;
    position: static;
    width: 100%;
  }
  .content__main .heading-image__caption div {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.28px;
  }
  .content__main .heading-image {
    left: 0;
  }
  .content__main .heading-image img {
    height: 200px;
    border-radius: 10px 0px 0px 10px;
  }
  .content__main .heading-wrapper__quote {
    padding-left: 36px;
    margin-top: 70px;
    width: calc(100% + 37px);
    padding: 58px 0 41px;
    background: transparent linear-gradient(90deg, #eaeaea00 0%, #eaeaea 100%) 0% 0% no-repeat padding-box;
  }
  .content__main .heading-wrapper__quote:not(:has(.quote div)) {
    display: none;
  }
  .content__main .call-to-action {
    margin-top: 93px;
    margin-bottom: 170px;
  }
  .content__main .call-to-action__content {
    width: 100%;
  }
  .content__main .call-to-action__wrapper {
    padding: 70px 0 70px 47px;
  }
  .content__main .call-to-action__content h2, .content__main .call-to-action__content .h2,
.content__main .call-to-action__content h3,
.content__main .call-to-action__content .h3 {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 43px;
  }
  .content__main div.overlay-image {
    min-height: 631px;
    width: 100%;
    z-index: -1;
    left: auto;
    top: 0;
    height: 100vh;
    right: -20%;
    z-index: -1;
    translate: -50% -50%;
  }
  .content__main .overlay-image img {
    object-fit: contain;
  }
  .content__main .content-slider {
    margin-top: 132px;
    margin-bottom: 150px;
  }
  .content__main .featured-content .featured__wrapper {
    display: flex;
    position: relative;
    justify-content: space-between;
    margin: 110px 0 85px 0;
  }
  .content__main .content-options-related-articles {
    margin-top: 110px;
    margin-bottom: 85px;
  }
}
.content-wrapper hr, .MG-event-content-wrapper hr, .article-content-wrapper hr {
  margin-top: 42px;
  margin-bottom: 42px;
  border-top: 1px solid #eaeaea;
  opacity: 1;
}

@media (max-width: 580px) {
  .content-main div.overlay-image {
    min-height: 531px;
    width: calc(100vw + 107px);
    right: -33%;
  }
}
.global-contact-us-layout__container {
  padding: 0 36px;
  position: relative;
}

.global-contact-us-layout__container.with-margin-top {
  margin-top: 83px;
}

.global-contact-us-layout__inner {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}

.contact-us-background__header {
  background: transparent linear-gradient(0deg, #dA6123 0%, #101135 62%) 0% 0% no-repeat padding-box;
  border-radius: 0px 20px 20px 0px;
  bottom: 0;
  left: 0;
  max-width: 90.44%;
  position: absolute;
  right: 0;
  top: 0;
  height: 444px;
  z-index: -1;
}

.contact-header__info {
  display: flex;
  flex-direction: column;
  padding-top: 144px;
}

.contact-header__title {
  max-width: 660px;
  font-size: 57px;
  line-height: 82px;
  letter-spacing: 0px;
  color: #ffffff;
  text-align: left;
  margin-bottom: 45px;
}

.contact-header__details {
  max-width: 309px;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #ffffff;
  text-align: left;
}

.contact-hero__section {
  display: flex;
  justify-content: space-between;
}

.contact-wrapper__image {
  margin-top: 144px;
  width: 49.375vw;
  margin-right: calc(50% - 50vw);
  border-radius: 20px 0px 0px 20px;
  overflow: hidden;
  height: 400px;
}

.contact-wrapper__image img,
.contact-image__img {
  height: 100%;
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
}

.global-contact-us-layout__container.rtl-dir {
  direction: rtl;
  margin-top: 437px;
  margin-bottom: 217px;
}

.contact-us-background_header_right_dir {
  background: transparent linear-gradient(90deg, #dA6123 0%, #101135 85%) 0% 0% no-repeat padding-box;
  border-radius: 20px 0px 0px 20px;
  bottom: 0;
  left: 0;
  max-width: 90.625%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.contact-wrapper__image_ltr_dir {
  margin-top: -121px;
  width: 42.4375vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
  height: 535px;
  margin-right: 131px;
}

.location__section {
  display: flex;
  justify-content: flex-end;
}

.contact-us__content {
  margin-top: 81.5px;
  margin-bottom: 79.5px;
  direction: ltr;
}

.contact-us-content__sub-title {
  text-align: left;
  font-size: 46px;
  line-height: 65px;
  letter-spacing: 0px;
  color: #ffffff;
  max-width: 639px;
  margin-bottom: 28px;
}

.contact-us-content__details {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #ffffff;
  text-align: left;
  margin-bottom: 48.99px;
  max-width: 639px;
}

.contact_buttons__end_section {
  direction: ltr;
  display: flex;
  align-items: baseline;
}

.dir_button {
  margin-right: 47.84px;
  font-size: 20px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #ffffff;
  text-align: left;
}

.email_button a {
  letter-spacing: 0.16px;
  color: #ffffff;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-family: "Cooper Hewitt Medium", sans-serif;
  /*max-width: 50px;*/
}
.email_button a:hover {
  color: #dA6123;
}
.email_button a .contact-us-content__details a {
  color: #ffffff;
}
.email_button a .contact-us-content__details a:hover {
  color: #101135;
}

.contact_us__form {
  display: flex;
  flex-direction: column;
}

.contact-us-header__form {
  display: flex;
}

.contact-us-body-form {
  display: flex;
}

.contact-us-title__form div div p:first-child,
.contact-us-title__form div div h2,
.contact-us-title__form div div .h2 {
  font-size: 46px;
  line-height: 65px;
  letter-spacing: 0px;
  color: #101135;
  margin-bottom: 14.5px;
  text-align: left;
}

.contact-us-title__form div div p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #101135;
  text-align: left;
  margin-bottom: 42.51px;
}

.summary_info {
  display: flex;
  flex-direction: column;
}

.summary_info {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #101135;
  text-align: left;
  max-width: 265px;
}

.contact-us__fields {
  background: transparent linear-gradient(90deg, rgba(234, 234, 234, 0) 0%, #eaeaea 100%) 0% 0% no-repeat padding-box;
  position: relative;
  /* min-height: 809px;*/
}

.welcome_title {
  font-family: "Cooper Hewitt Semibold", sans-serif;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.75px;
  color: #101135;
  text-align: left;
  padding-top: 26px;
  margin-bottom: 16.51px;
}

.contact-us__form {
  font-size: 18px;
  line-height: 42px;
  letter-spacing: 0.09px;
  color: #101135;
  text-align: left;
}

.cards-overlay-image-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.cards-overlay-image {
  position: absolute;
  width: 1200px;
  height: 1200px;
  left: 69%;
  translate: 0% -46%;
  z-index: 0;
  pointer-events: none;
}

.cards-overlay-image img {
  object-fit: contain;
  height: 100%;
}

.contact_us__form__mobile {
  display: none;
}

.contact_us__form {
  margin-top: 161px;
}

.contact-us__fields::before {
  content: "";
  background: #eaeaea 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  left: 100%;
  width: 100vw;
}

/*override*/
/*.frmContactUs .container {
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px;

    .sf_cols,
    .custom_sf_cols {
        display: flex;
    }

    .sf_colsOut:nth-of-type(2) {
        display: flex;
        align-items: center;
    }
}*/
.contact-us__fields .row.margin-bottom {
  margin-bottom: 28.5px;
}

.contact-us__fields .custom-drop-dir.reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.frmContactUs div:nth-of-type(8) div:nth-of-type(1) div:nth-of-type(1) div {
  font-size: 15px;
  line-height: 32px;
  letter-spacing: 0.07px;
  color: #101135;
  text-align: left;
  margin-bottom: 47.5px;
}

.contact-us-content__details div div p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #ffffff;
  text-align: left;
  max-width: 639px;
  margin-bottom: 5px;
}

.frmContactUs div:nth-of-type(7) .custom-drop-dir .dropdown {
  margin-left: 0;
}

.frmContactUs .row > * {
  padding-right: 0;
}

.frmContactUs .col-lg-6 {
  align-self: center;
}

.image-mask.image-mask-map {
  width: 42.4375vw;
  height: 535px;
}

.image-mask.image-mask-map::before {
  border-radius: inherit;
  content: "";
  height: 100%;
  inset: 0;
  mix-blend-mode: color;
  position: absolute;
  width: 100%;
  z-index: 1;
  background: #dac4bc linear-gradient(0deg, #f4b188 0%, #dA612324 33%, #dA612300 100%) 0% 0% no-repeat padding-box;
  /*background-color: #ffeee5;*/
  pointer-events: none;
}

.contact-us__fields .custom-input_textarea_field {
  border: 1px solid #dA6123;
  margin: 0 12px 0 6px;
  padding: 0 12px;
  background-color: inherit;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #dA6123;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .global-contact-us-layout__container.with-margin-top {
    margin-top: 33px;
  }

  .contact-us-background__header {
    max-width: 91.396%;
    height: 431px;
    border-radius: 0px 15px 15px 0px;
  }

  .contact-header__info {
    padding-top: 70px;
  }

  .contact-header__title {
    max-width: unset;
    font-size: 45px;
    line-height: 63px;
    letter-spacing: 0px;
    margin-bottom: 30px;
  }

  .contact-header__details {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    max-width: unset;
  }

  .contact-hero__section {
    flex-direction: column;
  }

  .contact-wrapper__image {
    width: 100vw;
    border-radius: 10px 0px 0px 10px;
    margin-top: 55px;
    height: 269px;
    margin-right: 0;
  }

  /* right */
  .contact-us-background_header_right_dir {
    max-width: 91.628%;
    height: auto;
    background: transparent linear-gradient(90deg, #dA6123 0%, #101135 100%) 0% 0% no-repeat padding-box;
    border-radius: 15px 0px 0px 15px;
  }

  .contact-wrapper__image_ltr_dir {
    margin-top: -296px;
    width: 91.627vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0px 15px 15px 0px;
    overflow: hidden;
    height: 376px;
  }

  .location__section {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .contact-us__content {
    margin-top: 49.49px;
    padding-left: 10.697%;
    margin-bottom: 48px;
  }

  .contact-us-content__sub-title {
    font-size: 46px;
    line-height: 65px;
    letter-spacing: 0px;
    margin-bottom: 19.5px;
    max-width: unset;
    line-height: 1;
  }
  .contact-us-content__sub-title p {
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .contact-us-content__details {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.09px;
    margin-bottom: 39.49px;
    max-width: unset;
  }
  .contact-us-content__details p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 29px;
  }

  .contact_buttons__end_section {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }

  /* mobile */
  .contact_us__form {
    display: flex;
    margin-top: 77.5px;
  }

  .contact-us__content.dir_button {
    margin-bottom: 39.49px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
  }

  .contact-us__content.email_button a:not([class^=sf]):not([class^=rp]):not([class=navbar-button]) {
    font-size: 14px;
    line-height: 22px;
    font-family: "Cooper Hewitt Medium", sans-serif;
    letter-spacing: 0.14px;
    font-size: 14px;
    line-height: 22px;
  }

  /* mobile */
  .contact_us__form {
    display: flex;
  }

  .contact_us__form__mobile {
    display: block;
  }

  .contact-us-main-title__header {
    font-size: 28px;
    line-height: 43px;
    letter-spacing: 0px;
    padding-top: 45.75px;
    margin-bottom: 21.5px;
  }

  .contact-us-title__form div div h2, .contact-us-title__form div div .h2 {
    font-size: 28px;
    line-height: 43px;
    letter-spacing: 0px;
  }

  .contact-us-title__form div div p:first-child,
.contact-us-title__form div div h2,
.contact-us-title__form div div .h2 {
    font-size: 28px;
    line-height: 43px;
    letter-spacing: 0px;
    padding-top: 46px;
    margin-bottom: 21.5px;
  }

  .contact-us-title__form div div p {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    margin-bottom: 16.42px;
    max-width: unset;
  }

  .contact-us__content.welcome_title {
    font-family: "Cooper Hewitt Semibold", sans-serif;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.75px;
    margin-bottom: 34.18px;
    max-width: unset;
    padding: 0;
  }

  .contact-us-body-form {
    flex-direction: column-reverse;
  }

  .frmContactUs > div.sf_cols:nth-child(1) > div > div:nth-child(2) {
    margin-bottom: 52.31px;
  }

  .contact_us__form.cards-overlay-image {
    position: absolute;
    width: 600px;
    height: 600px;
    left: 77%;
    translate: -23% -43%;
    z-index: 0;
  }

  .contact-us-header__form {
    background: transparent linear-gradient(90deg, rgba(234, 234, 234, 0) 0%, #eaeaea 100%) 0% 0% no-repeat padding-box;
    position: relative;
  }

  .contact_us__form::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    padding-right: 20px;
  }

  .contact_us__form::placeholder {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    padding-right: 20px;
  }

  .contact_us__form__mobile {
    margin-top: 77.5px;
  }

  .global-contact-us-layout__container.rtl-dir {
    margin-top: 642px;
    margin-bottom: 238px;
  }

  .contact_us__form.option-style {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    text-align: center;
  }

  .contact-us-header__form::before {
    content: "";
    background: #eaeaea 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    left: 100%;
    width: 100vw;
  }

  .contact-us__fields div:nth-child(2) .frmContactUs > div {
    margin-bottom: 0;
  }

  .contact_us__form.sf_cols {
    flex-direction: column;
  }

  .frmContactUs > div.sf_cols:nth-child(1) > div {
    flex-direction: column;
  }

  .frmContactUs > div.sf_cols:nth-child(1) > div > div:nth-child(1) {
    margin-bottom: 39.86px;
  }

  .frmContactUs > div.sf_cols:nth-child(1) > div > div:nth-child(1) input {
    width: 100%;
    margin-left: 4px;
  }

  .frmContactUs > div.sf_cols:nth-child(1) > div > div:nth-child(2) {
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(1) > div > div:nth-child(2) input {
    width: 100%;
  }

  .frmContactUs > div.sf_cols:nth-child(2) > div {
    flex-direction: column;
  }

  .frmContactUs > div.sf_cols:nth-child(2) > div > div:nth-child(1) {
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(2) > div > div:nth-child(1) .dropdown {
    width: 100%;
  }

  .frmContactUs > div.sf_cols:nth-child(2) > div > div:nth-child(2) .dropdown {
    width: 100%;
  }

  .frmContactUs > div.sf_cols:nth-child(2) > div > div:nth-child(2) {
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(2) > div > div:nth-child(1) {
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(1) {
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(1) input {
    width: 100%;
    margin-left: 4px;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(2) {
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(2) .dropdown {
    width: 100%;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(3) {
    margin-bottom: 54.81px;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(3) div div div:nth-child(1) {
    width: 100%;
    margin: 0;
  }

  .frmContactUs > div.sf_cols:nth-child(4) > div > div:nth-child(1) .custom-container__field {
    flex-direction: column;
    align-items: start;
  }

  .frmContactUs > div.sf_cols:nth-child(4) > div > div:nth-child(1) .custom-container__field label {
    margin-bottom: 26px;
  }

  .frmContactUs > div.sf_cols:nth-child(4) > div > div:nth-child(1) .custom-container__field .custom-input_text_field {
    width: 100%;
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(5) > div > div:nth-child(1) {
    margin-bottom: 54.81px;
  }

  .frmContactUs > div.sf_cols:nth-child(5) > div > div:nth-child(1) .dropdown {
    width: 100%;
    margin: 0 0 0 6px;
  }

  .frmContactUs > div.sf_cols:nth-child(6) > div > div:nth-child(1) .custom-drop-dir {
    flex-direction: column;
  }

  .frmContactUs > div.sf_cols:nth-child(6) > div > div:nth-child(1) .custom-drop-dir label {
    margin-bottom: 20.63px;
  }

  .frmContactUs > div.sf_cols:nth-child(6) > div > div:nth-child(1) .custom-drop-dir .dropdown {
    width: 100%;
    margin: 0;
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(7) > div > div:nth-child(1) .custom-drop-dir {
    flex-direction: column-reverse;
  }

  .frmContactUs > div.sf_cols:nth-child(7) > div > div:nth-child(1) .custom-drop-dir .dropdown {
    width: 100%;
    margin: 0;
    margin-bottom: 20.63px;
  }

  .frmContactUs > div.sf_cols:nth-child(7) > div > div:nth-child(1) .custom-drop-dir label {
    margin-bottom: 52.31px;
  }

  .contact-us-content.summary_info div div h5, .contact-us-content.summary_info div div .h5 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
  }

  .contact-us-content__details div div p {
    font-size: 18px;
    line-height: 32px;
    max-width: unset;
    margin-bottom: 5px;
  }

  .frmContactUs div:nth-of-type(3) div:nth-of-type(3) {
    width: 100%;
  }

  .frmContactUs > div.sf_cols:nth-child(2) > div > div:nth-child(2) {
    margin-bottom: 52.31px;
  }

  .frmContactUs div:nth-of-type(2) div:nth-of-type(2) .dropdown {
    width: 100%;
  }

  .frmContactUs div:nth-of-type(7) .custom-drop-dir {
    flex-direction: column-reverse;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(1) {
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(1) input {
    width: 100%;
    margin-left: 4px;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(2) {
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(2) .dropdown {
    width: 100%;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(3) {
    margin-bottom: 54.81px;
  }

  .frmContactUs > div.sf_cols:nth-child(3) > div > div:nth-child(3) div div div:nth-child(1) {
    width: 100%;
    margin: 0;
  }

  .frmContactUs > div.sf_cols:nth-child(4) > div > div:nth-child(1) .custom-container__field {
    flex-direction: column;
    align-items: start;
  }

  .frmContactUs > div.sf_cols:nth-child(4) > div > div:nth-child(1) .custom-container__field label {
    margin-bottom: 26px;
  }

  .frmContactUs > div.sf_cols:nth-child(4) > div > div:nth-child(1) .custom-container__field .custom-input_text_field {
    width: 100%;
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(5) > div > div:nth-child(1) {
    margin-bottom: 54.81px;
  }

  .frmContactUs > div.sf_cols:nth-child(5) > div > div:nth-child(1) .dropdown {
    width: 100%;
    margin: 0 0 0 6px;
  }

  .frmContactUs > div.sf_cols:nth-child(6) > div > div:nth-child(1) .custom-drop-dir {
    flex-direction: column;
  }

  .frmContactUs > div.sf_cols:nth-child(6) > div > div:nth-child(1) .custom-drop-dir label {
    margin-bottom: 20.63px;
  }

  .frmContactUs > div.sf_cols:nth-child(6) > div > div:nth-child(1) .custom-drop-dir .dropdown {
    width: 100%;
    margin: 0;
    margin-bottom: 52.31px;
  }

  .frmContactUs > div.sf_cols:nth-child(7) > div > div:nth-child(1) .custom-drop-dir {
    flex-direction: column-reverse;
  }

  .frmContactUs > div.sf_cols:nth-child(7) > div > div:nth-child(1) .custom-drop-dir .dropdown {
    width: 100%;
    margin: 0;
    margin-bottom: 20.63px;
  }

  .frmContactUs > div.sf_cols:nth-child(7) > div > div:nth-child(1) .custom-drop-dir label {
    margin-bottom: 52.31px;
  }

  .contact-us__fields {
    /* min-height: 1343.51px;*/
    background: transparent;
  }

  .summary_info div div h5, .summary_info div div .h5 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
  }

  .contact-us-content__details div div p {
    font-size: 18px;
    line-height: 32px;
    max-width: unset;
    margin-bottom: 5px;
  }

  .frmContactUs div:nth-of-type(3) div:nth-of-type(3) {
    width: 100%;
  }

  .frmContactUs div:nth-of-type(2) div:nth-of-type(2) .dropdown {
    width: 100%;
  }

  .frmContactUs div:nth-of-type(7) .custom-drop-dir {
    flex-direction: column-reverse;
  }

  .image-mask.image-mask-map {
    width: 100%;
  }
}
.sfPageWrapper .cards-overlay-image-container.cards-overlay-image {
  z-index: -9999999;
}
.sfPageWrapper .dir_button {
  max-width: 186px;
}
.sfPageWrapper .email_button {
  max-width: 186px;
}
.sfPageWrapper .email_button .rd-content a {
  max-width: inherit;
}

/*text box */
.contact-us__fields .custom-container {
  display: flex;
}
.contact-us__fields .custom-form-label {
  font-size: 18px;
  line-height: 42px;
  letter-spacing: 0.09px;
  color: #101135;
  text-align: left;
  white-space: nowrap;
}
.contact-us__fields .custom-input_text_field {
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #dA6123;
  border-left: none;
  height: 23px;
  margin: 0 0 0 6px;
  padding: 0 12px;
  background-color: inherit;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #dA6123;
  width: 100%;
  max-width: 490px;
  text-align: center;
}
.contact-us__fields .custom-input_text_field:focus {
  outline: none;
}
.contact-us__fields ::-webkit-input-placeholder {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #dA6123;
  text-align: center;
}
.contact-us__fields ::placeholder {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #dA6123;
  text-align: center;
}
.contact-us__fields .custom-container__dir {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-us__fields .custom-container__field {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contact-us__fields .custom-input_text_field.error-border {
  border-bottom: 2px solid red;
}
@media screen and (max-width: 991px) {
  .contact-us__fields ::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }
  .contact-us__fields ::placeholder {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }
  .contact-us__fields .custom-input_text_field::-webkit-input-placeholder, .contact-us__fields .text.custom-input::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }
  .contact-us__fields .custom-input_text_field::placeholder,
.contact-us__fields .text.custom-input::placeholder {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }
  .contact-us__fields .custom-form-label {
    font-size: 18px;
    line-height: 42px;
    letter-spacing: 0.09px;
    color: #101135;
    text-align: left;
  }
  .contact-us__fields .custom-input_text_field {
    margin: 0;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    width: 100%;
  }
  .contact-us__fields .sf_colsIn {
    width: 100%;
  }
}

/* dropdown */
.contact-us__fields ul {
  list-style: none;
}
.contact-us__fields .dropdown {
  width: 100%;
  max-width: 289px;
  height: 26px;
  position: relative;
  border-top: none;
  border-right: none;
  /*   border-bottom: 1px solid $secondary;*/
  border-left: none;
  margin: 0 0 0 6px;
}
.contact-us__fields .dropdown .custom-input {
  border-bottom: 1px solid #dA6123;
}
.contact-us__fields .dropdown::before {
  content: "";
  position: absolute;
  right: 5px;
  /*top: 4px;*/
  top: 0;
  z-index: 3;
  width: 20px;
  height: 20px;
  border: 2px solid #dA6123;
  border-top: transparent;
  border-right: transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  pointer-events: none;
  transition: all 0.3s linear;
}
.contact-us__fields .dropdown input {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: none;
  outline: none;
  position: absolute;
  top: 6px;
  left: 0;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
  background-color: inherit;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 30px;
}
.contact-us__fields .dropdown .options {
  width: 100%;
  color: #dA6123;
  border-radius: 9px;
  padding: 8px;
  cursor: pointer;
  background: white;
  border: none;
  outline: none;
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 289px;
  position: absolute;
  top: 32px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  background: #F7F7F7 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 1;
}
.contact-us__fields .dropdown .options .option {
  color: #dA6123;
}
.contact-us__fields ::-webkit-input-placeholder {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #dA6123;
  text-align: center;
  padding-right: 20px;
}
.contact-us__fields ::placeholder {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #dA6123;
  text-align: center;
  padding-right: 20px;
}
.contact-us__fields .dropdown .options .option:hover {
  font-family: "Cooper Hewitt Semibold", sans-serif;
}
.contact-us__fields .dropdown.opened .options {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 4;
}
.contact-us__fields .dropdown.opened::before {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  top: 11px;
}
.contact-us__fields .custom-drop-dir {
  display: flex;
  flex-direction: row;
}
.contact-us__fields .custom-option {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #dA6123;
  background-color: #f7f7f7;
}
.contact-us__fields .custom-input {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #dA6123;
}
.contact-us__fields .custom-form-label {
  font-size: 18px;
  line-height: 42px;
  letter-spacing: 0.09px;
  color: #101135;
  text-align: left;
  line-height: 42px;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .contact-us__fields .custom-option {
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }
  .contact-us__fields .custom-input {
    font-size: 15px;
    line-height: 32px;
    letter-spacing: 0.07px;
  }
  .contact-us__fields .custom-form-label {
    font-size: 15px;
    line-height: 32px;
    letter-spacing: 0.07px;
  }
  .contact-us__fields .dropdown {
    width: 100%;
    margin: 0 0 0 4px;
  }
}

@media screen and (max-width: 991px) {
  .contact_us__form .cards-overlay-image {
    position: absolute;
    width: 600px;
    height: 600px;
    left: 77%;
    translate: -23% -43%;
    z-index: 0;
  }
}
.careers-sec-2-outer-wrapper {
  margin-top: 175px;
  padding: 0 36px;
}

.careers-sec-2-inner-wrapper {
  margin: 0 auto;
  max-width: 1300px;
}

.careers-sec-2-inner-wrapper .summary {
  margin-top: 28px;
  width: 72%;
}

.careers-sec-5-outer-wrapper .carousel-widget-quote-template-speaker-container {
  display: flex;
  gap: 33px;
  padding-left: 141px;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .careers-sec-5-outer-wrapper .carousel-widget-quote-template-speaker-container {
    display: flex;
    padding: 42px 0 68.24px 48px;
    align-items: flex-end;
  }
  .careers-sec-5-outer-wrapper .carousel-widget-quote-template-content-wrapper .col-2 {
    width: 48px;
  }
}
.careers-sec-5-outer-wrapper .carousel-widget-quote-template-secondary-content h5, .careers-sec-5-outer-wrapper .carousel-widget-quote-template-secondary-content .h5,
.careers-sec-5-outer-wrapper .carousel-widget-quote-template-secondary-content {
  margin-top: 0;
}

/*@media (max-width: 991px) {
    .careers-sec-5-outer-wrapper .team-member-testimonial {
        .carousel-widget-quote-template-quote {
            top: 0;
        }
    }
}*/
/* Section 4 */
.careers-sec-4-outer-wrapper {
  /* margin-top: 370px;*/
  /* padding: 0 36px;*/
  width: auto;
}
.careers-sec-4-outer-wrapper .content-options__cards .content-options__outer-container .content-options__background {
  margin-right: calc(50% - 50vw);
  position: absolute;
  background: transparent 0% 0% no-repeat padding-box;
  top: -250px;
  left: -560px;
  min-width: 406px;
  z-index: -1;
  max-width: 1200px;
}
.careers-sec-4-outer-wrapper .content-options__cards .content-options__outer-container .content-options__background img {
  min-width: 700px;
  bottom: inherit;
  position: relative;
  right: inherit;
  -webkit-transform: rotate(223deg);
          transform: rotate(223deg);
  width: inherit;
  z-index: -1;
}
@media (max-width: 991px) {
  .careers-sec-4-outer-wrapper .content-options__cards .content-options__outer-container .content-options__background {
    margin-right: calc(50% - 50vw);
    position: absolute;
    background: transparent 0% 0% no-repeat padding-box;
    top: -250px;
    left: -560px;
    min-width: 406px;
    z-index: -1;
    max-width: 1000px;
  }
}

.card-section-main__info div p {
  width: 57%;
}

.card-image-block__container {
  display: flex;
}

.card-block-image__container {
  align-items: center;
  background-color: #101135;
  border-radius: 10px;
  display: flex;
  height: 137px;
  justify-content: center;
  min-width: 137px;
}

.card-block-image__container img {
  max-height: 60px;
  max-width: 60px;
  border-radius: 0;
}

.unleash-card-section__second {
  margin-top: 177px;
}

.unleash-card-section__second-container {
  display: flex;
  justify-content: end;
}

.careers-sec-5-outer-wrapper {
  margin-top: 225px;
}

.careers-sec-6-outer-wrapper {
  margin: 278px auto 0;
  max-width: 1300px;
  padding-right: 36px;
}

.careers-sec-6-outer-wrapper::after {
  clear: both;
  content: "";
  content: "";
  display: table;
}

.careers-sec-6-inner-wrapper {
  border-radius: 0 20px 20px 0;
  float: right;
  width: calc(50vw + 50%);
}

.careers-sec-6-outer-wrapper img {
  border-radius: 0 20px 20px 0;
  height: 100%;
  max-height: 615px;
  min-height: 251px;
  object-fit: cover;
  width: calc(100% + 18px);
}

.careers-sec-7-outer-wrapper {
  margin-top: 96px;
  padding: 0 36px;
  position: relative;
}
.careers-sec-7-outer-wrapper .background-container img {
  top: 200px;
  /* height: 1200px;*/
  position: absolute;
  right: -360px;
  -webkit-transform: scale(-1);
  transform: scale(-1);
  width: 1400px;
  z-index: -1;
  border-radius: 0;
}

.careers-sec-7-inner-wrapper {
  margin: 0 auto;
  max-width: 1300px;
}

.careers-sec-7-positions-listing .accordion .accordion__content {
  padding: 95px 0;
}

.careers-sec-7-positions-listing .accordion-flush {
  position: relative;
  margin-top: 35.74px;
}

.careers-sec-7-positions-listing .accordion .accordion__content {
  position: relative;
  background: transparent linear-gradient(90deg, #ffffff 0%, #eaeaea00 50%, #eaeaea80 100%) 0% 0% no-repeat padding-box;
}

.careers-sec-7-positions-listing .accordion-flush::before {
  /*    content: "";
      height: 100%;
      left: 100%;
      position: absolute;
      top: 0;
      width: 100vw;
      background-color: #eaeaea80;*/
}

.careers-sec-7-positions-listing .accordion .accordion__content::after {
  content: "";
  inset: 0;
  width: 50vw;
  position: absolute;
  left: calc(100% - 1px);
  height: 100%;
  background: #eaeaea80;
  z-index: -1;
}

.careers-sec-7-positions-listing .accordion-item {
  background-color: transparent;
  border: 0;
}

.careers-sec-7-positions-listing .accordion .accordion-header {
  /* padding: 33.5px 0;*/
  display: flex;
  align-items: center;
}

.careers-sec-7-positions-listing .accordion-flush .accordion-button {
  margin: 0;
  position: relative;
  display: flex;
  align-items: baseline;
  padding: 0;
  color: #101135;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-transform: none;
}

.careers-sec-7-positions-listing .accordion-flush .accordion-button::after {
  display: none;
}

.careers-sec-7-positions-listing .accordion-flush .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.careers-sec-7-positions-listing .accordion-flush .accordion-button:not(.collapsed) {
  color: #101135;
  background-color: transparent;
  box-shadow: none;
}

.careers-sec-7-positions-listing .accordion-button.collapsed .accordion-icon {
  position: absolute;
  fill: #dA6123;
  top: 0;
  left: 0;
  color: #dA6123;
  width: 35px;
  height: 35px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.careers-sec-7-positions-listing .accordion-button .accordion-icon {
  position: absolute;
  fill: #dA6123;
  top: 0;
  left: 0;
  color: #dA6123;
  width: 35px;
  height: 35px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  border: 0;
  transition: all 0.3s ease-in-out;
}

.careers-sec-7-positions-listing .position-row {
  display: flex;
  justify-content: space-between;
  padding-left: 55px;
  align-items: baseline;
  width: 100%;
  flex: 100% 1 1;
}

.careers-sec-7-positions-listing .position-row .position-name {
  font-family: "plantin", serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 0.75px;
  line-height: 42.25px;
  flex: 100% 1 1;
  padding-right: 30px;
}

.careers-sec-7-positions-listing .position-row .location {
  font-size: 20px;
  line-height: 38px;
  text-wrap: nowrap;
  flex: 1;
  margin-right: 60px;
  text-transform: uppercase;
  font-family: "Cooper Hewitt Book", sans-serif;
}

.careers-sec-7-positions-listing .apply {
  flex: 1;
  margin-left: 0;
  align-self: baseline;
}
.careers-sec-7-positions-listing .apply a {
  font-size: 20px;
  line-height: 38px;
  text-transform: uppercase;
  text-wrap: nowrap;
  font-family: "Cooper Hewitt Book", sans-serif;
}

.careers-sec-7-positions-listing .accordion .accordion-item.panel-open::after {
  display: none;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* Section 8 */
.careers-sec-8-outer-wrapper {
  /*    margin-top: 184.26px;*/
  overflow: hidden;
  padding: 0 36px;
}

.careers-sec-8-inner-wrapper {
  display: flex;
  gap: 10.4%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1300px;
  padding: 107px 0 86px 106px;
  position: relative;
}

.careers-sec-8-inner-wrapper::before {
  background: #eaeaea80;
  border-radius: 20px 0px 0px 20px;
  content: "";
  height: 100%;
  inset: 0;
  left: -1.25%;
  position: absolute;
  width: calc(100vw + 8.5%);
  z-index: -1;
}

.careers-sec-8-text {
  flex: 1;
}

.careers-sec-8-text h2, .careers-sec-8-text .h2,
.careers-sec-8-text h3,
.careers-sec-8-text .h3 {
  font-size: 46px;
  line-height: 65px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  margin-bottom: 36.34px;
}

.careers-sec-8-upload-container {
  flex: 1;
}

.careers-sec-8-upload-container .upload-image {
  align-items: center;
  background: #dA6123;
  border-radius: 20px;
  display: flex;
  height: 302px;
  justify-content: center;
}

@media (max-width: 991px) {
  .careers-sec-2-inner-wrapper .title {
    font-size: 28px;
    line-height: 43px;
  }

  .careers-sec-2-inner-wrapper .summary {
    font-size: 15px;
    letter-spacing: 0.07px;
    line-height: 28px;
    margin-top: 28px;
    width: 100%;
  }

  .careers-sec-4-outer-wrapper {
    margin-top: 202px;
  }
  .careers-sec-4-outer-wrapper .card-section-main__info div p {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .careers-sec-4-outer-wrapper .icon-four-cards .card-section-main__info {
    text-align: center;
  }

  /* Section 5 */
  .careers-sec-5-outer-wrapper {
    margin-top: 192px;
  }

  /* Section 6 */
  .careers-sec-6-outer-wrapper {
    padding: 0;
  }

  /* Section 7 */
  .careers-sec-7-outer-wrapper {
    margin-top: 71px;
    overflow: hidden;
    padding: 0 36px;
  }

  .careers-sec-7-positions-listing {
    /* background-color: #eaeaea;*/
  }

  .careers-sec-7-positions-listing .accordion .accordion__content {
    position: relative;
    background: transparent linear-gradient(90deg, transparent 0%, #eaeaea00 65%, #eaeaea80 100%) 0% 0% no-repeat padding-box;
    padding: 30px 0 28px 0;
  }

  .careers-sec-7-positions-listing .accordion-flush .accordion-button {
    margin: 0;
    position: relative;
    display: flex;
    align-items: baseline;
    padding: 0;
    color: #101135;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    text-transform: none;
  }

  .careers-sec-7-positions-listing .accordion-button.collapsed .accordion-icon {
    position: absolute;
    fill: #dA6123;
    top: 6px;
    left: 0;
    color: #dA6123;
    width: 20px;
    height: 20px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .careers-sec-7-positions-listing .accordion-button .accordion-icon {
    position: absolute;
    fill: #dA6123;
    top: 6px;
    left: 0;
    color: #dA6123;
    width: 20px;
    height: 20px;
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
    border: 0;
    transition: all 0.3s ease-in-out;
  }

  .careers-sec-7-inner-wrapper h2, .careers-sec-7-inner-wrapper .h2 {
    font-size: 28px;
    line-height: 43px;
  }

  .careers-sec-7-inner-wrapper p {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 25px;
    margin-bottom: 20px;
    margin-top: 25px;
  }

  .careers-sec-7-positions-listing .accordion .accordion-header {
    /*    padding: 33.5px 0;*/
    display: flex;
    align-items: center;
    flex-direction: column;
    /*  margin-bottom: 20px;*/
  }

  .careers-sec-7-positions-listing .accordion button.accordion-button:not(.collapsed) {
    margin-bottom: 0;
  }

  .careers-sec-7-positions-listing .accordion .accordion-body {
    padding: 10px 0 35.5px 35px;
    position: relative;
  }

  .careers-sec-7-positions-listing .position-row {
    flex-direction: column;
    padding-left: 35px;
  }

  .careers-sec-7-positions-listing .position-row .position-name {
    font-size: 24px;
    letter-spacing: 0.6px;
    line-height: 37px;
  }

  .careers-sec-7-positions-listing .position-row .location {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    margin-top: 5px;
  }

  .careers-sec-7-positions-listing .apply {
    padding-left: 35px;
  }
  .careers-sec-7-positions-listing .apply a {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    text-wrap: nowrap;
    font-family: "Cooper Hewitt Book", sans-serif;
  }

  /* Section 8 */
  .careers-sec-8-outer-wrapper {
    /* margin-top: 247px;*/
  }

  .careers-sec-8-inner-wrapper {
    flex-direction: column;
    padding: 71px 0 38px 36px;
  }

  .careers-sec-8-upload-container {
    margin-top: 12px;
  }

  .careers-sec-8-upload-container .upload-image {
    border-radius: 10px;
    height: 181px;
    width: 325px;
  }
}
.group-events-section {
  margin-top: 415px;
}

.courses-events-section {
  margin-top: 175px;
}

.virtual-events-section {
  margin-top: 155px;
}

.left-rail-wrapper {
  padding-right: 60px;
}
.left-rail-wrapper h4, .left-rail-wrapper .h4 {
  margin-bottom: 40px;
  text-align: left;
  opacity: 1;
  font-weight: 300;
  font-size: 24px;
  line-height: 37px;
  -webkit-transform: translateY(0.4208333333em);
          transform: translateY(0.4208333333em);
  padding-top: 1px;
  font-family: "plantin", serif;
}
.left-rail-wrapper h4::before, .left-rail-wrapper .h4::before {
  content: "";
  margin-top: -17px;
  display: block;
  height: 0;
}

.event-details h4, .event-details .h4 {
  margin-bottom: 17px;
}
.event-details .event-detail_content {
  font-family: "Cooper Hewitt Semibold", sans-serif;
  margin: 0;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  font-weight: normal;
}
.event-details .button-container {
  margin-top: 35px;
}

.photo {
  overflow: hidden;
  margin-top: 200px;
}
.photo .photo__right-bleed {
  position: relative;
  width: calc(50vw + 50%);
  overflow: hidden;
  max-height: 692px;
}
.photo .photo__right-bleed::after {
  padding-bottom: 47.3%;
}
.photo .photo__right-bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0px 0px 20px;
}

.MG-event-content-wrapper {
  margin-bottom: 238px;
}

.MG-event-content-wrapper img {
  /* align-self: flex-end;
  border-radius: 20px 0 0 20px;
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-height: 488px;
  height: 100%;
  object-fit: cover;*/
}

.logo-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}
.logo-listing .logo-listing-item {
  width: 171px;
  height: 117px;
  font-size: 30px;
  text-align: center;
  display: flex;
}
.logo-listing .logo-listing-item img {
  max-width: 171px;
  align-self: center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  border-radius: 0;
}

.event-details-left-side-speakers {
  margin-top: 108px;
}
.event-details-left-side-speakers .title {
  font-family: "plantin", serif;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.6px;
  line-height: 37px;
}
.event-details-left-side-speakers .speakers-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.event-details-left-side-speakers .speaker {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  letter-spacing: 0.09px;
  line-height: 32px;
  max-width: 154px;
}
.event-details-left-side-speakers .speaker .speaker-image-wrapper {
  overflow: hidden;
  width: 154px;
  height: 141px;
}
.event-details-left-side-speakers .speaker .speaker-image-wrapper img {
  border-radius: 10px;
  height: 100%;
  margin-top: 0;
  max-height: 141px;
  min-height: 141px;
  object-fit: cover;
  width: 100%;
}
.event-details-left-side-speakers .speaker h5.name, .event-details-left-side-speakers .speaker .name.h5 {
  margin-top: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.09px;
  text-transform: none;
  font-weight: normal;
  font-size: 17px;
  line-height: 26px;
  -webkit-transform: translateY(0.4147058824em);
          transform: translateY(0.4147058824em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Bold", sans-serif;
}
.event-details-left-side-speakers .speaker h5.name::before, .event-details-left-side-speakers .speaker .name.h5::before {
  content: "";
  margin-top: -13px;
  display: block;
  height: 0;
}
.event-details-left-side-speakers .speaker .position {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.09px;
  font-size: 17px;
  line-height: 26px;
  -webkit-transform: translateY(0.4147058824em);
          transform: translateY(0.4147058824em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin: 0;
  margin-bottom: 22px;
}
.event-details-left-side-speakers .speaker .position::before {
  content: "";
  margin-top: -13px;
  display: block;
  height: 0;
}
.event-details-left-side-speakers .speaker .company {
  letter-spacing: 0.09px;
  font-size: 17px;
  line-height: 26px;
  -webkit-transform: translateY(0.4147058824em);
          transform: translateY(0.4147058824em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin: 0;
  margin-bottom: 24px;
}
.event-details-left-side-speakers .speaker .company::before {
  content: "";
  margin-top: -13px;
  display: block;
  height: 0;
}
.event-details-left-side-speakers .speaker .read-more a {
  font-weight: normal;
  display: block;
  font-size: 16px;
  line-height: 28px;
  -webkit-transform: translateY(0.525em);
          transform: translateY(0.525em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Medium", sans-serif;
}
.event-details-left-side-speakers .speaker .read-more a::before {
  content: "";
  margin-top: -13px;
  display: block;
  height: 0;
}

.event-details-left-contact-us {
  margin-top: 52px;
}
.event-details-left-contact-us a {
  line-break: anywhere;
  display: block;
}

.button-view-all-events-placeholder {
  margin-top: 98px;
}

button.accordion__title {
  font-weight: 300;
  font-size: 24px;
  line-height: 37px;
  font-family: "plantin", serif;
  color: #101135;
  margin-top: 0;
  margin-bottom: 40px;
  border: 0 none;
  background: none;
  width: 100%;
  display: flex;
  cursor: none;
  letter-spacing: 0.6px;
}
button.accordion__title button.accordion__title.collapsed {
  color: #101135;
}
button.accordion__title button.accordion__title:not(.collapsed) {
  color: #101135;
}
button.accordion__title .accordion__icon-chevron {
  display: none;
}

button.accordion__title:not(:disabled), [type=button].accordion__title:not(:disabled) {
  cursor: default;
}

.accordion-content.event-detail__options.collapse:not(.show) {
  display: block;
}

@media screen and (max-width: 991px) {
  .left-rail-wrapper {
    max-width: 100%;
    padding-right: 0;
  }

  .group-events-section {
    margin-top: 78px;
  }

  .MG-text-wrapper {
    max-width: inherit;
  }

  button.accordion__title {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  button.accordion__title:not(:disabled), [type=button].accordion__title:not(:disabled) {
    cursor: pointer;
  }

  button.accordion__title.collapsed {
    color: #dA6123;
  }

  button.accordion__title:not(.collapsed) {
    color: #dA6123;
  }

  button.accordion__title.collapsed .accordion__icon-chevron {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    color: #dA6123;
    fill: #dA6123;
  }

  button.accordion__title:not(.collapsed) .accordion__icon-chevron {
    display: inline-block;
    width: 24px;
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
    color: #dA6123;
    fill: #dA6123;
  }

  .event-details-left-side-speakers {
    margin-top: 65px;
  }
  .event-details-left-side-speakers .accordion-content.event-detail__options {
    position: relative;
  }
  .event-details-left-side-speakers .accordion-content.event-detail__options.show::after {
    content: "";
    inset: 0;
    width: 100vw;
    position: absolute;
    left: -30px;
    height: calc(100% + 60px);
    background: transparent linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #eaeaea00 50%, #eaeaea 100%) 0% 0% no-repeat padding-box;
    z-index: -1;
    top: -30px;
  }
  .event-details-left-side-speakers .title {
    font-family: "plantin", serif;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.6px;
    line-height: 37px;
  }
  .event-details-left-side-speakers .speakers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .event-details-left-side-speakers .speaker {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    letter-spacing: 0.09px;
    line-height: 32px;
    max-width: 154px;
  }
  .event-details-left-side-speakers .speaker .speaker-image-wrapper {
    overflow: hidden;
    width: 154px;
    height: 141px;
  }
  .event-details-left-side-speakers .speaker .speaker-image-wrapper img {
    border-radius: 10px;
    height: 100%;
    margin-top: 0;
    max-height: 141px;
    min-height: 141px;
    object-fit: cover;
    width: 100%;
  }
  .event-details-left-side-speakers .speaker h5.name, .event-details-left-side-speakers .speaker .name.h5 {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.07px;
    margin-top: 22px;
    margin-bottom: 16px;
    letter-spacing: 0.09px;
    text-transform: none;
    font-weight: normal;
    font-size: 15px;
    line-height: 26px;
    -webkit-transform: translateY(0.5166666667em);
            transform: translateY(0.5166666667em);
    padding-top: 1px;
    font-family: "Cooper Hewitt Bold", sans-serif;
  }
  .event-details-left-side-speakers .speaker h5.name::before, .event-details-left-side-speakers .speaker .name.h5::before {
    content: "";
    margin-top: -13px;
    display: block;
    height: 0;
  }
  .event-details-left-side-speakers .speaker .position {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.07px;
    font-size: 15px;
    line-height: 26px;
    -webkit-transform: translateY(0.5166666667em);
            transform: translateY(0.5166666667em);
    padding-top: 1px;
    font-family: "Cooper Hewitt Book", sans-serif;
    margin: 0;
    margin-bottom: 22px;
  }
  .event-details-left-side-speakers .speaker .position::before {
    content: "";
    margin-top: -13px;
    display: block;
    height: 0;
  }
  .event-details-left-side-speakers .speaker .company {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.07px;
    font-size: 15px;
    line-height: 26px;
    -webkit-transform: translateY(0.5166666667em);
            transform: translateY(0.5166666667em);
    padding-top: 1px;
    font-family: "Cooper Hewitt Book", sans-serif;
    margin: 0;
    margin-bottom: 24px;
  }
  .event-details-left-side-speakers .speaker .company::before {
    content: "";
    margin-top: -13px;
    display: block;
    height: 0;
  }
  .event-details-left-side-speakers .speaker .read-more a {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.14px;
    font-weight: normal;
    display: block;
    font-size: 14px;
    line-height: 22px;
    -webkit-transform: translateY(0.4357142857em);
            transform: translateY(0.4357142857em);
    padding-top: 1px;
    font-family: "Cooper Hewitt Medium", sans-serif;
  }
  .event-details-left-side-speakers .speaker .read-more a::before {
    content: "";
    margin-top: -9px;
    display: block;
    height: 0;
  }

  .accordion-content.event-detail__options.collapse:not(.show) {
    display: none;
  }

  .photo {
    margin-top: 164px;
    margin-bottom: 37px;
  }

  .photo__right-bleed {
    width: calc(100vw - 38px);
    border-radius: 15px 0px 0px 15px;
  }

  .photo__right-bleed::after {
    padding-bottom: 54.71%;
  }

  .virtual-events-section {
    margin-top: 165px;
  }

  .courses-events-section {
    margin-top: 107px;
  }

  .overlay-image {
    width: 100vw;
    height: 600px;
    left: -20%;
    top: 100%;
    translate: -20% 5%;
  }
}
.accordion-section h2, .accordion-section .h2 {
  font-family: "Cooper Hewitt Light", sans-serif;
  font-size: 64px;
  line-height: 78px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
  .accordion-section h2, .accordion-section .h2 {
    font-family: "Cooper Hewitt Light", sans-serif;
    font-size: 34px;
    line-height: 48px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 40px;
  }
}
.tabs-section .tabs__content {
  position: relative;
  background: transparent linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #eaeaea00 50%, #eaeaea 100%) 0% 0% no-repeat padding-box;
}
.tabs-section .tabs__content::after {
  content: "";
  inset: 0;
  width: 50vw;
  position: absolute;
  left: calc(100% - 1px);
  height: 100%;
  background: #eaeaea;
  z-index: -1;
}
.tabs-section .tabs__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  max-width: 1364px;
  padding-top: 38px;
  padding-bottom: 38px;
}
.tabs-section .nav-link {
  cursor: pointer;
  width: 92%;
  font-family: "Cooper Hewitt Semibold", sans-serif;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  font-weight: normal;
  text-align: left;
  border: 0 none;
  background-color: transparent;
  padding: 0;
  margin-bottom: 30px;
}
.tabs-section .nav-link.active {
  color: #dA6123;
}
.tabs-section .tab-pane {
  position: relative;
}
.tabs-section .tab__icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  position: absolute;
  fill: #dA6123;
  top: 5px;
  left: -35px;
  color: #dA6123;
}
.tabs-section .tab__icon path {
  fill: currentColor;
}
.tabs-section .nav-pills .nav-link.active,
.tabs-section .nav-pills .show > .nav-link {
  color: #dA6123;
  background-color: transparent;
}
.tabs-section .event-description, .tabs-section .event-content {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  font-weight: normal;
}
.tabs-section .event-details {
  font-family: "Cooper Hewitt Semibold", sans-serif;
  margin: 0 0 35px 0;
}
.tabs-section .event-description {
  font-weight: normal;
  margin: 0 0 40px 0;
}

/*-- Team Member Listing--*/
.team-listing {
  overflow: hidden;
  margin-top: 175px;
  margin-bottom: 175px;
}

.team-listing__members .k-listview-content,
.team-listing__two-colums {
  display: grid;
}

.team-listing__two-colums {
  gap: 79px 70px;
  grid-template-columns: minmax(330px, 1fr) minmax(0, 3fr);
}

.team-listing__members .k-listview-content {
  gap: 50px 46px;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  position: relative;
  z-index: 0;
}

.team-listing__filters,
.team-listing__members .k-listview-content {
  padding-block: 72px 80px;
}

.team-listing__filters .team-filter__search-wrapper {
  margin-bottom: 92px;
}

.team-listing__members .no-results {
  position: relative;
  padding-block: 72px 80px;
  min-height: 300px;
}

.team-listing__members .k-listview-content::before,
.team-listing__members .no-results::before {
  background: transparent linear-gradient(90deg, #eaeaea00 0%, #eaeaea 100%) 0% 0% no-repeat padding-box;
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  width: 100vw;
  z-index: -1;
  left: -31px;
}

.team-filter__search-wrapper {
  margin-bottom: 48px;
}

.team-filter__search-results {
  color: #dA6123;
  font: normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.07px;
}

.team-filter__title {
  display: flex;
  font-weight: 300;
  font-size: 24px;
  line-height: 37px;
  font-family: "plantin", serif;
  margin-top: 37px;
  cursor: pointer;
  letter-spacing: 0.6px;
}

.team-title__icon-chevron {
  display: none;
  margin-left: 15px;
  vertical-align: middle;
  width: 24px;
}

.team-listing__filters .MG-btn {
  margin-top: 10px;
}

.team-listing .k-pager-wrap {
  margin-top: 108px;
}

@media screen and (max-width: 991px) {
  .team-listing {
    margin-top: 107px;
  }

  .team-listing__members .k-listview-content::before {
    left: 0;
  }

  .team-listing__filters,
.team-listing__members .k-listview-content {
    padding-block: 0;
  }

  .team-listing__filters {
    padding-right: 6px;
  }

  .team-listing__filters .team-filter__search-wrapper {
    margin-bottom: 49px;
  }

  .team-listing__members .k-listview-content::before {
    background: none;
  }

  .team-listing__two-colums {
    grid-template-columns: 1fr;
  }

  .team-listing__members .k-listview-content {
    gap: 50px 32px;
  }

  .team-title__icon-chevron {
    display: inline-block;
  }

  .team-filter__title {
    margin-bottom: 0;
  }

  .team-listing .team-lisitng__buttons {
    margin-top: 131px;
    margin-bottom: 242px;
  }

  .team-listing .k-pager-wrap {
    margin-top: 14px;
  }
}
.team-listing__member {
  color: #101135;
  line-height: 0;
  cursor: pointer;
}

.team-listing__members .search-result-item.search-item-wrapper-link {
  margin-bottom: 0;
}

.team-member__preview-image {
  position: relative;
}

.team-member__preview-image.search-result-item__image {
  min-height: auto;
}

.team-listing__member .team-member__preview-image::after {
  content: "";
  display: block;
  padding-top: 94.74%;
}

.search-result-item__content.team-listing__member {
  width: 100%;
}

.team-listing__members p.team-member__title {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
  text-transform: none;
}

.team-listing__members h5.team-member__name, .team-listing__members .team-member__name.h5 {
  font-size: 20px;
  line-height: 28px;
  margin: 12px 0 3px 0;
}

@media screen and (max-width: 991px) {
  .team-listing__members .k-listview-content {
    /*padding-right: 29px;*/
  }

  .team-listing__members p.team-member__title {
    font-size: 15px;
    line-height: 22px;
    text-transform: none;
  }

  .team-listing__members h5.team-member__name, .team-listing__members .team-member__name.h5 {
    font-size: 16px;
    line-height: 23px;
  }
}
/*-- Team Member --*/
/* Section 1 */
.team-member-sec-1-outer-wrapper {
  margin-top: 83px;
  border-radius: 0 20px 20px 0;
  height: 498px;
  padding: 0 33px 0 37px;
  position: relative;
}

.team-member-sec-1-background {
  background: transparent linear-gradient(0deg, #dA6123 0%, #101135 62%) 0% 0% no-repeat padding-box;
  border-radius: 0 20px 20px 0;
  bottom: 0;
  left: 0;
  max-width: 90.5%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.team-member-sec-1-inner-wrapper {
  color: white;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}

.profile-info {
  padding-top: 126px;
}

.profile-info .profile-type {
  font-size: 20px;
  line-height: 38px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 38px;
  -webkit-transform: translateY(0.6em);
          transform: translateY(0.6em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin-bottom: 35px;
}
.profile-info .profile-type::before {
  content: "";
  margin-top: -21px;
  display: block;
  height: 0;
}

.profile-info .title .name {
  font-size: 57px;
  line-height: 82px;
  letter-spacing: 0;
  text-transform: capitalize;
  font-size: 57px;
  line-height: 82px;
  -webkit-transform: translateY(0.3692982456em);
          transform: translateY(0.3692982456em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin-bottom: 22px;
}
.profile-info .title .name::before {
  content: "";
  margin-top: -33px;
  display: block;
  height: 0;
}

.profile-info .title .position {
  font-family: "plantin", serif;
  font-size: 30px;
  line-height: 42.25px;
  letter-spacing: 0.75px;
  font-weight: 300;
  max-width: 650px;
  font-size: 30px;
  line-height: 42.24px;
  -webkit-transform: translateY(0.354em);
          transform: translateY(0.354em);
  padding-top: 1px;
  font-family: "plantin", serif;
  margin-bottom: 35px;
}
.profile-info .title .position::before {
  content: "";
  margin-top: -17px;
  display: block;
  height: 0;
}

.profile-info .address {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  font-size: 18px;
  line-height: 32px;
  -webkit-transform: translateY(0.5388888889em);
          transform: translateY(0.5388888889em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin-bottom: 27px;
}
.profile-info .address::before {
  content: "";
  margin-top: -17px;
  display: block;
  height: 0;
}

.profile-info .social-media {
  width: 9%;
  justify-content: space-between;
  gap: 25.42px;
}
.profile-info .social-media a {
  color: #ffffff;
}
.profile-info .social-media a:hover svg, .profile-info .social-media a:hover svg path {
  fill: #ffffff80;
  color: #ffffff80;
}
.profile-info .social-media a.member-email svg {
  width: 22px;
}

.team-member-sec-1-inner-wrapper .image-wrapper {
  align-self: flex-end;
  margin-bottom: -102px;
  overflow: hidden;
  width: 529px;
  height: 456px;
}

.team-member-sec-1-inner-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  object-position: 50% 5%;
  border-radius: 20px;
}

/* Section 2 */
.team-member-sec-2-outer-wrapper {
  padding: 0 35px 0 39px;
  margin-top: 235px;
}

.team-member-sec-2-inner-wrapper {
  height: 100%;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}

.team-member-sec-2-content-wrapper {
  justify-content: space-between;
  letter-spacing: 0.09px;
}

.team-member-sec-2-left-side {
  max-width: 340px;
}

.team-member-sec-2-left-side > *:first-child {
  margin-top: 0px !important;
}

.team-member-sec-2-left-side .education-details {
  margin-bottom: 100px;
}

.team-member-sec-2-left-side h5, .team-member-sec-2-left-side .h5 {
  margin-bottom: 28px;
}

.team-member-sec-2-right-side h5, .team-member-sec-2-right-side .h5 {
  margin-top: 55px;
}

.education-title {
  font-family: "Cooper Hewitt Semibold", sans-serif;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  padding-top: 16px;
}

.education-details {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  margin-top: 32px;
}

.education-details p {
  margin: 0px;
  padding: 0px;
}

.articles-header {
  margin-top: 60px;
  margin-bottom: 0px;
}

.related-item-section-title {
  margin-top: 57px;
}

.play-books {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  margin-top: 57px;
}

.play-books a,
.team-member-sec-3-card a.full-bio {
  font-family: "Cooper Hewitt Medium", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  color: #dA6123;
  display: block;
}

.play-books .sub-title {
  max-width: 245px;
}

.play-books .desc {
  max-width: 330px;
}

h5.related-item-section-title + div.play-books, .related-item-section-title.h5 + div.play-books {
  margin-top: 12px;
}

.team-member-sec-2-right-side h2, .team-member-sec-2-right-side .h2 {
  font-size: 46px;
  line-height: 65px;
  letter-spacing: 0;
  margin-bottom: 45px;
}

/* Section 3 */
.team-member-sec-3 {
  margin-top: 153px;
  margin-bottom: 225px;
}

.team-member-sec-3-outer-wrapper {
  padding: 45.72px 35px 26.88px 39px;
  position: relative;
  margin-top: 23px;
}

.team-member-sec-3-background {
  background: transparent linear-gradient(90deg, #EAEAEA00 0%, #EAEAEA 100%) 0% 0% no-repeat padding-box;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.team-member-sec-3-inner-wrapper {
  height: 100%;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}

.team-member-sec-3-title-wrapper {
  padding: 0 35px 0 39px;
}

.team-member-sec-3-title-wrapper h2, .team-member-sec-3-title-wrapper .h2 {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 46px;
  line-height: 65px;
  letter-spacing: 0;
  margin-bottom: 0px;
}

.team-member-sec-3-title {
  margin: 0 auto;
  max-width: 1300px;
}

.team-member-sec-3-cards {
  /* display: flex;
  gap: 9.97vw;
  flex-wrap: wrap;
  row-gap: 25px;*/
  display: grid;
  gap: 50px 46px;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fill, minmax(274px, 1fr));
}

.team-member-sec-3-card:hover {
  cursor: pointer;
}

.team-member-sec-3-card a {
  color: inherit;
}

.team-member-sec-3-card a.full-bio {
  margin-top: 15px;
}

.team-member-sec-3-card h5, .team-member-sec-3-card .h5 {
  font-size: 20px;
  line-height: 38px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0px;
  margin-top: 26.84px;
}

.team-member-sec-3-card .team-member-position {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  max-width: 172px;
}

.team-members-card-image-wrapper {
  overflow: hidden;
  width: 172px;
  height: 179.56px;
}

.team-members-card-image-wrapper img {
  height: 100%;
  max-height: 179.56px;
  min-height: 147.17px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.team-member-sec-3-card .image-hover-effect {
  position: relative;
}

.team-member-sec-3-card .image-hover-effect:hover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  mix-blend-mode: color;
  border-radius: 10px;
  z-index: 1;
  background: transparent linear-gradient(0deg, #dA6123 0%, #c9683500 25%) 0% 0% no-repeat padding-box;
}

.team-member-sec-3-card .image-hover-effect:hover img {
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
}

@media screen and (max-width: 991px) {
  .team-member-sec-1-outer-wrapper {
    min-height: 564px;
    height: auto;
    margin-top: 33px;
  }

  .team-member-sec-2-outer-wrapper {
    margin-top: 145px;
  }

  .team-member-sec-1-background {
    border-radius: 0 15px 15px 0;
    max-width: 91.4%;
  }

  .team-member-sec-3-cards {
    display: grid;
    gap: 50px 46px;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  }

  .team-member-sec-1-inner-wrapper {
    flex-direction: column;
  }
  .team-member-sec-1-inner-wrapper .image-wrapper {
    width: auto;
    border-radius: 10px;
    align-self: center;
    height: auto;
    margin-bottom: -30px;
  }
  .team-member-sec-1-inner-wrapper .image-wrapper img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: 50% 5%;
    border-radius: 10px;
    min-height: 286px;
  }

  .profile-info {
    padding-top: 74px;
  }

  .profile-info .title {
    margin-top: 27px;
  }

  .profile-info .profile-type {
    font-size: 16px;
    line-height: 20px;
  }

  .profile-info .title .name {
    font-size: 45px;
    line-height: 63px;
  }

  .profile-info .title .position {
    font-size: 24px;
    line-height: 37px;
    letter-spacing: 0.6px;
    max-width: 298px;
  }

  .profile-info .address {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }

  .profile-info .social-media {
    gap: 19.24px;
    margin-bottom: 42.79px;
  }

  .team-member-sec-2-left-side {
    margin-top: 60px;
    max-width: unset;
  }

  .team-member-sec-2-left-side h5, .team-member-sec-2-left-side .h5, .team-member-sec-2-right-side h5, .team-member-sec-2-right-side .h5 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
  }

  .education-title {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.6px;
    padding-top: 0px;
  }

  .education-details {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    margin-top: 29px;
  }

  .articles-header {
    margin-top: 89.26px;
  }

  .play-books {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    margin-top: 56px;
  }

  .play-books a,
.team-member-sec-3-card a.full-bio {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.12px;
  }

  .play-books .sub-title {
    max-width: 245px;
  }

  h5.related-item-section-title + div.play-books, .related-item-section-title.h5 + div.play-books {
    margin-top: 12px;
  }

  .team-member-sec-2-right-side h2, .team-member-sec-2-right-side .h2 {
    font-size: 28px;
    line-height: 43px;
    margin-bottom: 20px;
  }

  .team-member-sec-3-outer-wrapper {
    padding: 25.71px 33px 42.89px 33px;
  }

  .team-member-sec-3-title-wrapper h2, .team-member-sec-3-title-wrapper .h2 {
    font-size: 28px;
    line-height: 43px;
    font-weight: 400;
  }

  .team-member-sec-3-card a.full-bio {
    margin-top: 5px;
  }

  .team-member-sec-3-card h5, .team-member-sec-3-card .h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-top: 23.47px;
  }

  .team-member-sec-3-card .team-member-position {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    max-width: 142px;
    color: #101135;
  }

  .team-members-card-image-wrapper {
    width: 142px;
    height: 147.17px;
  }

  .team-member-sec-3 {
    margin-top: 50px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .team-member-sec-1-inner-wrapper .image-wrapper {
    width: auto;
    border-radius: 10px;
    align-self: center;
    height: auto;
    margin-bottom: -30px;
  }
  .team-member-sec-1-inner-wrapper .image-wrapper img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: 50% 5%;
    border-radius: 10px;
    min-height: 286px;
    width: 87%;
  }
}
.hidden-desktop {
  display: none;
}

.hidden-mobile {
  display: block;
}

.global-article-layout__container {
  padding: 0 36px;
  position: relative;
}

.global-article-layout__container ul {
  margin: 40px 0 40px 0;
}

.with-margin-top {
  margin-top: 83px;
}

.global-article-layout__inner {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  /*min-height: 379px;*/
  /* min-height: 325px;*/
}

.news-summary {
  font-size: 20px;
  line-height: 32px;
  font-style: italic;
  margin-bottom: 22px;
  font-family: "plantin", serif;
  letter-spacing: 0.1px;
  font-weight: 300;
}

.article-content .news-intro {
  font-size: 22px;
  font-family: "Cooper Hewitt Semibold", sans-serif;
  line-height: 38px;
  letter-spacing: 0.11px;
  margin-bottom: 32px;
}
.article-content h1, .article-content .h1 {
  font-family: "Cooper Hewitt Light", sans-serif;
  /*font-weight:300;*/
  font-size: 64px;
  margin-bottom: 37px;
  margin-top: 47px;
}
.article-content h2, .article-content .h2 {
  margin-bottom: 23px;
  margin-top: 45px;
}
.article-content h3, .article-content .h3 {
  margin-bottom: 30px;
  margin-top: 34px;
}
.article-content h4, .article-content .h4 {
  margin-bottom: 34px;
  margin-top: 34px;
}
.article-content h5, .article-content .h5 {
  margin-bottom: 18px;
  margin-top: 34px;
}

.article-content > h1:first-child, .article-content > .h1:first-child, h2:first-child, .h2:first-child, h3:first-child, .h3:first-child, h4:first-child, .h4:first-child, h5:first-child, .h5:first-child, h6:first-child, .h6:first-child {
  padding-top: 0;
  margin-top: 0;
}

.MG-video-content-wrapper {
  margin-bottom: 107px;
}

.MG-video-content-wrapper h2, .MG-video-content-wrapper .h2 {
  font: normal normal normal 46px/65px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  color: #101135;
  text-align: left;
  max-width: 667px;
  margin-bottom: 33px;
  margin-top: 0;
}

.MG-video-content-wrapper p {
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #101135;
  max-width: 880px;
  /*    margin-bottom: 0;*/
}

.post-video {
  margin-top: 108px;
}

.post-video p {
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #101135;
  text-align: left;
  max-width: 880px;
}

.post-video p:has(> img) {
  margin: 0;
}

.post-video img {
  width: calc(24.95% + 50vw);
  object-fit: cover;
  max-height: 400px;
  border-radius: 20px 0px 0px 20px;
  margin-top: 116px;
  margin-bottom: 35px;
}

.post-video h3, .post-video .h3 {
  font: normal normal 300 30px/36px "Cooper Hewitt Semibold", sans-serif;
  letter-spacing: 0.75px;
  color: #101135;
  text-align: left;
  max-width: 591px;
  margin-top: 88px;
}

.post-video blockquote {
  font: italic normal 300 16px/24px "plantin", serif;
  letter-spacing: 0.32px;
  color: #eaeaea;
}

.post-video blockquote:has(> span) {
  height: 0px;
}

.post-video blockquote > span {
  position: relative;
  left: max(-430px, -34vw + 36px);
  display: block;
  max-width: 300px;
  bottom: 105px;
}

.download-playbook-callout {
  border: 1px solid #eaeaea;
  padding: 30px;
  background: linear-gradient(135deg, white, #f4cfbd);
  display: flex;
  flex-direction: row;
  gap: 30px;
  border-radius: 10px;
  margin-top: 100px;
}
.download-playbook-callout .download-playbook-callout_image {
  max-width: 160px;
}
.download-playbook-callout .download-playbook-callout_description {
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: auto;
}
.download-playbook-callout .download-playbook-callout_description h3, .download-playbook-callout .download-playbook-callout_description .h3 {
  max-width: inherit;
  margin-top: 0;
  font-family: "Cooper Hewitt Semibold", sans-serif;
  font-weight: normal;
  font-size: 1.875rem;
  /*30px*/
  line-height: 36px;
  letter-spacing: 0.75px;
  margin-bottom: 16px;
  text-transform: none;
}
.download-playbook-callout .download-playbook-callout_description h6, .download-playbook-callout .download-playbook-callout_description .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  font-style: normal;
  color: #101135;
}
.download-playbook-callout .download-playbook-callout_description p {
  padding: 0;
}

@media screen and (max-width: 991px) {
  .download-playbook-callout {
    border: 1px solid #eaeaea;
    padding: 30px;
    background: linear-gradient(135deg, white, #f4cfbd);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    margin-top: 100px;
  }
  .download-playbook-callout .download-playbook-callout_image {
    max-width: 160px;
  }
  .download-playbook-callout .download-playbook-callout_description {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 32px;
  }
  .download-playbook-callout .download-playbook-callout_description h3, .download-playbook-callout .download-playbook-callout_description .h3 {
    max-width: inherit;
    margin-top: 0;
    font-family: "Cooper Hewitt Semibold", sans-serif;
    font-weight: normal;
    font-size: 1.5rem;
    /*24px*/
    line-height: 29px;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
    text-transform: none;
  }
  .download-playbook-callout .download-playbook-callout_description h6, .download-playbook-callout .download-playbook-callout_description .h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-style: normal;
    color: #101135;
  }
  .download-playbook-callout .download-playbook-callout_description p {
    padding: 0;
  }
}
.article-details-background__header {
  background: transparent linear-gradient(0deg, #dA6123 0%, #101135 62%) 0% 0% no-repeat padding-box;
  border-radius: 0 20px 20px 0;
  bottom: 0;
  left: 0;
  max-width: 90.437%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.article-details-header__component {
  color: white;
}

.article-details-background__header-right {
  padding-top: 52px;
  padding-bottom: 61px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-button__article {
  margin-top: 115px;
}

.article-details-header__info {
  display: flex;
  align-items: baseline;
}

.article-details-header__tag {
  text-align: left;
  font-weight: 300;
  letter-spacing: 0.75px;
  color: #ffffff;
  opacity: 1;
  margin-bottom: 46px;
  padding-right: 15px;
  font-size: 30px;
  line-height: 40px;
  -webkit-transform: translateY(0.3166666667em);
          transform: translateY(0.3166666667em);
  padding-top: 1px;
  font-family: "plantin", serif;
}
.article-details-header__tag::before {
  content: "";
  margin-top: -13px;
  display: block;
  height: 0;
}

.article-details-header__date {
  text-align: left;
  letter-spacing: 0.09px;
  color: #ffffff;
  opacity: 1;
  padding-top: 6px;
  font-size: 18px;
  line-height: 32px;
  -webkit-transform: translateY(0.5388888889em);
          transform: translateY(0.5388888889em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
}
.article-details-header__date::before {
  content: "";
  margin-top: -17px;
  display: block;
  height: 0;
}

h1.article-details-background__header-title, .article-details-background__header-title.h1 {
  text-align: left;
  font-weight: normal;
  font-size: 57px;
  line-height: 82px;
  letter-spacing: 0;
  color: #ffffff;
  opacity: 1;
  margin-bottom: 0;
  font-size: 57px;
  line-height: 82px;
  -webkit-transform: translateY(0.3692982456em);
          transform: translateY(0.3692982456em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
}
h1.article-details-background__header-title::before, .article-details-background__header-title.h1::before {
  content: "";
  margin-top: -33px;
  display: block;
  height: 0;
}

.article-details-background__header-extra-info {
  text-align: left;
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #ffffff;
  max-width: 90%;
  opacity: 1;
  margin-bottom: 73px;
}

.article-details-background__authors {
  margin-top: 37px;
}

.our-events-wrapper__image {
  margin-top: -91px;
  margin-bottom: 84.63px;
  height: 497px;
  max-width: 459px;
}

.our-events-wrapper__image::after {
  padding-top: 68%;
}

.our-events-wrapper__image:not(.our-events-wrapper__image:has(img)) {
  height: 100px;
}
.our-events-wrapper__image:not(.our-events-wrapper__image:has(img))::after {
  padding-top: 0;
}

img.our-events-image__img {
  float: right;
  margin-right: 131px;
  max-height: 497px;
  height: 100%;
  width: calc(50vw - 48.9% - 131px);
  object-fit: cover;
  border-radius: 0px 20px 20px 0px;
  max-width: none;
}

@media screen and (max-width: 1600px) {
  .article-details__header-right {
    padding-right: 10%;
    padding-left: 0;
  }
}
/* POST CONTENT */
.post-content {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
}

.post-authors-wrapper {
  margin-top: 81px;
  margin-bottom: 94.37px;
}
.post-authors-wrapper .post-author-item {
  padding-top: 42px;
  margin-top: 42px;
  border-top: 1px solid #eaeaea;
}
.post-authors-wrapper .post-author-profile {
  margin-bottom: 30.6px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.post-authors-wrapper .post-author-image {
  min-width: 180px;
  height: 150px;
  position: relative;
  align-self: flex-start;
  overflow: hidden;
}
.post-authors-wrapper .post-author-image img {
  position: absolute;
  object-fit: cover;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.post-authors-wrapper .post-author-meta {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.post-authors-wrapper .author-name {
  font-size: 20px;
  line-height: 38px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0px;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 38px;
  -webkit-transform: translateY(0.6em);
          transform: translateY(0.6em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Bold", sans-serif;
}
.post-authors-wrapper .author-name::before {
  content: "";
  margin-top: -21px;
  display: block;
  height: 0;
}
.post-authors-wrapper .author-title {
  font-size: 18px;
  line-height: 32px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  margin-bottom: 0;
  text-transform: none;
  font-size: 18px;
  line-height: 32px;
  -webkit-transform: translateY(0.5388888889em);
          transform: translateY(0.5388888889em);
  padding-top: 1px;
  font-family: "Cooper Hewitt Book", sans-serif;
}
.post-authors-wrapper .author-title::before {
  content: "";
  margin-top: -17px;
  display: block;
  height: 0;
}
.post-authors-wrapper .author-bio-summary {
  margin-bottom: 11px;
}

@media screen and (max-width: 540px) {
  .post-authors-wrapper .post-author-profile {
    margin-bottom: 30.6px;
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
}
.article-post-share {
  margin-top: 94.37px;
}

/**/
.MG-share-media-text {
  font-size: 18px;
  line-height: 32px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #101135;
  opacity: 1;
  margin-bottom: 11px;
}

.MG-text-wrapper {
  margin-bottom: 67.85px;
}

.MG-media-icons {
  display: flex;
  gap: 20px;
}

blockquote {
  position: relative;
  letter-spacing: 0;
  width: 100%;
}

blockquote p {
  font-size: 20px;
  line-height: 32px;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin: 0 0 41px 0;
  letter-spacing: 0;
}

blockquote h5, blockquote .h5 {
  font-size: 20px;
  line-height: 38px;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin: 0 0 41px 0;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}

blockquote h6, blockquote .h6 {
  font-size: 18px;
  line-height: 32px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  margin: 0;
}

blockquote::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25.449" height="25.439" viewBox="0 0 25.449 25.439"><g id="Group_59" data-name="Group 59" transform="translate(-642.445 -5365.588)"><path id="Path_29" data-name="Path 29" d="M16.895-67.822a5.475,5.475,0,0,0-4.077,3.027,12.489,12.489,0,0,0-1.392,6.006q0,.293.024.562a3.363,3.363,0,0,0,.122.61h5.322v10.645H6.445v-9.814A21.657,21.657,0,0,1,8.887-67.163a9.857,9.857,0,0,1,8.008-5.249Z" transform="translate(636 5438)" fill="%23eaeaea"/><path id="Path_28" data-name="Path 28" d="M16.895-67.822a5.475,5.475,0,0,0-4.077,3.027,12.489,12.489,0,0,0-1.392,6.006q0,.293.024.562a3.363,3.363,0,0,0,.122.61h5.322v10.645H6.445v-9.814A21.657,21.657,0,0,1,8.887-67.163a9.857,9.857,0,0,1,8.008-5.249Z" transform="translate(651 5438)" fill="%23eaeaea"/></g></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  top: -12px;
  position: absolute;
  left: -40px;
}

.article-content-wrapper {
  padding-top: 100px;
}

.MG-summary-wrapper {
  height: auto;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #101135;
  max-width: 859px;
  opacity: 1;
  margin-bottom: 102px;
}

.MG-resources-text {
  margin-bottom: 61.85px;
  text-align: left;
  font-weight: 300;
  font-size: 24px;
  line-height: 37px;
  font-family: "plantin", serif;
  letter-spacing: 0.6px;
  color: #101135;
  opacity: 1;
}

.MG-resources-wrapper-case-study {
  margin-bottom: 60.85px;
}

.playbook-item {
  margin-bottom: 67.85px;
}

.MG-playbook-text {
  text-align: left;
  font: normal normal normal 20px/38px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  color: #101135;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 16.15px;
}

.MG-resilience-text {
  text-align: left;
  font: normal normal 300 30px/36px "Cooper Hewitt Semibold", sans-serif;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 16.15px;
  max-width: 370px;
}

a.MG-external-link {
  text-align: left;
  font: normal normal normal 14px/22px "Cooper Hewitt Medium", sans-serif;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  opacity: 1;
  white-space: nowrap;
  line-height: 22px;
}

.MG-article-external-links-wrapper {
  display: flex;
  gap: 46px;
}

.MG-external-link a {
  font: normal normal normal 14px/22px "Cooper Hewitt Medium", sans-serif;
  white-space: nowrap;
  letter-spacing: 0.14px;
  line-height: 22px;
}

.MG-content-wrapper {
  margin-bottom: 271.4px;
}

.MG-share-media-text-sub {
  text-align: left;
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #101135;
  opacity: 1;
  margin-bottom: 11px;
}

.newsletter-container {
  background: rgba(234, 234, 234, 0.5) 0% 0% no-repeat padding-box;
  border-radius: 20px 0px 0px 20px;
  width: 100vw;
  margin-bottom: 50px;
  margin-top: 107px;
  position: relative;
}

.newsletter-info {
  padding: 74.5px 0 72.34px 109px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  row-gap: 20px;
}

.newsletter-title {
  text-align: left;
  font: normal normal normal 46px/65px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  color: #101135;
  opacity: 1;
  margin-bottom: 6.51px;
  max-width: 771px;
}

.newsletter-description {
  text-align: left;
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  opacity: 1;
  max-width: 717px;
  margin-bottom: 16px;
}

.newsletter_input {
  max-width: 46.87vw;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  opacity: 1;
  margin-bottom: 30.66px;
}

.newsletter-email {
  text-align: left;
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #101135;
  border: none;
  padding-left: 27px;
  background: #ffffff 0% 0% no-repeat padding-box;
  width: 750px;
  height: 67px;
  text-transform: capitalize;
  opacity: 1;
}

.MG-video-details-container::before {
  content: "";
  background: rgba(234, 234, 234, 0.5) 0% 0% no-repeat padding-box;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 20px 0px 0px 20px;
  width: calc(100vw + 24.95%);
}

/*.newsletter-section {
    margin-bottom: 271.4px;
}*/
.MG-share-media-text-block {
  margin-top: 87px;
}

.video-media-player-spacer {
  margin-top: 100px;
}

.video-media-player {
  max-height: 476px;
  margin: 0 0 -83px 109px;
}

.MG-video-details-container {
  border-radius: 20px 0px 0px 20px;
  position: relative;
}

.MG-content-video {
  display: flex;
  justify-content: space-between;
  padding: 134px 0 65px 109px;
}

.description-video-container {
  /*max-width: 427px;*/
  text-align: left;
  font: normal normal normal 18px/32px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
  color: #101135;
  opacity: 1;
  padding-right: 90px;
}

.MG-content-video .video-title {
  font-size: 46px;
  line-height: 65px;
  letter-spacing: 0;
  color: #101135;
  opacity: 1;
  margin-bottom: 33px;
  /*max-width: 375px;*/
}

.MG-share-media-wrapper {
  display: flex;
  flex-direction: column;
}

.MG-content-wrapper-newsletter {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  color: #101135;
  text-align: left;
  max-width: 880px;
}

.newsletter-info::before {
  content: "";
  background: rgba(234, 234, 234, 0.5) 0% 0% no-repeat padding-box;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 15px 0px 0px 15px;
}

.margin-footer {
  margin-top: 291px;
}

.our-events-wrapper__image.image-mask::before {
  border-radius: inherit;
  content: "";
  height: 100%;
  top: 0;
  inset: auto;
  mix-blend-mode: color;
  position: absolute;
  display: block;
  right: 131px;
  bottom: 0;
  width: calc(50vw - 48.9% - 131px);
  z-index: 1;
  background: transparent linear-gradient(0deg, #dA6123 0%, #c9683500 100%) 0% 0% no-repeat padding-box;
}

@media screen and (max-width: 991px) {
  .global-article-layout__container {
    padding: 0 36px;
    position: relative;
  }

  .with-margin-top {
    margin-top: 33px;
  }

  .article-details-background__header {
    border-radius: 0 15px 15px 0;
    bottom: 0;
    left: 0;
    max-width: 91.395%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }

  .header-button__article {
    margin-top: 70px;
  }

  .article-details-header__info {
    display: flex;
    flex-direction: column;
  }

  .article-details-header__tag {
    font: normal normal 300 24px/37px "plantin", serif;
    letter-spacing: 0.6px;
    margin-bottom: 27px;
  }

  .article-details-header__date {
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    color: #ffffff;
    margin-bottom: 39px;
    padding-top: 0;
  }

  h1.article-details-background__header-title, .article-details-background__header-title.h1 {
    letter-spacing: 0;
    opacity: 1;
    font-size: 46px;
    line-height: 65px;
    letter-spacing: 0;
    color: #ffffff;
    text-transform: capitalize;
    opacity: 1;
    margin-bottom: 0;
    font-size: 45px;
    line-height: 65px;
    -webkit-transform: translateY(0.3722222222em);
            transform: translateY(0.3722222222em);
    padding-top: 1px;
    font-family: "Cooper Hewitt Book", sans-serif;
  }
  h1.article-details-background__header-title::before, .article-details-background__header-title.h1::before {
    content: "";
    margin-top: -29px;
    display: block;
    height: 0;
  }

  .article-details-background__authors {
    margin-top: 23px;
  }

  .article-details-background__header-extra-info {
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    color: #ffffff;
    margin-bottom: 90px;
    max-width: unset;
  }

  .our-events-wrapper__image {
    max-width: unset;
    width: 80vw;
    margin: 0;
    height: 200px;
    position: absolute;
    bottom: -150px;
    left: 0;
  }

  .our-events-wrapper__image::after {
    padding-top: 51%;
  }

  img.our-events-image__img {
    border-radius: 0px 10px 10px 0px;
    display: block;
    width: 100%;
    margin-right: 0;
    width: 80.465vw;
    margin-top: 0;
    height: 100%;
  }

  .MG-text-wrapper {
    margin-bottom: 70px;
  }

  .article-content-wrapper {
    padding-top: 235px;
  }

  .MG-summary-wrapper {
    padding-right: 0;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.09px;
    letter-spacing: 0.07px;
    margin-bottom: 93.37px;
  }

  .MG-resources-text {
    margin-bottom: 42.3px;
    font-weight: 300;
    font-size: 24px;
    line-height: 37px;
    font-family: "plantin", serif;
    font-weight: 300;
    letter-spacing: 0.6px;
  }

  .playbook-item {
    margin-bottom: 42.3px;
  }

  .MG-playbook-text {
    font: normal normal normal 16px/20px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0;
    margin-bottom: 16.15px;
  }

  .MG-resilience-text {
    font: normal normal 600 24px/29px "Cooper Hewitt Semibold", sans-serif;
    letter-spacing: 0.6px;
    margin-bottom: 16.15px;
    max-width: unset;
  }

  a.MG-external-link {
    font: normal normal normal 14px/22px "Cooper Hewitt Medium", sans-serif;
    letter-spacing: 0.14px;
    text-transform: uppercase;
    opacity: 1;
    line-height: 22px;
  }

  .MG-external-link a {
    font: normal normal normal 14px/22px "Cooper Hewitt Medium", sans-serif;
    line-height: 22px;
  }

  .MG-resources-wrapper {
    margin-bottom: 42.3px;
  }

  .MG-resources-wrapper-weekly-whiteboard {
    margin-bottom: 105.63px;
  }

  .newsletter-container {
    border-radius: 15px 0px 0px 15px;
    margin-bottom: 30px;
  }

  .newsletter-info {
    padding: 58px 36px 61px 44px;
  }

  .newsletter-title {
    font: normal normal normal 28px/43px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0;
    margin-bottom: 6.51px;
    max-width: 75.58vw;
  }

  .newsletter-description {
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    margin-bottom: 15px;
    max-width: 73.25vw;
  }

  .newsletter-email {
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    color: #101135;
    width: 75.5vw;
    height: 55px;
    line-height: 19px;
  }

  .MG-content-wrapper-newsletter {
    margin-bottom: 113.37px;
    max-width: unset;
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
  }

  .MG-share-media-text-block {
    margin-top: 113.37px;
  }

  /*.newsletter-section {
      margin-bottom: 148.5px;
  }*/
  .video-media-player-spacer {
    margin-top: 142.65px;
  }

  .MG-content-video {
    display: flex;
    flex-direction: column;
    padding: 165.5px 0 66.5px 47px;
  }

  .video-media-player {
    padding-left: 47px;
    margin: 0 0 -116.39px 0;
  }

  .MG-video-details-container {
    border-radius: 15px 0px 0px 15px;
  }

  .MG-content-video {
    display: flex;
    justify-content: space-between;
    padding: 165.5px 0 63.87px 47px;
  }

  .description-video-container {
    font-size: 15px;
    line-height: 28px;
    font-family: "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    margin-bottom: 39px;
    max-width: 72.1vw;
    padding: 0;
  }

  .video-title {
    font-size: 28px;
    line-height: 43px;
    font-family: "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0;
    margin-bottom: 20px;
    margin-top: 0;
    max-width: unset;
    padding: 0;
  }

  .hidden-mobile {
    display: none;
  }

  .hidden-desktop {
    display: block;
  }

  .post-video {
    margin-top: 105px;
  }

  .post-video p {
    max-width: unset;
    margin-top: 39.36px;
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
  }

  .post-video img {
    width: calc(100% + 36px);
    object-fit: cover;
    max-height: 200px;
    margin-top: 95.56px;
    border-radius: 10px 0px 0px 10px;
    margin-bottom: unset;
  }

  .post-video h3, .post-video .h3 {
    margin-top: 113.37px;
    max-width: unset;
    font: normal normal 600 24px/29px "Cooper Hewitt Semibold", sans-serif;
    letter-spacing: 0.6px;
  }

  .post-video blockquote {
    margin-top: 30px;
    margin-bottom: 95.44px;
    font: italic normal 300 14px/22px "plantin", serif;
    letter-spacing: 0.28px;
  }

  .post-video blockquote > span {
    position: unset;
    left: unset;
    bottom: unset;
    max-width: unset;
    display: unset;
  }

  .post-video blockquote:has(> span) {
    height: unset;
  }

  .MG-video-content-wrapper {
    margin-bottom: 113.37px;
  }

  .MG-video-content-wrapper p {
    font: normal normal normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    max-width: unset;
  }

  .MG-video-content-wrapper h2, .MG-video-content-wrapper .h2 {
    font: normal normal normal 28px/43px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0;
    max-width: unset;
    margin-bottom: 39px;
  }

  .article-details-background__header-right {
    margin-bottom: 52px;
    padding-top: 67px;
  }

  .MG-resources-wrapper-case-study {
    margin-bottom: 42.3px;
  }

  .MG-content-wrapper {
    margin-bottom: 147.52px;
  }

  .MG-video-details-container::before {
    content: "";
    background: rgba(234, 234, 234, 0.5) 0% 0% no-repeat padding-box;
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 15px 0px 0px 15px;
  }

  .margin-footer {
    margin-top: 0;
  }

  blockquote {
    padding-left: 47px;
    padding-right: 51px;
    width: 100%;
    margin-left: 0;
  }

  blockquote p {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 30px 0;
  }

  blockquote h5, blockquote .h5 {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
  }

  blockquote h6, blockquote .h6 {
    font-size: 15px;
    line-height: 28px;
    margin: 0;
    letter-spacing: 0.07px;
  }

  blockquote::before {
    left: 0;
  }

  .sfContentBlock:has(blockquote:only-child) {
    padding-left: 36px;
    margin-top: 70px;
    width: calc(100% + 37px);
    padding: 58px 0 41px;
    background: transparent linear-gradient(90deg, #eaeaea00 0%, #eaeaea 100%) 0% 0% no-repeat padding-box;
  }

  .footer[extra-margin] {
    margin-top: 183px;
  }

  .global-article-layout__inner {
    min-height: unset;
  }

  .our-events-wrapper__image.image-mask::before {
    border-radius: inherit;
    content: "";
    height: 100%;
    top: 0;
    mix-blend-mode: color;
    position: absolute;
    display: block;
    right: 0px;
    bottom: 0;
    width: 80.465vw;
    z-index: 1;
    background: transparent linear-gradient(0deg, #dA6123 0%, #c9683500 100%) 0% 0% no-repeat padding-box;
  }
}
/*-- Filter --*/
.search-filter__wrapper {
  position: relative;
  max-width: 300px;
}

.search-filter__input {
  border: 1px solid #101135;
  color: #101135;
  font-size: 20px;
  line-height: 44px;
  font-family: "Cooper Hewitt Book", sans-serif;
  height: 54px;
  letter-spacing: 0;
  padding: 16px 42px 16px 17px;
  width: 100%;
  outline: none;
}

.search-filter__input::-webkit-input-placeholder {
  color: #101135;
}

.search-filter__input::placeholder {
  color: #101135;
}

.search-filter__icon {
  position: absolute;
  width: 24px;
  top: 50%;
  translate: 0 -50%;
  right: 21px;
  cursor: pointer;
}

button.insights-filter__title {
  cursor: none;
  pointer-events: none;
  display: flex;
  font-weight: 300;
  font-size: 24px;
  line-height: 37px;
  font-family: "plantin", serif;
  color: #101135;
  margin-top: 37px;
  cursor: pointer;
  letter-spacing: 0.6px;
  border: 0 none;
  background: none;
}

.custom__option {
  margin-bottom: 10px;
  position: relative;
}

.custom-option__label {
  -webkit-user-select: none;
          user-select: none;
  align-items: baseline;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  line-height: 1.8rem;
  font-family: "Cooper Hewitt Book", sans-serif;
  gap: 13.5px;
  position: relative;
  text-transform: uppercase;
}

.insights-filter__item .custom-option__label {
  font-size: 20px;
  line-height: 38px;
  font-family: "Cooper Hewitt Book", sans-serif;
}

.custom-option__checkbox {
  display: none;
}

.custom-option__label::before {
  border-radius: 3px;
  border: 1px solid #101135;
  content: "";
  display: inline-flex;
  height: 17px;
  width: 17px;
}

.custom-option__checkbox:checked ~ .custom-option__label::before {
  background-color: #dA6123;
}

.custom-option__cover {
  position: absolute;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  right: 0;
  left: 25px;
}

.custom__option-sec-level .custom-option__label {
  gap: 8px;
  letter-spacing: 0.5px;
  font: 300 20px/42.25px "plantin", serif;
  text-transform: capitalize;
}

.custom__options {
  margin-top: 40px;
}

.image-hover-effect {
  position: relative;
}

.image-hover-effect:hover {
  color: #dA6123;
}

.image-hover-effect:hover > div:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  mix-blend-mode: color;
  border-radius: 10px;
  z-index: 1;
  background: transparent linear-gradient(0deg, #dA6123 0%, #c9683500 25%) 0% 0% no-repeat padding-box;
}

.image-hover-effect:hover img {
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
}

a.search-item-wrapper-link {
  all: unset;
}

.search-results-container::before {
  background: #eaeaea80;
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  border-radius: 20px 0px 0px 20px;
  width: 100vw;
  z-index: 0;
  left: 49px;
}

.search-result-item {
  display: flex;
  gap: 63px;
  z-index: 1;
  position: relative;
}

.search-result-item:not(:last-child) {
  margin-bottom: 56px;
}

.search-result-item__image {
  position: relative;
  align-self: flex-start;
  overflow: hidden;
}

.search-result-item__image img {
  position: absolute;
  object-fit: cover;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.search-result-item__content {
  color: #101135;
  width: calc(100% - 180px);
}

.search-result-item__content h3 a, .search-result-item__content .h3 a {
  font-family: "Cooper Hewitt Semibold", sans-serif;
  color: #101135;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.75px;
  margin-bottom: 16px;
}

.search-result-item__content p {
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow-y: hidden;
}

.search-result-item__content a {
  font-size: 14px;
  line-height: 22px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.14px;
  margin-bottom: 0;
  margin-right: 20px;
}

.search-result-item__content p:not(:last-child) {
  margin-bottom: 22px;
}

.custom__options.team-filter__options.collapse:not(.show) {
  display: block;
}

@media (max-width: 991px) {
  .search-filter__wrapper {
    max-width: 100%;
  }

  button.insights-filter__title {
    cursor: pointer;
    pointer-events: all;
    display: flex;
    font-weight: 300;
    font-size: 24px;
    line-height: 37px;
    font-family: "plantin", serif;
    color: #dA6123;
    margin-top: 37px;
    cursor: pointer;
    letter-spacing: 0.6px;
    margin-bottom: 0;
    border: 0 none;
    background: none;
    width: 100%;
    display: flex;
  }
  button.insights-filter__title.collapsed {
    color: #dA6123;
  }

  button.insights-filter__title svg {
    display: inline-flex;
    width: 24px;
    fill: currentColor;
    margin-left: auto;
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
    transition: all 0.3s ease-in-out;
  }

  button.insights-filter__title.collapsed svg {
    fill: currentColor;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .custom__options.team-filter__options.collapse:not(.show) {
    display: none;
  }

  .custom__options {
    margin-top: 26px;
  }

  .custom-option__label {
    font: 16px/20px "Cooper Hewitt Book", sans-serif;
  }

  .search-filter__input {
    font: normal 15px/28px "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0.07px;
    height: 47px;
  }

  .search-filter__icon {
    right: 12px;
  }

  .search-results-container {
    padding-block: 0 59px;
  }

  .search-results-container::before {
    top: 90px;
    left: 0;
  }

  .search-result-item {
    padding-left: 38px;
    align-items: center;
    flex-direction: column;
    gap: 35px;
  }

  .search-result-item:not(:last-child) {
    margin-bottom: 73px;
  }

  .search-result-item__image {
    position: relative;
    max-width: 100%;
    min-height: auto;
    height: auto;
    width: 100%;
    align-self: center;
    min-height: 208px;
    left: 0;
  }

  .search-result-item__image::after {
    padding-top: 64.596%;
  }

  .search-result-item__content {
    width: 100%;
    max-width: 100%;
  }

  .search-result-item__content p:not(:last-child) {
    margin-bottom: 14px;
  }

  .search-result-item__content h3, .search-result-item__content .h3 {
    margin-bottom: 8px;
  }

  .search-result-item__content p {
    margin-bottom: 16px;
  }
}
.search-page {
  padding-top: 69px;
  overflow: hidden;
  background-color: #f7f7f7;
  padding-bottom: 89px;
}

.search__two-colums {
  display: grid;
  gap: 79px 92px;
  grid-template-columns: minmax(330px, 1fr) minmax(0, 3fr);
}

.search__filters,
.search__categories {
  position: relative;
}

.search-filters__title {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  -webkit-user-select: none;
          user-select: none;
}

button.search-filter__title {
  letter-spacing: 0;
  font-size: 28px;
  line-height: 1;
  font-family: "Cooper Hewitt Book", sans-serif;
  margin: 0;
}

.search-filter__options {
  margin-top: 30px;
  -webkit-user-select: none;
          user-select: none;
}

.search-filter__label {
  font-size: 20px;
  line-height: 42.25px;
  font-family: "plantin", serif;
  font-weight: 300;
  gap: 8px;
  position: relative;
  text-transform: none;
  letter-spacing: 0.5px;
}

.search-filter__label::before {
  border-radius: 3px;
  border: 1px solid #101135;
  content: "";
  display: inline-flex;
  height: 15px;
  width: 15px;
  background-color: #ffffff;
}

.second-level {
  padding-left: 23px;
  margin-bottom: 0;
}

.second-level .search-filter__label {
  font-size: 15px;
  line-height: 38px;
  font-family: "Cooper Hewitt Book", sans-serif;
  gap: 8px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0;
}

.search-filter__option .second-level li {
  margin-bottom: 0;
  padding-left: 0;
}

.search__categories {
  padding-top: 57px;
  padding-bottom: 100px;
}

.search-filter__search-wrapper {
  margin-bottom: 48px;
}

.search .search-filter__wrapper {
  max-width: 100%;
}

.search-filter__wrapper {
  margin-bottom: 32px;
}

.search-filter__item:not(:last-child) {
  margin-bottom: 32px;
}

.search-result-item__image {
  width: 180px;
  height: 150px;
}
.search-result-item__image .default-image {
  width: 100%;
  height: 100%;
  background-color: #707070;
  color: #ffffff;
  justify-content: center;
  display: flex;
  align-items: center;
}

.team-title__icon-chevron {
  display: none;
  margin-left: 15px;
  vertical-align: middle;
  width: 24px;
}

.insights-listing .search-result-item__image {
  max-width: 359px;
  width: 100%;
  height: 300px;
  align-self: flex-start;
}

.insights-listing .k-pager-wrap {
  margin-top: 167.99px;
}

@media (max-width: 992px) {
  .search-page {
    padding-bottom: 209px;
    padding-top: 0;
  }
  .search-page .search__categories {
    padding-top: 0;
  }

  .search-page-filter__wrapper {
    display: block;
  }

  .search-filter__wrapper {
    margin-top: 32px;
    max-width: 100%;
  }

  .search-result-item__image {
    width: 100%;
    height: auto;
  }

  .search-filter__item:not(:last-child) {
    margin-bottom: 42px;
  }

  .search__two-colums {
    gap: 63px;
    grid-template-columns: 1fr;
  }

  .team-title__icon-chevron {
    display: inline-block;
  }

  .insights-listing {
    margin-bottom: 209px;
    margin-top: 88px;
    position: relative;
  }

  .insights-listing .k-pager-wrap {
    margin-top: 123.99px;
  }
}
.search-filter__option button.accordion__title {
  display: none;
}
.search-filter__option .search-filter-heading-toggle {
  display: flex;
  flex-direction: row;
}
.search-filter__option .second-level.accordion-content.collapse:not(.show) {
  display: block;
}
.search-filter__option .search-filter__label {
  flex: 1 1 100%;
}

@media screen and (max-width: 991px) {
  .search-filter__option button.accordion__title {
    margin-bottom: 0;
    margin-bottom: 0;
    align-items: center;
    display: flex;
    width: 24px;
    color: #dA6123;
  }
  .search-filter__option .second-level.accordion-content.collapse:not(.show) {
    display: none;
  }
  .search-filter__option .search-filter-heading-toggle .search-filter__label {
    color: #dA6123;
  }
}
.k-loading-mask {
  display: none;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.search-filter__wrapper {
  position: relative;
  /*max-width: inherit;
      width: fit-content;*/
}
.search-filter__wrapper .search-filter__input {
  border: 1px solid #101135;
  color: #101135;
  font-size: 20px;
  line-height: 44px;
  font-family: "Cooper Hewitt Book", sans-serif;
  height: 54px;
  letter-spacing: 0;
  padding: 16px 42px 16px 17px;
  width: 100%;
  outline: none;
}
.search-filter__wrapper .search-filter__icon {
  position: inherit;
  width: 21.846px;
  top: inherit;
  translate: inherit;
  right: auto;
  cursor: inherit;
}
.search-filter__wrapper .btn-search {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 21px;
  border: none;
  background-color: transparent;
  width: 21.846px;
  height: 22.232px;
  display: flex;
  align-items: center;
}
.search-filter__wrapper:focus {
  /* max-width: inherit;
      width: 100%;*/
}
.search-page_search-box .search-filter__wrapper .search-filter__input {
  border: 1px solid transparent;
  border-radius: 5px;
}

.k-pager-wrap {
  display: flex;
  align-items: center;
  width: 50%;
  margin-left: auto;
  position: relative;
}
.k-pager-wrap .k-pager-numbers-wrap .k-dropdown-list,
.k-pager-wrap .k-pager-info {
  display: none;
}
.k-pager-wrap .k-pager-first, .k-pager-wrap .k-pager-last {
  display: none;
}
.k-pager-wrap .k-pager-nav {
  height: 20px;
}
.k-pager-wrap .k-i-arrow-end-left {
  display: none;
}
.k-pager-wrap .k-i-arrow-60-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #dA6123;
  display: inline-block;
  height: 20px;
}
.k-pager-wrap .k-i-arrow-end-right {
  display: none;
}
.k-pager-wrap .k-i-arrow-60-right {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #dA6123;
  display: inline-block;
  height: 20px;
}
.k-pager-wrap .k-pager-numbers-wrap {
  flex: 100% 1 1;
}
.k-pager-wrap a.k-disabled .k-i-arrow-60-left {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #eaeaea;
}
.k-pager-wrap a.k-disabled .k-i-arrow-60-right {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #eaeaea;
}
.k-pager-wrap a[role=button].k-disabled:hover {
  cursor: default;
}
.k-pager-wrap .k-pager-numbers {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  inset: auto;
  margin: 30px 0 30px auto;
  /*   min-width: 40%;
  max-width: 534px;*/
  width: 100%;
  padding: 0;
  list-style: none;
}
.k-pager-wrap .k-pager-numbers::before {
  content: "";
  top: 50%;
  translate: 0 -50%;
  background-color: #dA6123;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100vw;
}
.k-pager-wrap .k-pager-numbers li {
  width: 33px;
  height: 33px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: "Cooper Hewitt Book", sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.k-pager-wrap .k-pager-numbers a.k-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dA6123;
  width: 9px;
  height: 9px;
  margin: 0;
  border: none;
  border-radius: 100%;
  opacity: 1;
  z-index: 1;
  transition: width 0.3s, height 0.3s;
  font-size: 0;
}
.k-pager-wrap .k-pager-numbers span.k-link.k-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dA6123;
  font-size: 12px;
  line-height: 20px;
  height: 33px;
  width: 33px;
  border-radius: 100%;
  opacity: 1;
  z-index: 1;
  color: #ffffff;
}

@media (max-width: 991px) {
  .k-pager-wrap {
    width: 80%;
  }
}
@media (max-width: 624px) {
  .k-pager-wrap {
    width: 100%;
  }
}
.video-section {
  /* margin-top: 75px;
  margin-bottom: 75px;*/
  max-width: 1372px;
}
.video-section .video-container {
  position: relative;
  width: 100%;
  /*max-height: 635px;*/
}
.video-section .video-container img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  /*max-height: 635px;*/
}
.video-section .video-media-player {
  max-height: 635px;
  margin: 0;
}
.video-section .video-section-description {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.video-section .video-description-header {
  padding-right: 10%;
}
.video-section .video-description-header h2.video-title, .video-section .video-description-header .video-title.h2 {
  font-size: 46px;
  line-height: 65px;
  letter-spacing: 0;
}
.video-section .video-description {
  margin-top: 32px;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .video-section {
    /* margin-top: 75px;
    margin-bottom: 75px;*/
  }
  .video-section .video-container {
    position: relative;
    width: 100%;
    /*max-height: 205px;*/
  }
  .video-section .video-container img {
    object-fit: cover;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    /*max-height: 205.8px;*/
  }
  .video-section .video-section-description {
    margin-top: 43px;
    flex-direction: column;
  }
  .video-section .video-description-header {
    width: unset;
    max-width: inherit;
    padding-right: 0;
  }
  .video-section .video-description-header h2.video-title, .video-section .video-description-header .video-title.h2 {
    font-size: 28px;
    line-height: 43px;
    letter-spacing: 0;
  }
  .video-section .video-description {
    margin-top: 24.5px;
    margin-bottom: 33.5px;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
  }
}
.accordion {
  margin: 187px 0 135px 0;
}
.accordion .accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion .accordion__content {
  position: relative;
  background: none;
}
.accordion .accordion-header {
  padding: 0;
  margin: 0;
}
.accordion button.accordion-button {
  font-size: 24px;
  color: #101135;
  font-family: "Cooper Hewitt Semibold", sans-serif;
  letter-spacing: 0.6px;
  line-height: 29px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  width: 100%;
  padding: 0;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  align-items: center;
}
.accordion button.accordion-button:not(.collapsed) {
  color: #dA6123;
  background-color: transparent;
  box-shadow: none;
}
.accordion button.accordion-button::after,
.accordion button.accordion-button:not(.collapsed)::after {
  display: none;
}
.accordion .accordion-button svg.accordion-summary__icon {
  position: relative;
  fill: #dA6123;
  top: 0;
  left: 0;
  color: #dA6123;
  width: 35px;
  height: 35px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}
.accordion .accordion-button.collapsed svg.accordion-summary__icon {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.accordion .button-title {
  padding-left: 17px;
}
.accordion .accordion-item {
  background-color: transparent;
  position: relative;
  padding-bottom: 52.75px;
}
.accordion .accordion-body {
  padding: 30px 0 43px 52px;
  position: relative;
}
.accordion .accordion-item.panel-open::after {
  content: "";
  inset: 0;
  width: 100vw;
  position: absolute;
  left: -30px;
  height: 103%;
  background: transparent linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #eaeaea00 50%, #eaeaea 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
  top: -64px;
}
.accordion .accordion-item {
  border: 0 none;
}
.accordion button.accordion-button .event-details {
  padding-left: 17px;
  padding-right: 25px;
}
.accordion button.accordion-button .event-details .event-date,
.accordion button.accordion-button .event-details .event-speakers,
.accordion button.accordion-button .event-details .event-price {
  font-family: "Cooper Hewitt Semibold", sans-serif;
  font-size: 18px;
  color: #101135;
  line-height: 32px;
  letter-spacing: 0.09px;
  text-transform: none;
}
.accordion .event-description, .accordion .event-content {
  font-family: "Cooper Hewitt Book", sans-serif;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.09px;
  font-weight: normal;
}
.accordion .event-description {
  font-weight: normal;
  margin: 0 0 40px 0;
}

.accordion-section .accordion {
  margin: 136.25px 0;
}

@media screen and (max-width: 992px) {
  .accordion {
    margin: 182px 0;
  }
  .accordion .accordion-button svg.accordion-summary__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .accordion .accordion-body {
    padding: 32px 0 0 37px;
    position: relative;
  }
  .accordion .accordion-item {
    padding-bottom: 59px;
  }
  .accordion button.accordion-button .event-details .event-date,
.accordion button.accordion-button .event-details .event-speakers,
.accordion button.accordion-button .event-details .event-price {
    font-family: "Cooper Hewitt Semibold", sans-serif;
    font-size: 15px;
    color: #101135;
    line-height: 28px;
    letter-spacing: 0.07px;
  }
  .accordion .event-description, .accordion .event-content {
    font-family: "Cooper Hewitt Book", sans-serif;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.07px;
    font-weight: normal;
  }
  .accordion .event-button-mobile {
    padding-left: 37px;
    margin-top: 33px;
    padding-bottom: 33px;
  }

  .accordion-section .accordion {
    margin: 121.5px 0;
  }
}
/** FOOTER ***/
footer {
  background: transparent linear-gradient(270deg, #dA6123 0%, #101135 50%) 0% 0% no-repeat padding-box;
  padding-bottom: 92.5px;
}

.page-footer {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 150px;
  flex-direction: row;
  height: auto;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.page-footer .form-container {
  /* width: 42.8%;*/
  height: 560px;
  /*margin-top: 102.5px;*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.501);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.501);
  border-left: none;
  /*margin-right: 15.125%;*/
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 95.5px;
  /*position: relative;*/
  width: 100vw;
  margin-left: -100%;
  position: absolute;
  right: 58.8%;
  top: 102.5px;
  z-index: 0;
}
.page-footer .sign-up-form-wrapper {
  margin-top: 180px;
  z-index: 99;
  width: 50%;
}
.page-footer .sign-up-form {
  /*margin-bottom: 77.11px;*/
  /*position: absolute;*/
  /*right: 115px;*/
  /*left: 0;*/
  width: 419px;
  /*width: 100%;*/
}
.page-footer .form-headline,
.page-footer .sign-up-form p {
  max-width: 393px;
  font: normal normal normal 46px/65px "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0;
  color: #ffffff;
  text-align: left;
  margin-bottom: 27px;
  opacity: 1;
}
.page-footer .sign-up-form input[type=text]:focus {
  outline: none;
}
.page-footer .sign-up-form label {
  position: relative;
  top: -20px;
  color: white;
  background: #101135;
  padding: 2px 5px;
  font-size: 12px;
}
.page-footer .input1 {
  font-size: 14px;
  line-height: 22px;
  font-family: "Cooper Hewitt Medium", sans-serif;
  color: #ffffff;
  text-align: left;
  letter-spacing: 1.68px;
  border: none;
  border-bottom: 1px solid #EAEAEA;
  background: transparent;
  width: 100%;
  height: 27px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 50px;
}
.page-footer .input2 {
  font-size: 14px;
  line-height: 22px;
  font-family: "Cooper Hewitt Medium", sans-serif;
  color: #ffffff;
  text-align: left;
  letter-spacing: 1.68px;
  border: none;
  border-bottom: 1px solid #EAEAEA;
  background: transparent;
  margin-bottom: 66.32px;
  width: 100%;
  height: 27px;
  text-transform: uppercase;
  opacity: 0.5;
}
.page-footer .MG-btn span.button-primary-text {
  font-family: "Cooper Hewitt Book";
}
.page-footer .logos-container {
  /*width: 19.5%;*/
  height: 272.5px;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.501);
  border-left: 1px solid rgba(255, 255, 255, 0.501);
  border-bottom: 1px solid rgba(255, 255, 255, 0.501);
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  width: 100vw;
  margin-right: -100%;
  position: absolute;
  left: 94.5%;
  top: 106.5px;
  z-index: 0;
}
.page-footer .logos-inner {
  display: flex;
  flex-direction: column;
  /* margin-left: 26px;*/
  margin-top: 145.25px;
  gap: 46px;
  z-index: 20;
  position: relative;
}
.page-footer .logos-inner a {
  color: #ffffff;
}
.page-footer .logos-inner a:hover {
  color: #101135;
}
.page-footer .logo1 {
  width: 32.66px;
  height: 31.22px;
}
.page-footer .logo2 {
  width: 38.41px;
  height: 31.22px;
}
.page-footer .logo3 {
  width: 44.71px;
  height: 35.29px;
}
.page-footer .input1::-webkit-input-placeholder, .page-footer .input2::-webkit-input-placeholder {
  font: normal normal medium 14px/22px "Cooper Hewitt Medium", sans-serif;
  color: #ffffff;
  text-align: left;
  opacity: 0.5;
}
.page-footer .input1::placeholder, .page-footer .input2::placeholder {
  font: normal normal medium 14px/22px "Cooper Hewitt Medium", sans-serif;
  color: #ffffff;
  text-align: left;
  opacity: 0.5;
}
.page-footer .important-links {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.16px;
  line-height: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding-top: 169px;
  /* max-width: 400px;*/
  height: 670px;
}
.page-footer .important-links .footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.page-footer .important-links .footer-nav-links nav {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.page-footer .important-links .footer-nav-links p.main-link {
  font-family: "Cooper Hewitt Medium", sans-serif;
  letter-spacing: 1.92px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  opacity: 1;
  white-space: nowrap;
}
.page-footer .important-links .footer-nav-links a.secondary-link {
  font-family: "Cooper Hewitt Book", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.16px;
  line-height: 24px;
  text-align: left;
  margin: 0;
  padding: 0;
}
.page-footer .important-links .footer-nav-links a.secondary-link:hover {
  color: #dA6123;
}
.page-footer .important-links .copyright {
  margin-top: auto;
  /*margin-bottom: 92.5px;*/
}
.page-footer .important-links .copyright p {
  color: #ffffff;
  text-align: left;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.72px;
  /* max-width: 400px;*/
  white-space: nowrap;
  text-transform: none;
  line-height: 30px;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 1336px) {
  .page-footer .sign-up-form-wrapper {
    margin-top: 180px;
    z-index: 99;
    width: 100%;
    position: relative;
  }
  .page-footer .sign-up-form {
    /* margin-bottom: 77.11px;*/
    margin-left: 36px;
    right: inherit;
    max-width: 345px;
  }
  .page-footer .logos-container {
    /*width: 19.5%;*/
    height: 272.5px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.501);
    border-left: 1px solid rgba(255, 255, 255, 0.501);
    border-bottom: 1px solid rgba(255, 255, 255, 0.501);
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    width: 100vw;
    margin-right: -100%;
    position: absolute;
    left: 91.5%;
    top: 106.5px;
    z-index: 0;
  }
  .page-footer .logos-inner {
    display: flex;
    flex-direction: column;
    /*margin-left: 26px;*/
    margin-right: 36px;
    margin-top: 145.25px;
    gap: 46px;
  }
}
@media only screen and (max-width: 991px) {
  footer {
    padding-bottom: 0;
  }

  .page-footer {
    background: transparent linear-gradient(0deg, #dA6123 0%, #101135 50%) 0% 0% no-repeat padding-box;
    flex-direction: column;
    height: auto;
  }
  .page-footer .form-container {
    /*   width: 91.6%;
    max-width: 393px;*/
    /* margin-top: 44.5px;*/
    height: 443px;
    margin-right: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-bottom: 0;
    position: absolute;
    top: 44.5px;
    left: 0;
    right: inherit;
    margin-left: 0;
    width: 393px;
  }
  .page-footer .sign-up-form-wrapper {
    margin-top: 84.5px;
    z-index: 99;
    width: 100%;
    position: relative;
  }
  .page-footer .sign-up-form {
    padding-left: 0;
    padding-right: 65px;
    max-width: 312px;
    /*    margin-bottom: 49.5px;*/
  }
  .page-footer .form-headline,
.page-footer .sign-up-form p {
    max-width: unset;
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 43px;
    font-family: "Cooper Hewitt Book", sans-serif;
    letter-spacing: 0;
  }
  .page-footer .sign-up-form button {
    margin-bottom: 63px;
  }
  .page-footer .input1 {
    font-size: 12px;
    line-height: 18px;
    font-family: "Cooper Hewitt Medium", sans-serif;
    color: #ffffff;
    text-align: left;
    letter-spacing: 1.44px;
    margin-bottom: 33px;
  }
  .page-footer .input2 {
    font-size: 12px;
    line-height: 18px;
    font-family: "Cooper Hewitt Medium", sans-serif;
    color: #ffffff;
    text-align: left;
    letter-spacing: 1.44px;
    margin-bottom: 50px;
  }
  .page-footer .important-links {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.14px;
    line-height: 22px;
    font-size: 14px;
    /*padding-left: 35px;*/
    padding-top: 0;
    margin-top: 84px;
    gap: 26px;
    white-space: nowrap;
    margin-bottom: 70.5px;
    height: inherit;
  }
  .page-footer .important-links .footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-left: 36px;
  }
  .page-footer .important-links .footer-nav-links nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .page-footer .important-links .footer-nav-links p.main-link {
    font-family: "Cooper Hewitt Medium", sans-serif;
    font-size: 16px;
    letter-spacing: 1.92px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    opacity: 1;
    white-space: nowrap;
  }
  .page-footer .important-links .footer-nav-links a.secondary-link {
    font-family: "Cooper Hewitt Book", sans-serif;
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.14px;
    line-height: 24px;
    text-align: left;
    margin: 0;
    padding: 0;
  }
  .page-footer .important-links .footer-nav-links a.secondary-link:hover {
    color: #101135;
  }
  .page-footer .important-links .copyright {
    margin-top: 55.5px;
    margin-bottom: 0;
    padding-left: 36px;
  }
  .page-footer .important-links .copyright p {
    color: #ffffff;
    text-align: left;
    font-size: 10px;
    line-height: 24px;
    letter-spacing: 0.6px;
    max-width: 76.0465vw;
    white-space: nowrap;
    text-transform: none;
    line-height: 30px;
    padding: 0;
    margin: 0;
  }
  .page-footer .logos-container {
    margin-top: 0;
    margin-right: 0;
    width: 112px;
    height: 273px;
    position: absolute;
    right: 0;
    left: inherit;
    top: 572px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
  }
  .page-footer .logos-inner {
    /*margin-left: 7.441vw;*/
    /*  margin-top: 39px;*/
    margin-right: 0;
    margin-top: 0;
    /*width: 130px;*/
    height: 273px;
    position: absolute;
    right: 36px;
    top: 610px;
  }
  .page-footer .input1::-webkit-input-placeholder, .page-footer .input2::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 18px;
    font-family: "Cooper Hewitt Book", sans-serif;
  }
  .page-footer .input1::placeholder, .page-footer .input2::placeholder {
    font-size: 12px;
    line-height: 18px;
    font-family: "Cooper Hewitt Book", sans-serif;
  }
}
@media only screen and (max-width: 520px) {
  .page-footer .important-links .footer-nav-links {
    min-height: 220px;
  }
}
@media only screen and (max-width: 435px) {
  .page-footer .important-links {
    font-size: 10px;
    margin-top: 50px;
  }
  .page-footer .copyright {
    font-size: 7px;
    width: 290px;
  }
  .page-footer .copyright p {
    font-size: 7px;
  }
  .page-footer .logos-container {
    margin-top: 0;
    width: 113px;
  }
  .page-footer .form-container {
    position: absolute;
    left: 0;
    width: 90%;
    right: inherit;
  }
  .page-footer .sign-up-form-wrapper {
    margin-top: 120px;
    z-index: 99;
    width: 100%;
    position: relative;
  }
  .page-footer .sign-up-form {
    position: relative;
    left: inherit;
    right: inherit;
  }
}
@media screen and (max-width: 290px) {
  .input1, .input2 {
    width: inherit;
    min-width: 200px;
  }
}
@media screen and (max-width: 398px) {
  .sign-up-form .MG-btn {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
  }
}
.playbooks__lightbox {
  background: #ffffff;
  background: linear-gradient(360deg, #f7fcfe 0%, #f7fcfe 50%, white 50%);
  display: none;
  place-items: center;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
  overflow: auto;
}

.playbooks__lightbox .modal-dialog {
  pointer-events: all;
  max-width: 100%;
}

.playbooks-lightbox__wrapper {
  margin-top: 125px;
  margin-bottom: 90px;
}

.playbooks-form__group {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 43px;
}

.playbooks__form {
  margin: 0 auto;
  max-width: 760px;
  padding: 180px 30px 109px;
  position: relative;
  pointer-events: auto;
}

.playbooks-form__icon {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  translate: -50% -50%;
  left: 50%;
  width: 116px;
  height: 103px;
  border-radius: 10px;
  background: #dA6123;
}

.playbooks-form__title {
  padding-bottom: 50px;
}

.playbooks-form__title h4, .playbooks-form__title .h4 {
  text-align: center;
}

.playbooks-form__group > input {
  flex-grow: 1;
  outline: none;
  padding: 0 8px;
  margin-left: 24px;
}

.playbooks-form__group > input::-webkit-input-placeholder {
  color: #dA6123;
}

.playbooks-form__group > input::placeholder {
  color: #dA6123;
}

.playbooks-form__group.checkbox {
  margin-top: 77px;
}

.playbooks-form__group input {
  text-align: center;
  border: none;
  border-bottom: 1px solid #dA6123;
  background: transparent;
  font-size: 18px;
  line-height: 32px;
  font-family: "Cooper Hewitt Book", sans-serif;
  letter-spacing: 0.09px;
}

.playbooks-form__group label {
  font-size: 18px;
  line-height: 32px;
  font-family: "Cooper Hewitt Book", sans-serif;
  font-weight: normal;
  letter-spacing: 0.09px;
}

.playbooks-lightbox__wrapper {
  min-height: 866px;
  background: #f7fcfe;
  width: 100%;
  position: relative;
}

.playbooks__lightbox[data-hidden=true] {
  display: none;
}

.playbooks-lightbox__close {
  position: absolute;
  right: 54px;
  top: 43px;
  border: none;
  background: transparent;
  z-index: 2;
}

.playbooks-lightbox__close svg {
  height: 34.5px;
  width: 34.5px;
}

.playbooks-form__icon svg {
  height: 56px;
  width: 56px;
}

.playbooks-form__submit {
  margin: 59px auto 42px;
  background: transparent;
  border: none;
  display: block;
}

.playbooks-form__submit .text-decoration-none div {
  margin: 0 auto;
}

.playbooks-form__checkbox {
  align-items: baseline;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  line-height: 38px;
  font-family: "Cooper Hewitt Book", sans-serif;
  gap: 13.5px;
  position: relative;
}

.playbooks-form__checkbox {
  display: none;
}

.playbooks-form__checkbox:checked ~ .playbooks-checkbox__label::before {
  background-color: #dA6123;
}

.playbooks-checkbox__label::before {
  border-radius: 3px;
  border: 1px solid #101135;
  content: "";
  display: inline-flex;
  height: 17px;
  margin-top: 7px;
  width: 17px;
  margin-right: 16px;
}

.playbooks-form__group.consent-checkbox .playbooks-checkbox__label {
  display: flex;
}
.playbooks-form__group.consent-checkbox .playbooks-checkbox__label::before {
  min-width: 17px;
  min-height: 17px;
}
.playbooks-form__group.consent-checkbox .playbooks-checkbox__label span {
  text-align: left;
}

#mc_embed_signup .playbooks-form__disclaimer p {
  text-align: center;
  letter-spacing: 0.07px;
  font-size: 15px;
}

@media (max-width: 991px) {
  .playbooks-form__group {
    flex-wrap: wrap;
    gap: 8px;
  }

  .playbooks__form {
    padding-top: 117px;
    padding-bottom: 44px;
  }

  .playbooks-form__title {
    padding-bottom: 20px;
  }

  .playbooks-form__group > input {
    margin-left: 0;
    padding: 0;
  }

  .playbooks-form__group.company,
.playbooks-form__group.name {
    width: calc(100% - 64px);
    margin-inline: auto;
  }

  .playbooks-form__group.name {
    flex-direction: column;
  }

  .playbooks-checkbox__label {
    text-align: center;
  }

  .playbooks-checkbox__label p {
    max-width: 240.27px;
  }

  .playbooks-form__group.checkbox {
    margin-top: 64px;
  }

  .playbooks-form__submit {
    margin-top: 42px;
    margin-bottom: 54px;
  }

  .playbooks-lightbox__close {
    top: 20px;
  }

  .playbooks-form__group.name input:last-of-type {
    margin-top: 22px;
  }

  .playbooks-form__group.name > * {
    width: 100%;
    text-align: center;
  }

  .playbooks-lightbox__wrapper {
    margin-top: 74px;
    margin-bottom: 0;
  }
}
@media (max-width: 427px) {
  .playbooks-form__group.email,
.playbooks-form__group.name,
.playbooks-form__group.company {
    width: 100%;
    margin-inline: auto;
  }
}
.video-modal {
  z-index: 99999999;
}
.video-modal .modal-body {
  justify-content: center;
  display: flex;
  align-items: center;
}
.video-modal .modal-content {
  background-color: rgba(16, 17, 53, 0.75);
}

.modal-backdrop.show {
  display: none;
}

.video-lightbox__close {
  width: 34px;
  height: 34px;
  color: white;
  position: absolute;
  right: 52px;
  top: 15px;
  z-index: 500;
  border: 0;
  background: transparent;
  padding: 0;
}
.video-lightbox__close svg {
  vertical-align: inherit;
  width: 34px;
  height: 34px;
}

.preview-image {
  width: 100%;
  height: 100%;
}

.untoggled-video {
  max-height: 476px;
  object-fit: cover;
}

.untoggled-video img {
  max-height: 476px;
  border-radius: 20px;
}

.video-container {
  position: relative;
  width: 100%;
}
.video-container .btn-video-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  width: 60px;
  z-index: 999;
}
.video-container .btn-video-modal svg.play-button {
  width: 60px;
  height: 100%;
  fill: #ffffff;
}

@media screen and (max-width: 991px) {
  .video-popup iframe {
    width: 100%;
    height: 50%;
  }

  .inner-video {
    padding: 0 36px;
  }

  .close-btn {
    right: 36px;
  }

  .video-container {
    position: relative;
    width: 100%;
  }
  .video-container .btn-video-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    cursor: pointer;
    width: 32px;
  }
  .video-container .btn-video-modal svg.play-button {
    width: 32px;
    height: 100%;
    fill: #ffffff;
  }
}
#video-section .modal-content {
  min-width: 600px;
}

#video-section .modal-content iframe {
  width: 560px;
  height: 315px;
}

/*Sitefinity Designer fixes*/
.sfPageWrapper .playbooks__lightbox {
  display: none !important;
}

body.sfPageEditor {
  /*Sitefinity Designer fixes*/
}
body.sfPageEditor a.sfCancel, body.sfPageEditor a.sfCancel:link, body.sfPageEditor a.sfCancel:visited, body.sfPageEditor a.sfCancel:hover, body.sfPageEditor a.sfCancel:active, body.sfPageEditor a.rpLink, body.sfPageEditor .rmItem a .rmText {
  font-family: inherit;
  font-size: inherit;
  text-transform: none;
}
body.sfPageEditor .sfChange, body.sfPageEditor .sfChange .sfLinkBtnIn {
  letter-spacing: 0.14px;
  text-transform: none;
  font-family: inherit;
  font-size: inherit;
}
body.sfPageEditor .rdContent .sf_colsIn.d-block.d-lg-none {
  display: block !important;
}
body.sfPageEditor .carousel-inner-container {
  min-height: 200px;
}
body.sfPageEditor .sfPageContainer header {
  position: relative;
}
body.sfPageEditor .sfPageContainer .image-mask::before {
  display: none;
}
body.sfPageEditor .sfPageContainer .hero {
  margin: 0 69px 83px 69px;
}
body.sfPageEditor .sfPageContainer .what-makes-teams__background {
  z-index: -99999;
  top: -330px;
}
body.sfPageEditor .sfPageContainer .featured-content {
  margin-top: 0;
}
body.sfPageEditor .sfPageContainer .featured-content .background-container .background {
  z-index: -99999;
  top: -85px;
}
body.sfPageEditor .sfPageContainer .featured__image {
  min-width: 400px;
  max-width: 530px;
}
body.sfPageEditor .sfPageContainer .intro-image {
  display: flex;
  height: 100%;
}
body.sfPageEditor .sfPageContainer .intro-image .RadDockZone,
body.sfPageEditor .sfPageContainer .intro-image .zeControlDock,
body.sfPageEditor .sfPageContainer .intro-image .zeControlDock .rdContent,
body.sfPageEditor .sfPageContainer .intro-image .zeControlDock .rdContent .rdMiddle {
  height: 100%;
  width: 100%;
}
body.sfPageEditor .sfPageContainer .hero .hero-wrapper__image .rdContent,
body.sfPageEditor .sfPageContainer .hero .hero-wrapper__image .RadDockZone.zeDockZoneEmpty {
  min-height: 400px !important;
}
body.sfPageEditor .sfPageContainer .image-mask-map .RadDockZone.zeDockZoneEmpty {
  min-height: 400px !important;
}
body.sfPageEditor .sfPageContainer .headline__title {
  min-width: 300px;
  max-width: calc(100% - 345px);
}
body.sfPageEditor .sfPageContainer .headline__button {
  min-width: 245px;
  max-width: 300px;
}
body.sfPageEditor .sfPageContainer .icon-four-cards .card-block-image__container,
body.sfPageEditor .sfPageContainer .icon-three-cards .remove-holding-image__block {
  max-width: 170px;
}
body.sfPageEditor .sfPageContainer .card-image-unleash__description .RadDockZone,
body.sfPageEditor .sfPageContainer .card-image-unleash__description .rdContent,
body.sfPageEditor .sfPageContainer .remove-holding-image__info .RadDockZone,
body.sfPageEditor .sfPageContainer .remove-holding-image__info .rdContent {
  width: 365px;
  max-width: 365px;
}
body.sfPageEditor .sfPageContainer .remove-holding-image__block .rdContent, body.sfPageEditor .sfPageContainer .cards__image .rdContent,
body.sfPageEditor .sfPageContainer .card-block-image__container .rdContent, body.sfPageEditor .sfPageContainer .cards__image .rdContent {
  text-align: center;
}
body.sfPageEditor .sfPageContainer .featured__image .RadDockZone,
body.sfPageEditor .sfPageContainer .featured__image .RadDockZone.zeDockZoneEmpty,
body.sfPageEditor .sfPageContainer .featured__image .rdContent,
body.sfPageEditor .sfPageContainer .mg-group-wrapper__image .rdContent {
  min-height: 400px !important;
}
body.sfPageEditor .sfPageContainer .wrapper__image .RadDockZone, body.sfPageEditor .sfPageContainer .wrapper__image .RadDockZone.zeDockZoneEmpty, body.sfPageEditor .sfPageContainer .wrapper__image .rdContent {
  min-height: 400px !important;
}
body.sfPageEditor .sfPageContainer .cards__content .rd-content {
  width: 300px;
}
body.sfPageEditor .sfPageContainer .cards__image .rd-content {
  max-width: 170px;
}
body.sfPageEditor .sfPageContainer .featured__wrapper .rdContent {
  display: flex;
  position: relative;
  justify-content: space-between;
}
body.sfPageEditor .sfPageContainer .important-links {
  max-width: 400px;
  margin-left: 40vh;
}
body.sfPageEditor .sfPageContainer .sm-links .sf-Code {
  display: flex;
  flex-direction: column;
  margin-top: 145.25px;
  right: -120px;
  position: absolute;
  color: #ffffff;
}
body.sfPageEditor .sfPageContainer .callout-heading-image .image {
  position: initial;
}
body.sfPageEditor .sfPageWrapper .hero-wrapper__image,
body.sfPageEditor .sfPageWrapper .mg-group-wrapper__image,
body.sfPageEditor .sfPageWrapper .our-story-wrapper__image,
body.sfPageEditor .sfPageWrapper .image-mask,
body.sfPageEditor .sfPageWrapper .our-events-wrapper__image,
body.sfPageEditor .sfPageWrapper .photo__right-bleed,
body.sfPageEditor .sfPageWrapper .callout-wrapper__image {
  display: flex;
  height: 100%;
}
body.sfPageEditor .sfPageWrapper .hero-wrapper__image .RadDockZone,
body.sfPageEditor .sfPageWrapper .hero-wrapper__image .zeControlDock,
body.sfPageEditor .sfPageWrapper .hero-wrapper__image .zeControlDock .rdContent,
body.sfPageEditor .sfPageWrapper .hero-wrapper__image .zeControlDock .rdMiddle,
body.sfPageEditor .sfPageWrapper .our-events-wrapper__image .RadDockZone,
body.sfPageEditor .sfPageWrapper .our-events-wrapper__image .zeControlDock,
body.sfPageEditor .sfPageWrapper .our-events-wrapper__image .zeControlDock .rdContent,
body.sfPageEditor .sfPageWrapper .our-events-wrapper__image .zeControlDock .rdContent .rdMiddle,
body.sfPageEditor .sfPageWrapper .mg-group-wrapper__image .RadDockZone,
body.sfPageEditor .sfPageWrapper .mg-group-wrapper__image .zeControlDock,
body.sfPageEditor .sfPageWrapper .mg-group-wrapper__image .zeControlDock .rdContent,
body.sfPageEditor .sfPageWrapper .mg-group-wrapper__image .zeControlDock .rdContent .rdMiddle,
body.sfPageEditor .sfPageWrapper .our-story-wrapper__image .RadDockZone,
body.sfPageEditor .sfPageWrapper .our-story-wrapper__image .zeControlDock,
body.sfPageEditor .sfPageWrapper .our-story-wrapper__image .zeControlDock .rdContent,
body.sfPageEditor .sfPageWrapper .our-story-wrapper__image .zeControlDock .rdContent .rdMiddle,
body.sfPageEditor .sfPageWrapper .photo__right-bleed .RadDockZone,
body.sfPageEditor .sfPageWrapper .photo__right-bleed .zeControlDock,
body.sfPageEditor .sfPageWrapper .photo__right-bleed .zeControlDock .rdContent,
body.sfPageEditor .sfPageWrapper .photo__right-bleed .zeControlDock .rdMiddle,
body.sfPageEditor .sfPageWrapper .callout-wrapper__image .RadDockZone,
body.sfPageEditor .sfPageWrapper .callout-wrapper__image .zeControlDock,
body.sfPageEditor .sfPageWrapper .callout-wrapper__image .zeControlDock,
body.sfPageEditor .sfPageWrapper .callout-wrapper__image .zeControlDock .rdContent,
body.sfPageEditor .sfPageWrapper .callout-wrapper__image .zeControlDock .rdMiddle {
  height: 100%;
  width: 100%;
}
body.sfPageEditor .sfPageWrapper .photo__right-bleed .zeControlDock .rdContent img {
  min-height: 692px;
}
body.sfPageEditor .sfPageWrapper .content-options__cards .content-options__outer-container .content-options__background img {
  position: relative;
}
body.sfPageEditor .sfPageWrapper .content-options__background, body.sfPageEditor .sfPageWrapper .content-options-lower__background, body.sfPageEditor .sfPageWrapper .what-makes-teams__background, body.sfPageEditor .sfPageWrapper .you-have-tried__background,
body.sfPageEditor .sfPageWrapper .cards-overlay-image .rdContent, body.sfPageEditor .sfPageWrapper .content-options__cards .content-options__outer-container .content-options__background img {
  pointer-events: all;
}
body.sfPageEditor .sfPageWrapper .content__main .heading--intro {
  margin-top: 0;
}
body.sfPageEditor .sfPageWrapper .content-options__outer-container .content-options-lower__background {
  position: relative;
  bottom: 0;
}
