@charset "UTF-8";
/*
Theme Name: Woodbridge - Main
Description: Complete stylesheet for all pages except homepage critical path
Version: 1.0.0
*/
@media (min-width: 992px) {
  .desktop-gap-4 {
    gap: 4rem !important;
  }
}

@media (min-width: 992px) {
  .desktop-gap-4-flex {
    gap: 4rem !important;
  }
}

@media (min-width: 992px) {
  .desktop-gap-4-grid {
    gap: 4rem !important;
  }
}

/* =========================
   Core design tokens
   ========================= */
:root {
  /* Colors */
  --color-black: #000000;
  --color-bg-light-gray: #fcfcfc;
  --color-light-gray: #e6e6e6;
  --color-gray-medium: #b3b3b3;
  --color-gray-text: #737373;
  --color-gray-dark: #393939;
  --color-green-dark: #133333; /* NEW Dark Green */
  --color-green-line: #215959; /* NEW Green for lines */
  --color-red: #f52d2d;
  /* Woodbridge palette */
  --color-woodbridge-navy: #10181e;
  --color-woodbridge-teal: #1cabab;
  --color-woodbridge-dark-blue: #18224d;
  --color-woodbridge-white: #ffffff;
  /* Fonts */
  --ff-space-grotesk: "Space Grotesk", system-ui, -apple-system, Segoe UI,
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-space-grotesk: "Space Grotesk", system-ui, -apple-system, Segoe UI,
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --ff-reckless-neue: "Reckless Neue", ui-serif, Georgia, Cambria,
    "Times New Roman", Times, serif;
  --ff-montserrat: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, sans-serif;
  /* Font weights */
  --fw-space-grotesk-light: 300;
  --fw-space-grotesk-regular: 400;
  --fw-space-grotesk-semibold: 600;
  --fw-space-grotesk-bold: 700;
  --fw-reckless-regular: 400;
  --fw-montserrat-regular: 400;
  --fw-montserrat-bold: 700;
  /* Font sizes (px) */
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-25: 25px;
  --fs-35: 35px;
  --fs-40: 40px;
  --fs-50: 50px;
  --fs-55: 55px;
  --fs-75: 75px;
  --fs-90: 90px;
  --fs-160: 160px;
  --fs-170: 170px;
  /* Line-heights */
  --lh-20: 20px;
  --lh-26: 26px;
  --lh-28: 28px;
  --lh-30: 30px;
  --lh-32: 32px;
  --lh-35: 35px;
  --lh-60: 60px;
  --lh-75: 75px;
  --lh-85: 85px;
  --lh-normal: normal;
  --lh-150p: 150%;
  /* Letter-spacing */
  --ls-0: 0;
  --ls-01em: 0.01em; /* 1% */
  --ls-10em: 0.1em; /* 10% */
  /* Text casing (use class but keep var if you want) */
  --tt-upper: uppercase;
  --tt-none: none;
  --tt-capitalize: capitalize;
}

:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #f52d2d;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #1cabab;
  --bs-cyan: #0dcaf0;
  --bs-black: #000000;
  --bs-white: #ffffff;
  --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: #3498db;
  --bs-secondary: #2c3e50;
  --bs-success: #27ae60;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #e74c3c;
  --bs-light: #f8f9fa;
  --bs-dark: #343a40;
  --bs-primary-rgb: 52, 152, 219;
  --bs-secondary-rgb: 44, 62, 80;
  --bs-success-rgb: 39, 174, 96;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 231, 76, 60;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 52, 58, 64;
  --bs-primary-text-emphasis: rgb(20.8, 60.8, 87.6);
  --bs-secondary-text-emphasis: rgb(17.6, 24.8, 32);
  --bs-success-text-emphasis: rgb(15.6, 69.6, 38.4);
  --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(92.4, 30.4, 24);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: rgb(214.4, 234.4, 247.8);
  --bs-secondary-bg-subtle: rgb(212.8, 216.4, 220);
  --bs-success-bg-subtle: rgb(211.8, 238.8, 223.2);
  --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
  --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
  --bs-danger-bg-subtle: rgb(250.2, 219.2, 216);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: rgb(173.8, 213.8, 240.6);
  --bs-secondary-border-subtle: rgb(170.6, 177.8, 185);
  --bs-success-border-subtle: rgb(168.6, 222.6, 191.4);
  --bs-info-border-subtle: rgb(158.2, 233.8, 249);
  --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
  --bs-danger-border-subtle: rgb(245.4, 183.4, 177);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --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: "Space Grotesk", sans-serif;
  --bs-body-font-size: calc(1.285rem + 0.42vw);
}
@media (min-width: 1200px) {
  :root,
  [data-bs-theme=light] {
    --bs-body-font-size: 1.6rem;
  }
}
:root,
[data-bs-theme=light] {
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #ffffff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #3498db;
  --bs-link-color-rgb: 52, 152, 219;
  --bs-link-decoration: underline;
  --bs-link-hover-color: rgb(41.6, 121.6, 175.2);
  --bs-link-hover-color-rgb: 42, 122, 175;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(52, 152, 219, 0.25);
  --bs-form-valid-color: #27ae60;
  --bs-form-valid-border-color: #27ae60;
  --bs-form-invalid-color: #e74c3c;
  --bs-form-invalid-border-color: #e74c3c;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #ffffff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: rgb(133.2, 193.2, 233.4);
  --bs-secondary-text-emphasis: rgb(128.4, 139.2, 150);
  --bs-success-text-emphasis: rgb(125.4, 206.4, 159.6);
  --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
  --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
  --bs-danger-text-emphasis: rgb(240.6, 147.6, 138);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: rgb(10.4, 30.4, 43.8);
  --bs-secondary-bg-subtle: rgb(8.8, 12.4, 16);
  --bs-success-bg-subtle: rgb(7.8, 34.8, 19.2);
  --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
  --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
  --bs-danger-bg-subtle: rgb(46.2, 15.2, 12);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: rgb(31.2, 91.2, 131.4);
  --bs-secondary-border-subtle: rgb(26.4, 37.2, 48);
  --bs-success-border-subtle: rgb(23.4, 104.4, 57.6);
  --bs-info-border-subtle: rgb(7.8, 121.2, 144);
  --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
  --bs-danger-border-subtle: rgb(138.6, 45.6, 36);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: rgb(133.2, 193.2, 233.4);
  --bs-link-hover-color: rgb(157.56, 205.56, 237.72);
  --bs-link-color-rgb: 133, 193, 233;
  --bs-link-hover-color-rgb: 158, 206, 238;
  --bs-code-color: rgb(230.4, 132.6, 181.2);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(102, 77.2, 2.8);
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(117, 183, 152.4);
  --bs-form-valid-border-color: rgb(117, 183, 152.4);
  --bs-form-invalid-color: #f98181;
  --bs-form-invalid-border-color: #f98181;
}

*,
*::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;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

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;
  color: var(--bs-heading-color);
}

h1, .h1 {
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 4rem;
  }
}

h2, .h2 {
  font-size: calc(1.445rem + 2.34vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 3.2rem;
  }
}

h3, .h3 {
  font-size: calc(1.405rem + 1.86vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 2.8rem;
  }
}

h4, .h4 {
  font-size: calc(1.365rem + 1.38vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 2.4rem;
  }
}

h5, .h5 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h5, .h5 {
    font-size: 2rem;
  }
}

h6, .h6 {
  font-size: calc(1.285rem + 0.42vw);
}
@media (min-width: 1200px) {
  h6, .h6 {
    font-size: 1.6rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[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.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

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;
}

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: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

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: var(--bs-secondary-color);
  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]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

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;
  line-height: inherit;
  font-size: calc(1.275rem + 0.3vw);
}
@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] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
  filter: grayscale(1);
}

/* 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-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: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .lead {
    font-size: 2rem;
  }
}
.lead {
  font-weight: 300;
}

.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
}
@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: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .blockquote {
    font-size: 2rem;
  }
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  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: var(--bs-secondary-color);
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  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;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.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) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.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.33333333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-1,
.gx-1 {
  --bs-gutter-x: 0.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;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.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;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.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;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.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;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.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;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.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;
  }
}
.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: calc(1.285rem + 0.42vw);
}
@media (min-width: 1200px) {
  .btn {
    --bs-btn-font-size: 1.6rem;
  }
}
.btn {
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  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: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #000000;
  --bs-btn-bg: #3498db;
  --bs-btn-border-color: #3498db;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: rgb(82.45, 167.45, 224.4);
  --bs-btn-hover-border-color: rgb(72.3, 162.3, 222.6);
  --bs-btn-focus-shadow-rgb: 44, 129, 186;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: rgb(92.6, 172.6, 226.2);
  --bs-btn-active-border-color: rgb(72.3, 162.3, 222.6);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #3498db;
  --bs-btn-disabled-border-color: #3498db;
}

.btn-secondary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #2c3e50;
  --bs-btn-border-color: #2c3e50;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: rgb(37.4, 52.7, 68);
  --bs-btn-hover-border-color: rgb(35.2, 49.6, 64);
  --bs-btn-focus-shadow-rgb: 76, 91, 106;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: rgb(35.2, 49.6, 64);
  --bs-btn-active-border-color: rgb(33, 46.5, 60);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #2c3e50;
  --bs-btn-disabled-border-color: #2c3e50;
}

.btn-success {
  --bs-btn-color: #000000;
  --bs-btn-bg: #27ae60;
  --bs-btn-border-color: #27ae60;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: rgb(71.4, 186.15, 119.85);
  --bs-btn-hover-border-color: rgb(60.6, 182.1, 111.9);
  --bs-btn-focus-shadow-rgb: 33, 148, 82;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: rgb(82.2, 190.2, 127.8);
  --bs-btn-active-border-color: rgb(60.6, 182.1, 111.9);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #27ae60;
  --bs-btn-disabled-border-color: #27ae60;
}

.btn-info {
  --bs-btn-color: #000000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: rgb(49.3, 209.95, 242.25);
  --bs-btn-hover-border-color: rgb(37.2, 207.3, 241.5);
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: rgb(61.4, 212.6, 243);
  --bs-btn-active-border-color: rgb(37.2, 207.3, 241.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: rgb(255, 202.3, 44.2);
  --bs-btn-hover-border-color: rgb(255, 199.2, 31.8);
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: rgb(255, 205.4, 56.6);
  --bs-btn-active-border-color: rgb(255, 199.2, 31.8);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #000000;
  --bs-btn-bg: #e74c3c;
  --bs-btn-border-color: #e74c3c;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: rgb(234.6, 102.85, 89.25);
  --bs-btn-hover-border-color: rgb(233.4, 93.9, 79.5);
  --bs-btn-focus-shadow-rgb: 196, 65, 51;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: rgb(235.8, 111.8, 99);
  --bs-btn-active-border-color: rgb(233.4, 93.9, 79.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #e74c3c;
  --bs-btn-disabled-border-color: #e74c3c;
}

.btn-light {
  --bs-btn-color: #000000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: rgb(210.8, 211.65, 212.5);
  --bs-btn-hover-border-color: rgb(198.4, 199.2, 200);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: rgb(198.4, 199.2, 200);
  --bs-btn-active-border-color: rgb(186, 186.75, 187.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #343a40;
  --bs-btn-border-color: #343a40;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: rgb(82.45, 87.55, 92.65);
  --bs-btn-hover-border-color: rgb(72.3, 77.7, 83.1);
  --bs-btn-focus-shadow-rgb: 82, 88, 93;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: rgb(92.6, 97.4, 102.2);
  --bs-btn-active-border-color: rgb(72.3, 77.7, 83.1);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #343a40;
  --bs-btn-disabled-border-color: #343a40;
}

.btn-outline-primary {
  --bs-btn-color: #3498db;
  --bs-btn-border-color: #3498db;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #3498db;
  --bs-btn-hover-border-color: #3498db;
  --bs-btn-focus-shadow-rgb: 52, 152, 219;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #3498db;
  --bs-btn-active-border-color: #3498db;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #3498db;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #3498db;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #2c3e50;
  --bs-btn-border-color: #2c3e50;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #2c3e50;
  --bs-btn-hover-border-color: #2c3e50;
  --bs-btn-focus-shadow-rgb: 44, 62, 80;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #2c3e50;
  --bs-btn-active-border-color: #2c3e50;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #2c3e50;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #2c3e50;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #27ae60;
  --bs-btn-border-color: #27ae60;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #27ae60;
  --bs-btn-hover-border-color: #27ae60;
  --bs-btn-focus-shadow-rgb: 39, 174, 96;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #27ae60;
  --bs-btn-active-border-color: #27ae60;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #27ae60;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #27ae60;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #e74c3c;
  --bs-btn-border-color: #e74c3c;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #e74c3c;
  --bs-btn-hover-border-color: #e74c3c;
  --bs-btn-focus-shadow-rgb: 231, 76, 60;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #e74c3c;
  --bs-btn-active-border-color: #e74c3c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e74c3c;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e74c3c;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #343a40;
  --bs-btn-border-color: #343a40;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #343a40;
  --bs-btn-hover-border-color: #343a40;
  --bs-btn-focus-shadow-rgb: 52, 58, 64;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #343a40;
  --bs-btn-active-border-color: #343a40;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #343a40;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #343a40;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 44, 129, 186;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .btn-lg {
    --bs-btn-font-size: 2rem;
  }
}
.btn-lg {
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  .btn-sm {
    --bs-btn-font-size: 1.4rem;
  }
}
.btn-sm {
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  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: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #ffffff;
  --bs-nav-pills-link-active-bg: #3498db;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-grow: 1;
  flex-basis: 0;
  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 {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 2rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 2rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.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: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@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 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  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: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .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 {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .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: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .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 {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .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: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .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 {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .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: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .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 {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .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: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .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 {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .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: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.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 {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark,
.navbar[data-bs-theme=dark] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #ffffff;
  --bs-navbar-brand-color: #ffffff;
  --bs-navbar-brand-hover-color: #ffffff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: 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");
}

[data-bs-theme=dark] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: 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");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.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: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@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;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  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 {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: calc(1.285rem + 0.42vw);
}
@media (min-width: 1200px) {
  .dropdown-menu {
    --bs-dropdown-font-size: 1.6rem;
  }
}
.dropdown-menu {
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #ffffff;
  --bs-dropdown-link-active-bg: #3498db;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.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: var(--bs-dropdown-spacer);
}
.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: var(--bs-dropdown-spacer);
}
.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: var(--bs-dropdown-spacer);
}
.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: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  .dropdown-header {
    font-size: 1.4rem;
  }
}
.dropdown-header {
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #ffffff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #ffffff;
  --bs-dropdown-link-active-bg: #3498db;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + var(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .col-form-label-lg {
    font-size: 2rem;
  }
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  .col-form-label-sm {
    font-size: 1.4rem;
  }
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: calc(1.285rem + 0.42vw);
}
@media (min-width: 1200px) {
  .form-control {
    font-size: 1.6rem;
  }
}
.form-control {
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  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: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: rgb(153.5, 203.5, 237);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  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: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}
.form-control-plaintext:focus {
  outline: 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 + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  .form-control-sm {
    font-size: 1.4rem;
  }
}
.form-control-sm {
  border-radius: var(--bs-border-radius-sm);
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .form-control-lg {
    font-size: 2rem;
  }
}
.form-control-lg {
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: 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 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: calc(1.285rem + 0.42vw);
}
@media (min-width: 1200px) {
  .form-select {
    font-size: 1.6rem;
  }
}
.form-select {
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: rgb(153.5, 203.5, 237);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  .form-select-sm {
    font-size: 1.4rem;
  }
}
.form-select-sm {
  border-radius: var(--bs-border-radius-sm);
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .form-select-lg {
    font-size: 2rem;
  }
}
.form-select-lg {
  border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 2.4rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgb(153.5, 203.5, 237);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.form-check-input:checked {
  background-color: #3498db;
  border-color: #3498db;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #3498db;
  border-color: #3498db;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: 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");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  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 {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28153.5, 203.5, 237%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.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;
  filter: none;
  opacity: 0.65;
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3498db;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: rgb(194.1, 224.1, 244.2);
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -moz-appearance: none;
  appearance: none;
  background-color: #3498db;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: rgb(194.1, 224.1, 244.2);
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  color: rgba(var(--bs-body-color-rgb), 0.65);
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder), .form-floating > .form-control-plaintext:not(:-moz-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
}
.form-floating > .form-control:not(:-moz-placeholder) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > textarea:not(:-moz-placeholder) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > textarea:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: calc(1.285rem + 0.42vw);
}
@media (min-width: 1200px) {
  .input-group-text {
    font-size: 1.6rem;
  }
}
.input-group-text {
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.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: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .input-group-lg > .form-control,
  .input-group-lg > .form-select,
  .input-group-lg > .input-group-text,
  .input-group-lg > .btn {
    font-size: 2rem;
  }
}
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  border-radius: var(--bs-border-radius-lg);
}

.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: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  .input-group-sm > .form-control,
  .input-group-sm > .form-select,
  .input-group-sm > .input-group-text,
  .input-group-sm > .btn {
    font-size: 1.4rem;
  }
}
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  border-radius: var(--bs-border-radius-sm);
}

.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):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  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):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  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: calc(-1 * var(--bs-border-width));
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  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: var(--bs-form-valid-color);
}

.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: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  .valid-tooltip {
    font-size: 1.4rem;
  }
}
.valid-tooltip {
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}

.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: var(--bs-form-valid-border-color);
  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='%2327ae60' d='M2.3 6.73.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.1'/%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: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 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: var(--bs-form-valid-border-color);
}
.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"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2327ae60' d='M2.3 6.73.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.1'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  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: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.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: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  .invalid-tooltip {
    font-size: 1.4rem;
  }
}
.invalid-tooltip {
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}

.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: var(--bs-form-invalid-border-color);
  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='%23e74c3c'%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='%23e74c3c' 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: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 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: var(--bs-form-invalid-border-color);
}
.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"] {
  --bs-form-select-bg-icon: 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='%23e74c3c'%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='%23e74c3c' stroke='none'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  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: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.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% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-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,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@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,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@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,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@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,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@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,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@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,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-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;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%2820.8, 60.8, 87.6%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: calc(1.285rem + 0.42vw);
}
@media (min-width: 1200px) {
  .accordion-button {
    font-size: 1.6rem;
  }
}
.accordion-button {
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.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-collapse,
.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28133.2, 193.2, 233.4%29'%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-.708'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28133.2, 193.2, 233.4%29'%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-.708'/%3e%3c/svg%3e");
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #000000 !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #ffffff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #000000 !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #000000 !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #ffffff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(93, 173, 226, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(93, 173, 226, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(35, 50, 64, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(35, 50, 64, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(82, 190, 128, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(82, 190, 128, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(236, 112, 99, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(236, 112, 99, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(42, 46, 51, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(42, 46, 51, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.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: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 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) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !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: var(--bs-border-width);
  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;
}

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
  object-fit: 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;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: 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-inline-grid {
  display: inline-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: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.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 {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

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

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !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;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.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;
}

.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-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-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-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-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-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-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-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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

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

.row-gap-1 {
  row-gap: 0.25rem !important;
}

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

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

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

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

.column-gap-1 {
  -moz-column-gap: 0.25rem !important;
  column-gap: 0.25rem !important;
}

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

.column-gap-3 {
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}

.column-gap-4 {
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}

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

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.525rem + 3.3vw) !important;
}

.fs-2 {
  font-size: calc(1.445rem + 2.34vw) !important;
}

.fs-3 {
  font-size: calc(1.405rem + 1.86vw) !important;
}

.fs-4 {
  font-size: calc(1.365rem + 1.38vw) !important;
}

.fs-5 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-6 {
  font-size: calc(1.285rem + 0.42vw) !important;
}

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

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

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

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

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

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

.fw-semibold {
  font-weight: 600 !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: var(--bs-secondary-color) !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-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !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;
}

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

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-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-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !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-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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-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-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-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-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-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-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-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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !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;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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-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-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-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-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-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-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-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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !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;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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-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-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-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-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-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-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-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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !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;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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-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-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-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-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-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-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-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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !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;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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-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-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-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-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-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-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-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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !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: 4rem !important;
  }
  .fs-2 {
    font-size: 3.2rem !important;
  }
  .fs-3 {
    font-size: 2.8rem !important;
  }
  .fs-4 {
    font-size: 2.4rem !important;
  }
  .fs-5 {
    font-size: 2rem !important;
  }
  .fs-6 {
    font-size: 1.6rem !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-inline-grid {
    display: inline-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;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.55;
}

.site-content {
  background-color: #ffffff;
}

.ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000000;
}
a:hover {
  text-decoration: none;
  color: #1cabab;
}

/* =========================
     Typography presets (map from token)
     ========================= */
