/**
 * Modern CSS Reset Tweaks
 * ================================================== */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Box sizing normalization */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 *
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0-modified | 20110126
 * License: none (public domain)
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  font: inherit;
  font-style: revert;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/**
 * Input Reset
 */
input:required,
input {
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/* Make pictures easier to work with */
picture {
  display: inline-block;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

[disabled] {
  pointer-events: none;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Misc
 * ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/*!
 * Bootstrap Grid v5.3.0-alpha1 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.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 > * {
  box-sizing: border-box;
  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.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-1\.5,
  .gx-sm-1\.5 {
    --bs-gutter-x: 0.75rem;
  }
  .g-sm-1\.5,
  .gy-sm-1\.5 {
    --bs-gutter-y: 0.75rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 2rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-1\.5,
  .gx-md-1\.5 {
    --bs-gutter-x: 0.75rem;
  }
  .g-md-1\.5,
  .gy-md-1\.5 {
    --bs-gutter-y: 0.75rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 1rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 1rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 2rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 2rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 3rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-1\.5,
  .gx-lg-1\.5 {
    --bs-gutter-x: 0.75rem;
  }
  .g-lg-1\.5,
  .gy-lg-1\.5 {
    --bs-gutter-y: 0.75rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 2rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-1\.5,
  .gx-xl-1\.5 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xl-1\.5,
  .gy-xl-1\.5 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 2rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-1\.5,
  .gx-xxl-1\.5 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xxl-1\.5,
  .gy-xxl-1\.5 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 2rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 2rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

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

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

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

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

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

.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.5rem !important;
}

.m-1\.5 {
  margin: 0.75rem !important;
}

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

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

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

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

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

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

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

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

.mx-1\.5 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

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

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

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

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

.mx-6 {
  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.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-1\.5 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

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

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

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

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

.my-6 {
  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.5rem !important;
}

.mt-1\.5 {
  margin-top: 0.75rem !important;
}

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

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

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

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

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

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

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

.mr-1 {
  margin-right: 0.5rem !important;
}

.mr-1\.5 {
  margin-right: 0.75rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.mr-5 {
  margin-right: 2.5rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}

.mr-auto {
  margin-right: auto !important;
}

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

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

.mb-1\.5 {
  margin-bottom: 0.75rem !important;
}

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

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

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

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

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

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

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

.ml-1 {
  margin-left: 0.5rem !important;
}

.ml-1\.5 {
  margin-left: 0.75rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.ml-5 {
  margin-left: 2.5rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

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

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

.p-1\.5 {
  padding: 0.75rem !important;
}

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

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

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

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

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

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

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

.px-1\.5 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

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

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

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

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

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

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

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

.py-1\.5 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

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

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

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

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

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

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

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

.pt-1\.5 {
  padding-top: 0.75rem !important;
}

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

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

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

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

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

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

.pr-1 {
  padding-right: 0.5rem !important;
}

.pr-1\.5 {
  padding-right: 0.75rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.pr-5 {
  padding-right: 2.5rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}

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

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

.pb-1\.5 {
  padding-bottom: 0.75rem !important;
}

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

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

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

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

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

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

.pl-1 {
  padding-left: 0.5rem !important;
}

.pl-1\.5 {
  padding-left: 0.75rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pl-5 {
  padding-left: 2.5rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}

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

.gap-1 {
  gap: 0.5rem !important;
}

.gap-1\.5 {
  gap: 0.75rem !important;
}

.gap-2 {
  gap: 1rem !important;
}

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

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

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

.gap-6 {
  gap: 3rem !important;
}

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

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

.row-gap-1\.5 {
  row-gap: 0.75rem !important;
}

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

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

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

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

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

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

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

.column-gap-1\.5 {
  -moz-column-gap: 0.75rem !important;
  column-gap: 0.75rem !important;
}

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .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.5rem !important;
  }
  .m-sm-1\.5 {
    margin: 0.75rem !important;
  }
  .m-sm-2 {
    margin: 1rem !important;
  }
  .m-sm-3 {
    margin: 1.5rem !important;
  }
  .m-sm-4 {
    margin: 2rem !important;
  }
  .m-sm-5 {
    margin: 2.5rem !important;
  }
  .m-sm-6 {
    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.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-1\.5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-sm-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-6 {
    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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-1\.5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-sm-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-6 {
    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.5rem !important;
  }
  .mt-sm-1\.5 {
    margin-top: 0.75rem !important;
  }
  .mt-sm-2 {
    margin-top: 1rem !important;
  }
  .mt-sm-3 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 2rem !important;
  }
  .mt-sm-5 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-6 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mr-sm-1 {
    margin-right: 0.5rem !important;
  }
  .mr-sm-1\.5 {
    margin-right: 0.75rem !important;
  }
  .mr-sm-2 {
    margin-right: 1rem !important;
  }
  .mr-sm-3 {
    margin-right: 1.5rem !important;
  }
  .mr-sm-4 {
    margin-right: 2rem !important;
  }
  .mr-sm-5 {
    margin-right: 2.5rem !important;
  }
  .mr-sm-6 {
    margin-right: 3rem !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-1\.5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .ml-sm-1 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-1\.5 {
    margin-left: 0.75rem !important;
  }
  .ml-sm-2 {
    margin-left: 1rem !important;
  }
  .ml-sm-3 {
    margin-left: 1.5rem !important;
  }
  .ml-sm-4 {
    margin-left: 2rem !important;
  }
  .ml-sm-5 {
    margin-left: 2.5rem !important;
  }
  .ml-sm-6 {
    margin-left: 3rem !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.5rem !important;
  }
  .p-sm-1\.5 {
    padding: 0.75rem !important;
  }
  .p-sm-2 {
    padding: 1rem !important;
  }
  .p-sm-3 {
    padding: 1.5rem !important;
  }
  .p-sm-4 {
    padding: 2rem !important;
  }
  .p-sm-5 {
    padding: 2.5rem !important;
  }
  .p-sm-6 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-1\.5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-sm-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-6 {
    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.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-1\.5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-sm-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-1\.5 {
    padding-top: 0.75rem !important;
  }
  .pt-sm-2 {
    padding-top: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 2rem !important;
  }
  .pt-sm-5 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-6 {
    padding-top: 3rem !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pr-sm-1 {
    padding-right: 0.5rem !important;
  }
  .pr-sm-1\.5 {
    padding-right: 0.75rem !important;
  }
  .pr-sm-2 {
    padding-right: 1rem !important;
  }
  .pr-sm-3 {
    padding-right: 1.5rem !important;
  }
  .pr-sm-4 {
    padding-right: 2rem !important;
  }
  .pr-sm-5 {
    padding-right: 2.5rem !important;
  }
  .pr-sm-6 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-1\.5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pl-sm-1 {
    padding-left: 0.5rem !important;
  }
  .pl-sm-1\.5 {
    padding-left: 0.75rem !important;
  }
  .pl-sm-2 {
    padding-left: 1rem !important;
  }
  .pl-sm-3 {
    padding-left: 1.5rem !important;
  }
  .pl-sm-4 {
    padding-left: 2rem !important;
  }
  .pl-sm-5 {
    padding-left: 2.5rem !important;
  }
  .pl-sm-6 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.5rem !important;
  }
  .gap-sm-1\.5 {
    gap: 0.75rem !important;
  }
  .gap-sm-2 {
    gap: 1rem !important;
  }
  .gap-sm-3 {
    gap: 1.5rem !important;
  }
  .gap-sm-4 {
    gap: 2rem !important;
  }
  .gap-sm-5 {
    gap: 2.5rem !important;
  }
  .gap-sm-6 {
    gap: 3rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-1\.5 {
    row-gap: 0.75rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 2rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-sm-6 {
    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.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-1\.5 {
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }
  .column-gap-sm-2 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-sm-3 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-4 {
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-sm-5 {
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-sm-6 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .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.5rem !important;
  }
  .m-md-1\.5 {
    margin: 0.75rem !important;
  }
  .m-md-2 {
    margin: 1rem !important;
  }
  .m-md-3 {
    margin: 1.5rem !important;
  }
  .m-md-4 {
    margin: 2rem !important;
  }
  .m-md-5 {
    margin: 2.5rem !important;
  }
  .m-md-6 {
    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.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-1\.5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-md-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-6 {
    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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-1\.5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-md-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-6 {
    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.5rem !important;
  }
  .mt-md-1\.5 {
    margin-top: 0.75rem !important;
  }
  .mt-md-2 {
    margin-top: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 1.5rem !important;
  }
  .mt-md-4 {
    margin-top: 2rem !important;
  }
  .mt-md-5 {
    margin-top: 2.5rem !important;
  }
  .mt-md-6 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mr-md-1 {
    margin-right: 0.5rem !important;
  }
  .mr-md-1\.5 {
    margin-right: 0.75rem !important;
  }
  .mr-md-2 {
    margin-right: 1rem !important;
  }
  .mr-md-3 {
    margin-right: 1.5rem !important;
  }
  .mr-md-4 {
    margin-right: 2rem !important;
  }
  .mr-md-5 {
    margin-right: 2.5rem !important;
  }
  .mr-md-6 {
    margin-right: 3rem !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-1\.5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-md-2 {
    margin-bottom: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 2rem !important;
  }
  .mb-md-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .ml-md-1 {
    margin-left: 0.5rem !important;
  }
  .ml-md-1\.5 {
    margin-left: 0.75rem !important;
  }
  .ml-md-2 {
    margin-left: 1rem !important;
  }
  .ml-md-3 {
    margin-left: 1.5rem !important;
  }
  .ml-md-4 {
    margin-left: 2rem !important;
  }
  .ml-md-5 {
    margin-left: 2.5rem !important;
  }
  .ml-md-6 {
    margin-left: 3rem !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.5rem !important;
  }
  .p-md-1\.5 {
    padding: 0.75rem !important;
  }
  .p-md-2 {
    padding: 1rem !important;
  }
  .p-md-3 {
    padding: 1.5rem !important;
  }
  .p-md-4 {
    padding: 2rem !important;
  }
  .p-md-5 {
    padding: 2.5rem !important;
  }
  .p-md-6 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-1\.5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-md-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-6 {
    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.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-1\.5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-md-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.5rem !important;
  }
  .pt-md-1\.5 {
    padding-top: 0.75rem !important;
  }
  .pt-md-2 {
    padding-top: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 1.5rem !important;
  }
  .pt-md-4 {
    padding-top: 2rem !important;
  }
  .pt-md-5 {
    padding-top: 2.5rem !important;
  }
  .pt-md-6 {
    padding-top: 3rem !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pr-md-1 {
    padding-right: 0.5rem !important;
  }
  .pr-md-1\.5 {
    padding-right: 0.75rem !important;
  }
  .pr-md-2 {
    padding-right: 1rem !important;
  }
  .pr-md-3 {
    padding-right: 1.5rem !important;
  }
  .pr-md-4 {
    padding-right: 2rem !important;
  }
  .pr-md-5 {
    padding-right: 2.5rem !important;
  }
  .pr-md-6 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-1\.5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-md-2 {
    padding-bottom: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 2rem !important;
  }
  .pb-md-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 3rem !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pl-md-1 {
    padding-left: 0.5rem !important;
  }
  .pl-md-1\.5 {
    padding-left: 0.75rem !important;
  }
  .pl-md-2 {
    padding-left: 1rem !important;
  }
  .pl-md-3 {
    padding-left: 1.5rem !important;
  }
  .pl-md-4 {
    padding-left: 2rem !important;
  }
  .pl-md-5 {
    padding-left: 2.5rem !important;
  }
  .pl-md-6 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.5rem !important;
  }
  .gap-md-1\.5 {
    gap: 0.75rem !important;
  }
  .gap-md-2 {
    gap: 1rem !important;
  }
  .gap-md-3 {
    gap: 1.5rem !important;
  }
  .gap-md-4 {
    gap: 2rem !important;
  }
  .gap-md-5 {
    gap: 2.5rem !important;
  }
  .gap-md-6 {
    gap: 3rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-1\.5 {
    row-gap: 0.75rem !important;
  }
  .row-gap-md-2 {
    row-gap: 1rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-4 {
    row-gap: 2rem !important;
  }
  .row-gap-md-5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-md-6 {
    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.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-md-1\.5 {
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }
  .column-gap-md-2 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-md-3 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-md-4 {
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-md-5 {
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-md-6 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .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.5rem !important;
  }
  .m-lg-1\.5 {
    margin: 0.75rem !important;
  }
  .m-lg-2 {
    margin: 1rem !important;
  }
  .m-lg-3 {
    margin: 1.5rem !important;
  }
  .m-lg-4 {
    margin: 2rem !important;
  }
  .m-lg-5 {
    margin: 2.5rem !important;
  }
  .m-lg-6 {
    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.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-1\.5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-lg-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-6 {
    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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-1\.5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-lg-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-6 {
    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.5rem !important;
  }
  .mt-lg-1\.5 {
    margin-top: 0.75rem !important;
  }
  .mt-lg-2 {
    margin-top: 1rem !important;
  }
  .mt-lg-3 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 2rem !important;
  }
  .mt-lg-5 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-6 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mr-lg-1 {
    margin-right: 0.5rem !important;
  }
  .mr-lg-1\.5 {
    margin-right: 0.75rem !important;
  }
  .mr-lg-2 {
    margin-right: 1rem !important;
  }
  .mr-lg-3 {
    margin-right: 1.5rem !important;
  }
  .mr-lg-4 {
    margin-right: 2rem !important;
  }
  .mr-lg-5 {
    margin-right: 2.5rem !important;
  }
  .mr-lg-6 {
    margin-right: 3rem !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-1\.5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .ml-lg-1 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-1\.5 {
    margin-left: 0.75rem !important;
  }
  .ml-lg-2 {
    margin-left: 1rem !important;
  }
  .ml-lg-3 {
    margin-left: 1.5rem !important;
  }
  .ml-lg-4 {
    margin-left: 2rem !important;
  }
  .ml-lg-5 {
    margin-left: 2.5rem !important;
  }
  .ml-lg-6 {
    margin-left: 3rem !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.5rem !important;
  }
  .p-lg-1\.5 {
    padding: 0.75rem !important;
  }
  .p-lg-2 {
    padding: 1rem !important;
  }
  .p-lg-3 {
    padding: 1.5rem !important;
  }
  .p-lg-4 {
    padding: 2rem !important;
  }
  .p-lg-5 {
    padding: 2.5rem !important;
  }
  .p-lg-6 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-1\.5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-lg-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-6 {
    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.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-1\.5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-lg-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-1\.5 {
    padding-top: 0.75rem !important;
  }
  .pt-lg-2 {
    padding-top: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 2rem !important;
  }
  .pt-lg-5 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-6 {
    padding-top: 3rem !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pr-lg-1 {
    padding-right: 0.5rem !important;
  }
  .pr-lg-1\.5 {
    padding-right: 0.75rem !important;
  }
  .pr-lg-2 {
    padding-right: 1rem !important;
  }
  .pr-lg-3 {
    padding-right: 1.5rem !important;
  }
  .pr-lg-4 {
    padding-right: 2rem !important;
  }
  .pr-lg-5 {
    padding-right: 2.5rem !important;
  }
  .pr-lg-6 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-1\.5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pl-lg-1 {
    padding-left: 0.5rem !important;
  }
  .pl-lg-1\.5 {
    padding-left: 0.75rem !important;
  }
  .pl-lg-2 {
    padding-left: 1rem !important;
  }
  .pl-lg-3 {
    padding-left: 1.5rem !important;
  }
  .pl-lg-4 {
    padding-left: 2rem !important;
  }
  .pl-lg-5 {
    padding-left: 2.5rem !important;
  }
  .pl-lg-6 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.5rem !important;
  }
  .gap-lg-1\.5 {
    gap: 0.75rem !important;
  }
  .gap-lg-2 {
    gap: 1rem !important;
  }
  .gap-lg-3 {
    gap: 1.5rem !important;
  }
  .gap-lg-4 {
    gap: 2rem !important;
  }
  .gap-lg-5 {
    gap: 2.5rem !important;
  }
  .gap-lg-6 {
    gap: 3rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-1\.5 {
    row-gap: 0.75rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 2rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-lg-6 {
    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.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-1\.5 {
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }
  .column-gap-lg-2 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-lg-3 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-4 {
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-lg-5 {
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-lg-6 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .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.5rem !important;
  }
  .m-xl-1\.5 {
    margin: 0.75rem !important;
  }
  .m-xl-2 {
    margin: 1rem !important;
  }
  .m-xl-3 {
    margin: 1.5rem !important;
  }
  .m-xl-4 {
    margin: 2rem !important;
  }
  .m-xl-5 {
    margin: 2.5rem !important;
  }
  .m-xl-6 {
    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.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-1\.5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xl-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-6 {
    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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-1\.5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-6 {
    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.5rem !important;
  }
  .mt-xl-1\.5 {
    margin-top: 0.75rem !important;
  }
  .mt-xl-2 {
    margin-top: 1rem !important;
  }
  .mt-xl-3 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 2rem !important;
  }
  .mt-xl-5 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-6 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .mr-xl-1 {
    margin-right: 0.5rem !important;
  }
  .mr-xl-1\.5 {
    margin-right: 0.75rem !important;
  }
  .mr-xl-2 {
    margin-right: 1rem !important;
  }
  .mr-xl-3 {
    margin-right: 1.5rem !important;
  }
  .mr-xl-4 {
    margin-right: 2rem !important;
  }
  .mr-xl-5 {
    margin-right: 2.5rem !important;
  }
  .mr-xl-6 {
    margin-right: 3rem !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-1\.5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .ml-xl-1 {
    margin-left: 0.5rem !important;
  }
  .ml-xl-1\.5 {
    margin-left: 0.75rem !important;
  }
  .ml-xl-2 {
    margin-left: 1rem !important;
  }
  .ml-xl-3 {
    margin-left: 1.5rem !important;
  }
  .ml-xl-4 {
    margin-left: 2rem !important;
  }
  .ml-xl-5 {
    margin-left: 2.5rem !important;
  }
  .ml-xl-6 {
    margin-left: 3rem !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.5rem !important;
  }
  .p-xl-1\.5 {
    padding: 0.75rem !important;
  }
  .p-xl-2 {
    padding: 1rem !important;
  }
  .p-xl-3 {
    padding: 1.5rem !important;
  }
  .p-xl-4 {
    padding: 2rem !important;
  }
  .p-xl-5 {
    padding: 2.5rem !important;
  }
  .p-xl-6 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-1\.5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-6 {
    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.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-1\.5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-1\.5 {
    padding-top: 0.75rem !important;
  }
  .pt-xl-2 {
    padding-top: 1rem !important;
  }
  .pt-xl-3 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 2rem !important;
  }
  .pt-xl-5 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-6 {
    padding-top: 3rem !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .pr-xl-1 {
    padding-right: 0.5rem !important;
  }
  .pr-xl-1\.5 {
    padding-right: 0.75rem !important;
  }
  .pr-xl-2 {
    padding-right: 1rem !important;
  }
  .pr-xl-3 {
    padding-right: 1.5rem !important;
  }
  .pr-xl-4 {
    padding-right: 2rem !important;
  }
  .pr-xl-5 {
    padding-right: 2.5rem !important;
  }
  .pr-xl-6 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-1\.5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .pl-xl-1 {
    padding-left: 0.5rem !important;
  }
  .pl-xl-1\.5 {
    padding-left: 0.75rem !important;
  }
  .pl-xl-2 {
    padding-left: 1rem !important;
  }
  .pl-xl-3 {
    padding-left: 1.5rem !important;
  }
  .pl-xl-4 {
    padding-left: 2rem !important;
  }
  .pl-xl-5 {
    padding-left: 2.5rem !important;
  }
  .pl-xl-6 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.5rem !important;
  }
  .gap-xl-1\.5 {
    gap: 0.75rem !important;
  }
  .gap-xl-2 {
    gap: 1rem !important;
  }
  .gap-xl-3 {
    gap: 1.5rem !important;
  }
  .gap-xl-4 {
    gap: 2rem !important;
  }
  .gap-xl-5 {
    gap: 2.5rem !important;
  }
  .gap-xl-6 {
    gap: 3rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-1\.5 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 2rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xl-6 {
    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.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-1\.5 {
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }
  .column-gap-xl-2 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xl-3 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-4 {
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-xl-5 {
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-xl-6 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .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.5rem !important;
  }
  .m-xxl-1\.5 {
    margin: 0.75rem !important;
  }
  .m-xxl-2 {
    margin: 1rem !important;
  }
  .m-xxl-3 {
    margin: 1.5rem !important;
  }
  .m-xxl-4 {
    margin: 2rem !important;
  }
  .m-xxl-5 {
    margin: 2.5rem !important;
  }
  .m-xxl-6 {
    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.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-1\.5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxl-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-6 {
    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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-1\.5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-6 {
    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.5rem !important;
  }
  .mt-xxl-1\.5 {
    margin-top: 0.75rem !important;
  }
  .mt-xxl-2 {
    margin-top: 1rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-4 {
    margin-top: 2rem !important;
  }
  .mt-xxl-5 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-0 {
    margin-right: 0 !important;
  }
  .mr-xxl-1 {
    margin-right: 0.5rem !important;
  }
  .mr-xxl-1\.5 {
    margin-right: 0.75rem !important;
  }
  .mr-xxl-2 {
    margin-right: 1rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1.5rem !important;
  }
  .mr-xxl-4 {
    margin-right: 2rem !important;
  }
  .mr-xxl-5 {
    margin-right: 2.5rem !important;
  }
  .mr-xxl-6 {
    margin-right: 3rem !important;
  }
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-1\.5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0 !important;
  }
  .ml-xxl-1 {
    margin-left: 0.5rem !important;
  }
  .ml-xxl-1\.5 {
    margin-left: 0.75rem !important;
  }
  .ml-xxl-2 {
    margin-left: 1rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1.5rem !important;
  }
  .ml-xxl-4 {
    margin-left: 2rem !important;
  }
  .ml-xxl-5 {
    margin-left: 2.5rem !important;
  }
  .ml-xxl-6 {
    margin-left: 3rem !important;
  }
  .ml-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.5rem !important;
  }
  .p-xxl-1\.5 {
    padding: 0.75rem !important;
  }
  .p-xxl-2 {
    padding: 1rem !important;
  }
  .p-xxl-3 {
    padding: 1.5rem !important;
  }
  .p-xxl-4 {
    padding: 2rem !important;
  }
  .p-xxl-5 {
    padding: 2.5rem !important;
  }
  .p-xxl-6 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-1\.5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xxl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-6 {
    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.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-1\.5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xxl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-1\.5 {
    padding-top: 0.75rem !important;
  }
  .pt-xxl-2 {
    padding-top: 1rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-4 {
    padding-top: 2rem !important;
  }
  .pt-xxl-5 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 3rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0 !important;
  }
  .pr-xxl-1 {
    padding-right: 0.5rem !important;
  }
  .pr-xxl-1\.5 {
    padding-right: 0.75rem !important;
  }
  .pr-xxl-2 {
    padding-right: 1rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1.5rem !important;
  }
  .pr-xxl-4 {
    padding-right: 2rem !important;
  }
  .pr-xxl-5 {
    padding-right: 2.5rem !important;
  }
  .pr-xxl-6 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-1\.5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-0 {
    padding-left: 0 !important;
  }
  .pl-xxl-1 {
    padding-left: 0.5rem !important;
  }
  .pl-xxl-1\.5 {
    padding-left: 0.75rem !important;
  }
  .pl-xxl-2 {
    padding-left: 1rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1.5rem !important;
  }
  .pl-xxl-4 {
    padding-left: 2rem !important;
  }
  .pl-xxl-5 {
    padding-left: 2.5rem !important;
  }
  .pl-xxl-6 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.5rem !important;
  }
  .gap-xxl-1\.5 {
    gap: 0.75rem !important;
  }
  .gap-xxl-2 {
    gap: 1rem !important;
  }
  .gap-xxl-3 {
    gap: 1.5rem !important;
  }
  .gap-xxl-4 {
    gap: 2rem !important;
  }
  .gap-xxl-5 {
    gap: 2.5rem !important;
  }
  .gap-xxl-6 {
    gap: 3rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-1\.5 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 2rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxl-6 {
    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.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-1\.5 {
    -moz-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
  }
  .column-gap-xxl-2 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xxl-3 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-4 {
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-xxl-5 {
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-xxl-6 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

@font-face {
  font-family: "Figtree";
  src: url("/fonts/Figtree-VariableFont_wght.woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/NunitoSans-VariableFont_YTLC_opsz_wdth_wght.ttf");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/NunitoSans-Italic-VariableFont_YTLC_opsz_wdth_wght.ttf");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Code Pro";
  src: url("/fonts/SourceCodePro-VariableFont_wght.ttf");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
:root,
.theme-white {
  --moqups-display: Figtree, Helvetica, Arial, sans-Serif;
  --moqups-font: Nunito Sans, Helvetica, Arial, sans-Serif;
  --moqups-font-serif: Georgia, serif;
  --moqups-code: Source Code Pro, Consolas, monospace;
  --link-color: #1071f2;
  --link-hover-color: #185dcb;
  --link-underline-color: transparent;
  --heading-color: #29323d;
  --active-color: #1071f2;
  --body-color: #3b4754;
  --body-muted-color: rgba(59, 71, 84, 0.5);
  --body-line-height: 1.48;
  --body-bg: #fff;
  --sticky-header-height: calc(4.75rem + 2px);
  --table-active-bg: #f7f8f9;
  --table-border-light-color: #eef1f5;
  --table-border-color: #dee4eb;
  --tab-bg: #eef1f5;
  --tab-active-color: #29323d;
  --tab-active-bg: #fff;
  --tab-active-border: rgba(0, 25, 50, 0.5);
  --dropdown-bg: #fff;
  --dropdown-color: #29323d;
  --dropdown-hover-color: #185dcb;
  --dropdown-hover-bg: #f1f7fd;
  --button-bg: #eef1f5;
  --button-color: #29323d;
  --button-hover-bg: #dee4eb;
  --button-main-bg: #1071f2;
  --button-main-color: #fff;
  --button-main-hover-bg: #1068dd;
  --input-bg: #fff;
  --input-color: #29323d;
  --input-active-color: #1071f2;
  --input-placeholder-color: #9fafc1;
  --input-border-color: #c9d3dd;
  --well-bg: #f7f8f9;
  --well-color: #29323d;
  --well-border-color: rgba(0, 0, 0, 0.06);
  --well-icon-color: #29323d;
  --footer-heading-color: #5a6e81;
  --footer-link-color: #798da3;
  --footer-link-hover-color: #677d92;
  --container-filter: none;
}

html {
  font-size: 16px; /* base font size */
}

body {
  font-family: var(--moqups-font);
  color: var(--body-color);
  background: var(--body-bg);
  font-weight: 400;
}

main {
  min-height: 20rem;
}

/*
	Typography
*/
b,
strong,
.text-bold {
  font-weight: 700;
}

i {
  font-style: italic;
}

/*
em {
	font-weight: 600;
	letter-spacing: 0.125rem;
}
*/
a,
a:visited {
  color: var(--link-color);
  text-decoration: underline;
  text-decoration-color: var(--link-underline-color);
  transition: color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

a:active,
a:focus,
a:hover {
  color: var(--link-hover-color);
}

kbd,
.content code {
  font-family: "Source Code Pro", Consolas, monospace;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  bottom: 1px;
  margin: 0 0.125rem 0 0;
  padding: 0.125rem 0.5rem 0.1rem;
  border: 1px solid rgba(121, 141, 163, 0.25);
  border-radius: 0.25rem;
  background: rgba(222, 228, 235, 0.25);
  box-shadow: 1px 1px 0 rgba(59, 71, 84, 0.4);
}

.content pre {
  background: #f7f8f9;
  color: #3b4754;
  border: 1px solid rgba(201, 211, 221, 0.25);
  padding: 0.75rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  border-radius: 0.5rem;
}
.content pre code {
  padding: 0;
  font-size: 0.875rem;
  border: 0;
  box-shadow: 0;
  background: none;
  box-shadow: none;
}

hr {
  margin: 2rem 0;
  opacity: 0.15;
  background-color: currentColor;
}

.content-markdown hr {
  max-width: 4.5rem;
  margin: 3rem 0 1.75rem;
  height: 0.188rem;
  border-radius: 3rem;
  opacity: 1;
  background-color: currentColor;
}

hr.thick {
  max-width: 6rem;
  margin: 2rem auto 1.75rem;
  height: 0.25rem;
  border-radius: 5rem;
  opacity: 0.25;
  background-color: var(--link-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h2\.5,
.h3,
.h4,
.h4\.5,
.h5,
.h6 {
  font-family: var(--moqups-display);
  font-weight: 675;
  line-height: 1.3;
  letter-spacing: -0.12pt;
  color: var(--heading-color);
}

h1,
.h1 {
  font-size: 2.75rem;
  font-weight: 710;
  margin: 2rem 0;
  letter-spacing: -0.4pt;
  line-height: 1.24;
}
h1.d1,
.h1.d1 {
  font-size: 5rem;
  font-weight: 750;
  line-height: 1.2;
}
h1.d2,
.h1.d2 {
  font-size: 4.25rem;
  font-weight: 750;
  line-height: 1.24;
}
h1.d2\.5,
.h1.d2\.5 {
  font-size: 3.5rem;
  line-height: 1.24;
}
h1.d3,
.h1.d3 {
  font-size: 3rem;
  line-height: 1.24;
}

h2,
.h2 {
  font-size: 2.125rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.h2\.5 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

h3,
.h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.375rem 0;
}

h4,
.h4 {
  font-size: 1.188rem;
  margin: 1rem 0;
  letter-spacing: 0pt;
}

.h4\.5 {
  font-size: 1rem;
  margin: 1rem 0;
  letter-spacing: 0pt;
}

h5,
.h5 {
  font-size: 0.875rem;
  margin: 0.875rem 0;
  letter-spacing: 0.23pt;
  text-transform: uppercase;
}

h6,
.h6 {
  font-size: 0.75rem;
  margin: 0.875rem 0;
  letter-spacing: 0.4pt;
  text-transform: uppercase;
}

/*
.h1,
.h2,
.h2\.5,
.h3,
.h4,
.h5,
.h6 {
	margin: 0;
}
 */
p {
  font-size: 1.125rem;
  line-height: var(--body-line-height);
  margin-bottom: 1rem;
}
p.h1, p.h2, p.h3, p.h4, p.h5, p.h6 {
  margin-top: 0;
  margin-bottom: 1rem;
}
p.subtitle {
  opacity: 0.75;
  font-size: 1.25rem;
}
p.lead {
  font-size: 1.375rem;
  font-weight: 500;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.text-breakable span {
  display: inline-block;
}

/* headers as links */
.h-link a {
  color: var(--heading-color);
  text-decoration: none;
}

.h-link a:hover {
  color: var(--link-hover-color);
}

blockquote {
  font-weight: 500;
  padding: 0.625rem 0.5rem 0.625rem 1.5rem;
  border-left: 3px solid var(--table-border-color);
  font-style: italic;
  margin-bottom: 1rem;
}
blockquote p {
  margin-bottom: 0;
  font-size: 1.125rem;
}

p + h2,
p + .h2,
p + h3,
p + .h3,
p + h4,
p + .h4,
p + h5,
p + .h5,
p + h6,
p + .h6,
ul + h2,
ul + .h2,
ul + h3,
ul + .h3,
ul + h4,
ul + .h4,
ul + h5,
ul + .h5,
ul + h6,
ul + .h6,
ol + h2,
ol + .h2,
ol + h3,
ol + .h3,
ol + h4,
ol + .h4,
ol + h5,
ol + .h5,
ol + h6,
ol + .h6 {
  margin-top: 2.75rem;
}

span.h1, span.h2, span.h3, span.h4, span.h5, span.h6 {
  margin-top: 0;
  margin-bottom: 0;
}

span.more-info {
  border-bottom: 1px dashed var(--body-muted-color);
}

.content ul:not([class]),
.content ol:not([class]),
.content dl:not([class]),
.list {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.content ul:not([class]) li,
.content ol:not([class]) li,
.content dl:not([class]) li,
.list li {
  line-height: var(--body-line-height);
  margin-bottom: 0.75rem;
}
.content ul:not([class]) li:last-child,
.content ol:not([class]) li:last-child,
.content dl:not([class]) li:last-child,
.list li:last-child {
  margin-bottom: 0;
}
.content ul:not([class]) li ol,
.content ul:not([class]) li ul,
.content ol:not([class]) li ol,
.content ol:not([class]) li ul,
.content dl:not([class]) li ol,
.content dl:not([class]) li ul,
.list li ol,
.list li ul {
  margin-top: 0.75rem;
}
.content ul:not([class]) span.list-or,
.content ol:not([class]) span.list-or,
.content dl:not([class]) span.list-or,
.list span.list-or {
  font-weight: 600;
  display: block;
  margin: 1rem 0;
  text-transform: uppercase;
}
.content ul:not([class]).list-cons li, .content ul:not([class]).list-pros li,
.content ol:not([class]).list-cons li,
.content ol:not([class]).list-pros li,
.content dl:not([class]).list-cons li,
.content dl:not([class]).list-pros li,
.list.list-cons li,
.list.list-pros li {
  position: relative;
  list-style-type: none;
}
.content ul:not([class]).list-cons li::before, .content ul:not([class]).list-pros li::before,
.content ol:not([class]).list-cons li::before,
.content ol:not([class]).list-pros li::before,
.content dl:not([class]).list-cons li::before,
.content dl:not([class]).list-pros li::before,
.list.list-cons li::before,
.list.list-pros li::before {
  content: "";
  font-family: "Source Code Pro", Consolas, monospace;
  width: 1.125em;
  height: 1.125em;
  font-weight: bold;
  position: absolute;
  background-repeat: no-repeat;
  top: 0.15em;
  left: -1.5em;
  background-size: cover;
}
.content ul:not([class]).list-pros li::before,
.content ol:not([class]).list-pros li::before,
.content dl:not([class]).list-pros li::before,
.list.list-pros li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath stroke='%231180f1' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75' d='M3.333 8.667 6 11.333l6.667-6.666'/%3E%3C/svg%3E");
  filter: var(--container-filter);
}
.content ul:not([class]).list-cons li::before,
.content ol:not([class]).list-cons li::before,
.content dl:not([class]).list-cons li::before,
.list.list-cons li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23f45f20' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75' d='m4 12 8-8M4 4l8 8'/%3E%3C/svg%3E");
  filter: var(--container-filter);
}

.content ul:not([class]) li,
ul.list li {
  margin-left: 1.5em;
  list-style-type: disc;
}

.content ol:not([class]),
ol.list {
  counter-reset: item;
}
.content ol:not([class]) > li,
ol.list > li {
  position: relative;
  margin-left: 1.5em;
  counter-increment: item;
}
.content ol:not([class]) > li:before,
ol.list > li:before {
  position: absolute;
  right: 0.65em;
  margin-right: 100%;
  content: counters(item, ".") ". ";
}
.content ol:not([class]) > li ol,
ol.list > li ol {
  margin-left: 0.6em;
}
.content ol:not([class]) > li ol > li:before,
ol.list > li ol > li:before {
  content: counters(item, ".") " ";
}

.content dl,
dl.list {
  font-size: 1.25rem;
}
.content dl dt,
dl.list dt {
  font-weight: 600;
}
.content dl dd,
dl.list dd {
  margin-bottom: 0.75em;
  margin-left: 1em;
}

.content ul.list-of-icons li {
  list-style-type: none;
  margin-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.content ul.list-of-icons .icon {
  width: 3rem;
  height: 3rem;
  background: var(--tab-bg);
  border-radius: 0.5rem;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--tab-color);
}

.content ul.list-of-icons .icon svg path {
  fill: currentColor !important;
}

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

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

.text-error {
  color: #f54c52;
  font-weight: 500;
}

.text-lg {
  font-size: 1.188rem;
}

.text-sm {
  font-size: 1rem;
}

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

.text-gradient {
  --gradient-start: var(--body-muted-color);
  --gradient-end: var(--body-color);
  background-image: linear-gradient(to top, var(--gradient-start) 0%, var(--gradient-end) 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-shadow {
  text-shadow: 1px 1px 20px var(--body-bg);
}

.no-underline {
  text-decoration: none;
}

.tags {
  display: flex;
  gap: 0.5rem;
}
.tags .tag {
  font-family: var(--moqups-display);
  font-size: 0.625rem;
  font-weight: 700;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2pt;
  white-space: nowrap;
  color: var(--body-muted-color);
  border-radius: 0.25rem;
  background: var(--tab-bg);
}

.content-blog p {
  font-size: 1.188rem;
}

@media (min-width: 768px) {
  .h1-md {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
  .h3-md {
    font-size: 2.75rem;
    font-weight: 750;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
}
@media (min-width: 991px) {
  .h1-lg {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
}
@media (min-width: 1200px) {
  .h1-xl {
    font-size: 2.75rem;
    font-weight: 710;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
  .h2\.5-xl {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 1.5rem 0;
  }
}
@media (min-width: 1400px) {
  h1,
  .h1 {
    font-size: 2.75rem;
    font-weight: 710;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
  h1.d1-xxl,
  .h1.d1-xxl {
    font-size: 5rem;
    font-weight: 750;
  }
  h1.d2-xxl,
  .h1.d2-xxl {
    font-size: 4.25rem;
    font-weight: 750;
  }
  h1.d2\.5-xxl,
  .h1.d2\.5-xxl {
    font-size: 3.25rem;
  }
  h1.d3-xxl,
  .h1.d3-xxl {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  h1.d1,
  .h1.d1 {
    font-size: 3rem;
  }
  h1.d2,
  .h1.d2 {
    font-size: 3rem;
  }
  h1.d2\.5,
  .h1.d2\.5 {
    font-size: 3rem;
  }
  h1.d3,
  .h1.d3 {
    font-size: 3rem;
  }
}
a.skip-link,
a.skip-link:visited {
  background-color: #ffe533;
  border: solid 2px #000;
  color: #29323d;
  padding: 0.5rem 1rem;
  text-decoration: none;
  top: 0.5rem;
  position: absolute;
  left: 0;
  z-index: 52;
}

a.skip-link:not(:focus):not(:active) {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

a:focus-visible,
button:focus-visible,
details summary:focus-visible,
input[type=checkbox]:focus-visible:before {
  outline: 1px solid var(--link-color);
  outline-offset: 2px;
}

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

/*
	Helper classes
*/
.container-max-xxl {
  max-width: 1320px;
}

.container-max-xl {
  max-width: var(--bs-breakpoint-xl);
}

.container-max-lg {
  max-width: var(--bs-breakpoint-lg);
}

.container-max-md {
  max-width: var(--bs-breakpoint-md);
}

.container-max-sm {
  max-width: var(--bs-breakpoint-sm);
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-50 {
  opacity: 0.5;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

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

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

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .w-md-100 {
    width: 100%;
  }
  .w-md-auto {
    width: auto;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
/*
  Header & Footer navigation
*/
header {
  position: relative;
  z-index: 50;
}
header nav {
  padding: 1.125rem 0;
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to left, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.04));
  --link-color: var(--heading-color);
}
header.sticky {
  position: sticky;
  top: 0;
  background: var(--body-bg);
}

.nav-menu {
  display: flex;
  height: 100%;
  justify-content: center;
  gap: 1.25rem;
}
.nav-menu li {
  position: relative;
  display: flex;
}
.nav-menu li > a, .nav-menu li > button {
  font-family: var(--moqups-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 2.5rem;
  display: flex;
  box-sizing: border-box;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  vertical-align: bottom;
  letter-spacing: 0.2pt;
  color: var(--link-color);
  align-items: center;
  gap: 0.25rem;
}
.nav-menu li > a:hover, .nav-menu li > button:hover {
  color: var(--link-hover-color);
}
.nav-menu li > a.nav-title, .nav-menu li > button.nav-title {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
  position: relative;
  bottom: 1px;
}
.nav-menu li > a.nav-title .nav-menu-icon, .nav-menu li > button.nav-title .nav-menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.nav-menu li > a .nav-menu-icon, .nav-menu li > button .nav-menu-icon {
  display: flex;
  width: 1rem;
  height: 1rem;
  justify-content: center;
  align-items: center;
}
.nav-menu li > a .nav-menu-icon svg, .nav-menu li > button .nav-menu-icon svg {
  width: 100%;
  height: 100%;
}
.nav-menu li > a.nav-lang, .nav-menu li > button.nav-lang {
  text-transform: uppercase;
  gap: 0.25rem;
}
.nav-menu li > a.nav-lang .nav-menu-icon, .nav-menu li > button.nav-lang .nav-menu-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 0.125rem;
}
.nav-menu.nav-tabs {
  gap: 2.5rem;
}
.nav-menu.nav-tabs li {
  padding-top: calc(1rem - 1px);
  padding-bottom: calc(1rem - 2px);
  border-bottom: 2px solid transparent;
}
.nav-menu.nav-tabs li.active {
  border-bottom-color: var(--heading-color);
}
.nav-menu.nav-tabs li.active a,
.nav-menu.nav-tabs li.active button {
  color: var(--link-color);
}
.nav-menu.nav-tabs li > a,
.nav-menu.nav-tabs li > button {
  color: var(--link-hover-color);
  font-weight: 400;
}
.nav-menu.nav-tabs li > a.nav-title,
.nav-menu.nav-tabs li > button.nav-title {
  font-weight: 600;
}

.nav-logo {
  display: flex;
  margin-top: 0.375rem;
  margin-right: 1.25rem;
  max-width: 100%;
}
.nav-logo svg {
  color: var(--active-color);
  height: 28px;
  width: 121px;
}

.nav-btn {
  margin-right: -0.5rem;
}

footer nav {
  color: var(--footer-link-color);
  font-size: 0.875rem;
}
footer nav a {
  transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
footer nav .h5 {
  color: var(--footer-heading-color);
  margin-bottom: 1.5rem;
}
footer nav p {
  color: var(--footer-link-color);
  font-size: 0.875rem;
}
footer nav .container-footer {
  position: relative;
}
footer nav .back-to-top {
  position: absolute;
  right: 0.5rem;
  top: -1.25rem;
  border: 2px solid var(--body-bg);
}
footer nav .credits {
  opacity: 0.6;
  margin-top: 0;
}
footer nav .credits p {
  padding-bottom: 0.125rem;
}
footer nav .credits .icon {
  color: var(--footer-link-color);
  margin-bottom: 1px;
}
footer nav .credits a.icon:hover {
  color: var(--footer-link-hover-color);
}
footer nav .credits ul li {
  margin-bottom: 0;
}
footer nav ul li {
  margin-bottom: 0.875rem;
}
footer nav ul li a,
footer nav ul li a:visited {
  color: var(--footer-link-color);
}
footer nav ul li a:hover,
footer nav ul li a:focus {
  color: var(--footer-link-hover-color);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin: 2rem 0;
}
.breadcrumbs li {
  white-space: nowrap;
}
.breadcrumbs li a,
.breadcrumbs li a:visited {
  color: var(--body-color);
}
.breadcrumbs li a:hover,
.breadcrumbs li a:focus {
  text-decoration-color: var(--body-muted-color);
}
.breadcrumbs li:not(:first-child)::before {
  opacity: 0.5;
  color: var(--body-muted-color);
  content: "/";
  padding-right: calc(0.75rem - 0.5ch);
}
.breadcrumbs li:not(:first-child).active, .breadcrumbs li:not(:first-child).active a, .breadcrumbs li:not(:first-child).active a:visited {
  color: var(--body-muted-color);
}

/*
	Mobile menu
*/
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  min-width: 18rem;
  width: 100%;
  max-width: 27rem;
  background: #fff;
  color: #29323d;
  box-shadow: -0.625rem 0rem 1.875rem rgba(0, 15, 50, 0.1);
  padding-top: 3rem;
}
.mobile-menu .nav-category {
  padding: 1.75rem 1.5rem 0.75rem;
  color: inherit;
}
.mobile-menu ul {
  display: block;
}
.mobile-menu ul li {
  color: #29323d;
  border-bottom: 1px solid #eef1f5;
}
.mobile-menu ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 1.25rem;
  display: block;
  padding: 0.75rem 1.5rem;
}

.aside-nav.sticky {
  position: sticky;
  top: 2rem;
}
.aside-nav.secondary-nav ul {
  border: none;
  margin-left: 0;
}
.aside-nav.secondary-nav ul li a {
  opacity: 0.75;
}
.aside-nav.secondary-nav ul li.active {
  background: none;
}
.aside-nav.secondary-nav ul li.active > a {
  opacity: 1;
  color: var(--body-color);
}
.aside-nav.secondary-nav ul li a,
.aside-nav.secondary-nav ol li a {
  font-size: 0.875rem;
  padding: 0.375rem 0;
  padding-right: 0.25rem;
}
.aside-nav.secondary-nav ol li ol {
  margin-left: 1.25rem;
}
.aside-nav ul li a,
.aside-nav ol li a {
  opacity: 0.66;
  color: var(--body-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 1.688rem;
  padding: 0.25rem 0;
  margin: 0.185rem 0;
  transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.aside-nav ul li a:hover,
.aside-nav ol li a:hover {
  color: var(--link-color);
  opacity: 1;
}
.aside-nav ul li a .icon,
.aside-nav ol li a .icon {
  margin-right: 0.5rem;
}
.aside-nav ul li ul,
.aside-nav ol li ul {
  border-left: 1px solid var(--table-border-color);
  margin-bottom: 0.5rem;
  margin-left: 0.475rem;
  padding-left: 0.5rem;
}
.aside-nav ul li ul li,
.aside-nav ol li ul li {
  font-size: 0.875rem;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
}
.aside-nav ul li ul li.active,
.aside-nav ol li ul li.active {
  background: var(--button-main-bg);
}
.aside-nav ul li ul li.active a,
.aside-nav ol li ul li.active a {
  color: var(--button-main-color);
}
.aside-nav ul li.active > a,
.aside-nav ol li.active > a {
  opacity: 1;
  font-weight: 600;
}

button.btn.mobile-menu-close {
  color: #29323d;
  position: absolute;
  right: 1rem;
  top: 1.25rem;
  z-index: 100;
}
button.btn.mobile-menu-close:hover {
  color: #1071f2;
}

.mobile-menu [data-dropdown-close] {
  color: inherit;
}

button[aria-expanded=false] + .mobile-menu-wrapper {
  display: none;
}

/*
	Notice 
*/
.notice {
  background-color: #40487c;
  color: #badcff;
  text-align: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.notice-badge {
  border-radius: 4px;
  padding: 0.2rem 0.375rem 0.1rem;
  height: 1.125rem;
  font-size: 0.675rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-60deg, #f45f20, #f54c52, #7656f3);
}

.notice-cta,
.notice-cta:visited {
  white-space: nowrap;
  color: #40a2ff;
}

.notice-cta:active,
.notice-cta:hover,
.notice-cta:focus {
  color: #73baff;
}

/*
	Dropdown Menus
*/
.dropdown-wrapper {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -1.25rem;
  min-width: 13rem;
  width: max-content;
  color: var(--dropdown-color);
  background: var(--dropdown-bg);
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.dropdown.right {
  left: auto;
  right: -1.25rem;
}
.dropdown.narrow {
  min-width: 8rem;
}
.dropdown li {
  width: 100%;
}
.dropdown li > a {
  display: flex;
  width: 100%;
  font-size: 0.938rem;
  color: var(--dropdown-color);
  font-family: "Nunito Sans", Helvetica, Arial, sans-Serif;
  font-weight: 400;
  padding: 0.563rem 1rem 0.563rem 0.5rem;
  border-radius: 0.375rem;
  transition: color 0.2s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.dropdown li > a:hover, .dropdown li > a:focus {
  background: var(--dropdown-hover-bg);
  color: var(--dropdown-hover-color);
}
.dropdown li.label span {
  display: flex;
  width: 100%;
  font-size: 0.938rem;
  color: var(--dropdown-color);
  opacity: 0.75;
  padding: 0.563rem 1rem 0.563rem 0.5rem;
}
.dropdown li.separator::after {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background: var(--tab-bg);
  padding: 0;
  margin: 0.75rem 0.5rem;
}

button[aria-expanded] + .dropdown {
  display: flex;
  flex-direction: column;
}

button[aria-expanded=false] + .dropdown {
  display: none;
}

@media (hover: hover) {
  .dropdown-wrapper:hover button[aria-expanded] + .dropdown[data-dropdown-hover] {
    display: flex;
  }
}
/*
  Tables
*/
.table-container {
  scroll-snap-type: x mandatory;
  overflow: auto;
}

table.table,
.content table {
  font-size: 1.125rem;
  width: 100%;
  margin: 0 0 2rem;
}
table.table td,
table.table th,
.content table td,
.content table th {
  position: relative;
  padding: 0.75rem 0.5rem;
  text-align: center;
  border-right: 1px solid var(--table-border-color);
  scroll-snap-align: end;
}
table.table td:last-child,
table.table th:last-child,
.content table td:last-child,
.content table th:last-child {
  border-right: 0;
}
table.table td .icon,
table.table th .icon,
.content table td .icon,
.content table th .icon {
  --icon-size: 1.125rem;
}
table.table td .icon-native,
table.table th .icon-native,
.content table td .icon-native,
.content table th .icon-native {
  --icon-size: inherit;
}
table.table th,
.content table th {
  font-weight: 600;
  color: var(--heading-color);
}
table.table thead tr th,
.content table thead tr th {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
table.table tbody tr th,
.content table tbody tr th {
  text-align: left;
}
table.table tr:last-child td,
table.table tr:last-child th,
.content table tr:last-child td,
.content table tr:last-child th {
  padding-bottom: 1.25rem;
}
table.table + table.table,
.content table + table.table {
  margin-top: -2rem;
  border-top: 1px dotted var(--table-border-color);
}
table.table.table-fixed,
.content table.table-fixed {
  table-layout: fixed;
}
table.table.table-horizontal td,
table.table.table-horizontal th,
.content table.table-horizontal td,
.content table.table-horizontal th {
  border-right: none;
  border-bottom: 1px solid var(--table-border-color);
}
table.table.table-bordered td,
table.table.table-bordered th,
.content table.table-bordered td,
.content table.table-bordered th {
  border: 1px solid var(--table-border-color);
}
table.table.table-bordered thead tr th,
.content table.table-bordered thead tr th {
  padding-top: 0.75rem;
}
table.table.table-bordered tr:last-child td,
table.table.table-bordered tr:last-child th,
.content table.table-bordered tr:last-child td,
.content table.table-bordered tr:last-child th {
  padding-bottom: 0.75rem;
}
table.table.table-lg td,
table.table.table-lg th,
table.table.table-lg thead tr th,
.content table.table-lg td,
.content table.table-lg th,
.content table.table-lg thead tr th {
  padding: 1.125rem 1.25rem;
}
table.table.table-lg tr:last-child td,
table.table.table-lg tr:last-child th,
.content table.table-lg tr:last-child td,
.content table.table-lg tr:last-child th {
  padding: 1.125rem 1.25rem;
}
table.table.table-lg .icon:not(.icon-native),
.content table.table-lg .icon:not(.icon-native) {
  --icon-size: 1.5rem;
}
table.table.table-hover tbody tr td,
table.table.table-hover tbody tr th,
.content table.table-hover tbody tr td,
.content table.table-hover tbody tr th {
  cursor: default;
  transition: background-color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
table.table.table-hover tbody tr:hover td,
table.table.table-hover tbody tr:hover th,
.content table.table-hover tbody tr:hover td,
.content table.table-hover tbody tr:hover th {
  background: var(--table-active-bg);
}
table.table.table-vertically-centered tr td,
table.table.table-vertically-centered tr th,
.content table.table-vertically-centered tr td,
.content table.table-vertically-centered tr th {
  vertical-align: middle;
}

.content table {
  border: 1px solid var(--table-border-color);
  font-size: 1rem;
}
.content table th,
.content table td {
  padding: 0.75rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--table-border-color);
}
.content table thead tr th {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: var(--table-active-bg);
}
.content table tr:last-child td,
.content table tr:last-child th {
  padding-bottom: 0.75rem;
}

@media (max-width: 576px) {
  table tr th {
    overflow-wrap: break-word;
    hyphens: auto;
  }
}
/*
  Inputs & Forms
*/
.input {
  display: flex;
  flex-direction: row;
  max-width: 24rem;
  margin: 0.5rem 0;
  justify-content: flex-start;
  --icon-size: 1.25rem;
}
.input form {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.input input[type=text],
.input input[type=email],
.input input[type=password],
.input input[type=file],
.input select,
.input textarea {
  font-family: var(--moqups-display);
  font-size: 1rem;
  line-height: 1.2;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.563rem 0.625rem;
  transition: border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: var(--input-color);
  border: 1.5px solid var(--input-border-color);
  border-radius: 0.375rem;
  background: var(--input-bg);
  appearance: none;
}
.input input[type=text]::placeholder,
.input input[type=email]::placeholder,
.input input[type=password]::placeholder,
.input input[type=file]::placeholder,
.input select::placeholder,
.input textarea::placeholder {
  color: var(--input-placeholder-color);
}
.input input[type=text]:placeholder-shown,
.input input[type=email]:placeholder-shown,
.input input[type=password]:placeholder-shown,
.input input[type=file]:placeholder-shown,
.input select:placeholder-shown,
.input textarea:placeholder-shown {
  text-overflow: ellipsis;
}
.input input[type=text]:hover,
.input input[type=email]:hover,
.input input[type=password]:hover,
.input input[type=file]:hover,
.input select:hover,
.input textarea:hover {
  --input-border-color: var(--input-placeholder-color);
}
.input input[type=text]:active, .input input[type=text]:focus,
.input input[type=email]:active,
.input input[type=email]:focus,
.input input[type=password]:active,
.input input[type=password]:focus,
.input input[type=file]:active,
.input input[type=file]:focus,
.input select:active,
.input select:focus,
.input textarea:active,
.input textarea:focus {
  --input-border-color: var(--input-active-color);
}
.input input[type=file]:hover,
.input select:hover {
  cursor: pointer;
}
.input.input-no-border {
  --input-border-color: transparent;
  --input-active-color: var(--input-color);
}
.input.input-lg {
  --icon-size: 1.5rem;
}
.input.input-lg input[type=text],
.input.input-lg input[type=email],
.input.input-lg input[type=password],
.input.input-lg select,
.input.input-lg textarea {
  font-size: 1.25rem;
  padding: 1.063rem 0.625rem;
  border-radius: 0.5rem;
}
.input.input-sm {
  --icon-size: 1rem;
}
.input.input-sm input[type=text],
.input.input-sm input[type=email],
.input.input-sm input[type=password],
.input.input-sm select,
.input.input-sm textarea {
  font-size: 0.875rem;
  padding: 0.438rem 0.625rem;
}
.input.input-round input[type=text],
.input.input-round input[type=email],
.input.input-round input[type=password],
.input.input-round select,
.input.input-round textarea {
  border-radius: 2rem;
}
.input.input-icon-left, .input.input-icon-right, .input.input-icon-both {
  position: relative;
}
.input.input-icon-left svg,
.input.input-icon-left .input-button, .input.input-icon-right svg,
.input.input-icon-right .input-button, .input.input-icon-both svg,
.input.input-icon-both .input-button {
  color: var(--body-color);
  position: absolute;
  top: calc(50% - var(--icon-size) * 0.5);
  min-width: var(--icon-size);
  height: var(--icon-size);
  pointer-events: none;
}
.input.input-icon-left:focus-within svg, .input.input-icon-right:focus-within svg, .input.input-icon-both:focus-within svg {
  color: var(--input-active-color);
}
.input.input-icon-left input[type=text],
.input.input-icon-left input[type=email],
.input.input-icon-left input[type=password],
.input.input-icon-left select,
.input.input-icon-left textarea {
  padding-left: calc(var(--icon-size) * 1.75);
}
.input.input-icon-left svg,
.input.input-icon-left .input-button {
  left: calc(var(--icon-size) * 0.5);
}
.input.input-icon-right input[type=text],
.input.input-icon-right input[type=email],
.input.input-icon-right input[type=password],
.input.input-icon-right select,
.input.input-icon-right textarea {
  padding-right: calc(var(--icon-size) * 1.75);
}
.input.input-icon-right svg,
.input.input-icon-right .input-button {
  right: calc(var(--icon-size) * 0.5);
}
.input.input-icon-both input[type=text],
.input.input-icon-both input[type=email],
.input.input-icon-both input[type=password],
.input.input-icon-both select,
.input.input-icon-both textarea {
  padding-left: calc(var(--icon-size) * 1.75);
  padding-right: calc(var(--icon-size) * 1.75);
}
.input.input-icon-both input[type=text] + svg, .input.input-icon-both input[type=text] + .input-button,
.input.input-icon-both input[type=email] + svg,
.input.input-icon-both input[type=email] + .input-button,
.input.input-icon-both input[type=password] + svg,
.input.input-icon-both input[type=password] + .input-button,
.input.input-icon-both select + svg,
.input.input-icon-both select + .input-button,
.input.input-icon-both textarea + svg,
.input.input-icon-both textarea + .input-button {
  left: auto;
  right: calc(var(--icon-size) * 0.5);
}
.input.input-icon-both svg,
.input.input-icon-both .input-button {
  left: calc(var(--icon-size) * 0.5);
}
.input.input-block {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}
.input.input-block label {
  font-size: 0.875rem;
  width: 100%;
}
.input .input-button {
  cursor: pointer;
}
.input .input-button svg {
  pointer-events: all;
  position: static;
  left: 0;
  right: 0;
  top: 0;
}
.input input[type=checkbox],
.input input[type=radio] {
  margin: 0.5rem 0;
}
.input input[type=checkbox] + label,
.input input[type=radio] + label {
  font-weight: 400;
  margin: 0.5rem 0 0.5rem 0.625rem;
}
.input input[type=checkbox] {
  font-size: 1rem;
  position: relative;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  appearance: none;
}
.input input[type=checkbox]:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  border: 2px solid var(--input-border-color);
  border-radius: 0.1875rem;
  background-color: var(--input-bg);
}
.input input[type=checkbox]:checked:before {
  border-color: var(--input-active-color);
  background-color: var(--input-active-color);
}
.input input[type=checkbox]:checked:after {
  position: absolute;
  top: 0.125rem;
  left: 0.375rem;
  display: block;
  width: 0.3125rem;
  height: 0.625rem;
  content: "";
  transform: rotate(45deg);
  border: solid var(--input-bg);
  border-width: 0 0.125rem 0.125rem 0;
}
.input label {
  font-weight: 700;
  margin-right: 1rem;
}

@media (max-width: 767px) {
  .input {
    max-width: none;
  }
}
/*
  Buttons
*/
.btn {
  --h: 0;
  --s: 0;
  --l: 0;
  font-family: var(--moqups-display);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.1;
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: var(--button-color);
  border: 0;
  border-radius: 0.5rem;
  background: var(--button-bg);
}
.btn:visited {
  color: var(--button-color);
}
.btn:focus, .btn:hover {
  color: var(--button-color);
  background: var(--button-hover-bg);
}
.btn.btn-primary {
  color: #29323d;
  background: #ffe533;
  box-shadow: rgba(255, 229, 51, 0.1) 0 0.3rem 2rem 0;
}
.btn.btn-primary:focus, .btn.btn-primary:hover {
  color: #29323d;
  background: #fed62c;
}
.btn.btn-secondary {
  color: #fff;
  background: #f45f20;
  box-shadow: rgba(244, 95, 32, 0.1) 0 0.3rem 2rem 0;
}
.btn.btn-secondary:focus, .btn.btn-secondary:hover {
  color: #fff;
  background: #e6581b;
}
.btn.btn-main {
  color: var(--button-main-color);
  background: var(--button-main-bg);
}
.btn.btn-main:focus, .btn.btn-main:hover {
  color: var(--button-main-color);
  background: var(--button-main-hover-bg);
}
.btn.btn-outline {
  color: var(--button-color);
  border: 2px solid var(--button-color);
  background: transparent;
  box-shadow: none;
  padding: calc(0.75rem - 2px) 1.5rem;
  transition: border-color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn.btn-outline:focus, .btn.btn-outline:hover {
  color: var(--button-color);
  background: var(--button-hover-bg);
  border-color: var(--button-hover-bg);
}
.btn.btn-promo {
  --contrast: 66%;
  --switch: calc((var(--l) - var(--contrast)) * -34);
  --color: hsla(var(--h), var(--s), var(--switch), 0.92);
  --promo-bg: hsl(var(--h), var(--s), var(--l));
  background: var(--promo-bg);
  color: var(--color);
  box-shadow: 0 0.25rem 0.75rem hsla(var(--h), var(--s), calc(var(--l) - 10%), 0.15);
}
.btn.btn-promo:focus, .btn.btn-promo:hover {
  background: hsl(var(--h), calc(var(--s) - 5%), calc(var(--l) - 5%));
}
.btn.btn-text {
  color: var(--link-color);
  background: transparent;
}
.btn.btn-text:focus, .btn.btn-text:hover {
  color: var(--link-hover-color);
}
.btn.btn-block {
  display: block;
}
.btn.btn-wide {
  min-width: 15rem;
}
.btn.btn-icon {
  padding: 0.5rem;
  --icon-size: 1.5rem;
}
.btn.btn-icon svg {
  transform: translate(0px, 0px);
  width: var(--icon-size);
  height: var(--icon-size);
}
.btn.btn-icon-left, .btn.btn-icon-right {
  --icon-size: 1rem;
  gap: 0.675rem;
}
.btn.btn-icon-left svg, .btn.btn-icon-right svg {
  width: var(--icon-size);
  height: var(--icon-size);
}
.btn.btn-sm {
  font-size: 0.875rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
}
.btn.btn-sm.btn-icon {
  padding: 0.25rem;
  --icon-size: 1.25rem;
}
.btn.btn-sm.btn-outline {
  border-width: 1px;
  padding: calc(0.625rem - 1px) 0.75rem;
}
.btn.btn-md {
  font-size: 1.125rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}
.btn.btn-md.btn-icon {
  padding: 0.375rem;
  --icon-size: 1.5rem;
}
.btn.btn-md.btn-outline {
  padding: calc(1rem - 2px) 1.5rem;
}
.btn.btn-lg {
  font-size: 1.25rem;
  padding: 1.25rem 2rem;
  border-radius: 0.625rem;
}
.btn.btn-lg.btn-icon {
  padding: 0.5rem;
  --icon-size: 2rem;
}
.btn.btn-lg .icon {
  --icon-size: 2rem;
}
.btn.btn-lg.btn-outline {
  padding: calc(1.25rem - 2px) 2rem;
}
.btn.btn-round {
  border-radius: 3rem;
}

/*
  Cards
*/
.card {
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--well-border-color);
  border-radius: 0.875rem;
  margin-bottom: 2rem;
  box-shadow: 0 0.125rem 0.25rem rgba(34, 39, 47, 0.05), 0 0.375rem 0.5rem rgba(34, 39, 47, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 60ch;
  background: var(--well-bg);
  color: var(--well-color);
}
.card figcaption {
  font-size: 1rem;
}
.card figcaption cite.bio {
  color: var(--body-muted-color);
}
.card.no-shadow {
  box-shadow: none;
}
.card.card-full-h {
  min-height: 100%;
}

/*
  Wells
*/
.well {
  --h: 0;
  --s: 0;
  --l: 0;
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.875rem;
  margin-bottom: 1rem;
  background: var(--well-bg);
  display: block;
  border-bottom: 1px solid var(--well-border-color);
  color: var(--body-color);
}
.well.ar-16-9 {
  aspect-ratio: 16/9;
}
.well .icon {
  color: var(--well-icon-color);
}
.well.help-tip {
  --body-color: #29323d;
  --well-border-color: #badcff;
  --well-bg: #e2f1ff;
  --well-icon-color: #1071f2;
  box-shadow: 0 0.375rem 0.5rem rgba(24, 62, 172, 0.07);
}
.well.help-note {
  --body-color: #29323d;
  --well-border-color: #ffcfbd;
  --well-bg: #fbeae8;
  --well-icon-color: #ff7b45;
  box-shadow: 0 0.375rem 0.5rem rgba(59, 71, 84, 0.07);
}
.well.shadow, .well.help-search {
  box-shadow: 0 0.375rem 0.5rem rgba(59, 71, 84, 0.07);
}
.well.well-link {
  border: 1px solid var(--well-border-color);
  transition: border 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.well.well-link:visited {
  color: var(--body-color);
}
.well.well-link:hover, .well.well-link:focus {
  color: var(--body-color);
  border-color: var(--tab-active-border);
  box-shadow: 0 0.375rem 0.5rem rgba(59, 71, 84, 0.07);
}
.well.well-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.well.well-md {
  padding: 2rem 3rem;
  border-radius: 1.25rem;
}
.well.well-lg {
  padding: 3rem 4rem;
  border-radius: 1.5rem;
}
.well.well-xl {
  padding: 3.5rem 5rem;
  border-radius: 2.5rem;
}
.well.well-promo {
  --contrast: 72%;
  --switch: calc((var(--l) - var(--contrast)) * -34);
  --heading-color: hsla(var(--h), var(--s), var(--switch), 0.8);
  --body-muted-color: hsla(var(--h), var(--s), var(--switch), 0.6);
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 1.5rem;
  border: 0;
  --promo-bg: hsl(var(--h), var(--s), var(--l));
  background: var(--promo-bg);
  color: var(--body-muted-color);
  box-shadow: 0 0.5rem 1.5rem hsla(var(--h), var(--s), calc(var(--l) - 10%), 0.3);
}
.well.well-promo.well-promo-image {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
.well.well-promo .promo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  max-height: 10rem;
}
.well.well-promo .promo-image img {
  object-fit: contain;
  vertical-align: bottom;
  max-height: 10rem;
}
.well.well-promo .promo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}
.well.well-promo .banner-success {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
  background: var(--promo-bg);
  border-radius: 1.5rem;
  border: 0;
}
.well.well-promo .text-gradient {
  --gradient-end: hsla(var(--h), var(--s), var(--switch), 0.9);
  --gradient-start: hsla(var(--h), var(--s), var(--switch), 0.6);
}
.well.well-promo .input {
  --input-border-color: transparent;
}
.well.well-comment-left {
  border-bottom-left-radius: 0.5rem;
}
.well.well-comment-right {
  border-bottom-right-radius: 0.5rem;
}
.well.no-shadow {
  box-shadow: none;
}
.well.no-border {
  border: 0;
}
.well.shadow, .well.shadow-md {
  box-shadow: 0.5rem 0.75rem 1.875rem rgba(0, 15, 50, 0.1);
}
.well.shadow-xs {
  box-shadow: 0px 2px 0.175rem rgba(0, 15, 50, 0.05);
}
.well.shadow-sm {
  box-shadow: 1px 3px 0.375rem rgba(0, 15, 50, 0.07);
}
.well.shadow-lg {
  box-shadow: 0.625rem 1.875rem 1.875rem rgba(0, 15, 50, 0.1);
}
.well.well-fade-left {
  background-color: transparent;
  background-image: linear-gradient(to right, transparent, var(--well-bg));
}
.well.well-fade-right {
  background-color: transparent;
  background-image: linear-gradient(to left, transparent, var(--well-bg));
}
.well.well-sticky {
  position: sticky;
  top: 1.5rem;
}
.well kbd,
.well code {
  background: #fff;
}

.content-markdown .well {
  margin: 2rem 0;
}
.content-markdown .well + h2 {
  margin-top: 3rem;
}
.content-markdown .well p:last-child,
.content-markdown .well ol:last-child,
.content-markdown .well ul:last-child {
  margin-bottom: 0;
}
.content-markdown .well ul li,
.content-markdown .well ol li {
  margin-left: 0.875em;
}

header.sticky + main .well.well-sticky {
  top: calc(var(--sticky-header-height) + 1.5rem);
}

@media (min-width: 991px) {
  .well.well-lg-xl {
    padding: 3.5rem 5rem;
    border-radius: 2.5rem;
  }
}
@media (max-width: 768px) {
  .well.well-lg {
    padding: 2rem 2rem;
  }
  .well.well-xl {
    padding: 3rem 2rem;
  }
}
/*
  Tabs
*/
.tabs {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tabs .tab {
  font-family: var(--moqups-display);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0.5rem 1.125rem;
  white-space: nowrap;
  color: var(--body-color);
  border: 1.5px solid transparent;
  border-radius: 6rem;
  background: var(--tab-bg);
}
.tabs .tab.tab-icon-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0;
  padding-bottom: 0;
}
.tabs .tab.tab-icon-left .icon {
  display: flex;
  align-items: center;
}
.tabs .tab svg {
  width: 1.5rem;
  height: 1.5rem;
}
.tabs .tab:hover {
  border-color: rgba(0, 0, 0, 0.05);
}
.tabs .tab:visited {
  color: var(--body-color);
}
.tabs .tab.active {
  color: var(--tab-active-color);
  border-color: var(--tab-active-border);
  background: var(--tab-active-bg);
}
.tabs.tabs-sm .tab {
  padding: 0.375rem 1rem;
}
.tabs.tabs-sm .tab.tab-icon-left {
  padding: 0 2rem 0 1.625rem;
}
.tabs.tabs-lg .tab {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
}
.tabs.tabs-lg .tab.tab-icon-left {
  padding: 0.75rem 2rem 0.75rem 1.625rem;
}
.tabs.tabs-lg .tab svg {
  width: 2rem;
  height: 2rem;
}

.tab-content {
  display: none;
}
.tab-content.show {
  display: block;
}

/*
  Icons, images and videos
*/
.image.ar-16-9 picture,
.ar-16-9 img,
.ar-16-9 video {
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
  display: inline-block;
}

.ar-4-3 picture,
.ar-4-3 img,
.ar-4-3 video {
  aspect-ratio: 4/3;
  height: auto;
  width: 100%;
}

.ar-1-1 picture,
.ar-1-1 img,
.ar-1-1 video {
  aspect-ratio: 1/1;
  height: auto;
  width: 100%;
  object-fit: contain; /* any use case of stretching? */
}

.ar-phone picture,
.ar-phone img,
.ar-phone video {
  aspect-ratio: 9/19.5;
  height: auto;
  width: 100%;
}

.container-bg {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.icon {
  --icon-size: 1.25em;
  display: inline-block;
  vertical-align: middle;
  width: var(--icon-size);
  height: var(--icon-size);
}
.icon svg {
  transform: translate(0px, 0px);
  width: var(--icon-size);
  height: var(--icon-size);
}
.icon.icon-native {
  --icon-size: inherit;
  width: auto;
  height: auto;
}
.icon.icon-native svg {
  max-width: 100%;
}
.icon.icon-xl {
  --icon-size: 3.5rem;
}
.icon.icon-lg {
  --icon-size: 2.5rem;
}
.icon.icon-2rem {
  --icon-size: 2rem;
}
.icon.icon-md {
  --icon-size: 1.5rem;
}
.icon.icon-sm {
  --icon-size: 1rem;
}
.icon.icon-primary {
  color: var(--link-color);
}
.icon.icon-secondary {
  color: #f45f20;
}
.icon.icon-muted {
  color: var(--body-muted-color);
}
.icon.icon-well {
  width: calc(var(--icon-size) + 3rem);
  height: calc(var(--icon-size) + 3rem);
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.875rem;
  margin-bottom: 1rem;
  background: var(--well-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--well-border-color);
  color: var(--body-color);
}

.content .image,
.content .image-overlay {
  margin-bottom: 1.5rem;
}

.content .image-overlay .image {
  margin-bottom: 0;
}

.content-markdown p > img,
.content-markdown p > video {
  display: inline-block;
  vertical-align: top;
  object-fit: contain;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 15, 50, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0px 2px 0.175rem rgba(0, 15, 50, 0.05);
}

.content-markdown p + p > img,
.content-markdown p + p > video {
  margin-top: 0.5rem;
}

.image {
  --img-size: 100%;
  --img-border-radius: 0.25rem;
  --img-box-shadow: none;
  display: flex;
  flex-direction: column;
  width: var(--img-size);
}
.image picture,
.image video {
  display: flex;
  overflow: hidden;
}
.image.image-center {
  align-items: center;
}
.image.image-center picture {
  width: auto;
}
.image img {
  display: inline-block;
  vertical-align: top;
  object-fit: contain;
}
.image.image-cover > img, .image.image-cover > picture, .image.image-cover > video {
  object-fit: cover;
}
.image > img, .image > picture, .image > video {
  border-radius: var(--img-border-radius);
  width: var(--img-size);
  height: var(--img-size);
  box-shadow: var(--img-box-shadow);
  background: var(--body-bg);
}
.image figcaption {
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.3;
  margin-top: 0.75rem;
  padding: 0 1rem;
  text-align: center;
  letter-spacing: -0.1pt;
  opacity: 0.5;
  color: var(--body-color);
  text-decoration: none;
}
.image.size-lg {
  --img-size: 8rem;
}
.image.size-md {
  --img-size: 4rem;
}
.image.size-sm {
  --img-size: 2.75rem;
}
.image.size-xs {
  --img-size: 2rem;
}
.image.size-xxs {
  --img-size: 1rem;
}
.image.grayscaled {
  filter: contrast(1.1) brightness(1.05) grayscale(1);
}
.image.parallax {
  --limit: calc(100vh / 4);
  --scale: 15;
  position: relative;
}
.image.parallax > picture {
  transform: translateY(clamp(-1 * var(--limit), var(--parallaxPos) / var(--scale) * 1px, var(--limit)));
  will-change: transform;
  perspective: 1rem;
}
.image.parallax.parallax-sm {
  --scale: 20;
}
.image.parallax.parallax-md {
  --scale: 15;
}
.image.parallax.parallax-lg {
  --scale: 5;
}
.image.elevated > img, .image.elevated picture, .image.elevated > video {
  border: 2px solid rgba(0, 15, 50, 0.1);
  border-left-color: rgba(0, 15, 50, 0.05);
  border-right-color: rgba(0, 15, 50, 0.1);
  border-top-width: 0;
}
.image.bordered > img, .image.bordered picture, .image.bordered > video {
  border: 1px solid rgba(0, 15, 50, 0.1);
}
.image.tinted > img, .image.tinted picture, .image.tinted > video {
  filter: brightness(98%);
}
.image.round, .image.circle {
  --img-border-radius: 50%;
}
.image.rounded, .image.rounded-md {
  --img-border-radius: 1rem;
}
.image.rounded-sm {
  --img-border-radius: 0.5rem;
}
.image.rounded-lg {
  --img-border-radius: 1.5rem;
}
.image.no-rounded {
  --img-border-radius: 0;
}
.image.shadow, .image.shadow-md {
  --img-box-shadow: 0.5rem 0.75rem 1.875rem rgba(0, 15, 50, 0.1);
}
.image.shadow-xs {
  --img-box-shadow: 0px 2px 0.175rem rgba(0, 15, 50, 0.05);
}
.image.shadow-sm {
  --img-box-shadow: 1px 3px 0.375rem rgba(0, 15, 50, 0.07);
}
.image.shadow-lg {
  --img-box-shadow: 0.625rem 1.875rem 1.875rem rgba(0, 15, 50, 0.1);
}
.image.no-bg > img, .image.no-bg > picture, .image.no-bg > video {
  background: none;
}

a:hover .image.bordered > img,
a:hover .image.bordered picture {
  border: 1px solid rgba(0, 15, 50, 0.2);
}

.image-hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  container-type: inline-size;
}

.image-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  container-type: inline-size;
}
.image-overlay .image {
  position: relative;
}
.image-overlay figcaption {
  position: absolute;
  z-index: 10;
  line-height: 1rem;
  top: calc(50% - 2.25rem);
  text-align: center;
  left: 0;
  right: 0;
  font-family: "Figtree", Helvetica, Arial, sans-Serif;
  font-weight: 650;
  color: #fff;
  font-style: normal;
  font-size: calc(0.75rem + 2cqi);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1), top 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.image-overlay .image::before {
  content: "";
  border-radius: var(--img-border-radius);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 8;
  background: rgba(5, 24, 55, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 25, 50, 0.15);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.image-overlay .image:hover figcaption {
  opacity: 1;
  top: calc(50% - 1.25rem);
}
.image-overlay .image:hover::before {
  opacity: 1;
}
.image-overlay.image-overlay--secondary .image::before {
  background: rgba(16, 104, 221, 0.75);
}

.image-hc-bottom {
  margin-top: -42px;
  max-height: 250px;
}

.youtube-embed {
  position: relative;
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.youtube-embed.rounded-md {
  border-radius: 1rem;
}
.youtube-embed.rounded-sm {
  border-radius: 0.5rem;
}
.youtube-embed.rounded-lg {
  border-radius: 1.5rem;
}

@media (min-width: 767px) {
  .background-hc {
    background-image: url("/img/imagery/help-center-left2.png"), url("/img/imagery/help-center-right2.png");
    background-position: calc(50% - 320px) center, calc(50% + 360px) 80%;
    background-size: 380px, 370px;
    background-repeat: no-repeat, no-repeat;
  }
  .image-hc-bottom {
    margin-top: 0;
  }
}
@media (min-width: 991px) {
  .background-hc {
    background-position: calc(50% - 380px) center, calc(50% + 410px) center;
  }
}
@media (min-width: 1199px) {
  .background-hc {
    background-position: calc(50% - 420px) center, calc(50% + 440px) center;
  }
  .image-hc-bottom {
    margin-top: -42px;
  }
}
@media (min-width: 1680px) {
  .image.parallax {
    --scale: 40;
  }
  .hero-image {
    margin-top: 5%;
    margin-bottom: 5%;
    transform: scale(1.2);
    transform-origin: center left;
  }
}
@media (max-width: 576px) {
  .image.parallax {
    --scale: 80;
  }
}
/*
	FAQs
*/
.question-wrapper + .question-wrapper {
  border-top: 1px solid var(--table-border-color);
}

details.faq,
details.question {
  padding: 0.5rem 0;
}
details.faq + details.faq,
details.question + details.faq {
  border-top: 1px solid var(--table-border-color);
}
details.faq[open] summary .icon,
details.question[open] summary .icon {
  transform: rotate(180deg);
}
details.faq.faq-sm summary, details.faq.question-sm summary,
details.question.faq-sm summary,
details.question.question-sm summary {
  padding: 0.75rem 0;
}
details.faq.faq-sm summary .icon, details.faq.question-sm summary .icon,
details.question.faq-sm summary .icon,
details.question.question-sm summary .icon {
  --icon-size: 1.5rem;
}
details.faq.faq-sm p, details.faq.question-sm p,
details.question.faq-sm p,
details.question.question-sm p {
  font-size: 1rem;
}
details.faq summary,
details.question summary {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
}
details.faq summary .icon,
details.question summary .icon {
  --icon-size: 2rem;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
details.faq summary::-webkit-details-marker,
details.question summary::-webkit-details-marker {
  display: none;
}

details .answer {
  position: relative;
}

.qa-permalink {
  position: absolute;
  top: 0em;
  left: -1.25em;
  padding: 0.2em;
  color: inherit;
}

@media (min-width: 992px) {
  details.question .answer {
    padding-right: 2rem;
  }
}
/*
  Search content
  --------------
*/
.search-wrapper {
  max-width: 24rem;
  position: relative;
  transition: max-width 0.3s ease;
  /*
  	When focused, expand the input.
  */
  /* 
  	For browsers supporting :has(), 
  	keep the input expanded even when not focused
  	when it has a search term.
  */
}
.search-wrapper.left-align .search-results-wrapper {
  right: auto;
  left: 0;
}
.search-wrapper:focus, .search-wrapper:focus-within {
  max-width: 100rem;
}
.search-wrapper:has(.has-term) {
  max-width: 100rem;
}

.search-form:not(.has-term) [type=reset] {
  display: none;
}

/*
	Search results
	--------------
*/
.search-results-wrapper {
  position: absolute;
  contain: layout;
  top: calc(100% + 0.25rem);
  right: 0;
  z-index: 200;
  padding: 0;
  border-radius: 0.5rem;
  max-height: 54vh;
  left: auto;
  overflow-x: hidden;
  overflow: auto;
  width: 100%;
}
.search-results-wrapper:not(.has-term) {
  display: none;
}
.search-results-wrapper.has-results .no-results, .search-results-wrapper:not(.has-results) .search-results-list:not(.no-results) {
  display: none;
}

.search-results-list {
  display: flex; /*none?*/
  overflow-x: hidden;
  overflow: auto;
  flex-direction: column;
}
.search-results-list .search-result,
.search-results-list .label {
  display: flex;
  width: auto;
  margin: 0 1rem;
}
.search-results-list .search-result:first-of-type,
.search-results-list .label:first-of-type {
  margin-top: 0.75rem;
}
.search-results-list .search-result:last-of-type,
.search-results-list .label:last-of-type {
  margin-bottom: 0.75rem;
}
.search-results-list .search-result-title {
  flex-grow: 1;
  margin: 0;
  font-size: 1rem;
}
.search-results-list .search-result-title:hover + .search-preview {
  z-index: 2;
}
.search-results-list .search-result-title:focus + .search-preview {
  z-index: 1;
}

.search-preview {
  display: none;
  width: 12rem;
  flex: none;
  position: fixed;
  contain: layout;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 1rem 1.5rem;
  border-left: 1px solid rgba(0, 15, 50, 0.1);
  background-color: var(--input-bg);
  max-height: 100%;
  overflow: hidden;
}
.search-preview .search-preview-title {
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0.5rem 0 0;
  padding: 0;
  color: var(--dropdown-color);
}
.search-preview .search-preview-excerpt {
  font-size: 0.75rem;
  margin: 0.375rem 0 0;
  padding: 0;
  color: var(--dropdown-color);
}

@media (min-width: 768px) {
  .search-results-wrapper {
    min-width: 36rem;
  }
  .search-results-wrapper.has-results {
    min-height: 18.5rem;
  }
  .search-results-list:not(.no-results) {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-right: 12rem;
  }
  .search-result-title:hover + .search-preview,
  .search-result-title:focus + .search-preview {
    display: block;
  }
}
.search-wrapper--no-thumb [data-search-result-image],
.search-wrapper--no-desc [data-search-result-desc],
.search-wrapper--no-excerpt [data-search-result-excerpt] {
  display: none;
}

/*
	Suppress pagefind dots for loading results
*/
[data-pfmod-loading] {
  opacity: 0;
}

/* dont include search inputs in global rem resize for mobile */
@media (max-width: 420px) {
  .search-wrapper.input input {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .search-wrapper.input input {
    font-size: 16px;
  }
}
/*
  GDPR consent box
*/
.consent-box {
  --link-color: var(--body-color);
  position: fixed;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 400;
  background: var(--body-bg);
  border-radius: 0.5rem;
  border: 1px solid var(--tab-bg);
  padding: 1rem 2rem 1rem 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
  box-shadow: 0rem 0.5rem 0.5rem rgba(0, 15, 50, 0.2);
}
.consent-box p {
  font-size: 0.875rem;
  padding-right: 3rem;
}
.consent-box .consent-deny:hover {
  text-decoration: underline;
  color: var(--link-color);
}
.consent-box .consent-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.v-separator {
  display: block;
  width: 1px;
  height: 1rem;
  background: var(--body-muted-color);
}

.newsletter-thanks {
  position: relative;
  text-align: center;
  max-width: 680px;
  min-height: 380px;
  padding: 72px 0 0;
  margin: 90px auto;
  background: url("/img/blog/thanks-bg.png") no-repeat 0 0;
  background-size: 680px auto;
}
@media (max-width: 767px) {
  .newsletter-thanks {
    background: none;
    margin: 30px auto;
  }
}
.newsletter-thanks::before {
  content: "";
  position: absolute;
  left: -90px;
  top: 0;
  background: url("/img/blog/thanks-1.png") no-repeat center center;
  background-size: 180px auto;
  width: 320px;
  height: 320px;
}
@media (max-width: 767px) {
  .newsletter-thanks::before {
    display: none;
  }
}
.newsletter-thanks::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 16px;
  background: url("/img/blog/thanks-2.png") no-repeat center center;
  background-size: 180px auto;
  width: 320px;
  height: 320px;
}
@media (max-width: 767px) {
  .newsletter-thanks::after {
    display: none;
  }
}
.newsletter-thanks h1 {
  font-size: 60px;
  color: #1071f2;
}
@media (max-width: 575px) {
  .newsletter-thanks h1 {
    font-size: 48px;
  }
}
.newsletter-thanks .entry .entry-content {
  margin: 0 auto;
  max-width: 320px;
}
.newsletter-thanks .entry .entry-content .wp-block-button {
  margin-top: 10px;
}

[data-article-hidden] {
  display: none;
}

.content-blog .image {
  margin-bottom: 2.5rem;
}

/* weird markup fixes */
.content-blog .image p,
.content-blog p:empty {
  margin: 0;
}

.content-blog h4 {
  font-size: 1.25rem;
}

/* 
applying default blog sizing for old posts 
for new posts use 'btn-md my-2' classes in buttons
*/
.content-blog .btn {
  font-size: 1.125rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

p.lead-blog {
  font-size: 1.5rem;
}

@media (min-width: 1900px) {
  html {
    font-size: 18px;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .col-xxxl-12 {
    flex: 1 0 0%;
  }
}
.blog-tags {
  font-family: var(--moqups-display);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-tags > * {
  background: #eef1f5;
  color: #798da3;
  border-radius: 0.5em;
  padding: 0.25em 0.625em;
  letter-spacing: 0.05em;
}

.text-center .blog-tags {
  justify-content: center;
}

.blog-template-box {
  --bg-color: #eef1f5;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.75rem 1rem;
  border-radius: 1.25rem;
  background: var(--bg-color);
  justify-content: center;
  align-items: center;
}
.blog-template-box .btn {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}
.blog-template-box figcaption {
  opacity: 0.75;
}

.blog-template-box a figure picture {
  position: relative;
  transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  bottom: 0;
}

.blog-template-box a:hover figure picture {
  bottom: 5px;
  transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.container,
.container-fluid {
  background-color: var(--body-bg);
  color: var(--body-color);
}

.theme-blue {
  --link-color: #fff;
  --link-hover-color: #e2f1ff;
  --link-underline-color: #73baff;
  --heading-color: #fff;
  --active-color: #fff;
  --body-color: #f1f7fd;
  --body-muted-color: rgba(241, 247, 253, 0.5);
  --body-bg: #1071f2;
  --table-active-bg: #1068dd;
  --table-border-color: #185dcb;
  --tab-bg: rgba(0, 0, 70, 0.1);
  --tab-active-color: #1071f2;
  --tab-active-bg: #fff;
  --tab-active-border: #fff;
  --button-bg: #185dcb;
  --button-color: #fff;
  --button-hover-bg: #183eac;
  --button-main-bg: #fff;
  --button-main-color: #1068dd;
  --button-main-hover-bg: #e2f1ff;
  --input-bg: #1068dd;
  --input-color: #fff;
  --input-active-color: #fff;
  --input-placeholder-color: #73baff;
  --input-border-color: #1068dd;
  --well-bg: #1068dd;
  --well-color: #f1f7fd;
  --well-icon-color: #f1f7fd;
  --footer-heading-color: #fff;
  --footer-link-color: #badcff;
  --footer-link-hover-color: #73baff;
  --container-filter: brightness(100);
}

.theme-dark {
  --link-color: #fff;
  --link-hover-color: #dee4eb;
  --link-underline-color: rgba(255, 255, 255, 0.2);
  --heading-color: #fff;
  --active-color: #fff;
  --body-color: #dee4eb;
  --body-muted-color: rgba(222, 228, 235, 0.5);
  --body-bg: #22272f;
  --table-active-bg: #29323d;
  --table-border-color: #3b4754;
  --tab-bg: rgba(205, 205, 255, 0.1);
  --tab-active-color: #22272f;
  --tab-active-bg: #fff;
  --tab-active-border: transparent;
  --dropdown-bg: #29323d;
  --dropdown-color: #dee4eb;
  --dropdown-hover-color: #fff;
  --dropdown-hover-bg: #3b4754;
  --button-bg: #3b4754;
  --button-color: #fff;
  --button-hover-bg: #29323d;
  --button-main-bg: #fff;
  --button-main-color: #29323d;
  --button-main-hover-bg: #dee4eb;
  --input-bg: #3b4754;
  --input-color: #fff;
  --input-active-color: #fff;
  --input-placeholder-color: #677d92;
  --input-border-color: #3b4754;
  --well-bg: #29323d;
  --well-color: #eef1f5;
  --well-icon-color: #eef1f5;
  --footer-heading-color: #c9d3dd;
  --footer-link-color: #798da3;
  --footer-link-hover-color: #677d92;
  --container-filter: brightness(100);
}

.theme-light {
  --body-bg: #f7f8f9;
  --table-active-bg: #eef1f5;
  --tab-bg: #eef1f5;
  --well-bg: #fff;
}

.theme-purple {
  --body-color: #fff;
  --body-muted-color: #ded6ff;
  --heading-color: var(--body-color);
  --body-bg: #9077fc;
  --well-color: #fff;
  --well-bg: #7656f3;
  --container-filter: brightness(100);
}

.theme-yellow {
  --link-color: #185dcb;
  --link-hover-color: #183eac;
  --link-underline-color: transparent;
  --body-color: #22272f;
  --body-muted-color: rgba(34, 39, 47, 0.5);
  --body-bg: #fed62c;
  --table-active-bg: #fed62c;
  --table-border-color: #3b4754;
  --tab-bg: transparent;
  --input-border-color: #fff;
  --tab-active-border: transparent;
  --tab-active-bg: #29323d;
  --tab-active-color: #fff;
  --button-bg: #fcc223;
  --button-color: #22272f;
  --button-hover-bg: #fbaa19;
  --footer-heading-color: #29323d;
  --footer-link-color: #29323d;
  --footer-link-hover-color: #29323d;
  --container-filter: brightness(0);
}

@media (max-width: 420px) {
  html {
    font-size: 14px; /* base font size */
  }
}
@media (max-width: 320px) {
  html {
    font-size: 12px; /* base font size */
  }
}