/* Desktop */
.typo-mega-numbers {
  font-weight: 300;
  font-size: clamp(5rem, 1.6662rem + 5.8843vw, 16rem);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.5;
}

.typo-desktop-h1,
h1,
.h1 {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-light);
  font-size: var(--fs-75);
  line-height: var(--lh-85);
  letter-spacing: var(--ls-0);
  text-transform: var(--tt-upper);
}

.typo-desktop-h2,
h2,
.h2 {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-light);
  font-size: var(--fs-50);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-0);
  text-transform: var(--tt-upper);
}

.typo-desktop-h3 {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-light);
  font-size: 28px;
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-0);
  text-transform: var(--tt-upper);
}

.typo-desktop-h4,
h4,
.h4 {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-regular);
  font-size: var(--fs-22);
  line-height: var(--lh-32);
}

.typo-desktop-text {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-regular);
  font-size: var(--fs-18);
  line-height: var(--lh-28);
}

.typo-desktop-text-bold {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-bold);
  font-size: var(--fs-18);
  line-height: var(--lh-28);
}

.typo-desktop-section-tag {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-regular);
  font-size: var(--fs-15);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-10em);
  text-transform: var(--tt-upper);
}

.typo-desktop-menu {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-regular);
  font-size: var(--fs-15);
  line-height: var(--lh-normal);
  text-transform: var(--tt-capitalize);
}

.typo-desktop-mega-numbers {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-light);
  font-size: var(--fs-160);
  line-height: var(--lh-150p);
  text-transform: var(--tt-upper);
}

.typo-desktop-footer {
  font-family: var(--ff-space-grotesk);
  font-weight: var(--fw-space-grotesk-regular);
  font-size: var(--fs-15);
  line-height: var(--lh-26);
  letter-spacing: var(--ls-01em);
}

/* Mobile */
@media (max-width: 991.98px) {
  .typo-mega-numbers {
    font-size: 7.5rem;
  }
  .typo-mobile-h1,
  h1,
  .h1 {
    font-family: var(--ff-space-grotesk);
    font-weight: var(--fw-space-grotesk-light);
    font-size: var(--fs-50);
    line-height: var(--lh-60);
    text-transform: var(--tt-upper);
  }
  .typo-mobile-h2,
  h2,
  .h2 {
    font-family: var(--ff-space-grotesk);
    font-weight: var(--fw-space-grotesk-light);
    font-size: var(--fs-35);
    line-height: var(--lh-normal);
    text-transform: var(--tt-upper);
  }
  .typo-mobile-h3,
  h3,
  .h3 {
    font-family: var(--ff-space-grotesk);
    font-weight: var(--fw-space-grotesk-light);
    font-size: var(--fs-25);
    line-height: var(--lh-30);
  }
  .typo-mobile-h4,
  h4,
  .h4 {
    font-family: var(--ff-space-grotesk);
    font-weight: var(--fw-space-grotesk-regular);
    font-size: var(--fs-20);
    line-height: var(--lh-30);
  }
  .typo-mobile-mega-numbers {
    font-family: var(--ff-space-grotesk);
    font-weight: var(--fw-space-grotesk-light);
    font-size: var(--fs-75);
    line-height: var(--lh-75);
    text-transform: var(--tt-upper);
  }
  .typo-mobile-newsletter {
    font-family: var(--ff-space-grotesk);
    font-weight: var(--fw-space-grotesk-light);
    font-size: var(--fs-20);
    line-height: var(--lh-20);
    text-transform: var(--tt-upper);
  }
}
/* Some general utilities */
.text-primary {
  color: var(--text-primary);
}

.text-body {
  color: var(--text-body);
}

.bg-page {
  background: var(--bg-page);
}

.border-default {
  border-color: var(--border-default);
}

.typo-desktop-section-tag {
  color: #737373;
  font-size: var(--fs-15);
  text-transform: uppercase;
}

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

.gy-50,
.g-50,
.gx-50 {
  --bs-gutter-y: 5rem;
}
.gy-50.row,
.g-50.row,
.gx-50.row {
  --bs-gutter-x: 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));
}

.gy-40,
.g-40,
.gx-40 {
  --bs-gutter-y: 4rem;
}
.gy-40.row,
.g-40.row,
.gx-40.row {
  --bs-gutter-x: 4rem;
  --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));
}

.gy-100,
.g-100,
.gx-100 {
  --bs-gutter-y: 10rem;
}
.gy-100.row,
.g-100.row,
.gx-100.row {
  --bs-gutter-x: 10rem;
  --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));
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 138rem;
  max-width: clamp(100% - 40rem, 96vw, 138rem);
  width: 178.5rem;
  max-width: clamp(100% - 40rem, 96vw, 178.5rem);
}

.section-tpl {
  margin: clamp(5rem, 15vw, 10rem) 0;
}

.bg-gray {
  background-color: #fcfcfc;
  padding: clamp(5rem, 15vw, 10rem) 0;
}

.bg-dark-gray {
  background-color: #f1f1f1;
  padding: clamp(5rem, 5vw, 10rem) 0;
}

.bg-black {
  background-color: #000000;
  padding: clamp(5rem, 15vw, 10rem) 0;
}

/* gutter */
@media (max-width: 991px) {
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
}
.text-22 {
  font-size: 2.2rem;
}
@media (min-width: 992px) {
  .text-22 {
    font-size: 2rem;
  }
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-SemiBold.woff2") format("woff2"), url("../fonts/SpaceGrotesk-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Regular.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Medium.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Light.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Bold.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.form-group {
  margin-bottom: 2rem;
  text-align: left;
}
.form-group label {
  color: #000000;
  margin-bottom: 0.8rem;
  display: block;
}

.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0;
  padding: 1rem 0;
  font-size: 1.8rem;
  color: #000000;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  background: transparent;
  border-color: #000000;
  box-shadow: none;
  outline: none;
}
.form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.9);
}
.form-control::placeholder {
  color: rgba(0, 0, 0, 0.9);
}

/* =========================
   Global Scrollbar Styles
   ========================= */
/* Global scrollbar styling for all elements */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* Show scrollbar on hover for scrollable elements */
.scrollable:hover, .single-news-content-section .text-image-content .text-image-inner:hover,
.text-image-inner:hover,
.custom-dropdown-menu:hover,
.form-control:hover,
textarea:hover,
select:hover,
.overflow-auto:hover,
.overflow-scroll:hover,
.overflow-y-auto:hover,
.overflow-y-scroll:hover {
  scrollbar-width: thin;
  -ms-overflow-style: auto;
}
.scrollable:hover::-webkit-scrollbar, .single-news-content-section .text-image-content .text-image-inner:hover::-webkit-scrollbar,
.text-image-inner:hover::-webkit-scrollbar,
.custom-dropdown-menu:hover::-webkit-scrollbar,
.form-control:hover::-webkit-scrollbar,
textarea:hover::-webkit-scrollbar,
select:hover::-webkit-scrollbar,
.overflow-auto:hover::-webkit-scrollbar,
.overflow-scroll:hover::-webkit-scrollbar,
.overflow-y-auto:hover::-webkit-scrollbar,
.overflow-y-scroll:hover::-webkit-scrollbar {
  width: 4px;
}
.scrollable:hover::-webkit-scrollbar-track, .single-news-content-section .text-image-content .text-image-inner:hover::-webkit-scrollbar-track,
.text-image-inner:hover::-webkit-scrollbar-track,
.custom-dropdown-menu:hover::-webkit-scrollbar-track,
.form-control:hover::-webkit-scrollbar-track,
textarea:hover::-webkit-scrollbar-track,
select:hover::-webkit-scrollbar-track,
.overflow-auto:hover::-webkit-scrollbar-track,
.overflow-scroll:hover::-webkit-scrollbar-track,
.overflow-y-auto:hover::-webkit-scrollbar-track,
.overflow-y-scroll:hover::-webkit-scrollbar-track {
  background: #e6e6e6;
  border-radius: 2px;
}
.scrollable:hover::-webkit-scrollbar-thumb, .single-news-content-section .text-image-content .text-image-inner:hover::-webkit-scrollbar-thumb,
.text-image-inner:hover::-webkit-scrollbar-thumb,
.custom-dropdown-menu:hover::-webkit-scrollbar-thumb,
.form-control:hover::-webkit-scrollbar-thumb,
textarea:hover::-webkit-scrollbar-thumb,
select:hover::-webkit-scrollbar-thumb,
.overflow-auto:hover::-webkit-scrollbar-thumb,
.overflow-scroll:hover::-webkit-scrollbar-thumb,
.overflow-y-auto:hover::-webkit-scrollbar-thumb,
.overflow-y-scroll:hover::-webkit-scrollbar-thumb {
  background: #1cabab;
  border-radius: 2px;
}
.scrollable:hover::-webkit-scrollbar-thumb:hover,
.text-image-inner:hover::-webkit-scrollbar-thumb:hover,
.custom-dropdown-menu:hover::-webkit-scrollbar-thumb:hover,
.form-control:hover::-webkit-scrollbar-thumb:hover,
textarea:hover::-webkit-scrollbar-thumb:hover,
select:hover::-webkit-scrollbar-thumb:hover,
.overflow-auto:hover::-webkit-scrollbar-thumb:hover,
.overflow-scroll:hover::-webkit-scrollbar-thumb:hover,
.overflow-y-auto:hover::-webkit-scrollbar-thumb:hover,
.overflow-y-scroll:hover::-webkit-scrollbar-thumb:hover {
  background: rgb(20.824120603, 127.175879397, 127.175879397);
}

/* Always visible scrollbar for specific elements */
.always-scrollbar {
  scrollbar-width: thin;
  -ms-overflow-style: auto;
}
.always-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.always-scrollbar::-webkit-scrollbar-track {
  background: #e6e6e6;
  border-radius: 3px;
}
.always-scrollbar::-webkit-scrollbar-thumb {
  background: #1cabab;
  border-radius: 3px;
}
.always-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgb(20.824120603, 127.175879397, 127.175879397);
}

/* Custom scrollbar for specific components */
.custom-scrollbar, .custom-dropdown-menu {
  scrollbar-width: thin;
  -ms-overflow-style: auto;
}
.custom-scrollbar::-webkit-scrollbar, .custom-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track, .custom-dropdown-menu::-webkit-scrollbar-track {
  background: #e6e6e6;
  border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb, .custom-dropdown-menu::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover, .custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: black;
}

/* Responsive scrollbar adjustments */
@media (max-width: 767.98px) {
  .scrollable:hover::-webkit-scrollbar, .single-news-content-section .text-image-content .text-image-inner:hover::-webkit-scrollbar,
  .text-image-inner:hover::-webkit-scrollbar,
  .custom-dropdown-menu:hover::-webkit-scrollbar,
  .form-control:hover::-webkit-scrollbar,
  textarea:hover::-webkit-scrollbar,
  select:hover::-webkit-scrollbar,
  .overflow-auto:hover::-webkit-scrollbar,
  .overflow-scroll:hover::-webkit-scrollbar,
  .overflow-y-auto:hover::-webkit-scrollbar,
  .overflow-y-scroll:hover::-webkit-scrollbar {
    width: 4px;
  }
  .always-scrollbar::-webkit-scrollbar,
  .custom-scrollbar::-webkit-scrollbar,
  .custom-dropdown-menu::-webkit-scrollbar {
    width: 4px;
  }
}
/* Header Styles */
/* Import constants and helpers */
@media (min-width: 992px) {
  .desktop-gap-4 {
    gap: 4rem !important;
  }
}

@media (min-width: 992px) {
  .desktop-gap-4-flex {
    gap: 4rem !important;
  }
}

@media (min-width: 992px) {
  .desktop-gap-4-grid {
    gap: 4rem !important;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  padding: 3rem 0;
}

.site-header.scrolled {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}
.site-header.scrolled.header-hidden {
  display: none !important;
}

/* Logo */
.site-branding .site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-branding .site-logo:hover {
  opacity: 0.8;
}

.site-branding .logo-icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.site-header.scrolled .logo-icon {
  color: var(--color-teal);
}

.site-branding .logo-text {
  font-family: var(--font-space-grotesk);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: lowercase;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.site-header.scrolled .logo-text {
  color: var(--color-navy);
}

/* Desktop Navigation */
.main-navigation {
  display: flex;
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-family: var(--font-space-grotesk);
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.site-header.scrolled .nav-menu a {
  color: #ffffff;
}

.nav-menu a:hover {
  color: #ffffff;
}

.site-header.scrolled .nav-menu a:hover {
  color: #ffffff;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.site-header.scrolled .nav-menu a::after {
  background-color: #ffffff;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  gap: 4px;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}

.site-header.scrolled .mobile-menu-toggle {
  color: var(--color-navy);
}

.hamburger-dot {
  width: 4px;
  height: 4px;
  background-color: currentColor;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  opacity: 0.8;
}

.mobile-menu-toggle.active .hamburger-dot:nth-child(1) {
  transform: translateY(-2px);
}

.mobile-menu-toggle.active .hamburger-dot:nth-child(3) {
  transform: translateY(2px);
}

/* Responsive */
@media (max-width: 991px) {
  .main-navigation {
    display: none;
  }
}
.mobile-menu-overlay {
  display: none;
}

@media (max-width: 991px) {
  .site-header {
    padding: 1.5rem 0;
  }
  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: -1001;
    pointer-events: none;
    padding: 1.35rem 1.8rem 2rem;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-menu-overlay.active {
    pointer-events: auto;
    z-index: 1001;
    opacity: 1;
  }
  .mobile-menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
  }
  .mobile-logo .site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-navy);
  }
  .mobile-logo .logo-icon {
    width: 24px;
    height: 24px;
    color: var(--color-teal);
  }
  .mobile-logo .logo-text {
    font-family: var(--font-space-grotesk);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-navy);
    text-transform: lowercase;
  }
  .mobile-menu-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--color-navy);
    transition: opacity 0.3s ease;
  }
  .mobile-menu-close:hover {
    opacity: 0.7;
  }
  .mobile-menu-close svg {
    width: 16px;
    height: 16px;
  }
  /* Mobile Menu Title */
  .mobile-menu-title {
    margin-bottom: 2.5rem;
  }
  .mobile-menu-title h3, .mobile-menu-title .h3 {
    margin: 0 0 2.5rem;
  }
  /* Mobile Navigation */
  .mobile-navigation {
    flex: 1;
  }
  .mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: calc(100vh - 20rem);
    overflow-y: auto;
  }
  .mobile-nav-menu li {
    border-bottom: 1px solid var(--color-light-gray);
  }
  .mobile-nav-menu li:first-child {
    border-top: 1px solid var(--color-light-gray);
  }
  .mobile-nav-menu li:last-child {
    border-bottom: none;
  }
  .mobile-nav-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.7rem 0;
    font-family: var(--font-space-grotesk);
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    text-transform: none;
    transition: color 0.3s ease;
  }
  .mobile-nav-menu a:hover {
    color: var(--color-teal);
  }
  .mobile-nav-menu a::after {
    content: "";
    width: 42px;
    height: 42px;
    padding: 2rem;
    background-image: url(../images/svg/arrow.svg);
    background-size: 1.2rem 1.2rem;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
  }
  .mobile-nav-menu a:hover::after {
    transform: translateX(2px);
  }
}
/* Dark Header Theme */
.logo-dark-theme,
.toggle-dark-theme {
  display: none;
}

body.dark-header {
  padding-top: 6.5rem;
}
@media (min-width: 992px) {
  body.dark-header {
    padding-top: 8.5rem;
  }
}
body.dark-header .toggle-light-theme {
  display: none;
}
body.dark-header .toggle-dark-theme {
  display: block;
}
body.dark-header .site-header {
  padding: 3rem 0;
}
body.dark-header .site-header .site-branding .site-logo .logo-light-theme,
body.dark-header .site-header .site-branding .site-logo .toggle-light-theme {
  display: none;
}
body.dark-header .site-header .site-branding .site-logo .logo-dark-theme,
body.dark-header .site-header .site-branding .site-logo .toggle-dark-theme {
  display: block;
}
body.dark-header .site-header .nav-menu a {
  color: #000000;
}
body.dark-header .site-header .nav-menu a::after {
  background-color: #000000;
}
body.dark-header .site-header .mobile-menu-toggle {
  color: #000000;
}
@media (max-width: 991.98px) {
  body.dark-header .site-header {
    padding: 1.5rem 0;
  }
}

/* Body scroll lock */
body.menu-open {
  overflow: hidden;
}

.btn {
  height: 70px;
  padding: 0 2.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn span {
  text-align: left;
}
.btn svg {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.3s ease;
}
.btn:hover, .btn:focus {
  text-decoration: none;
  box-shadow: none;
  outline: none;
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn .arrow-icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.3s ease;
}
.btn.btn-solid {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.btn.btn-solid:hover, .btn.btn-solid:focus {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn.btn-solid:hover .arrow-icon path,
.btn.btn-solid:hover svg path, .btn.btn-solid:focus .arrow-icon path,
.btn.btn-solid:focus svg path {
  stroke: #ffffff;
}
.btn.btn-outline {
  background: transparent;
  color: #000000;
  border-color: #000000;
}
.btn.btn-outline:hover, .btn.btn-outline:focus {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.btn.btn-outline:hover .arrow-icon path,
.btn.btn-outline:hover svg path, .btn.btn-outline:focus .arrow-icon path,
.btn.btn-outline:focus svg path {
  stroke: #ffffff;
}

/* Footer Subscribe Section */
.footer-subscribe {
  margin-bottom: 0;
}
.footer-subscribe .subscribe-wrapper {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .footer-subscribe .subscribe-wrapper {
    padding: 3rem 0;
  }
}
.footer-subscribe .form-control {
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .footer-subscribe .form-control {
    font-size: 1.6rem;
  }
}
@media (max-width: 991.98px) {
  .footer-subscribe {
    border-bottom: none;
  }
}

/* Footer Styles */
.footer {
  background-color: #ffffff;
  margin: 7.5rem 0;
}
@media (max-width: 991.98px) {
  .footer {
    margin: 0 0 5rem;
  }
}

/* Contact Section */
.footer-contact {
  margin-bottom: 5rem;
}
@media (min-width: 992px) {
  .footer-contact {
    margin-bottom: 0;
  }
}

.footer-content-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(5rem, -3.7268rem + 13.7268vw, 30rem);
}

.footer-heading {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 0.5rem;
  letter-spacing: 0.15px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-link {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 0.5rem;
  letter-spacing: 0.15px;
  text-decoration: none;
}
.contact-link:hover {
  color: #1cabab;
}

.social-link {
  margin-top: 3.6rem;
}
.social-link .linkedin-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1cabab;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.social-link .linkedin-link:hover {
  opacity: 0.8;
}
.social-link .linkedin-link span {
  color: #1cabab;
}
@media (max-width: 767.98px) {
  .social-link {
    margin-top: 2rem;
  }
}

/* Navigation Sections */
.footer-nav-section {
  margin-bottom: 2rem;
  border-bottom: 1px solid #e6e6e6;
}
@media (min-width: 992px) {
  .footer-nav-section {
    margin-bottom: 0;
    border-bottom: none;
  }
}

.footer-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 992px) {
  .footer-nav-header {
    cursor: default;
    border-bottom: none;
    padding: 0 0 1rem;
  }
}

.footer-nav-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 5rem;
}
@media (max-width: 991.98px) {
  .footer-nav-title {
    margin-bottom: 0;
  }
}

.footer-nav-icon {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer-nav-icon.active path {
  stroke: #b3b3b3;
}
@media (min-width: 992px) {
  .footer-nav-icon {
    display: none;
  }
}

.footer-nav-content {
  padding-top: 1rem;
}
@media (min-width: 992px) {
  .footer-nav-content {
    padding-top: 0;
    display: block !important;
  }
}
@media (max-width: 991.98px) {
  .footer-nav-content {
    display: none;
  }
  .footer-nav-content.show {
    display: block;
  }
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav-list li a {
  color: #000000;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
  text-transform: none;
}
.footer-nav-list li a:hover {
  color: #1cabab;
  text-decoration: none;
}

/* Legal Section */
.footer-legal {
  margin-top: 5rem;
}

.legal-content-desktop {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 991.98px) {
  .legal-content-desktop {
    display: none;
  }
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .legal-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.company-info span {
  color: #b3b3b3;
  font-size: 1.5rem;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .legal-links {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
}
.legal-links span {
  color: #b3b3b3;
  font-size: 1.5rem;
}
.legal-links a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.legal-links a:hover {
  color: #000000;
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .footer {
    padding: 0 0 2rem;
  }
  .footer-heading {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .footer-nav-section {
    display: flex;
    margin-bottom: 0;
    flex-direction: column;
    padding: 2.5rem 0;
  }
  .footer-nav-header {
    flex-shrink: 0;
  }
  .footer-nav-content {
    flex: 1;
  }
}
@media (max-width: 767.98px) {
  .company-info span,
  .legal-links span,
  .legal-links a {
    font-size: 1.5rem;
  }
  .copyRight {
    order: 99;
  }
}
@media (max-width: 991.98px) {
  .footer-col:first-child .footer-nav-section {
    border-top: 1px solid #e6e6e6;
  }
}
@media (min-width: 992px) {
  .footer-col {
    padding: 0 2.25rem;
    border-left: 1px solid #e6e6e6;
  }
}

.footer-right > .row {
  height: 100%;
}

.ul-partner {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  row-gap: 2rem;
  flex-wrap: wrap;
  flex-direction: row !important;
}
.ul-partner li {
  width: auto;
  padding-left: 0 !important;
  background-image: none !important;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: --var(--app-height);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(16, 24, 30) 0%, rgba(16, 24, 30, 0.4) 30%, rgba(16, 24, 30, 0) 60%);
  z-index: 3;
}
.hero-section .container {
  position: relative;
  z-index: 4;
}
.hero-section .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-section .hero-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-section .hero-buttons .btn {
  min-width: 35.3rem;
}
@media (max-width: 767.98px) {
  .hero-section .hero-buttons .btn {
    width: 100%;
  }
}
.hero-section .hero-title {
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.hero-section .hero-desc {
  margin-bottom: 5rem;
}
.hero-section .hero-text {
  margin-bottom: clamp(5rem, 2.256vw + 1.3127rem, 7.5rem);
}

/* Hero Category Component */
.hero-category-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background */
.hero-category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-category-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Overlay */
.hero-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 60%);
  z-index: 2;
}

/* Bottom Gradient Overlay */
.hero-category-bottom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.hero-category-bg-desktop,
.hero-category-bg-mobile {
  height: 100%;
}

/* Desktop Overlay Adjustments */
@media (min-width: 992px) {
  .hero-category-overlay {
    height: 60%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0) 50%);
  }
  .hero-category-bottom-overlay {
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 80%, rgba(0, 0, 0, 0) 100%);
  }
}
/* Content */
.hero-category-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  height: 100vh;
  min-height: --var(--app-height);
  padding: clamp(5rem, 2.256vw + 1.3127rem, 7.5rem) 0;
}

.hero-category-title {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .hero-category-title {
    margin-bottom: 1.5rem;
  }
}

.hero-category-subtitle {
  margin-bottom: 5rem;
}

.hero-category-button .btn {
  width: 35.3rem;
}
@media (max-width: 767.98px) {
  .hero-category-button {
    width: 100%;
  }
  .hero-category-button .btn {
    width: 100%;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-category-subtitle {
    margin-bottom: 3.5rem;
  }
}
.modal-content {
  padding: 5rem;
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.modal-content .newsletter-close {
  background: none;
  border: none;
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  transition: color 0.3s ease;
}
.modal-content .newsletter-close svg {
  width: 1.6rem;
  height: 1.6rem;
}
.modal-content .newsletter-close:hover {
  color: #000000;
}
.modal-content .newsletter-close:focus {
  box-shadow: none;
  outline: none;
}
@media (max-width: 767.98px) {
  .modal-content {
    padding: 5rem 2.5rem 2.5rem;
    max-width: 35rem;
  }
}

.modal-body {
  padding: 0;
}

.modal-dialog {
  max-width: 60rem;
}
@media (max-width: 767.98px) {
  .modal-dialog {
    max-width: 35rem;
    width: 90%;
  }
}

.newsletter-logo {
  margin: 0 auto 5rem;
  text-align: center;
}
.newsletter-logo .newsletter-logo-img {
  height: 2.4rem;
  width: auto;
}

.newsletter-success-modal .newsletter-logo {
  margin-bottom: 9rem;
}
@media (max-width: 767.98px) {
  .newsletter-success-modal .newsletter-logo {
    margin-bottom: 10.8rem;
  }
}

.newsletter-content {
  text-align: center;
}
.newsletter-content .newsletter-title {
  margin-bottom: 2.5rem;
}
.newsletter-content .newsletter-subtitle {
  font-weight: 400;
  color: #737373;
  margin-bottom: 5rem;
}
.newsletter-content .newsletter-input {
  font-size: 1.8rem !important;
  padding: 0.6rem 0;
}
.newsletter-content .newsletter-input::-moz-placeholder {
  font-size: 1.8rem !important;
}
.newsletter-content .newsletter-input::placeholder {
  font-size: 1.8rem !important;
}

.newsletter-success-title {
  margin-bottom: 2.5rem;
}

.newsletter-submit-btn {
  margin-top: 5rem;
  width: 100%;
}

.newsletter-return-btn {
  margin-top: 8rem;
  width: 100%;
}

@media (max-width: 575.98px) {
  .modal-dialog {
    margin: 0 auto;
    width: 100%;
  }
  .newsletter-modal-header {
    padding: 1.6rem 1.6rem 0.8rem;
  }
  .newsletter-modal-header .newsletter-logo .newsletter-logo-img {
    height: 2rem;
  }
  .newsletter-form .newsletter-form-group {
    margin-bottom: 1.6rem;
  }
  .newsletter-form .newsletter-form-group .newsletter-label {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
}
.btn-close {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}
@media (min-width: 992px) {
  .btn-close {
    top: 5rem;
    right: 5rem;
  }
}
.btn-close svg {
  width: 2rem;
  height: 2rem;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.newsletter-modal .modal-dialog {
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.newsletter-modal.show .modal-dialog {
  transform: scale(1);
}

.newsletter-modal:focus {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-modal .modal-dialog {
    transition: none;
  }
  .newsletter-submit-btn .newsletter-arrow-icon,
  .newsletter-return-btn .newsletter-arrow-icon {
    transition: none;
  }
}
/* =========================
   Text Image Component
   ========================= */
.text-image-section {
  position: relative;
}
.text-image-section .container {
  padding-left: 0;
  padding-right: 0;
}

.text-image-bottom {
  margin-top: 5rem;
}

/* Image Column */
.text-image-visual {
  position: relative;
  height: 100%;
}
@media (min-width: 992px) {
  .text-image-visual {
    min-height: 600px;
  }
}

.text-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Text Column */
.text-image-content {
  display: flex;
  align-items: center;
  min-height: 400px;
  padding: clamp(5rem, 15vw, 10rem) 0;
}
@media (min-width: 992px) {
  .text-image-content {
    min-height: 600px;
  }
}
.text-image-content .text-image-inner > *:last-child {
  margin-bottom: 0;
}
.text-image-content .container {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 2rem;
  margin: 0 auto 0 0;
}
@media (min-width: 992px) {
  .text-image-content .container {
    padding-left: 0;
    padding-right: clamp(2rem, 5vw, 7.5rem);
  }
}

@media (min-width: 992px) {
  .text-image-section[data-image-position=left] .container {
    padding-left: clamp(2rem, 5vw, 7.5rem);
    padding-right: 0;
    margin: 0 0 0 auto;
  }
}

/* Typography */
.text-image-subtitle {
  font-size: 1.5rem;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5rem;
}

.text-image-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 35px;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 2.5rem;
}
.text-image-title span {
  color: #1cabab;
}
@media (min-width: 992px) {
  .text-image-title {
    font-size: 50px;
    margin-bottom: 2.5rem;
  }
}

.text-image-text {
  color: #737373;
  margin-bottom: 5rem;
  font-size: 1.8rem;
}
.text-image-text > *:not(:last-child) {
  margin-bottom: 5rem;
}
.text-image-text > *:last-child {
  margin-bottom: 0;
}
.text-image-text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

/* List Styles */
.text-image-list-label {
  color: #000000;
  flex: 1;
}

.text-image-list-logo {
  flex: 0 0 auto;
  margin-left: 1rem;
}
.text-image-list-logo img {
  max-height: 40px;
  width: auto;
}

/* List Type Variations */
.text-image-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #737373;
}
.text-image-list b,
.text-image-list strong {
  color: #000000;
  font-weight: 700;
}
.text-image-list .text-image-list-value {
  text-align: left;
  color: #737373;
}
.text-image-list--beliefs {
  gap: 5rem;
}
.text-image-list--beliefs .text-image-list-item {
  padding-left: 5.5rem;
  background-image: url("../images/svg/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: left 2px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.text-image-list--beliefs .text-image-list-item .text-image-list-label {
  font-weight: 700;
}
@media (min-width: 768px) {
  .text-image-list--beliefs .text-image-list-item {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.text-image-list--differentiators {
  gap: 0;
}
@media (min-width: 992px) {
  .text-image-list--differentiators {
    gap: 5rem;
  }
}
@media (max-width: 991.98px) {
  .text-image-list--differentiators {
    margin-top: 2.5rem;
  }
}
.text-image-list--differentiators .text-image-list-item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .text-image-list--differentiators .text-image-list-item {
    align-items: center;
  }
}
.text-image-list--differentiators .text-image-list-icon {
  flex-shrink: 0;
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: start;
}
.text-image-list--differentiators .text-image-list-icon .list-item-icon {
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.text-image-list--differentiators .text-image-list-content {
  flex: 1;
  min-width: 0;
}
.text-image-list--differentiators .text-image-list-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin: 0 0 0.5rem 0;
  text-transform: none;
  letter-spacing: normal;
}
.text-image-list--differentiators .text-image-list-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #737373;
  margin: 0;
}
@media (min-width: 992px) {
  .text-image-list--differentiators .text-image-list-value {
    font-size: 1.8rem;
  }
}
@media (max-width: 991.98px) {
  .text-image-list--differentiators {
    margin-top: 0;
  }
  .text-image-list--differentiators .text-image-list-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid #e6e6e6;
  }
  .text-image-list--differentiators .text-image-list-item .text-image-list-icon {
    width: 100%;
  }
  .text-image-list--differentiators .text-image-list-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.text-image-list--partners .text-image-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.text-image-list--partners .text-image-list-item:first-child {
  border-top: 1px solid #e6e6e6;
}
.text-image-list--partners .text-image-list-content {
  flex: 1;
  margin-right: 2.5rem;
}
.text-image-list--partners .text-image-list-label {
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
}
.text-image-list--partners .text-image-list-value {
  display: none;
}
.text-image-list--partners .text-image-list-logo {
  flex-shrink: 0;
  width: auto;
  max-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-image-list--partners .text-image-list-logo img {
  max-width: 100%;
  height: 3rem;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.text-image-list--partners + .text-image-buttons {
  margin-top: 5rem;
}
.text-image-list--snapshot .text-image-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.text-image-list--snapshot .text-image-list-item:first-child {
  border-top: 1px solid #e6e6e6;
}
.text-image-list--snapshot .text-image-list-content {
  width: 100%;
  flex: 1;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-list--snapshot .text-image-list-label {
  max-width: 50%;
  color: #000000;
  font-weight: 700 !important;
  font-size: 1.8rem;
}
.text-image-list--snapshot .text-image-list-value {
  color: #000000;
  margin-bottom: 0;
  text-align: right;
  flex-shrink: 0;
  width: 50%;
  text-align: left;
}
.text-image-list--snapshot .text-image-list-value strong {
  font-weight: 700;
  color: #000000;
}
.text-image-list--snapshot + .text-image-buttons {
  margin-top: 5rem;
}
.text-image-list--policies {
  gap: 1rem;
}
.text-image-list--policies .text-image-list-item {
  padding: 1rem 1.5rem;
  border: 1px solid #000000;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}
.text-image-list--policies .text-image-list-item:hover {
  background: #000000;
  color: #ffffff;
}
.text-image-list--policies .text-image-list-item:hover .text-image-list-label {
  color: #ffffff;
}
.text-image-list--policies .text-image-list-item:hover::after {
  filter: invert(1);
}
.text-image-list--policies .text-image-list-item::after {
  content: "↗";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.text-image-list--policies .text-image-list-label {
  font-weight: 600;
  color: #000000;
  margin: 0;
}
.text-image-list--policies .text-image-list-value {
  display: none;
}

.text-image-list--services .text-image-list-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .text-image-list--services .text-image-list-item {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.text-image-list--services .text-image-list-logo {
  margin-left: 0;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .text-image-list--services .text-image-list-logo {
    margin-left: 1rem;
    margin-top: 0;
  }
}

.text-image-list--snapshot .text-image-list-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.text-image-list--snapshot .text-image-list-label {
  font-weight: 400;
  color: #393939;
}

.text-image-list--projects .text-image-list-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.text-image-list--projects .text-image-list-label {
  font-size: 20px;
  font-weight: 400;
  color: #393939;
}
.text-image-list--projects .text-image-list-value {
  text-align: left;
}

/* Button */
@media (min-width: 992px) {
  .text-image-button .btn {
    max-width: 51rem;
  }
}

/* Background Color Variations */
.text-image-content {
  font-size: 1.8rem;
}
.text-image-content > *:not(:last-child) {
  margin-bottom: 5rem;
}
.text-image-content b,
.text-image-content strong {
  color: #000000;
  font-weight: 700;
}
.text-image-content ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.text-image-content ul li {
  display: block;
  padding-left: 5rem;
  background-image: url("../images/svg/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: left 0px;
}
.text-image-content.bg-white {
  background-color: #ffffff;
  color: #393939;
}
.text-image-content.bg-white .text-image-text,
.text-image-content.bg-white .text-image-subtitle {
  color: #737373;
}
.text-image-content.bg-white .text-image-title {
  color: #000000;
}
@media (min-width: 992px) {
  .text-image-content.bg-white {
    height: 100%;
  }
}
.text-image-content.bg-dark, .text-image-content.bg-black {
  background-color: #000000;
  color: #ffffff;
}
.text-image-content.bg-dark .text-image-list-item .text-image-list-label,
.text-image-content.bg-dark .text-image-list .text-image-list-value,
.text-image-content.bg-dark .text-image-text,
.text-image-content.bg-dark .text-image-subtitle, .text-image-content.bg-black .text-image-list-item .text-image-list-label,
.text-image-content.bg-black .text-image-list .text-image-list-value,
.text-image-content.bg-black .text-image-text,
.text-image-content.bg-black .text-image-subtitle {
  color: #ffffff;
}
.text-image-content.bg-dark .text-image-title, .text-image-content.bg-black .text-image-title {
  color: #ffffff;
}
.text-image-content.bg-dark .text-image-list--beliefs .text-image-list-item, .text-image-content.bg-black .text-image-list--beliefs .text-image-list-item {
  background-image: url("../images/svg/arrow-right-white.svg");
}
@media (max-width: 991.98px) {
  .text-image-content.bg-dark .text-image-list-item, .text-image-content.bg-black .text-image-list-item {
    border-bottom: 1px solid #393939;
  }
  .text-image-content.bg-dark .text-image-list--beliefs .text-image-list-item, .text-image-content.bg-black .text-image-list--beliefs .text-image-list-item {
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .text-image-content.bg-dark, .text-image-content.bg-black {
    height: 100%;
  }
}

/* Text Color Variations */
.text-image-content.text-dark {
  color: #000000;
}
.text-image-content.text-dark .text-image-subtitle {
  color: #737373;
}
.text-image-content.text-dark .text-image-list-label {
  color: #393939;
}
.text-image-content.text-dark .text-image-list-value {
  color: #737373;
}
.text-image-content.text-dark .text-image-list-value strong {
  color: #393939;
}

.text-image-content.text-white {
  color: #ffffff;
}
.text-image-content.text-white .text-image-subtitle {
  color: #b3b3b3;
}
.text-image-content.text-white .text-image-list-label {
  color: #ffffff;
}
.text-image-content.text-white .text-image-list-value {
  color: #b3b3b3;
}
.text-image-content.text-white .text-image-list-value strong {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .revert-columns-mobile .row {
    flex-direction: column-reverse !important;
  }
}

.text-image-highlighted-text {
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}

.text-image-button-label {
  margin-bottom: 5rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .text-image-section .row {
    flex-direction: column;
  }
  .text-image-section .col-12 {
    width: 100%;
  }
  .text-image-content .container {
    max-width: 100%;
  }
}
.text-image-buttons {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.highlighted-text {
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .highlighted-text {
    font-size: 2rem;
  }
}

/* =========================
   Two Images Component
   ========================= */
.two-images-section {
  position: relative;
}
.two-images-section .row {
  margin-bottom: 0;
}
.two-images-section .row:not(:last-child) {
  margin-bottom: 0;
}
.two-images-section .two-images-button .btn {
  min-width: 29.7rem;
  display: inline-flex;
}
@media (max-width: 991.98px) {
  .two-images-section .two-images-button .btn {
    min-width: 29.7rem;
    display: inline-flex;
  }
}

/* Individual Item */
.two-images-item {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  aspect-ratio: 390/711;
}
@media (min-width: 992px) {
  .two-images-item {
    aspect-ratio: 1/1;
  }
  .two-images-item .two-images-button {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .two-images-item:hover .two-images-button {
    transition: opacity 1.2s ease;
    opacity: 1;
    visibility: visible;
  }
}

/* Background Images */
.two-images-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.two-images-bg--desktop {
  display: none;
}
@media (min-width: 992px) {
  .two-images-bg--desktop {
    display: block;
  }
}
.two-images-bg--mobile {
  display: block;
}
@media (min-width: 992px) {
  .two-images-bg--mobile {
    display: none;
  }
}

.two-images-bg-img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Content Overlay */
.two-images-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 5rem 2rem;
}
@media (min-width: 992px) {
  .two-images-content {
    padding: 10rem 2rem;
  }
}

.two-images-inner {
  text-align: center;
  color: #ffffff;
  width: 100%;
}

/* Typography */
.two-images-title {
  margin-bottom: 2.5rem;
}

.two-images-text {
  font-size: 2rem;
  margin-bottom: 0;
  opacity: 0.9;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .two-images-text {
    font-size: 2.2rem;
    max-width: 52rem;
    margin-bottom: 5rem;
  }
}

/* Button */
.two-images-button {
  margin-top: 5rem;
  transition: all 0.3s ease;
}

/* Section Variations */
.two-images-item--invest {
  background-color: #1cabab;
}
.two-images-item--invest .two-images-bg-img {
  -o-object-position: center right;
  object-position: center right;
}

.two-images-item--borrow {
  background-color: #ff6b35;
}
.two-images-item--borrow .two-images-bg-img {
  -o-object-position: center left;
  object-position: center left;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .two-images-section .row {
    flex-direction: column;
  }
  .two-images-section .col-12 {
    width: 100%;
  }
}
/* =========================
   Slider Component
   ========================= */
.slider-section {
  position: relative;
  height: auto !important;
  min-height: auto !important;
}

.slider-container {
  position: relative;
  height: auto;
  width: 100% !important;
  overflow: hidden;
}

.slider-wrapper {
  height: auto;
  width: 100% !important;
}

.slider-slide {
  height: auto !important;
}
.slider-slide .row {
  height: auto !important;
  align-items: stretch;
  width: 100% !important;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .slider-slide .row {
    min-height: 100% !important;
  }
}
.slider-slide .col-lg-6 {
  display: flex;
  align-items: stretch;
  padding: 0 !important;
}

/* Image Column */
.slider-image {
  position: relative;
  height: auto !important;
  min-height: 400px;
  width: 100%;
}
.slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 992px) {
  .slider-image {
    min-height: 600px;
    aspect-ratio: 1/1;
  }
}

.slider-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Content Column */
.slider-content {
  background-color: #000000;
  color: #ffffff;
  height: auto !important;
  min-height: 400px;
  width: 100%;
  display: flex;
  align-items: start;
  padding: 7.5rem clamp(2rem, 5vw, 10rem) 16.5rem;
  position: relative;
}

.slider-content-inner {
  width: 100%;
}

/* Typography */
.slider-subtitle {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5rem;
  color: #ffffff;
}

.slider-title {
  font-weight: 300;
  margin-bottom: 1.5rem;
}
@media (max-width: 991.98px) {
  .slider-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .slider-title {
    margin-bottom: 2.5rem;
  }
}

.slider-text {
  color: #ffffff;
  border-bottom: 1px solid #393939;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .slider-text {
    padding-bottom: 5rem;
    margin-bottom: 5rem;
  }
}

.slider-amount {
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 992px) {
  .slider-amount {
    margin-bottom: 0rem;
  }
}

.slider-facility {
  margin-bottom: 0;
}

/* Navigation */
.slider-nav {
  position: absolute;
  bottom: 7.5rem;
  left: calc(50% + clamp(2rem, 5vw, 10rem));
  z-index: 1000;
  display: flex;
  gap: 0;
}

.slider-nav-btn {
  width: 7rem;
  height: 7rem;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.slider-nav-btn img,
.slider-nav-btn svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .slider-nav-btn {
    opacity: 1;
  }
  .slider-nav-btn:hover {
    opacity: 0.95;
  }
}

/* Slick Overrides */
.slick-slide {
  height: auto !important;
}
.slick-slide .col-content,
.slick-slide .col-image {
  display: flex;
  width: 50% !important;
  padding: 0 !important;
}

/* Allow Slick to calculate slide width */
.slider-wrapper .slick-slide {
  width: 100% !important;
  float: left !important;
}

.slider-wrapper .slick-track {
  display: flex !important;
  align-items: stretch !important;
}

.slider-wrapper .slick-list {
  overflow: hidden !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .slider-section .row {
    flex-direction: column-reverse;
  }
  .slider-section .col-12 {
    width: 100%;
    position: relative;
  }
  .slider-content {
    padding: 5rem 2rem 16rem;
    order: 1;
    height: auto !important;
    min-height: 350px !important;
  }
  .slider-image {
    order: 2;
    height: auto !important;
    min-height: 300px !important;
  }
  .slider-nav {
    position: absolute;
    bottom: 5rem;
    right: auto;
    left: 2rem;
    top: auto;
    transform: none;
    flex-direction: row;
  }
  .slider-amount.typo-mega-numbers {
    font-size: 7.5rem;
  }
}
/* Mobile Specific */
@media (max-width: 767.98px) {
  .slider-content {
    height: auto !important;
    min-height: 300px !important;
  }
  .slider-image {
    height: auto !important;
    min-height: 250px !important;
    aspect-ratio: 1/1;
  }
}
/* =========================
   Slider White Component
   ========================= */
.slider-white-section {
  position: relative;
  height: auto !important;
  min-height: auto !important;
}
.slider-white-section .slider-container {
  position: relative;
  height: auto;
  width: 100% !important;
  overflow: hidden;
}
.slider-white-section .slider-wrapper {
  height: auto;
  width: 100% !important;
}
.slider-white-section .slider-slide {
  height: auto !important;
}
.slider-white-section .slider-slide .row {
  height: auto !important;
  align-items: stretch;
  width: 100% !important;
  margin: 0 !important;
}
@media (max-width: 991.98px) {
  .slider-white-section .slider-slide .row {
    flex-direction: column-reverse;
  }
  .slider-white-section .slider-slide .row .slider-image {
    padding: 0 2rem;
    aspect-ratio: 350/250;
    margin-bottom: 5rem;
  }
  .slider-white-section .slider-slide .row .slider-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.slider-white-section .slider-slide .col-lg-6 {
  display: flex;
  align-items: stretch;
  padding: 0 !important;
}
.slider-white-section {
  /* Image Column */
}
.slider-white-section .slider-image {
  position: relative;
  height: auto !important;
  min-height: 400px;
  width: 100%;
}
.slider-white-section .slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 992px) {
  .slider-white-section .slider-image {
    min-height: 600px;
    aspect-ratio: 1/1;
  }
}
.slider-white-section .slider-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.slider-white-section .slider-text {
  color: #737373;
  border: none;
  margin: 0;
  padding: 0;
}
.slider-white-section {
  /* Content Column */
}
.slider-white-section .slider-content {
  background-color: #ffffff;
  color: #737373;
  height: auto !important;
  min-height: 400px;
  width: 100%;
  display: flex;
  align-items: start;
  padding: clamp(5rem, 15vw, 10rem) clamp(2rem, 5vw, 10rem);
  position: relative;
  gap: 5rem;
}
.slider-white-section .slider-content-inner {
  width: 100%;
}
.slider-white-section {
  /* Typography */
}
.slider-white-section .slider-subtitle {
  text-transform: uppercase;
  margin-bottom: 5rem;
  color: #737373;
  letter-spacing: 1.5px;
}
.slider-white-section .slider-title {
  color: #000000;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
@media (max-width: 991.98px) {
  .slider-white-section .slider-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .slider-white-section .slider-title {
    margin-bottom: 2.5rem;
  }
}
.slider-white-section .slider-title:empty {
  display: none;
}
.slider-white-section {
  /* Logo */
}
.slider-white-section .slider-logo {
  margin-bottom: 5rem;
}
.slider-white-section .slider-logo .logo-img {
  height: 60px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.slider-white-section .slider-amount {
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 992px) {
  .slider-white-section .slider-amount {
    margin-bottom: 0rem;
  }
}
.slider-white-section .slider-facility {
  margin-bottom: 0;
}
.slider-white-section {
  /* Navigation */
}
.slider-white-section .slider-nav {
  position: relative;
  left: auto;
  margin-top: 5rem;
  bottom: auto;
  top: auto;
}
.slider-white-section .slider-nav-btn img {
  border: 1px solid #000000;
}
.slider-white-section .slider-nav-btn:last-child {
  position: relative;
  margin-left: -1px;
}

.slider-nav-mobile {
  margin-left: 2rem;
  margin-top: 0 !important;
  margin-bottom: 5rem !important;
}

/* Our Mission Component */
.our-mission-section {
  margin: clamp(5rem, 5vw, 10rem) 0;
  overflow: hidden;
}

/* Mission Header */
.mission-header {
  margin-bottom: clamp(5rem, -1.1088rem + 23.6088vw, 22.5rem);
}

.mission-subtitle {
  margin-bottom: 5rem;
}

.mission-title {
  margin: 0 auto 0 0;
}
@media (max-width: 991.98px) {
  .mission-title br {
    display: none;
  }
}

/* Features Grid */
.features-grid .row {
  flex-wrap: wrap;
  align-items: stretch;
  row-gap: 10rem;
}
.features-grid .row .col-lg {
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .features-grid .row .col-lg {
    width: calc(50% - 1.5rem);
  }
}
@media (min-width: 1200px) {
  .features-grid .row .col-lg {
    width: calc(20% - 1.5rem);
  }
}

/* Feature Item */
.feature-item {
  height: 100%;
  padding: 0 3.25rem;
  border-left: 1px solid #e6e6e6;
  position: relative;
}

.feature-icon {
  margin-bottom: 5rem;
  height: 10rem;
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg * {
  stroke: #000000;
}
.feature-icon:hover svg * {
  stroke: #1cabab;
}

.home-our-mission .features-grid .row .col-lg:nth-child(3) .feature-icon:hover .fill-black {
  fill: #1cabab !important;
}

.feature-icon-img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}

.feature-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-transform: inherit;
}

.feature-description {
  color: #737373;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .mission-header {
    margin-bottom: 4rem;
  }
  .mission-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 767.98px) {
  .feature-item {
    width: 25.8rem;
    padding: 0 2rem 0 4rem;
  }
  .features-wrapper {
    width: calc(100% + 2rem);
    margin-right: -2rem;
  }
}
/* Overview Component */
.overview-section {
  margin: 0;
}

/* Overview Header */
.overview-header {
  margin-bottom: clamp(5rem, -1.1088rem + 23.6088vw, 22.5rem);
}

.overview-subtitle {
  margin-bottom: 5rem;
  color: #737373;
}

.overview-title {
  margin: 0 auto 0 0;
  margin-bottom: 3rem;
}

.overview-description {
  max-width: 80rem;
  margin: 0 auto 0 0;
  color: #737373;
  font-size: 1.8rem;
  line-height: 1.6;
}

/* Statistics Grid */
.stats-grid .row {
  align-items: stretch;
}

/* Stat Item */
.stat-item {
  height: 100%;
  padding: 0 3.25rem;
  border-left: 1px solid #e6e6e6;
  position: relative;
  text-align: left;
}
@media (max-width: 991.98px) {
  .stat-item {
    border-left: none;
    border-bottom: 1px solid #e6e6e6;
    padding: 0;
  }
}

.stat-value {
  margin-bottom: 1.5rem;
  line-height: 1;
}
@media (min-width: 992px) {
  .stat-value {
    margin-bottom: 5rem;
  }
}

.stat-description {
  color: #737373;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .overview-header {
    margin-bottom: 5rem;
  }
  .overview-title {
    font-size: 3.5rem;
  }
  .stats-grid .row > div {
    margin-top: 0;
  }
  .stats-grid .row > div .stat-item {
    height: auto;
    padding: 0 0 2.5rem;
    margin-bottom: 2.5rem;
  }
  .stats-grid .row > div:last-child .stat-item {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .stat-value {
    font-size: 7.5rem;
  }
}
/* News Component */
@media (max-width: 991.98px) {
  .news-section {
    margin-top: 0 !important;
  }
}

/* News Header */
.news-header {
  margin-bottom: clamp(5rem, 15vw, 10rem);
}

.news-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-title {
  margin: 0;
}

.news-see-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000000;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.news-see-all span {
  color: #000000;
}
.news-see-all:hover {
  color: #1cabab;
}
.news-see-all:hover svg {
  transform: translate(2px, -2px);
}
.news-see-all svg {
  transition: all 0.3s ease-in-out;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
  }
}
@media (max-width: 767.98px) {
  .articles-grid .article-item {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
  .articles-grid .article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* Article Item */
.article-item {
  height: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
  .article-item {
    height: auto;
  }
}

.article-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 350/200;
}
@media (min-width: 992px) {
  .article-image {
    aspect-ratio: 412/475;
  }
}
.article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.article-image:hover img {
  transform: scale(1.05);
}

.article-content {
  padding: 2.5rem 0 0;
}

.article-title {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .article-title {
    min-height: 8.4rem;
  }
}
.article-title a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  line-height: 1.3;
}
.article-title a:hover {
  color: #1cabab;
}

.article-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.article-link .typo-desktop-section-tag {
  color: #000000;
}
.article-link:hover {
  color: #000000;
}
.article-link:hover svg {
  transform: translate(2px, -2px);
}
.article-link svg {
  transition: all 0.3s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .news-section {
    margin: 5rem 0;
  }
  .news-header {
    margin-bottom: 5rem;
  }
}
/* News Hero Component */
.news-hero-section {
  margin: clamp(5rem, 5vw, 10rem) 0 7.5rem;
}
.news-hero-section .news-hero-content .news-hero-title {
  color: #000000;
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .news-hero-section .news-hero-content .news-hero-title {
    font-size: 5rem;
  }
}
@media (max-width: 991.98px) {
  .news-hero-section {
    margin-top: 6.5rem;
    margin-bottom: 0.5rem;
  }
}

/* News Grid Component */
.news-grid-section .articles-wrapper .articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .news-grid-section .articles-wrapper .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .news-grid-section .articles-wrapper .articles-grid {
    gap: 4rem;
  }
}
@media (min-width: 992px) {
  .news-grid-section .articles-wrapper .articles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    row-gap: clamp(6.5rem, 5vw, 10rem);
  }
}

@media (max-width: 767.98px) {
  .news-section .article-item:nth-child(2) {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
/* News Load More Component */
.news-load-more-section {
  padding: clamp(5rem, 15vw, 10rem) 0;
}
@media (min-width: 992px) {
  .news-load-more-section .news-load-more-btn {
    width: 35.3rem;
    margin: 0 auto;
  }
}

/* Single News Content Component */
.single-news-content-section {
  height: calc(100vh - 76px);
  min-height: calc(100vh - 76px);
  margin-bottom: 0;
  margin-top: 0;
}
.single-news-content-section .row {
  height: 100%;
}
.single-news-content-section .col-md-6 {
  height: 100%;
}
.single-news-content-section .text-image-visual {
  height: 100%;
}
.single-news-content-section .text-image-visual .text-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-news-content-section .text-image-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 5rem 0;
}
.single-news-content-section .text-image-content .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.single-news-content-section .text-image-content .text-image-inner {
  flex: 1;
  overflow-y: auto;
  padding-right: 1rem;
}
.single-news-content-section .text-image-content .text-image-inner .text-image-subtitle {
  margin-bottom: 5rem;
}
.single-news-content-section .text-image-content .text-image-inner .text-image-title {
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.single-news-content-section .text-image-subtitle {
  color: #b3b3b3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.single-news-content-section .text-image-title {
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .single-news-content-section .text-image-title {
    font-size: 3.5rem;
  }
}
.single-news-content-section .text-image-text {
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: 1.6;
}
.single-news-content-section .text-image-text p {
  margin-bottom: 2rem;
}
.single-news-content-section .text-image-text p:last-child {
  margin-bottom: 0;
}
.single-news-content-section .text-image-text h1, .single-news-content-section .text-image-text .h1,
.single-news-content-section .text-image-text h2,
.single-news-content-section .text-image-text .h2,
.single-news-content-section .text-image-text h3,
.single-news-content-section .text-image-text .h3,
.single-news-content-section .text-image-text h4,
.single-news-content-section .text-image-text .h4,
.single-news-content-section .text-image-text h5,
.single-news-content-section .text-image-text .h5,
.single-news-content-section .text-image-text h6,
.single-news-content-section .text-image-text .h6 {
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}
.single-news-content-section .text-image-text h1:first-child, .single-news-content-section .text-image-text .h1:first-child,
.single-news-content-section .text-image-text h2:first-child,
.single-news-content-section .text-image-text .h2:first-child,
.single-news-content-section .text-image-text h3:first-child,
.single-news-content-section .text-image-text .h3:first-child,
.single-news-content-section .text-image-text h4:first-child,
.single-news-content-section .text-image-text .h4:first-child,
.single-news-content-section .text-image-text h5:first-child,
.single-news-content-section .text-image-text .h5:first-child,
.single-news-content-section .text-image-text h6:first-child,
.single-news-content-section .text-image-text .h6:first-child {
  margin-top: 0;
}
.single-news-content-section .text-image-text h1, .single-news-content-section .text-image-text .h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}
.single-news-content-section .text-image-text h2, .single-news-content-section .text-image-text .h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.single-news-content-section .text-image-text h3, .single-news-content-section .text-image-text .h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
}
.single-news-content-section .text-image-text ul,
.single-news-content-section .text-image-text ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.single-news-content-section .text-image-text ul li,
.single-news-content-section .text-image-text ol li {
  margin-bottom: 0.5rem;
}
.single-news-content-section .text-image-text blockquote {
  border-left: 4px solid #1cabab;
  padding-left: 2rem;
  margin: 3rem 0;
  font-style: italic;
  color: #b3b3b3;
}
.single-news-content-section .text-image-text a {
  color: #1cabab;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.single-news-content-section .text-image-text a:hover {
  color: rgb(20.824120603, 127.175879397, 127.175879397);
  text-decoration: underline;
}
.single-news-content-section .text-image-text img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 0;
}
@media (max-width: 991.98px) {
  .single-news-content-section {
    height: auto;
  }
}

/* Subscribe Component */
/* Hide validation messages for newsletter form */
.newsletter-form .invalid-feedback {
  display: none !important;
}
.newsletter-form .is-invalid {
  border: none !important;
  box-shadow: none !important;
}
.newsletter-form .is-valid {
  border: none !important;
  box-shadow: none !important;
}

/* Hide toast notifications for newsletter form */
.toast-container {
  display: none !important;
}

/* Hide any error banners */
.alert-danger,
.alert-error {
  display: none !important;
}

/* Logo Section */
/* Logo Section */
.subscribe-logo {
  width: 25%;
  flex-shrink: 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon img {
  width: auto;
  height: 3rem;
}

.logo-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

/* Form Section */
.subscribe-form {
  width: 100%;
}

.subscribe-title {
  margin-bottom: 1rem;
  color: #000000;
  font-size: 5rem;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .subscribe-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
}

.newsletter-form {
  width: 100%;
}

.form-group {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 2rem;
  transition: all 0.3s ease-in-out;
}
.form-group:focus-within {
  border-bottom-color: #1cabab;
}
.form-group .form-control {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 5rem;
  color: #000000;
  padding: 0;
  outline: none;
}
.form-group .form-control::-moz-placeholder {
  color: #b3b3b3;
  font-size: 5rem;
  font-weight: 400;
}
.form-group .form-control::placeholder {
  color: #b3b3b3;
  font-size: 5rem;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .form-group .form-control {
    font-size: 2.2rem;
  }
  .form-group .form-control::-moz-placeholder {
    font-size: 2.2rem;
  }
  .form-group .form-control::placeholder {
    font-size: 2.2rem;
  }
}
@media (max-width: 767.98px) {
  .form-group {
    padding-bottom: 1rem;
  }
}

.submit-btn {
  width: 4rem;
  height: 4rem;
  background: none;
  border: none;
  padding: 0.5rem;
  color: #b3b3b3;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submit-btn:hover {
  color: #1cabab;
  transform: translate(2px, -2px);
  stroke: #1cabab;
}
.submit-btn svg {
  width: 4rem;
  height: 4rem;
}
@media (max-width: 767.98px) {
  .submit-btn {
    width: 3rem;
    height: 3rem;
  }
  .submit-btn svg {
    width: 2rem;
    height: 2rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .subscribe-form {
    margin-top: 5rem;
  }
}
/* Testimonial Component */
.testimonial-section {
  padding: clamp(5rem, 10vw, 15rem) 0;
  background-color: #000000;
  color: #ffffff;
}

/* Quote */
.testimonial-quote {
  margin: 0 0 5rem 0;
  padding: 0;
  border: none;
}

.testimonial-text {
  font-size: 2rem;
  margin: 0;
  color: inherit;
}
@media (min-width: 992px) {
  .testimonial-text {
    font-size: 3.5rem;
  }
}

/* Author */
.author-name {
  margin-bottom: 0;
}
.author-name strong {
  font-weight: 700;
  color: inherit;
}

.testimonial-author {
  font-size: 1.8rem;
}
@media (min-width: 992px) {
  .testimonial-author {
    font-size: 2.2rem;
  }
}

/* Committed Signatories Component */
.committed-section {
  margin: clamp(5rem, 10vw, 10rem) 0;
  background-color: #ffffff;
}

/* Main Title */
.committed-title {
  margin-bottom: 7.5rem;
}
@media (max-width: 991.98px) {
  .committed-title {
    margin-bottom: 5rem;
  }
}

.committed-heading {
  font-weight: 300;
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

/* Organizations */
.committed-organizations {
  display: flex;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  position: relative;
  border-left: 1px solid #e6e6e6;
}
.committed-organizations:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
  left: calc(50% + 40px);
  top: 0;
}
@media (max-width: 991.98px) {
  .committed-organizations {
    border: none;
    flex-direction: column;
    -moz-column-gap: 0;
    column-gap: 0;
    gap: 0;
  }
  .committed-organizations:after {
    display: none;
  }
}

.committed-org {
  height: 100%;
  padding: 0 0 0 4rem;
  border-radius: 0;
}
@media (max-width: 991.98px) {
  .committed-org {
    padding: 0 0 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #e6e6e6;
  }
  .committed-org:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* Organization Header */
.committed-org-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.committed-org-logo {
  flex-shrink: 0;
  height: 10rem;
  padding: 2.75rem 0;
  margin-bottom: 5rem;
  display: flex;
  align-items: flex-end;
}
.committed-org-logo .org-logo-img {
  max-height: 60px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 991.98px) {
  .committed-org-logo {
    margin-bottom: 2.5rem;
    height: auto;
  }
}

.committed-org-name {
  flex: 1;
  min-width: 0;
}

/* Organization Description */
.committed-org-description p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #737373;
  margin: 0;
}
@media (min-width: 992px) {
  .committed-org-description p {
    font-size: 1.8rem;
  }
}

/* Responsive Adjustments */
/* Card Slider Component */
.card-slider-section {
  background-color: #000000;
  color: #ffffff;
  padding: clamp(5rem, 10vw, 10rem) 0;
}

/* Section Header */
.card-slider-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.card-slider-title {
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}

/* Slider Container */
.card-slider-container {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .card-slider-container {
    width: calc(100% + 2rem);
    margin-right: -2rem;
  }
}

.card-slider-wrapper {
  margin: 0 -1rem;
}

.transaction-card {
  background: transparent;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

/* Card Image */
.transaction-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 3rem;
  aspect-ratio: 412/300;
}
.transaction-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: all 0.3s ease-in-out;
}
.transaction-card-image:hover img {
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  .transaction-card-image {
    aspect-ratio: 258/300;
  }
}

/* Card Content */
.transaction-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transaction-location {
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 0.1rem;
}

.transaction-amount {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .transaction-amount {
    min-height: 6.4rem;
  }
}

.transaction-description {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #b3b3b3;
  margin: 0;
}

/* Navigation Arrows */
.card-slider-nav {
  display: flex;
  gap: 0;
}

.card-slider-nav-btn {
  width: 7rem;
  height: 7rem;
  border: none;
  background: #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  opacity: 1;
}
.card-slider-nav-btn:hover {
  background: #ffffff;
  color: #000000;
  opacity: 0.95;
}
.card-slider-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.card-slider-nav-btn svg {
  width: 7rem;
  height: 7rem;
}

.card-slider-wrapper {
  margin: 0 -2rem;
}

.card-slider-item {
  padding: 0 2rem;
}

@media (max-width: 991.98px) {
  .card-slider-section {
    padding: 5rem 0;
  }
  .card-slider-title {
    margin-bottom: 5rem;
  }
  .card-slider-wrapper {
    margin: 0 -2rem;
  }
  .card-slider-item {
    padding: 0 2rem;
  }
}
/* Slick Slider Customizations */
.slick-slide {
  height: auto;
}

.slick-track {
  display: flex;
  align-items: stretch;
}

.slick-slide > div {
  height: 100%;
}

.slick-slide .transaction-card {
  height: 100%;
}

/* Loan Packet Component */
.loan-packet-section {
  background-color: #ffffff;
  color: #000000;
  margin: clamp(5rem, 10vw, 10rem) 0;
  overflow: hidden;
}

/* Section Header */
.loan-packet-header {
  margin-bottom: clamp(5rem, 6vw, 15rem);
}

.loan-packet-title {
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
}

/* Loan Types Grid */
.loan-packet-grid .row {
  align-items: stretch;
}

/* Desktop Grid */
.loan-packet-desktop .row {
  align-items: stretch;
}
.loan-packet-desktop .row > div {
  margin-top: 0 !important;
}
.loan-packet-desktop .row > div:nth-child(n+5) {
  margin-top: clamp(5rem, 6vw, 10rem) !important;
}

/* Mobile Slider */
.loan-packet-mobile {
  position: relative;
  overflow: hidden;
  width: calc(100% + 2rem);
  margin-right: -2rem;
}

.loan-packet-slider {
  margin: 0 -1rem;
}

.loan-slider-item {
  padding: 0 1rem;
  height: auto;
}

.loan-type-card {
  height: 100%;
  padding: 0 4rem;
  max-width: 327.5px;
  border-left: 1px solid #e6e6e6;
  border-radius: 0;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

/* Icon */
.loan-type-icon {
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.loan-type-icon .loan-icon {
  width: 10rem;
  height: 10rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.loan-type-icon .loan-icon.mobile-icon {
  width: 5rem;
  height: 5rem;
}

@media (min-width: 992px) {
  .loan-type-card .loan-icon.active-icon {
    display: none;
  }
  .loan-type-card:hover .loan-icon:not(.active-icon) {
    display: none;
  }
  .loan-type-card:hover .loan-icon.active-icon {
    display: block;
  }
}
/* Content */
.loan-type-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.loan-type-title {
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.loan-type-description p {
  font-size: 1.8rem;
  color: #737373;
  margin: 0;
}

@media (max-width: 991.98px) {
  .loan-packet-section {
    margin: 5rem 0;
  }
  .loan-type-card {
    padding: 0 2rem 0 3rem;
  }
  .loan-type-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 991.98px) {
  .loan-type-icon .loan-icon.loan-icon-default {
    display: none !important;
  }
  .loan-type-icon .loan-icon.loan-icon-hover {
    display: block !important;
  }
}
@media (max-width: 991.98px) {
  .loan-type-icon .loan-icon.loan-icon-default {
    display: none !important;
  }
  .loan-type-icon .loan-icon.loan-icon-hover {
    display: block !important;
  }
}
/* Get In Touch Component */
/* Left Column - Contact Information */
.get-in-touch-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .get-in-touch-content {
    padding-right: 5rem;
  }
}

.get-in-touch-title {
  color: #000000;
  text-transform: uppercase;
  margin: 0 0 2.5rem 0;
}

.get-in-touch-subtitle {
  color: #737373;
  margin-bottom: clamp(5rem, 6vw, 3rem);
}

/* General Contact */
.general-contact {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 991.98px) {
  .general-contact {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #e6e6e6;
    padding-top: 5rem;
    margin-top: 5rem;
    gap: 2rem;
  }
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
}

.contact-item a {
  text-decoration: none;
}
.contact-item a:hover {
  color: #1cabab;
}

.contact-email,
.contact-phone {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #737373;
}

/* Right Column - Team Members */
.team-members {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .team-members > .row > div:not(:last-child) .member-info {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
  }
}

.team-member-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

/* Member Image */
.member-image {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 412/475;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.member-image .learn-more {
  width: 7rem;
  height: 7rem;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.member-image:hover .learn-more {
  opacity: 1;
}

.member-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Member Info */
.member-info {
  padding: 0;
  flex: 1;
  flex-direction: column;
}
.member-info .article-link {
  margin-top: 2.5rem;
}

.member-name {
  font-weight: 700;
  font-size: 1.8rem;
  color: #000000;
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
}

.member-title {
  font-weight: 400;
  color: #000000;
  margin: 0 0 1.5rem;
}

.member-contact {
  margin-top: auto;
}

.member-email,
.member-phone {
  font-size: 1.5rem;
  font-weight: 400;
  color: #737373;
  margin-bottom: 0.5rem;
  word-break: break-word;
  display: block;
}
.member-email:last-child,
.member-phone:last-child {
  margin-bottom: 0;
}

.team-members .g-40,
.team-members .gy-40,
.team-members .gx-40 {
  --bs-gutter-y: 4rem;
}
.team-members .row {
  --bs-gutter-x: 4rem;
  --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));
}

.member-detail-modal .modal-dialog {
  max-width: 96rem;
}

.member-office h4, .member-office .h4, .get-in-touch-section .contact-location h4, .get-in-touch-section .contact-location .h4 {
  font-weight: 700;
}

/* =========================
   Member Detail Modal Component
   ========================= */
.member-modal-content {
  border: none;
  border-radius: 0;
  background: #ffffff;
  max-width: 100%;
  max-height: 80vh;
  padding: 10rem 7.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .member-modal-content {
    padding: 5rem 2.5rem;
  }
}

.member-modal-header {
  position: absolute;
  border-bottom: none;
  top: 5rem;
  right: 5rem;
  z-index: 10;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
}
@media (max-width: 767.98px) {
  .member-modal-header {
    top: 2rem;
    right: 2rem;
  }
}

.member-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
}
.member-modal-close svg {
  width: 24px;
  height: 24px;
  stroke: #000000;
  transition: all 0.3s ease-in-out;
}
.member-modal-close:hover svg {
  stroke: #1cabab;
}

.member-modal-body {
  padding: 0;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.member-modal-image {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .member-modal-image {
    margin-bottom: 0;
    padding-right: 2rem;
  }
}

.member-modal-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}

.member-modal-info {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.member-top {
  flex-shrink: 0;
  margin-bottom: 2rem;
}

.member-bottom {
  flex: 1;
  overflow-y: auto;
  padding-right: 1rem;
  /* Custom scrollbar styling */
}
.member-bottom::-webkit-scrollbar {
  width: 6px;
}
.member-bottom::-webkit-scrollbar-track {
  background: #e6e6e6;
  border-radius: 3px;
}
.member-bottom::-webkit-scrollbar-thumb {
  background: #737373;
  border-radius: 3px;
}
.member-bottom::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

.member-modal-name {
  color: #000000;
  font-weight: 300;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.member-modal-title {
  color: #737373;
  margin: 0 0 2rem 0;
}
@media (min-width: 768px) {
  .member-modal-title {
    font-size: 1.8rem;
  }
}

.member-modal-bio {
  color: #000000;
  margin: 0 0 2rem 0;
}
.member-modal-bio p {
  margin: 0 0 1.5rem 0;
}
.member-modal-bio p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .member-modal-bio {
    font-size: 1.8rem;
  }
}

.member-modal-contact {
  margin: 0 0 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.member-modal-contact-item {
  margin: 0 0 1rem 0;
}
.member-modal-contact-item:last-child {
  margin-bottom: 0;
}

.member-modal-email,
.member-modal-phone {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.member-modal-email:hover,
.member-modal-phone:hover {
  color: #1cabab;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .member-modal-email,
  .member-modal-phone {
    font-size: 1.8rem;
  }
}

.member-modal-section {
  margin: 0 0 2rem 0;
}
.member-modal-section:last-child {
  margin-bottom: 0;
}

.member-modal-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .member-modal-section-title {
    font-size: 2rem;
  }
}

.member-modal-experience,
.member-modal-education,
.member-modal-achievements {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.member-modal-exp-item,
.member-modal-edu-item,
.member-modal-achievement-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.member-modal-exp-item:last-child,
.member-modal-edu-item:last-child,
.member-modal-achievement-item:last-child {
  border-bottom: none;
}

.exp-title,
.edu-degree {
  color: #000000;
  margin: 0 0 0.5rem 0;
}
@media (min-width: 768px) {
  .exp-title,
  .edu-degree {
    font-size: 1.8rem;
  }
}

.exp-company,
.edu-institution {
  color: #1cabab;
  margin: 0 0 0.5rem 0;
}

.exp-period,
.edu-year {
  color: #737373;
  margin: 0 0 1rem 0;
}

.exp-description {
  color: #000000;
  margin: 0;
}

.member-modal-achievement-item {
  color: #000000;
}

/* Modal Overlay */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .member-modal-content {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
    padding: 5rem 2rem;
  }
  .member-modal-header {
    top: 2rem;
    right: 2rem;
  }
  .member-bottom {
    padding-right: 0.5rem;
  }
}
/* =========================
   FAQ Component
   ========================= */
.faq-section.bg-gray {
  padding: clamp(5rem, 15vw, 10rem) 0;
}

.faq-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 35px;
  font-weight: 300;
  line-height: normal;
  color: #000000;
  margin: 0 0 5rem 0;
}
@media (min-width: 992px) {
  .faq-title {
    font-size: 50px;
  }
}

/* Bootstrap Accordion Overrides */
.accordion {
  max-width: 100%;
}

.accordion-item.faq-item {
  border: none;
  background: transparent;
  border-bottom: 1px solid #e6e6e6;
  padding: 3.5rem 0;
}
@media (max-width: 991.98px) {
  .accordion-item.faq-item {
    padding: 2.5rem 0;
  }
}
.accordion-item.faq-item:first-child {
  padding-top: 0;
}
.accordion-item.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button.faq-button {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.accordion-button.faq-button .faq-question-text {
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.accordion-button.faq-button:not(.collapsed) .faq-question-text {
  font-weight: 700;
}
.accordion-button.faq-button:not(.collapsed) .faq-icon svg,
.accordion-button.faq-button:not(.collapsed) .faq-icon path {
  stroke: #b3b3b3;
}
.accordion-button.faq-button:hover .faq-question-text {
  color: #000000;
}
.accordion-button.faq-button:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.accordion-button.faq-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}
.accordion-button.faq-button:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}
.accordion-button.faq-button:not(.collapsed) .faq-icon svg {
  stroke: #1cabab;
}
.accordion-button.faq-button::after {
  display: none;
}

.faq-item-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.faq-item-number {
  font-size: 1.8rem;
  width: 4.8rem;
  color: #1cabab;
  flex-shrink: 0;
  padding: 0 1.5rem;
}

.faq-question-text {
  font-size: 1.8rem;
  color: #000000;
  transition: all 0.3s ease-in-out;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.3s ease-in-out;
}
.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: #737373;
  transition: all 0.3s ease-in-out;
}

.accordion-collapse {
  margin-top: 2rem;
  margin-left: 6.8rem;
}
@media (max-width: 991.98px) {
  .accordion-collapse {
    margin-top: 1rem;
    padding-right: 4rem;
  }
}

.accordion-collapse.collapse:not(.show) {
  display: none !important;
}

.accordion-collapse.collapse.show {
  display: block !important;
}

.accordion-collapse.collapsing {
  height: 0 !important;
  overflow: hidden !important;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: block !important;
}

.accordion-collapse.show {
  animation: accordionSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) ease-out;
}

@keyframes accordionSlideDown {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: auto;
    opacity: 1;
  }
}
.accordion-collapse {
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

.accordion-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body.faq-item-answer {
  padding: 2rem 0;
  color: #737373;
}
.accordion-body.faq-item-answer p {
  margin: 0 0 3rem 0;
}
.accordion-body.faq-item-answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .accordion-body.faq-item-answer {
    padding: 1.5rem 0;
  }
  .accordion-body.faq-item-answer p {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 992px) {
  .accordion-body.faq-item-answer {
    font-size: 1.8rem;
  }
}

/* =========================
   Book Session Component
   ========================= */
.book-session-section {
  margin: clamp(5rem, 15vw, 10rem) 0;
}
.book-session-section .gy-50,
.book-session-section .g-50,
.book-session-section .gx-50 {
  --bs-gutter-y: 5rem;
}
.book-session-section .gy-50.row,
.book-session-section .g-50.row,
.book-session-section .gx-50.row {
  --bs-gutter-x: 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));
}

.book-session-header {
  margin-bottom: 4rem;
}

.book-session-subtitle {
  margin: 0 0 5rem 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.book-session-form .btn {
  width: 100%;
}
@media (min-width: 992px) {
  .book-session-form .btn {
    width: 35.3rem;
  }
}

.right-column-form > .form-input-wrapper:last-child {
  margin-bottom: 0;
}

.book-session-form .form-control,
.book-session-form .form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0;
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.2rem 0;
  transition: all 0.3s ease-in-out;
}
.book-session-form .form-control:focus,
.book-session-form .form-select:focus {
  background: transparent;
  border-color: #1cabab;
  box-shadow: none;
  color: #000000;
}
.book-session-form .form-control::-moz-placeholder, .book-session-form .form-select::-moz-placeholder {
  color: #b3b3b3;
}
.book-session-form .form-control::placeholder,
.book-session-form .form-select::placeholder {
  color: #b3b3b3;
}
@media (min-width: 992px) {
  .book-session-form .form-control,
  .book-session-form .form-select {
    font-size: 1.8rem;
  }
}
.book-session-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}
.book-session-form .form-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #b3b3b3;
  margin-bottom: 0.8rem;
  display: block;
}

.form-submit-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
}
@media (max-width: 991.98px) {
  .form-submit-wrapper {
    flex-direction: column-reverse;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: flex-start;
  }
}

.text-required-fields {
  color: var(--Medium-Gray, #b3b3b3);
  font-family: "Space Grotesk";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* =========================
   Form Components
   ========================= */
/* Form Input Component */
.form-input-wrapper {
  margin-bottom: 1rem;
}

.form-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-group .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0;
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0.2rem 2rem 1rem 0;
  transition: all 0.3s ease-in-out;
  flex: 1;
  height: 5.2rem;
}
.form-input-group .form-control:focus {
  background: transparent;
  border-color: #1cabab;
  box-shadow: none;
  color: #000000;
}
.form-input-group .form-control::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-input-group .form-control::placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-input-group .form-control::-webkit-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-input-group .form-control::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-input-group .form-control:-ms-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-input-group .form-control:-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .form-input-group .form-control {
    font-size: 1.8rem;
  }
}

.required-asterisk {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #b3b3b3;
  font-size: 1.6rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 992px) {
  .required-asterisk {
    font-size: 1.8rem;
  }
}

/* Form Select Component */
.form-select-wrapper {
  margin-bottom: 2rem;
}

.form-select-group {
  position: relative;
  display: flex;
  align-items: center;
}

.form-select-group .form-select {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #e6e6e6 !important;
  border-radius: 0 !important;
  color: #000000 !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  padding: 0.2rem 2rem 1rem 0 !important;
  transition: all 0.3s ease-in-out !important;
  flex: 1 !important;
  height: 6.2rem !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
  cursor: pointer !important;
  outline: none !important;
}
.form-select-group .form-select:focus {
  background: transparent !important;
  border-bottom-color: #1cabab !important;
  box-shadow: none !important;
  color: #000000 !important;
  outline: none !important;
}
.form-select-group .form-select:hover {
  border-bottom-color: #1cabab !important;
}
.form-select-group .form-select::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-select-group .form-select::placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-select-group .form-select::-webkit-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-select-group .form-select::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-select-group .form-select:-ms-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-select-group .form-select:-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .form-select-group .form-select {
    font-size: 1.8rem !important;
  }
}

.form-select-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #1cabab;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.form-select-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.form-select-group:focus-within .form-select-icon {
  color: #1cabab;
}

.form-select-group:hover .form-select-icon {
  color: #1cabab;
}

/* Custom Select Dropdown Options Styling */
.form-select option {
  background-color: #ffffff;
  color: #000000;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 400;
  border: none;
  line-height: 1.4;
}
.form-select option:hover {
  background-color: #e6e6e6;
}
.form-select option:checked, .form-select option:selected {
  background-color: #1cabab;
  color: #ffffff;
}
.form-select option:first-child {
  color: #b3b3b3;
}

/* Custom dropdown styling for webkit browsers */
.form-select-group .form-select:focus {
  outline: none;
}

/* Style the dropdown when opened */
.form-select-group .form-select:focus {
  border-bottom-color: #1cabab;
}

/* Scrollbar styling is now handled by global scrollbar styles */
/* Form Date Component */
.form-date-wrapper {
  margin-bottom: 1rem;
}

.form-date-group {
  position: relative;
  display: flex;
  align-items: center;
}

.form-date-group .input-group {
  border-bottom: 1px solid #e6e6e6;
  transition: all 0.3s ease-in-out;
  flex: 1;
  height: 5.2rem;
}
.form-date-group .input-group:focus-within {
  border-bottom-color: #1cabab;
}
.form-date-group .input-group .form-control {
  border-bottom: none;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.2rem 2rem 1.2rem 0;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
.form-date-group .input-group .form-control:focus {
  background: transparent;
  border-color: #1cabab;
  box-shadow: none;
  color: #000000;
}
.form-date-group .input-group .form-control::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-date-group .input-group .form-control::placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-date-group .input-group .form-control::-webkit-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-date-group .input-group .form-control::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-date-group .input-group .form-control:-ms-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-date-group .input-group .form-control:-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .form-date-group .input-group .form-control {
    font-size: 1.8rem;
  }
}
.form-date-group .input-group .input-group-text {
  background: transparent;
  border: none;
  color: #b3b3b3;
  padding: 1.2rem 0;
}

/* Form Time Component */
.form-time-wrapper {
  margin-bottom: 1rem;
}

.form-time-group {
  position: relative;
  display: flex;
  align-items: center;
}

.form-time-group .input-group {
  border-bottom: 1px solid #e6e6e6;
  transition: all 0.3s ease-in-out;
  flex: 1;
  height: 5.2rem;
}
.form-time-group .input-group:focus-within {
  border-bottom-color: #1cabab;
}
.form-time-group .input-group .form-control {
  border-bottom: none;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.2rem 2rem 1.2rem 0;
  transition: all 0.3s ease-in-out;
}
.form-time-group .input-group .form-control:focus {
  background: transparent;
  border-color: #1cabab;
  box-shadow: none;
  color: #000000;
}
.form-time-group .input-group .form-control::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-time-group .input-group .form-control::placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-time-group .input-group .form-control::-webkit-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-time-group .input-group .form-control::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-time-group .input-group .form-control:-ms-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-time-group .input-group .form-control:-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .form-time-group .input-group .form-control {
    font-size: 1.8rem;
  }
}
.form-time-group .input-group .input-group-text {
  background: transparent;
  border: none;
  color: #b3b3b3;
  padding: 1.2rem 0;
}

/* Form Textarea Component */
.form-textarea-wrapper {
  margin-bottom: 1rem;
}

.form-textarea-group {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
}
.form-textarea-group .required-asterisk {
  top: 2rem !important;
}

.form-textarea-group .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding: 0.2rem 2rem 1.2rem 0;
  transition: all 0.3s ease-in-out;
  flex: 1;
  resize: vertical;
  min-height: auto;
  font-size: 1.8rem;
  max-height: 3.2rem;
  display: flex;
  align-items: flex-end;
  vertical-align: bottom;
  min-height: 5.2rem;
}
@media screenn and (min-width: 1920px) {
  .form-textarea-group .form-control {
    min-height: 15rem;
  }
}
.form-textarea-group .form-control:focus {
  background: transparent;
  border-color: #1cabab;
  box-shadow: none;
  color: #000000;
}
.form-textarea-group .form-control::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-textarea-group .form-control::placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-textarea-group .form-control::-webkit-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-textarea-group .form-control::-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-textarea-group .form-control:-ms-input-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.form-textarea-group .form-control:-moz-placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .form-textarea-group .form-control {
    font-size: 1.8rem;
  }
}

/* Has Error State */
.has-error .form-control,
.has-error .form-select {
  border-bottom-color: #f52d2d !important;
}
.has-error .form-control:focus,
.has-error .form-select:focus {
  border-bottom-color: #f52d2d !important;
  box-shadow: none;
}
.has-error .input-group {
  border-bottom-color: #f52d2d !important;
}
.has-error .input-group .form-control {
  border-bottom-color: #f52d2d !important;
}
.has-error .input-group .form-control:focus {
  border-bottom-color: #f52d2d !important;
}

/* Form Error Messages */
.form-error-message {
  font-size: 1.6rem;
  color: #f52d2d !important;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Error State for Form Controls */
.form-control.is-invalid,
.form-select.is-invalid {
  border-bottom-color: #f52d2d !important;
}
.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-bottom-color: #f52d2d !important;
  box-shadow: none;
}

.input-group.is-invalid {
  border-bottom-color: #f52d2d !important;
}
.input-group.is-invalid .form-control {
  border-bottom-color: #f52d2d !important;
}
.input-group.is-invalid .form-control:focus {
  border-bottom-color: #f52d2d !important;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .form-input-wrapper,
  .form-select-wrapper,
  .form-date-wrapper,
  .form-time-wrapper,
  .form-textarea-wrapper {
    margin-bottom: 1.5rem;
  }
}
/* =========================
   Giving Page
   ========================= */
/* =========================
   Talking Accountability Component
   ========================= */
.talking-accountability-section {
  padding: clamp(5rem, 15vw, 10rem) 0;
  background-color: #000000;
  color: #ffffff;
}

.talking-accountability-content {
  max-width: 100%;
}

.talking-accountability-title {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.talking-accountability-subtitle {
  margin-bottom: 5rem;
  max-width: 80rem;
}

.stats-container {
  display: flex;
  gap: 4rem;
  margin-top: 19vh;
}
@media (max-width: 991.98px) {
  .stats-container {
    flex-direction: column;
    margin-top: 5rem;
    gap: 0;
  }
}

.stat-item {
  padding: 0 4rem;
  position: relative;
  border-left: 1px solid #e6e6e6;
}
@media (max-width: 991.98px) {
  .stat-item {
    border-left: none;
    padding-left: 0;
    border-bottom: none;
  }
  .stat-item:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
    padding: 0 0 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.stat-number {
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
}

.stat-description {
  color: #ffffff;
  font-weight: 400;
  margin-top: 5rem;
}
@media (max-width: 991.98px) {
  .stat-description {
    margin-top: 1.5rem;
  }
}

/* Responsive Adjustments */
/* =========================
   Partnerships Component
   ========================= */
.partnerships-header {
  margin-bottom: 2.5rem;
}

.partnerships-title {
  color: #000000;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0;
}

.partnerships-subtitle {
  color: #737373;
  margin-bottom: 0;
}

/* Partnerships Grid */
.partnerships-grid {
  margin-top: 5rem;
}
.partnerships-grid .row {
  margin: 0;
}
.partnerships-grid .col-12 {
  padding: 0;
}

.partnership-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 4rem;
  border-left: 1px solid #e6e6e6;
}

.partnership-logo {
  margin-bottom: 8rem;
  display: flex;
  align-items: center;
  min-height: 4rem;
}
.partnership-logo .partnership-logo-img {
  max-width: 100%;
  max-height: 4rem;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 991.98px) {
  .partnership-logo {
    margin-bottom: 3.5rem;
  }
}

.partnership-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partnership-name {
  color: #000000;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
@media (max-width: 991.98px) {
  .partnership-name {
    font-size: 1.6rem;
  }
}

.partnership-description {
  flex: 1;
}
.partnership-description p {
  color: #737373;
}
.partnership-description p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .partnership-card {
    padding: 0 0 5rem;
    margin-bottom: 5rem;
    border-left: none;
    border-bottom: 1px solid #e6e6e6;
    height: auto;
    display: block;
  }
  .partnerships-section .partnerships-grid > .row > div {
    margin-top: 0 !important;
  }
  .partnerships-section .partnerships-grid > .row > div:last-child .partnership-card {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
/* =========================
   Executive Team Slider Component
   ========================= */
.executive-team-title {
  color: #000000;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.executive-team-subtitle {
  color: #737373;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 80rem;
}
@media (max-width: 991.98px) {
  .executive-team-subtitle {
    font-size: 1.6rem;
  }
}

.executive-team-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7.5rem;
  gap: 5rem;
}

/* Navigation */
.executive-team-nav {
  display: flex;
  justify-content: flex-end;
  position: relative;
  left: auto;
  bottom: auto;
  top: auto;
}
.executive-team-nav button {
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
}
.executive-team-nav button:hover {
  background: #000000;
  color: #ffffff;
}
.executive-team-nav button:first-child {
  border-right: none;
}

/* Slider */
@media (min-width: 768px) {
  .executive-team-slider {
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
  }
}
.executive-team-slider .slick-slide {
  padding: 0 2rem;
}
.executive-team-slider .slick-track {
  display: flex;
  align-items: stretch;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .executive-team-top {
    margin-bottom: 5rem;
  }
  .executive-team-section .slider-nav-mobile {
    position: relative;
    margin-top: 5rem !important;
    margin-bottom: 0 !important;
    margin-left: 0;
    justify-content: flex-start;
  }
  .executive-team-slider .slick-slide {
    padding: 0;
  }
}
/* =========================
   Terms and Conditions Page
   ========================= */
/* Main Content */
.terms-sidebar {
  margin-top: 21.5rem;
}
@media (max-width: 991.98px) {
  .terms-sidebar {
    display: none;
  }
}

.terms-content {
  margin-top: 7rem;
}
@media (max-width: 991.98px) {
  .terms-content {
    margin-top: 2.5rem;
  }
}

.terms-title {
  color: #000000;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

.terms-text {
  max-width: 72rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.terms-text h2, .terms-text .h2,
.terms-text h3,
.terms-text .h3,
.terms-text h1,
.terms-text .h1,
.terms-text h4,
.terms-text .h4,
.terms-text h5,
.terms-text .h5,
.terms-text h6,
.terms-text .h6 {
  color: #737373;
  font-weight: 400;
  margin-bottom: 2.5rem;
  letter-spacing: 1.5px;
}
.terms-text h2, .terms-text .h2,
.terms-text h3,
.terms-text .h3,
.terms-text h4,
.terms-text .h4,
.terms-text h5,
.terms-text .h5,
.terms-text h6,
.terms-text .h6 {
  font-size: 1.5rem;
}
.terms-text strong,
.terms-text b {
  font-weight: 700;
}
.terms-text a {
  color: #000000;
  text-decoration: underline;
}
.terms-text a:hover {
  color: #1cabab;
}
.terms-text ol {
  counter-reset: custom-counter;
  padding-left: 0;
  margin-bottom: 2.5rem;
}
.terms-text ol li {
  counter-increment: custom-counter;
  list-style: none;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.terms-text ol li:last-child {
  margin-bottom: 0;
}
.terms-text ol li::before {
  content: "(" counter(custom-counter, lower-alpha) ")";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
}
.terms-text .terms-section > *:last-child {
  margin-bottom: 0 !important;
}

.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-section {
  margin-bottom: 5rem;
}
@media (max-width: 991.98px) {
  .sidebar-section {
    display: none;
  }
}

.sidebar-title.mission-subtitle {
  margin-bottom: 2.5rem;
}

/* Responsive Design */
/* =========================
   Privacy Policy Page
   ========================= */
.privacy-policy-page {
  padding: clamp(6rem, 12vw, 12rem) 0;
  background-color: #ffffff;
}

/* Main Content */
.privacy-content {
  padding-right: 2rem;
}

.privacy-title {
  color: #000000;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 4rem;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.2;
}

.privacy-text {
  max-width: 72rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000000;
}
.privacy-text h2, .privacy-text .h2,
.privacy-text h3,
.privacy-text .h3,
.privacy-text h1,
.privacy-text .h1,
.privacy-text h4,
.privacy-text .h4,
.privacy-text h5,
.privacy-text .h5,
.privacy-text h6,
.privacy-text .h6 {
  color: #737373;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.privacy-text h2, .privacy-text .h2,
.privacy-text h3,
.privacy-text .h3,
.privacy-text h4,
.privacy-text .h4,
.privacy-text h5,
.privacy-text .h5,
.privacy-text h6,
.privacy-text .h6 {
  font-size: 1.5rem;
}
.privacy-text strong,
.privacy-text b {
  font-weight: 700;
}
.privacy-text a {
  color: #000000;
  text-decoration: underline;
}
.privacy-text a:hover {
  color: #1cabab;
}
.privacy-text ol {
  counter-reset: custom-counter;
  padding-left: 0;
  margin-bottom: 2.5rem;
}
.privacy-text ol li {
  counter-increment: custom-counter;
  list-style: none;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.privacy-text ol li:last-child {
  margin-bottom: 0;
}
.privacy-text ol li::before {
  content: "(" counter(custom-counter, lower-alpha) ")";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
}

.privacy-section {
  margin-bottom: 5rem;
}
.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-text p {
  margin-bottom: 2.5rem;
}
.privacy-text p:last-child {
  margin-bottom: 0;
}

/* Sidebar */
.privacy-sidebar {
  padding-left: 2rem;
}

.sidebar-section {
  margin-bottom: 5rem;
}
.sidebar-section:last-child {
  margin-bottom: 0;
}

.sidebar-title {
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-contact .sidebar-button {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .privacy-policy-page {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  .privacy-content {
    padding-right: 0;
    margin-bottom: 4rem;
  }
  .privacy-sidebar {
    padding-left: 0;
  }
  .privacy-title {
    margin-bottom: 3rem;
  }
  .privacy-text {
    font-size: 1.4rem;
    max-width: 100%;
  }
  .privacy-text ol li {
    padding-left: 2.5rem;
    margin-bottom: 1rem;
  }
  .privacy-section {
    margin-bottom: 3rem;
  }
  .sidebar-section {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767.98px) {
  .privacy-text ol li {
    padding-left: 2rem;
  }
}
/* =========================
   Borrow Product Page
   ========================= */
.borrow-product-page {
  background-color: #ffffff;
}

/* =========================
   Products Component
   ========================= */
.products-header {
  text-align: left;
  margin-bottom: 5rem;
}
@media (max-width: 991.98px) {
  .products-header {
    margin-bottom: 0rem;
  }
}

.products-title {
  color: #000000;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.2;
}

/* Products Grid */
.products-grid .row {
  margin: 0 -2rem;
}
.products-grid .col-12 {
  padding: 0 2rem;
}
.products-grid .col-12:nth-child(n+4) {
  margin-top: 10rem;
}
@media (max-width: 991.98px) {
  .products-grid .col-12 {
    margin-top: 5rem !important;
  }
  .products-grid .col-12 .product-item {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 5rem;
  }
}

.product-item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  height: 100%;
}

.product-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 5rem;
}
.product-image .product-img {
  width: 100%;
  aspect-ratio: 540/400;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.product-image:hover .product-img {
  transform: scale(1.05);
}
@media (max-width: 991.98px) {
  .product-image {
    margin-bottom: 2.5rem;
  }
}

.product-content {
  display: flex;
  flex-direction: column;
}

.product-title {
  color: #000000;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.product-description {
  color: #737373;
  margin-bottom: 0rem;
}
@media (max-width: 991.98px) {
  .product-description {
    margin-bottom: 0;
  }
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 991.98px) {
  .product-details {
    display: none;
  }
}

.product-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e6e6e6;
}

.detail-label {
  color: #000000;
  font-weight: 700;
}

.detail-value {
  color: #737373;
  margin-bottom: 0;
}

.product-read-more {
  display: none !important;
  margin-top: 0;
}
.product-read-more .article-link svg {
  transition: transform 0.3s ease;
}
.product-read-more .article-link:hover svg {
  transform: translateY(-2px);
}

/* =========================
   Fund Performance Component
   ========================= */
.fund-performance-content {
  margin: 0 auto;
}

.fund-performance-title {
  color: #ffffff;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 7.5rem;
}
@media (max-width: 991.98px) {
  .fund-performance-title {
    margin-bottom: 5rem;
  }
}

/* Performance Table */
.fund-performance-table {
  margin-bottom: 7.5rem;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .fund-performance-table {
    margin-bottom: 5rem;
  }
}

.performance-table-header {
  margin-bottom: 2rem;
}

.table-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.performance-table-body {
  display: table;
  max-width: 81.4rem;
  border-collapse: separate;
  border-spacing: 0;
}
@media (max-width: 991.98px) {
  .performance-table-body {
    display: flex !important;
    flex-direction: column;
  }
  .performance-table-body .performance-table-item {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    border-bottom: 1px solid #393939;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .performance-table-body .performance-table-item .period-label {
    border-bottom: none;
  }
  .performance-table-body .performance-table-item .period-label,
  .performance-table-body .performance-table-item .period-return {
    padding: 0;
  }
  .performance-table-body .performance-table-item:first-child .performance-table-item {
    color: #737373;
  }
}

.performance-table-item {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}
.performance-table-item:first-child .period-return {
  color: #737373;
}
@media (min-width: 992px) {
  .performance-table-item:not(:first-child) .period-label,
  .performance-table-item:not(:first-child) .period-return {
    min-width: 9.4rem;
  }
}
.performance-table-item:last-child .period-label,
.performance-table-item:last-child .period-return {
  padding-right: 0;
}

.period-label {
  color: #ffffff;
  font-weight: 700;
  padding: 0 2.5rem 2.5rem 0;
  border-bottom: 1px solid #393939;
}

.period-return {
  color: #ffffff;
  padding: 2.5rem 2.5rem 2.5rem 0;
}

/* Key Metrics */
.fund-performance-metrics {
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 991.98px) {
  .fund-performance-metrics {
    flex-direction: column;
    gap: 2rem;
  }
}

.fund-metric-item {
  flex: 1;
  padding-left: 4rem;
  border-left: 1px solid #393939;
}
@media (max-width: 991.98px) {
  .fund-metric-item {
    padding-left: 0;
    border-left: none;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #393939;
  }
  .fund-metric-item:last-child {
    margin-bottom: 0;
  }
}

.metric-number {
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1;
}

.metric-description {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metric-sub-description {
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .metric-sub-description {
    font-size: 1.2rem;
  }
}

/* Footnote */
.fund-performance-footnote {
  text-align: left;
}
.fund-performance-footnote p {
  color: #737373;
  margin-bottom: 0;
}

/* =========================
   Trusted Component
   ========================= */
.trusted-content {
  width: 100%;
}

.trusted-grid {
  display: flex;
  flex-direction: row;
  /* Columns */
}
.trusted-grid .trusted-column {
  padding: 0 4rem;
  border-left: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  row-gap: 5rem;
}
.trusted-grid .trusted-column.trusted-column-1 {
  width: auto;
}
@media (min-width: 992px) {
  .trusted-grid .trusted-column.trusted-column-1 .trusted-description {
    width: calc(100% + 3rem);
  }
}
.trusted-grid .trusted-column.trusted-column-2 {
  width: auto;
  max-width: 33%;
  display: flex;
}
@media (min-width: 992px) {
  .trusted-grid .trusted-column.trusted-column-2 {
    padding-right: 7.5rem;
  }
}
@media (min-width: 992px) {
  .trusted-grid .trusted-column.trusted-column-2 {
    padding-right: 12.5rem;
  }
}
@media (min-width: 992px) {
  .trusted-grid .trusted-column.trusted-column-2 .trusted-description {
    width: calc(100% + 4rem);
  }
  .trusted-grid .trusted-column.trusted-column-2 + .trusted-column-2 {
    border-left: none;
    margin-left: -8.5rem;
  }
  .trusted-grid .trusted-column.trusted-column-2 + .trusted-column-2 .trusted-description {
    width: calc(100% + 8rem);
  }
}
.trusted-grid .trusted-column.trusted-column-3 {
  width: 50%;
  flex-shrink: 1;
  padding-right: 0;
}
.trusted-grid .trusted-column.trusted-column-1, .trusted-grid .trusted-column.trusted-column-2 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  row-gap: 5rem;
}
.trusted-grid .trusted-column.trusted-column-3 .platforms-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2.5rem;
  width: calc(100% + 5rem);
}
.trusted-grid .trusted-column.trusted-column-3 .platforms-grid .platform-item {
  padding: 0 2.5rem;
  width: 25%;
  display: flex;
  align-items: center;
}
.trusted-grid .trusted-column.trusted-column-3 .platforms-grid .platform-item img {
  max-width: 100%;
}
.trusted-grid .trusted-column.trusted-column-3 .platforms-grid .platform-item:nth-child(n+5) {
  margin-top: 5rem;
}
@media screen and (max-width: 1600px) {
  .trusted-grid .trusted-column.trusted-column-3 .platforms-grid .platform-item {
    width: 50%;
  }
  .trusted-grid .trusted-column.trusted-column-3 .platforms-grid .platform-item:nth-child(n+3) {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 1200px) {
  .trusted-grid .trusted-column.trusted-column-3 .platforms-grid .platform-item {
    width: 50%;
  }
  .trusted-grid .trusted-column.trusted-column-3 .platforms-grid .platform-item:nth-child(n+3) {
    margin-top: 5rem;
  }
}

.trusted-ratings-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 5rem;
  height: 100%;
  justify-content: space-between;
}

.external-grid {
  flex-direction: column;
  display: flex;
  flex-wrap: nowrap;
  gap: 5rem;
  height: 100%;
  align-items: start;
  justify-content: space-between;
}

.trusted-title {
  color: #000000;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 5rem;
  text-align: left;
}

.trusted-item {
  margin-bottom: 3rem;
}
.trusted-item:last-child {
  margin-bottom: 0;
}

/* Logos */
.trusted-logo {
  height: 15rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
}
.trusted-logo img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Text */
.trusted-title-text {
  color: #000000;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.trusted-description {
  color: #737373;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 2rem;
  text-align: left;
}

/* Rating */
.rating-value {
  color: #000000;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.rating-stars .star {
  font-size: 2rem;
}
.rating-stars .star.filled {
  color: #1cabab;
}
.rating-stars .star.outline {
  color: rgba(28, 171, 171, 0.3);
}

@media (min-width: 992px) {
  .rating-logo-0 {
    max-height: 12.8rem;
  }
  .rating-logo-1 {
    max-height: 11.1rem;
  }
}
/* Mobile Slider */
@media (max-width: 767.98px) {
  .trusted-mobile-slider {
    width: calc(100% + 2rem);
    margin-right: -2rem;
  }
}
.trusted-mobile-slider .trusted-slider .slick-slide {
  width: 290px !important;
}

.trusted-slide {
  width: 258px;
}
.trusted-slide .trusted-slide-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 100%;
  border-left: 1px solid #e6e6e6;
  padding-left: 3rem;
  padding-right: 3rem;
}
.trusted-slide .trusted-logo {
  margin-bottom: 5rem;
  height: 12.5rem;
  padding: 0;
  align-items: start;
}
.trusted-slide .trusted-logo img {
  max-width: 100%;
  max-height: 10rem;
  height: auto;
}
.trusted-slide .trusted-description {
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .trusted-logo.certification-logo-0 img {
    max-height: 100% !important;
  }
}
/* =========================
   Disclaimer Component
   ========================= */
.disclaimer-title {
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: left;
  color: #b3b3b3;
  border-top: 1px solid #e6e6e6;
  padding-top: 5rem;
  margin-top: 0;
}

/* Desktop Content */
.disclaimer-text {
  color: #b3b3b3;
}
.disclaimer-text p {
  color: #b3b3b3;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.disclaimer-text p:last-child {
  margin-bottom: 0;
}

/* Mobile Content */
.disclaimer-mobile .disclaimer-content-mobile p {
  color: #b3b3b3;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.disclaimer-mobile .disclaimer-content-mobile p:last-child {
  margin-bottom: 0;
}
.disclaimer-mobile .disclaimer-full {
  margin-top: 1.5rem;
}

/* Read More Button */
.disclaimer-read-more {
  margin-top: 2rem;
}
.disclaimer-read-more a {
  color: #b3b3b3;
}
.disclaimer-read-more a svg path {
  stroke: #b3b3b3;
}

/* Mobile Content */
.disclaimer-mobile .disclaimer-content-mobile p {
  color: #b3b3b3;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.disclaimer-mobile .disclaimer-content-mobile.expanded p {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: unset;
}
.disclaimer-mobile .typo-desktop-section-tag {
  color: #b3b3b3;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .disclaimer-read-more {
    margin-top: 2.5rem;
  }
  .disclaimer-read-more svg path {
    stroke: #b3b3b3;
  }
}
@media (max-width: 767.98px) {
  .news-section + .disclaimer-section {
    margin-top: 0 !important;
  }
  .news-section + .disclaimer-section .disclaimer-title {
    border-top: none !important;
  }
}
/* =========================
   Offering to Investors Component
   ========================= */
.offering-investors-content {
  width: 100%;
}

.offering-investors-section.bg-black {
  margin: 0;
}
.offering-investors-section.bg-black .offering-investors-title {
  color: #ffffff;
}
.offering-investors-section.bg-black .offering-title {
  color: #ffffff;
}
.offering-investors-section.bg-black .offering-icon-img {
  filter: brightness(0) invert(1);
}
.offering-investors-section.bg-black .offering-item.highlight .offering-icon-img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(7500%) hue-rotate(358deg) brightness(100%) contrast(118%);
}
.offering-investors-section.bg-white, .offering-investors-section:not(.bg-black) {
  background: #ffffff;
}
.offering-investors-section.bg-white .offering-investors-title, .offering-investors-section:not(.bg-black) .offering-investors-title {
  color: #000000;
}
.offering-investors-section.bg-white .offering-title, .offering-investors-section:not(.bg-black) .offering-title {
  color: #000000;
}
.offering-investors-section.bg-white .offering-icon-img, .offering-investors-section:not(.bg-black) .offering-icon-img {
  filter: brightness(0) invert(0);
}
.offering-investors-section.bg-white .offering-item.highlight .offering-icon-img, .offering-investors-section:not(.bg-black) .offering-item.highlight .offering-icon-img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(7500%) hue-rotate(358deg) brightness(100%) contrast(118%);
}

.offering-investors-title {
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 7.5rem;
  text-align: left;
}

/* Desktop Grid */
.offering-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.offering-grid .offering-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5.95rem 2.5rem;
  position: relative;
}
.offering-grid .offering-item:before {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 0;
  content: "";
  height: 1px;
  background: #e6e6e6;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.offering-grid .offering-item:after {
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  right: 0rem;
  content: "";
  width: 1px;
  background: #e6e6e6;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.offering-grid .offering-item:nth-child(5n):after {
  display: none;
}
.offering-grid .offering-item:nth-child(n+6):before {
  display: none;
}
.offering-grid .offering-item--inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.offering-grid .offering-item:hover .offering-hover-overlay {
  opacity: 1;
  visibility: visible;
}
.offering-grid .offering-item:hover .offering-icon,
.offering-grid .offering-item:hover .offering-content {
  opacity: 0;
}

/* Offering Item */
.offering-icon {
  margin-bottom: 2.5rem;
  transition: all 0.3s ease-in-out;
}
.offering-icon .offering-icon-img {
  width: 10rem;
  height: 10rem;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

.offering-content {
  transition: all 0.3s ease-in-out;
}
.offering-content .offering-title {
  margin-bottom: 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Hover Overlay */
.offering-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
  color: #000000;
}
@media screen and (min-width: 992px) and (max-width: 1600px) {
  .offering-hover-overlay .offering-hover-description {
    font-size: 1.6rem !important;
  }
}

.bg-white .offering-hover-overlay .offering-hover-description {
  color: #000000;
}

.bg-black .offering-hover-description {
  color: #ffffff !important;
}
.bg-black .offering-hover-overlay {
  background: rgba(0, 0, 0, 0.9);
}

.offering-hover-content {
  text-align: center;
}
.offering-hover-content .offering-hover-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.offering-hover-content .offering-hover-description {
  margin-bottom: 0;
  opacity: 1;
}

/* Highlight State - handled by background-specific styles above */
/* Mobile Slider */
@media (max-width: 767.98px) {
  .offering-mobile-slider .offering-slider {
    margin-right: -2rem;
    width: calc(100% + 2rem);
  }
}
.offering-mobile-slider .offering-slider .slick-slide {
  width: 25.8rem !important;
}
.offering-mobile-slider .offering-item:hover .offering-hover-overlay {
  opacity: 0;
  visibility: hidden;
}
.offering-mobile-slider .offering-item:hover .offering-icon,
.offering-mobile-slider .offering-item:hover .offering-content {
  opacity: 1;
}

.offering-slide {
  width: 25.8rem;
}
.offering-slide .offering-item {
  display: flex;
  flex-direction: column;
  padding: 0 4rem;
  border-left: 1px solid #e6e6e6;
  height: 100%;
}

.bg-white .offering-slide .offering-item {
  display: flex;
  border-left: 1px solid #e6e6e6;
}

.bg-black .offering-slide .offering-item {
  display: flex;
  border-left: 1px solid #393939;
}

/* Offering Modal Styles */
.offering-detail-modal .modal-content {
  background: #ffffff;
  border: none;
  border-radius: 0;
}
.offering-detail-modal .modal-header {
  border: none;
  padding: 2rem 2rem 0;
}
.offering-detail-modal .modal-header .btn-close {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  opacity: 1;
}
.offering-detail-modal .modal-header .btn-close svg {
  width: 2.3rem;
  height: 2.2rem;
}
.offering-detail-modal .modal-body {
  padding: 2rem;
  max-height: 80vh;
  overflow-y: auto;
}

.offering-modal-info .offering-top {
  margin-bottom: 2.5rem;
}
.offering-modal-info .offering-top .offering-modal-icon {
  margin-bottom: 2.5rem;
}
.offering-modal-info .offering-top .offering-modal-icon .offering-modal-icon-img {
  width: 10rem;
  height: 10rem;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(0);
}
.offering-modal-info .offering-top .offering-modal-icon .offering-modal-icon-img.highlight {
  filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(7500%) hue-rotate(358deg) brightness(100%) contrast(118%);
}
.offering-modal-info .offering-top .offering-modal-title {
  color: #000000;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}
.offering-modal-info .offering-bottom .offering-modal-description p {
  color: #737373;
  margin-bottom: 0;
}

/* =========================
   About Page Styles
   ========================= */
/* Learn More Section */
.learn-more-section {
  padding: clamp(6rem, 12vw, 12rem) 0;
  background-color: #ffffff;
}

.learn-more-content {
  max-width: 80rem;
  margin: 0 auto;
}

.learn-more-title {
  color: #000000;
  margin-bottom: 3rem;
  font-weight: 700;
}

.learn-more-text {
  color: #737373;
  line-height: 1.8;
  font-size: 1.8rem;
}
@media (max-width: 991.98px) {
  .learn-more-text {
    font-size: 1.6rem;
  }
}

/* Values Section */
.values-section {
  padding: clamp(6rem, 12vw, 12rem) 0;
  background-color: #e6e6e6;
}

.values-content {
  max-width: 100rem;
  margin: 0 auto;
}

.values-title {
  color: #000000;
  margin-bottom: 5rem;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 991.98px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.value-item {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-title {
  color: #000000;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 2rem;
}

.value-text {
  color: #737373;
  line-height: 1.6;
  font-size: 1.6rem;
}

/* Team Section */
.team-section {
  padding: clamp(6rem, 12vw, 12rem) 0;
  background-color: #ffffff;
}

.team-content {
  max-width: 80rem;
  margin: 0 auto;
}

.team-title {
  color: #000000;
  margin-bottom: 3rem;
  font-weight: 700;
}

.team-text {
  color: #737373;
  line-height: 1.8;
  font-size: 1.8rem;
  margin-bottom: 4rem;
}
@media (max-width: 991.98px) {
  .team-text {
    font-size: 1.6rem;
  }
}

.team-cta {
  display: flex;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .learn-more-section,
  .values-section,
  .team-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  .values-title,
  .team-title {
    margin-bottom: 2rem;
  }
  .value-item {
    padding: 2rem 1.5rem;
  }
  .value-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .value-text {
    font-size: 1.4rem;
  }
}
@media (max-width: 767.98px) {
  .values-grid {
    gap: 2rem;
  }
  .value-item {
    padding: 2rem 1rem;
  }
}
/* =========================
   Contact Template
   ========================= */
/* Contact Hero Section */
.contact-hero-section .text-image-content {
  padding: 5rem 0;
}
.contact-hero-section .text-image-title {
  color: #000000;
}
.contact-hero-section .text-image-text {
  color: #000000;
  margin-bottom: 4rem;
  line-height: 1.5;
}
.contact-hero-section .contact-form .row {
  margin-bottom: 2rem;
}
.contact-hero-section .form-submit-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 5rem;
}
@media (min-width: 992px) {
  .contact-hero-section .form-submit-wrapper .contact-submit-btn {
    width: 35.3rem;
    max-width: 50%;
  }
}
@media (max-width: 991.98px) {
  .contact-hero-section .form-submit-wrapper {
    flex-direction: column-reverse;
    gap: 5rem;
    align-items: flex-start;
  }
  .contact-hero-section .form-submit-wrapper .btn {
    width: 100%;
  }
}
.contact-hero-section .text-image-visual {
  height: 100%;
}
.contact-hero-section .text-image-visual .text-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .form-content .row.g-50,
  .contact-form .form-content .row {
    margin-bottom: 0 !important;
  }
}

/* Contact Info Section - Moved to separate component */
/* Newsletter Section */
.newsletter-section {
  padding: clamp(6rem, 12vw, 12rem) 0;
  background-color: #e6e6e6;
}
.newsletter-section .newsletter-content {
  max-width: 60rem;
  margin: 0 auto;
}
.newsletter-section .newsletter-title {
  color: #000000;
  font-weight: 700;
  margin-bottom: 4rem;
  line-height: 1.2;
}
.newsletter-section .newsletter-form .newsletter-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 0;
  overflow: hidden;
}
.newsletter-section .newsletter-form .newsletter-input-group .newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1.5rem 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
}
.newsletter-section .newsletter-form .newsletter-input-group .newsletter-input::-moz-placeholder {
  color: #b3b3b3;
  font-weight: 400;
}
.newsletter-section .newsletter-form .newsletter-input-group .newsletter-input::placeholder {
  color: #b3b3b3;
  font-weight: 400;
}
.newsletter-section .newsletter-form .newsletter-input-group .newsletter-input:focus {
  outline: none;
  box-shadow: none;
}
.newsletter-section .newsletter-form .newsletter-input-group .newsletter-submit-btn {
  background-color: #000000;
  border: none;
  padding: 1.5rem 2rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.newsletter-section .newsletter-form .newsletter-input-group .newsletter-submit-btn:hover {
  background-color: #1cabab;
}
.newsletter-section .newsletter-form .newsletter-input-group .newsletter-submit-btn svg {
  width: 1.6rem;
  height: 1.6rem;
}

/* Custom Select Styling for Reason of Contact */
.form-select-group {
  position: relative;
}
.form-select-group .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  padding-right: 4rem;
}
.form-select-group .form-select:focus {
  outline: none;
  box-shadow: none;
}
.form-select-group .form-select-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #b3b3b3;
  transition: all 0.3s ease-in-out;
}
.form-select-group .form-select-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}
.form-select-group:focus-within .form-select-icon {
  color: #1cabab;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .contact-hero-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  .contact-hero-section .contact-hero-content {
    margin-bottom: 3rem;
  }
  .contact-hero-section .contact-hero-title {
    margin-bottom: 1.5rem;
  }
  .contact-hero-section .contact-hero-subtitle {
    margin-bottom: 3rem;
  }
  .contact-info-section {
    /* Contact info styles moved to separate component */
  }
  .newsletter-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  .newsletter-section .newsletter-title {
    margin-bottom: 3rem;
  }
}
/* =========================
   Contact Info Component
   ========================= */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
@media (max-width: 767.98px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 0.3s ease-in-out;
  border-left: 1px solid #e6e6e6;
  padding: 0 4rem;
}
@media (max-width: 991.98px) {
  .contact-info-item {
    padding-left: 0;
    border-left: none;
  }
  .contact-info-item:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .contact-info-item {
    padding: 0;
  }
}

.contact-info-icon {
  display: flex;
  height: 2.5rem;
}
.contact-info-icon img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.contact-info-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.contact-info-title {
  color: #000000;
  font-weight: 700;
  margin: 0;
}

.contact-info-content .contact-info-text {
  color: #737373;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.contact-info-content .contact-info-text:last-child {
  margin-bottom: 0;
}

.contact-link {
  color: #737373;
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .contact-link:hover {
    color: #000000;
  }
}

/* =========================
   Custom Dropdown Component
   ========================= */
.custom-dropdown-wrapper {
  margin-bottom: 2rem;
}

.custom-dropdown-group {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-dropdown-trigger {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0;
  color: #000000;
  font-weight: 400;
  padding: 0.2rem 0 1rem 0;
  transition: all 0.3s ease-in-out;
  flex: 1;
  height: 5.2rem;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.custom-dropdown-trigger:focus {
  border-bottom-color: #1cabab;
  outline: none;
}
.custom-dropdown-trigger:hover {
  border-bottom-color: #1cabab;
}
.custom-dropdown-trigger .custom-dropdown-text {
  color: #000000;
  font-weight: 400;
}
.custom-dropdown-trigger .custom-dropdown-icon {
  color: #000000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-dropdown-trigger .custom-dropdown-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  transition: all 0.3s ease;
}
.custom-dropdown-trigger .custom-dropdown-icon svg path {
  stroke: #000;
}
.custom-dropdown-trigger .custom-dropdown-icon svg.open path {
  stroke: #b3b3b3;
}

.custom-dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 2.5rem;
  top: calc(100% - 1px) !important;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.custom-dropdown-menu.open {
  top: calc(100% - 1px) !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-dropdown-menu .custom-dropdown-option {
  padding: 0 0 2rem !important;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 2rem;
  color: #737373;
}
.custom-dropdown-menu .custom-dropdown-option:last-child {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  border-bottom: none;
}
.custom-dropdown-menu .custom-dropdown-option:hover {
  color: #000000 !important;
  background-color: transparent !important;
}
.custom-dropdown-menu .custom-dropdown-option[data-selected=true] {
  color: #000000 !important;
  background-color: transparent !important;
}
@media (min-width: 992px) {
  .custom-dropdown-menu .custom-dropdown-option {
    font-size: 1.8rem;
  }
}

/* Scrollbar styling is now handled by global scrollbar styles */
/* Required asterisk */
.custom-dropdown-group .required-asterisk {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #b3b3b3;
  font-weight: 400;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 992px) {
  .custom-dropdown-group .required-asterisk {
    font-size: 1.8rem;
  }
}

/* Focus state for accessibility */
.custom-dropdown-trigger:focus {
  border-bottom-color: #1cabab;
}

/* =========================
   Investment Process Component
   ========================= */
.investment-process-content {
  width: 100%;
}

.investment-process-title {
  color: #000000;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.investment-process-description {
  color: #737373;
  margin-bottom: 0;
}

/* Desktop Layout (>= 1400px) */
.investment-process-desktop {
  align-items: flex-start;
  gap: 6rem;
}
.investment-process-desktop .investment-process-text {
  flex: 0 0 40%;
  max-width: 40.8rem;
}
@media (max-width: 1399px) {
  .investment-process-desktop .investment-process-text {
    flex: 1;
    max-width: 100%;
  }
}
@media (min-width: 1600px) {
  .investment-process-desktop .investment-process-text {
    max-width: 46.8rem;
  }
}
@media (min-width: 1920px) {
  .investment-process-desktop .investment-process-text {
    max-width: 54.8rem;
  }
}
.investment-process-desktop .investment-process-orbit {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin: 0;
  line-height: 0;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 1399px) {
  .investment-process-desktop .investment-process-orbit {
    width: 100%;
    min-height: 350px;
    padding: 1rem;
  }
}
@supports (-webkit-appearance: none) {
  .investment-process-desktop .investment-process-orbit {
    min-height: 400px;
  }
  @media (max-width: 1200px) {
    .investment-process-desktop .investment-process-orbit {
      min-height: 350px;
    }
  }
}

/* SVG Orbit Styling */
.orbit-svg {
  width: 100%;
  height: auto;
  max-width: 45rem;
  max-height: 45rem;
  display: block;
  overflow: visible;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
  transform: translateZ(0);
  backface-visibility: hidden;
  min-width: 0;
  min-height: 0;
}
@media (max-width: 1399px) {
  .orbit-svg {
    width: 100%;
    height: auto;
    max-width: 40rem;
    max-height: 40rem;
  }
}
@media (max-width: 1200px) {
  .orbit-svg {
    max-width: 35rem;
    max-height: 35rem;
  }
}
@supports (-webkit-appearance: none) {
  .orbit-svg {
    width: 100%;
    height: auto;
    max-width: 45rem;
    max-height: 45rem;
  }
  @media (max-width: 1600px) {
    .orbit-svg {
      max-width: 40rem;
      max-height: 40rem;
    }
  }
}
.orbit-svg g:hover .process-dot {
  fill: #1cabab;
}

/* Process Dots */
.process-dot {
  fill: #000000;
  stroke: #ffffff;
  stroke-width: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition: all 0.3s ease;
}

/* Process Numbers */
.process-number {
  fill: #ffffff;
  font-weight: 400;
  font-size: 1.5rem;
  text-anchor: middle;
  dominant-baseline: middle;
}

/* Process Labels */
.process-label {
  fill: #737373;
  font-size: 1.8rem; /* 18px */
  dominant-baseline: central;
  font-family: inherit;
  font-weight: 400;
  transition: fill 0.3s ease;
}
.process-label.right {
  text-anchor: start;
}
.process-label.left {
  text-anchor: end;
}

/* Animation for dots (only on screens >= 1400px) */
@media (min-width: 992px) {
  .process-dot {
    background-color: #000000;
  }
}
/* Mobile/Tablet Layout (< 1400px) */
.investment-process-mobile {
  text-align: center;
}
.investment-process-mobile .investment-process-title {
  text-align: left;
  margin-bottom: 3rem;
}
.investment-process-mobile .investment-process-description {
  text-align: left;
  margin-bottom: 5rem;
}

/* ESG Center Circle (Mobile) */
.esg-center {
  display: flex;
  margin-bottom: 5rem;
}
.esg-center .esg-circle {
  width: 7.2rem;
  height: 7.2rem;
  background: #1cabab;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 400;
  font-size: 2rem;
}

/* Steps List (Mobile) */
.investment-process-steps {
  position: relative;
  max-width: 40rem;
}

/* ESG to First Step Connector */
.esg-connector {
  position: absolute;
  left: 3.6rem;
  top: -5rem;
  width: 1px;
  height: 5rem;
  background: #e9eef3;
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
  margin-left: 1.6rem;
}
.process-step:last-child {
  margin-bottom: 0;
}

.step-dot {
  width: 4rem;
  height: 4rem;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
}
.step-dot .step-number {
  color: #ffffff;
  font-size: 1.5rem;
}

.step-content {
  flex: 1;
  text-align: left;
}
.step-content .step-title {
  color: #737373;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
}

.step-connector {
  position: absolute;
  left: 2rem;
  top: 4rem;
  width: 1px;
  height: 5rem;
  background: #e6e6e6;
  transform: translateX(-50%);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .process-dot {
    animation: none !important;
  }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu .menu-item {
  position: relative;
}
.nav-menu .menu-item .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(230, 230, 230, 0.2);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 0.75rem 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  pointer-events: auto;
}
.nav-menu .menu-item .sub-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-menu .menu-item .sub-menu .menu-item {
  display: block;
  padding: 0.875rem 1.5rem;
}
.nav-menu .menu-item .sub-menu .menu-item a {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 400;
  transition: all 0.2s ease;
  position: relative;
}
.nav-menu .menu-item .sub-menu .menu-item a:after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}
.nav-menu .menu-item .sub-menu .menu-item a:hover::after {
  width: 100%;
}
.nav-menu .menu-item:hover .sub-menu,
.nav-menu .menu-item .sub-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-menu .menu-item .sub-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-menu .menu-item {
  border-bottom: 1px solid rgba(230, 230, 230, 0.3);
}
.mobile-nav-menu .menu-item:last-child {
  border-bottom: none;
}
.mobile-nav-menu .menu-item .sub-menu {
  display: none;
  list-style: none;
  padding: 0 0 0 2rem;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid rgba(230, 230, 230, 0.3);
}
.mobile-nav-menu .menu-item .sub-menu.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}
.mobile-nav-menu .menu-item .sub-menu .menu-item {
  border-bottom: 1px solid rgba(230, 230, 230, 0.3);
}
.mobile-nav-menu .menu-item .sub-menu .menu-item:first-child {
  border-top: none;
}
.mobile-nav-menu .menu-item .sub-menu .menu-item:last-child {
  border-bottom: none;
}
.mobile-nav-menu .menu-item .sub-menu .menu-item a {
  display: block;
  padding: 1.7rem 0;
  color: #000000;
  text-decoration: none;
  font-size: 1.8rem;
  transition: all 0.2s ease;
  position: relative;
  padding-right: 6rem;
}
.mobile-nav-menu .menu-item .sub-menu .menu-item a:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mobile-nav-menu .menu-item.menu-item-has-children {
  position: relative;
}
.mobile-nav-menu .menu-item.menu-item-has-children > a {
  position: relative;
  padding-right: 5rem;
  cursor: pointer;
}
.mobile-nav-menu .menu-item.menu-item-has-children > a:after {
  display: none !important;
}
.mobile-nav-menu .menu-item.menu-item-has-children .mobile-toggle-btn {
  position: absolute;
  right: 0;
  top: 1rem;
  width: 42px;
  height: 42px;
  padding: 2rem;
  background-image: url(../images/svg/arrow.svg);
  background-size: 1.2rem 1.2rem;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(230, 230, 230, 0.3);
  z-index: 10;
}
.mobile-nav-menu .menu-item.menu-item-has-children .mobile-toggle-btn.active {
  background-color: #e6e6e6;
  color: #000000;
  transform: rotate(180deg);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991.98px) {
  .nav-menu {
    display: none;
  }
}
@media (min-width: 992px) {
  .mobile-nav-menu {
    display: none;
  }
}
/**
 * 404 Error Page Styles
 * 
 * @package Woodbridge
 */
.error-404-section {
  padding: 80px 0 0px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .error-404-section {
    padding: 60px 0 0px;
    min-height: 60vh;
  }
}

.error-404-content {
  max-width: 100%;
}

.error-code {
  margin-bottom: 2rem;
}
.error-code .error-number {
  font-size: 8rem;
  font-weight: var(--fw-space-grotesk-bold);
  color: var(--color-woodbridge-navy);
  line-height: 1;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .error-code .error-number {
    font-size: 6rem;
  }
}
@media (max-width: 480px) {
  .error-code .error-number {
    font-size: 4rem;
  }
}

.error-message {
  margin-bottom: 3rem;
}
.error-message .error-title {
  font-size: 2.5rem;
  font-weight: var(--fw-space-grotesk-semibold);
  color: var(--color-woodbridge-navy);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .error-message .error-title {
    font-size: 2rem;
  }
}
.error-message .error-description {
  font-size: 1.125rem;
  color: var(--color-gray-text);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .error-message .error-description {
    font-size: 1rem;
  }
}

.error-actions {
  margin-bottom: 3rem;
}
.error-actions .action-buttons {
  gap: 1rem;
}
@media (max-width: 576px) {
  .error-actions .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.helpful-links {
  margin-bottom: 3rem;
}
.helpful-links .links-title {
  font-size: 1.25rem;
  font-weight: var(--fw-space-grotesk-semibold);
  color: var(--color-woodbridge-navy);
  margin-bottom: 1.5rem;
}
.helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .helpful-links .links-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.helpful-links .links-grid .helpful-link {
  display: block;
  padding: 12px 16px;
  background: var(--color-bg-light-gray);
  color: var(--color-woodbridge-navy);
  text-decoration: none;
  border-radius: 8px;
  font-weight: var(--fw-space-grotesk-regular);
  font-family: var(--ff-space-grotesk);
  transition: all 0.3s ease;
  border: 1px solid var(--color-light-gray);
}
.helpful-links .links-grid .helpful-link:hover {
  background: var(--color-woodbridge-teal);
  color: var(--color-woodbridge-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 171, 171, 0.3);
}

@media (max-width: 768px) {
  .error-404-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}