@charset "UTF-8";
/* Utilities */
/* Extern libraries */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-dsgvo: #efefef;
  --bs-rose: #D23C55;
  --bs-ember: #E57624;
  --bs-honey: #EEA63E;
  --bs-sage: #829768;
  --bs-aqua: #589FB4;
  --bs-azure: #46769A;
  --bs-dsgvo-rgb: 239, 239, 239;
  --bs-rose-rgb: 210, 60, 85;
  --bs-ember-rgb: 229, 118, 36;
  --bs-honey-rgb: 238, 166, 62;
  --bs-sage-rgb: 130, 151, 104;
  --bs-aqua-rgb: 88, 159, 180;
  --bs-azure-rgb: 70, 118, 154;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 22, 22, 21;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: 'Exo 2', Arial, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 300;
  --bs-body-line-height: 1.5;
  --bs-body-color: #161615;
  --bs-body-bg: #fff;
}

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

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

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

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

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

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

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

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

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

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

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

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

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

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

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

.img-fluid, .image-embed-item {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 20px);
  padding-left: var(--bs-gutter-x, 20px);
  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: 1560px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1530px;
  }
}
.row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 2rem;
  }
  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-6,
.gx-sm-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-sm-6,
.gy-sm-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-sm-7,
.gx-sm-7 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-7,
.gy-sm-7 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-8,
.gx-sm-8 {
    --bs-gutter-x: 3.5rem;
  }
  .g-sm-8,
.gy-sm-8 {
    --bs-gutter-y: 3.5rem;
  }
  .g-sm-9,
.gx-sm-9 {
    --bs-gutter-x: 4rem;
  }
  .g-sm-9,
.gy-sm-9 {
    --bs-gutter-y: 4rem;
  }
  .g-sm-10,
.gx-sm-10 {
    --bs-gutter-x: 4.5rem;
  }
  .g-sm-10,
.gy-sm-10 {
    --bs-gutter-y: 4.5rem;
  }
  .g-sm-11,
.gx-sm-11 {
    --bs-gutter-x: 5rem;
  }
  .g-sm-11,
.gy-sm-11 {
    --bs-gutter-y: 5rem;
  }
  .g-sm-12,
.gx-sm-12 {
    --bs-gutter-x: 5.5rem;
  }
  .g-sm-12,
.gy-sm-12 {
    --bs-gutter-y: 5.5rem;
  }
  .g-sm-13,
.gx-sm-13 {
    --bs-gutter-x: 6rem;
  }
  .g-sm-13,
.gy-sm-13 {
    --bs-gutter-y: 6rem;
  }
  .g-sm-14,
.gx-sm-14 {
    --bs-gutter-x: 6.5rem;
  }
  .g-sm-14,
.gy-sm-14 {
    --bs-gutter-y: 6.5rem;
  }
  .g-sm-15,
.gx-sm-15 {
    --bs-gutter-x: 7rem;
  }
  .g-sm-15,
.gy-sm-15 {
    --bs-gutter-y: 7rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 2rem;
  }
  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 2rem;
  }
  .g-md-6,
.gx-md-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-md-6,
.gy-md-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-md-7,
.gx-md-7 {
    --bs-gutter-x: 3rem;
  }
  .g-md-7,
.gy-md-7 {
    --bs-gutter-y: 3rem;
  }
  .g-md-8,
.gx-md-8 {
    --bs-gutter-x: 3.5rem;
  }
  .g-md-8,
.gy-md-8 {
    --bs-gutter-y: 3.5rem;
  }
  .g-md-9,
.gx-md-9 {
    --bs-gutter-x: 4rem;
  }
  .g-md-9,
.gy-md-9 {
    --bs-gutter-y: 4rem;
  }
  .g-md-10,
.gx-md-10 {
    --bs-gutter-x: 4.5rem;
  }
  .g-md-10,
.gy-md-10 {
    --bs-gutter-y: 4.5rem;
  }
  .g-md-11,
.gx-md-11 {
    --bs-gutter-x: 5rem;
  }
  .g-md-11,
.gy-md-11 {
    --bs-gutter-y: 5rem;
  }
  .g-md-12,
.gx-md-12 {
    --bs-gutter-x: 5.5rem;
  }
  .g-md-12,
.gy-md-12 {
    --bs-gutter-y: 5.5rem;
  }
  .g-md-13,
.gx-md-13 {
    --bs-gutter-x: 6rem;
  }
  .g-md-13,
.gy-md-13 {
    --bs-gutter-y: 6rem;
  }
  .g-md-14,
.gx-md-14 {
    --bs-gutter-x: 6.5rem;
  }
  .g-md-14,
.gy-md-14 {
    --bs-gutter-y: 6.5rem;
  }
  .g-md-15,
.gx-md-15 {
    --bs-gutter-x: 7rem;
  }
  .g-md-15,
.gy-md-15 {
    --bs-gutter-y: 7rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 2rem;
  }
  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-6,
.gx-lg-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-lg-6,
.gy-lg-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-lg-7,
.gx-lg-7 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-7,
.gy-lg-7 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-8,
.gx-lg-8 {
    --bs-gutter-x: 3.5rem;
  }
  .g-lg-8,
.gy-lg-8 {
    --bs-gutter-y: 3.5rem;
  }
  .g-lg-9,
.gx-lg-9 {
    --bs-gutter-x: 4rem;
  }
  .g-lg-9,
.gy-lg-9 {
    --bs-gutter-y: 4rem;
  }
  .g-lg-10,
.gx-lg-10 {
    --bs-gutter-x: 4.5rem;
  }
  .g-lg-10,
.gy-lg-10 {
    --bs-gutter-y: 4.5rem;
  }
  .g-lg-11,
.gx-lg-11 {
    --bs-gutter-x: 5rem;
  }
  .g-lg-11,
.gy-lg-11 {
    --bs-gutter-y: 5rem;
  }
  .g-lg-12,
.gx-lg-12 {
    --bs-gutter-x: 5.5rem;
  }
  .g-lg-12,
.gy-lg-12 {
    --bs-gutter-y: 5.5rem;
  }
  .g-lg-13,
.gx-lg-13 {
    --bs-gutter-x: 6rem;
  }
  .g-lg-13,
.gy-lg-13 {
    --bs-gutter-y: 6rem;
  }
  .g-lg-14,
.gx-lg-14 {
    --bs-gutter-x: 6.5rem;
  }
  .g-lg-14,
.gy-lg-14 {
    --bs-gutter-y: 6.5rem;
  }
  .g-lg-15,
.gx-lg-15 {
    --bs-gutter-x: 7rem;
  }
  .g-lg-15,
.gy-lg-15 {
    --bs-gutter-y: 7rem;
  }
}
@media (min-width: 1560px) {
  .col-xl {
    flex: 1 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 2rem;
  }
  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-6,
.gx-xl-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xl-6,
.gy-xl-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xl-7,
.gx-xl-7 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-7,
.gy-xl-7 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-8,
.gx-xl-8 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xl-8,
.gy-xl-8 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xl-9,
.gx-xl-9 {
    --bs-gutter-x: 4rem;
  }
  .g-xl-9,
.gy-xl-9 {
    --bs-gutter-y: 4rem;
  }
  .g-xl-10,
.gx-xl-10 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xl-10,
.gy-xl-10 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xl-11,
.gx-xl-11 {
    --bs-gutter-x: 5rem;
  }
  .g-xl-11,
.gy-xl-11 {
    --bs-gutter-y: 5rem;
  }
  .g-xl-12,
.gx-xl-12 {
    --bs-gutter-x: 5.5rem;
  }
  .g-xl-12,
.gy-xl-12 {
    --bs-gutter-y: 5.5rem;
  }
  .g-xl-13,
.gx-xl-13 {
    --bs-gutter-x: 6rem;
  }
  .g-xl-13,
.gy-xl-13 {
    --bs-gutter-y: 6rem;
  }
  .g-xl-14,
.gx-xl-14 {
    --bs-gutter-x: 6.5rem;
  }
  .g-xl-14,
.gy-xl-14 {
    --bs-gutter-y: 6.5rem;
  }
  .g-xl-15,
.gx-xl-15 {
    --bs-gutter-x: 7rem;
  }
  .g-xl-15,
.gy-xl-15 {
    --bs-gutter-y: 7rem;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: 19px;
  padding-bottom: 19px;
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.176470588;
}

.col-form-label-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 19px 30px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.176470588;
  color: #161615;
  background-color: var(--input-bg);
  background-clip: padding-box;
  border: 0 solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 29px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #161615;
  background-color: var(--input-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--theme-color-rgb), 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.176470588em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 19px 30px;
  margin: -19px -30px;
  margin-inline-end: 30px;
  color: #161615;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 0;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 19px 30px;
  margin: -19px -30px;
  margin-inline-end: 30px;
  color: #161615;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 0;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 19px 0;
  margin-bottom: 0;
  line-height: 1.176470588;
  color: #161615;
  background-color: transparent;
  border: solid transparent;
  border-width: 0 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.176470588em + 0.5rem);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.176470588em + 1rem);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.176470588em + 38px);
}
textarea.form-control-sm {
  min-height: calc(1.176470588em + 0.5rem);
}
textarea.form-control-lg {
  min-height: calc(1.176470588em + 1rem);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 19px;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.176470588em;
  border-radius: 29px;
}
.form-control-color::-webkit-color-swatch {
  height: 1.176470588em;
  border-radius: 29px;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: 3.5rem;
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 30px;
  pointer-events: none;
  border: 0 solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 30px;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.176470588em + 38px);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.294117647em + 9.5px) center;
  background-size: calc(0.588235294em + 19px) calc(0.588235294em + 19px);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.176470588em + 38px);
  background-position: top calc(0.294117647em + 9.5px) right calc(0.294117647em + 9.5px);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 165px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 30px center, center right 90px;
  background-size: 16px 12px, calc(0.588235294em + 19px) calc(0.588235294em + 19px);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

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

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.176470588em + 38px);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.294117647em + 9.5px) center;
  background-size: calc(0.588235294em + 19px) calc(0.588235294em + 19px);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.176470588em + 38px);
  background-position: top calc(0.294117647em + 9.5px) right calc(0.294117647em + 9.5px);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 165px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 30px center, center right 90px;
  background-size: 16px 12px, calc(0.588235294em + 19px) calc(0.588235294em + 19px);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

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

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #161615;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1560px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

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

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

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

.link-dsgvo {
  color: #efefef;
}
.link-dsgvo:hover, .link-dsgvo:focus {
  color: #f2f2f2;
}

.link-rose {
  color: #D23C55;
}
.link-rose:hover, .link-rose:focus {
  color: #a83044;
}

.link-ember {
  color: #E57624;
}
.link-ember:hover, .link-ember:focus {
  color: #ea9150;
}

.link-honey {
  color: #EEA63E;
}
.link-honey:hover, .link-honey:focus {
  color: #f1b865;
}

.link-sage {
  color: #829768;
}
.link-sage:hover, .link-sage:focus {
  color: #9bac86;
}

.link-aqua {
  color: #589FB4;
}
.link-aqua:hover, .link-aqua:focus {
  color: #79b2c3;
}

.link-azure {
  color: #46769A;
}
.link-azure:hover, .link-azure:focus {
  color: #385e7b;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

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

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1560px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

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

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

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

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

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

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

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

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

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

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

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

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

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

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

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

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

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

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

.border {
  border: 1px solid #161615 !important;
}

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

.border-top {
  border-top: 1px solid #161615 !important;
}

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

.border-end {
  border-right: 1px solid #161615 !important;
}

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

.border-bottom {
  border-bottom: 1px solid #161615 !important;
}

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

.border-start {
  border-left: 1px solid #161615 !important;
}

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

.border-dsgvo {
  border-color: #efefef !important;
}

.border-rose {
  border-color: #D23C55 !important;
}

.border-ember {
  border-color: #E57624 !important;
}

.border-honey {
  border-color: #EEA63E !important;
}

.border-sage {
  border-color: #829768 !important;
}

.border-aqua {
  border-color: #589FB4 !important;
}

.border-azure {
  border-color: #46769A !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

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

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

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-8 {
  gap: 3.5rem !important;
}

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

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

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

.gap-12 {
  gap: 5.5rem !important;
}

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

.gap-14 {
  gap: 6.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

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

.m-8 {
  margin: 3.5rem !important;
}

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

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

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

.m-12 {
  margin: 5.5rem !important;
}

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

.m-14 {
  margin: 6.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-8 {
  padding: 3.5rem !important;
}

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

.p-10 {
  padding: 4.5rem !important;
}

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

.p-12 {
  padding: 5.5rem !important;
}

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

.p-14 {
  padding: 6.5rem !important;
}

.p-15 {
  padding: 7rem !important;
}

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

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

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

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

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

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

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

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

.px-8 {
  padding-right: 3.5rem !important;
  padding-left: 3.5rem !important;
}

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

.px-10 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}

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

.px-12 {
  padding-right: 5.5rem !important;
  padding-left: 5.5rem !important;
}

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

.px-14 {
  padding-right: 6.5rem !important;
  padding-left: 6.5rem !important;
}

.px-15 {
  padding-right: 7rem !important;
  padding-left: 7rem !important;
}

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

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

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

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

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

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

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

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

.py-8 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

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

.py-10 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

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

.py-12 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

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

.py-14 {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

.py-15 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

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

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

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

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

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

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

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

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

.pt-8 {
  padding-top: 3.5rem !important;
}

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

.pt-10 {
  padding-top: 4.5rem !important;
}

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

.pt-12 {
  padding-top: 5.5rem !important;
}

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

.pt-14 {
  padding-top: 6.5rem !important;
}

.pt-15 {
  padding-top: 7rem !important;
}

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

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 2rem !important;
}

.pe-6 {
  padding-right: 2.5rem !important;
}

.pe-7 {
  padding-right: 3rem !important;
}

.pe-8 {
  padding-right: 3.5rem !important;
}

.pe-9 {
  padding-right: 4rem !important;
}

.pe-10 {
  padding-right: 4.5rem !important;
}

.pe-11 {
  padding-right: 5rem !important;
}

.pe-12 {
  padding-right: 5.5rem !important;
}

.pe-13 {
  padding-right: 6rem !important;
}

.pe-14 {
  padding-right: 6.5rem !important;
}

.pe-15 {
  padding-right: 7rem !important;
}

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

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

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

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

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

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

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

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

.pb-8 {
  padding-bottom: 3.5rem !important;
}

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

.pb-10 {
  padding-bottom: 4.5rem !important;
}

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

.pb-12 {
  padding-bottom: 5.5rem !important;
}

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

.pb-14 {
  padding-bottom: 6.5rem !important;
}

.pb-15 {
  padding-bottom: 7rem !important;
}

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

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 2rem !important;
}

.ps-6 {
  padding-left: 2.5rem !important;
}

.ps-7 {
  padding-left: 3rem !important;
}

.ps-8 {
  padding-left: 3.5rem !important;
}

.ps-9 {
  padding-left: 4rem !important;
}

.ps-10 {
  padding-left: 4.5rem !important;
}

.ps-11 {
  padding-left: 5rem !important;
}

.ps-12 {
  padding-left: 5.5rem !important;
}

.ps-13 {
  padding-left: 6rem !important;
}

.ps-14 {
  padding-left: 6.5rem !important;
}

.ps-15 {
  padding-left: 7rem !important;
}

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

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

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

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

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

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

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

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

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

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

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

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

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

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

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

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-dsgvo {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dsgvo-rgb), var(--bs-text-opacity)) !important;
}

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

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

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

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

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

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

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

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

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

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

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

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

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

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

.bg-dsgvo {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dsgvo-rgb), var(--bs-bg-opacity)) !important;
}

.bg-rose {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-rose-rgb), var(--bs-bg-opacity)) !important;
}

.bg-ember {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-ember-rgb), var(--bs-bg-opacity)) !important;
}

.bg-honey {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-honey-rgb), var(--bs-bg-opacity)) !important;
}

.bg-sage {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-sage-rgb), var(--bs-bg-opacity)) !important;
}

.bg-aqua {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-aqua-rgb), var(--bs-bg-opacity)) !important;
}

.bg-azure {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-azure-rgb), var(--bs-bg-opacity)) !important;
}

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

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

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rounded-pill {
  border-radius: 50rem !important;
}

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

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.to-1 {
  transition: opacity 0.1s ease-in-out !important;
}

.to-2 {
  transition: opacity 0.2s ease-in-out !important;
}

.to-3 {
  transition: opacity 0.3s ease-in-out !important;
}

.to-4 {
  transition: opacity 0.4s ease-in-out !important;
}

.to-5 {
  transition: opacity 0.5s ease-in-out !important;
}

.to-1-linear {
  transition: opacity 0.1s linear !important;
}

.to-2-linear {
  transition: opacity 0.2s linear !important;
}

.to-3-linear {
  transition: opacity 0.3s linear !important;
}

.to-4-linear {
  transition: opacity 0.4s linear !important;
}

.to-5-linear {
  transition: opacity 0.5s linear !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 2rem !important;
  }
  .gap-sm-6 {
    gap: 2.5rem !important;
  }
  .gap-sm-7 {
    gap: 3rem !important;
  }
  .gap-sm-8 {
    gap: 3.5rem !important;
  }
  .gap-sm-9 {
    gap: 4rem !important;
  }
  .gap-sm-10 {
    gap: 4.5rem !important;
  }
  .gap-sm-11 {
    gap: 5rem !important;
  }
  .gap-sm-12 {
    gap: 5.5rem !important;
  }
  .gap-sm-13 {
    gap: 6rem !important;
  }
  .gap-sm-14 {
    gap: 6.5rem !important;
  }
  .gap-sm-15 {
    gap: 7rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 2rem !important;
  }
  .m-sm-6 {
    margin: 2.5rem !important;
  }
  .m-sm-7 {
    margin: 3rem !important;
  }
  .m-sm-8 {
    margin: 3.5rem !important;
  }
  .m-sm-9 {
    margin: 4rem !important;
  }
  .m-sm-10 {
    margin: 4.5rem !important;
  }
  .m-sm-11 {
    margin: 5rem !important;
  }
  .m-sm-12 {
    margin: 5.5rem !important;
  }
  .m-sm-13 {
    margin: 6rem !important;
  }
  .m-sm-14 {
    margin: 6.5rem !important;
  }
  .m-sm-15 {
    margin: 7rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-8 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-sm-9 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-10 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-sm-11 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-12 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-sm-13 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-14 {
    margin-right: 6.5rem !important;
    margin-left: 6.5rem !important;
  }
  .mx-sm-15 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-sm-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-10 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-sm-11 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-12 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-sm-13 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-14 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .my-sm-15 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 2rem !important;
  }
  .mt-sm-6 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-7 {
    margin-top: 3rem !important;
  }
  .mt-sm-8 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-9 {
    margin-top: 4rem !important;
  }
  .mt-sm-10 {
    margin-top: 4.5rem !important;
  }
  .mt-sm-11 {
    margin-top: 5rem !important;
  }
  .mt-sm-12 {
    margin-top: 5.5rem !important;
  }
  .mt-sm-13 {
    margin-top: 6rem !important;
  }
  .mt-sm-14 {
    margin-top: 6.5rem !important;
  }
  .mt-sm-15 {
    margin-top: 7rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 2rem !important;
  }
  .me-sm-6 {
    margin-right: 2.5rem !important;
  }
  .me-sm-7 {
    margin-right: 3rem !important;
  }
  .me-sm-8 {
    margin-right: 3.5rem !important;
  }
  .me-sm-9 {
    margin-right: 4rem !important;
  }
  .me-sm-10 {
    margin-right: 4.5rem !important;
  }
  .me-sm-11 {
    margin-right: 5rem !important;
  }
  .me-sm-12 {
    margin-right: 5.5rem !important;
  }
  .me-sm-13 {
    margin-right: 6rem !important;
  }
  .me-sm-14 {
    margin-right: 6.5rem !important;
  }
  .me-sm-15 {
    margin-right: 7rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 4.5rem !important;
  }
  .mb-sm-11 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-12 {
    margin-bottom: 5.5rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-14 {
    margin-bottom: 6.5rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 2rem !important;
  }
  .ms-sm-6 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-7 {
    margin-left: 3rem !important;
  }
  .ms-sm-8 {
    margin-left: 3.5rem !important;
  }
  .ms-sm-9 {
    margin-left: 4rem !important;
  }
  .ms-sm-10 {
    margin-left: 4.5rem !important;
  }
  .ms-sm-11 {
    margin-left: 5rem !important;
  }
  .ms-sm-12 {
    margin-left: 5.5rem !important;
  }
  .ms-sm-13 {
    margin-left: 6rem !important;
  }
  .ms-sm-14 {
    margin-left: 6.5rem !important;
  }
  .ms-sm-15 {
    margin-left: 7rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 2rem !important;
  }
  .p-sm-6 {
    padding: 2.5rem !important;
  }
  .p-sm-7 {
    padding: 3rem !important;
  }
  .p-sm-8 {
    padding: 3.5rem !important;
  }
  .p-sm-9 {
    padding: 4rem !important;
  }
  .p-sm-10 {
    padding: 4.5rem !important;
  }
  .p-sm-11 {
    padding: 5rem !important;
  }
  .p-sm-12 {
    padding: 5.5rem !important;
  }
  .p-sm-13 {
    padding: 6rem !important;
  }
  .p-sm-14 {
    padding: 6.5rem !important;
  }
  .p-sm-15 {
    padding: 7rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-8 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-sm-9 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-10 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-sm-11 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-12 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-sm-13 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-14 {
    padding-right: 6.5rem !important;
    padding-left: 6.5rem !important;
  }
  .px-sm-15 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-10 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-sm-11 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-12 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-sm-13 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-14 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .py-sm-15 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 2rem !important;
  }
  .pt-sm-6 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-7 {
    padding-top: 3rem !important;
  }
  .pt-sm-8 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-9 {
    padding-top: 4rem !important;
  }
  .pt-sm-10 {
    padding-top: 4.5rem !important;
  }
  .pt-sm-11 {
    padding-top: 5rem !important;
  }
  .pt-sm-12 {
    padding-top: 5.5rem !important;
  }
  .pt-sm-13 {
    padding-top: 6rem !important;
  }
  .pt-sm-14 {
    padding-top: 6.5rem !important;
  }
  .pt-sm-15 {
    padding-top: 7rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 2rem !important;
  }
  .pe-sm-6 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-7 {
    padding-right: 3rem !important;
  }
  .pe-sm-8 {
    padding-right: 3.5rem !important;
  }
  .pe-sm-9 {
    padding-right: 4rem !important;
  }
  .pe-sm-10 {
    padding-right: 4.5rem !important;
  }
  .pe-sm-11 {
    padding-right: 5rem !important;
  }
  .pe-sm-12 {
    padding-right: 5.5rem !important;
  }
  .pe-sm-13 {
    padding-right: 6rem !important;
  }
  .pe-sm-14 {
    padding-right: 6.5rem !important;
  }
  .pe-sm-15 {
    padding-right: 7rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 4.5rem !important;
  }
  .pb-sm-11 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-12 {
    padding-bottom: 5.5rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-14 {
    padding-bottom: 6.5rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 7rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 2rem !important;
  }
  .ps-sm-6 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-7 {
    padding-left: 3rem !important;
  }
  .ps-sm-8 {
    padding-left: 3.5rem !important;
  }
  .ps-sm-9 {
    padding-left: 4rem !important;
  }
  .ps-sm-10 {
    padding-left: 4.5rem !important;
  }
  .ps-sm-11 {
    padding-left: 5rem !important;
  }
  .ps-sm-12 {
    padding-left: 5.5rem !important;
  }
  .ps-sm-13 {
    padding-left: 6rem !important;
  }
  .ps-sm-14 {
    padding-left: 6.5rem !important;
  }
  .ps-sm-15 {
    padding-left: 7rem !important;
  }
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-justify {
    text-align: justify !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 2rem !important;
  }
  .gap-md-6 {
    gap: 2.5rem !important;
  }
  .gap-md-7 {
    gap: 3rem !important;
  }
  .gap-md-8 {
    gap: 3.5rem !important;
  }
  .gap-md-9 {
    gap: 4rem !important;
  }
  .gap-md-10 {
    gap: 4.5rem !important;
  }
  .gap-md-11 {
    gap: 5rem !important;
  }
  .gap-md-12 {
    gap: 5.5rem !important;
  }
  .gap-md-13 {
    gap: 6rem !important;
  }
  .gap-md-14 {
    gap: 6.5rem !important;
  }
  .gap-md-15 {
    gap: 7rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 2rem !important;
  }
  .m-md-6 {
    margin: 2.5rem !important;
  }
  .m-md-7 {
    margin: 3rem !important;
  }
  .m-md-8 {
    margin: 3.5rem !important;
  }
  .m-md-9 {
    margin: 4rem !important;
  }
  .m-md-10 {
    margin: 4.5rem !important;
  }
  .m-md-11 {
    margin: 5rem !important;
  }
  .m-md-12 {
    margin: 5.5rem !important;
  }
  .m-md-13 {
    margin: 6rem !important;
  }
  .m-md-14 {
    margin: 6.5rem !important;
  }
  .m-md-15 {
    margin: 7rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-8 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-md-9 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-10 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-md-11 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-12 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-md-13 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-14 {
    margin-right: 6.5rem !important;
    margin-left: 6.5rem !important;
  }
  .mx-md-15 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-md-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-10 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-md-11 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-12 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-md-13 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-14 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .my-md-15 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 2rem !important;
  }
  .mt-md-6 {
    margin-top: 2.5rem !important;
  }
  .mt-md-7 {
    margin-top: 3rem !important;
  }
  .mt-md-8 {
    margin-top: 3.5rem !important;
  }
  .mt-md-9 {
    margin-top: 4rem !important;
  }
  .mt-md-10 {
    margin-top: 4.5rem !important;
  }
  .mt-md-11 {
    margin-top: 5rem !important;
  }
  .mt-md-12 {
    margin-top: 5.5rem !important;
  }
  .mt-md-13 {
    margin-top: 6rem !important;
  }
  .mt-md-14 {
    margin-top: 6.5rem !important;
  }
  .mt-md-15 {
    margin-top: 7rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 2rem !important;
  }
  .me-md-6 {
    margin-right: 2.5rem !important;
  }
  .me-md-7 {
    margin-right: 3rem !important;
  }
  .me-md-8 {
    margin-right: 3.5rem !important;
  }
  .me-md-9 {
    margin-right: 4rem !important;
  }
  .me-md-10 {
    margin-right: 4.5rem !important;
  }
  .me-md-11 {
    margin-right: 5rem !important;
  }
  .me-md-12 {
    margin-right: 5.5rem !important;
  }
  .me-md-13 {
    margin-right: 6rem !important;
  }
  .me-md-14 {
    margin-right: 6.5rem !important;
  }
  .me-md-15 {
    margin-right: 7rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 2rem !important;
  }
  .mb-md-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-7 {
    margin-bottom: 3rem !important;
  }
  .mb-md-8 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-9 {
    margin-bottom: 4rem !important;
  }
  .mb-md-10 {
    margin-bottom: 4.5rem !important;
  }
  .mb-md-11 {
    margin-bottom: 5rem !important;
  }
  .mb-md-12 {
    margin-bottom: 5.5rem !important;
  }
  .mb-md-13 {
    margin-bottom: 6rem !important;
  }
  .mb-md-14 {
    margin-bottom: 6.5rem !important;
  }
  .mb-md-15 {
    margin-bottom: 7rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 2rem !important;
  }
  .ms-md-6 {
    margin-left: 2.5rem !important;
  }
  .ms-md-7 {
    margin-left: 3rem !important;
  }
  .ms-md-8 {
    margin-left: 3.5rem !important;
  }
  .ms-md-9 {
    margin-left: 4rem !important;
  }
  .ms-md-10 {
    margin-left: 4.5rem !important;
  }
  .ms-md-11 {
    margin-left: 5rem !important;
  }
  .ms-md-12 {
    margin-left: 5.5rem !important;
  }
  .ms-md-13 {
    margin-left: 6rem !important;
  }
  .ms-md-14 {
    margin-left: 6.5rem !important;
  }
  .ms-md-15 {
    margin-left: 7rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 2rem !important;
  }
  .p-md-6 {
    padding: 2.5rem !important;
  }
  .p-md-7 {
    padding: 3rem !important;
  }
  .p-md-8 {
    padding: 3.5rem !important;
  }
  .p-md-9 {
    padding: 4rem !important;
  }
  .p-md-10 {
    padding: 4.5rem !important;
  }
  .p-md-11 {
    padding: 5rem !important;
  }
  .p-md-12 {
    padding: 5.5rem !important;
  }
  .p-md-13 {
    padding: 6rem !important;
  }
  .p-md-14 {
    padding: 6.5rem !important;
  }
  .p-md-15 {
    padding: 7rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-8 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-md-9 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-10 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-md-11 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-12 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-md-13 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-14 {
    padding-right: 6.5rem !important;
    padding-left: 6.5rem !important;
  }
  .px-md-15 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-10 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-md-11 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-12 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-md-13 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-14 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .py-md-15 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 2rem !important;
  }
  .pt-md-6 {
    padding-top: 2.5rem !important;
  }
  .pt-md-7 {
    padding-top: 3rem !important;
  }
  .pt-md-8 {
    padding-top: 3.5rem !important;
  }
  .pt-md-9 {
    padding-top: 4rem !important;
  }
  .pt-md-10 {
    padding-top: 4.5rem !important;
  }
  .pt-md-11 {
    padding-top: 5rem !important;
  }
  .pt-md-12 {
    padding-top: 5.5rem !important;
  }
  .pt-md-13 {
    padding-top: 6rem !important;
  }
  .pt-md-14 {
    padding-top: 6.5rem !important;
  }
  .pt-md-15 {
    padding-top: 7rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 2rem !important;
  }
  .pe-md-6 {
    padding-right: 2.5rem !important;
  }
  .pe-md-7 {
    padding-right: 3rem !important;
  }
  .pe-md-8 {
    padding-right: 3.5rem !important;
  }
  .pe-md-9 {
    padding-right: 4rem !important;
  }
  .pe-md-10 {
    padding-right: 4.5rem !important;
  }
  .pe-md-11 {
    padding-right: 5rem !important;
  }
  .pe-md-12 {
    padding-right: 5.5rem !important;
  }
  .pe-md-13 {
    padding-right: 6rem !important;
  }
  .pe-md-14 {
    padding-right: 6.5rem !important;
  }
  .pe-md-15 {
    padding-right: 7rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 2rem !important;
  }
  .pb-md-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-7 {
    padding-bottom: 3rem !important;
  }
  .pb-md-8 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-9 {
    padding-bottom: 4rem !important;
  }
  .pb-md-10 {
    padding-bottom: 4.5rem !important;
  }
  .pb-md-11 {
    padding-bottom: 5rem !important;
  }
  .pb-md-12 {
    padding-bottom: 5.5rem !important;
  }
  .pb-md-13 {
    padding-bottom: 6rem !important;
  }
  .pb-md-14 {
    padding-bottom: 6.5rem !important;
  }
  .pb-md-15 {
    padding-bottom: 7rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 2rem !important;
  }
  .ps-md-6 {
    padding-left: 2.5rem !important;
  }
  .ps-md-7 {
    padding-left: 3rem !important;
  }
  .ps-md-8 {
    padding-left: 3.5rem !important;
  }
  .ps-md-9 {
    padding-left: 4rem !important;
  }
  .ps-md-10 {
    padding-left: 4.5rem !important;
  }
  .ps-md-11 {
    padding-left: 5rem !important;
  }
  .ps-md-12 {
    padding-left: 5.5rem !important;
  }
  .ps-md-13 {
    padding-left: 6rem !important;
  }
  .ps-md-14 {
    padding-left: 6.5rem !important;
  }
  .ps-md-15 {
    padding-left: 7rem !important;
  }
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-justify {
    text-align: justify !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 2rem !important;
  }
  .gap-lg-6 {
    gap: 2.5rem !important;
  }
  .gap-lg-7 {
    gap: 3rem !important;
  }
  .gap-lg-8 {
    gap: 3.5rem !important;
  }
  .gap-lg-9 {
    gap: 4rem !important;
  }
  .gap-lg-10 {
    gap: 4.5rem !important;
  }
  .gap-lg-11 {
    gap: 5rem !important;
  }
  .gap-lg-12 {
    gap: 5.5rem !important;
  }
  .gap-lg-13 {
    gap: 6rem !important;
  }
  .gap-lg-14 {
    gap: 6.5rem !important;
  }
  .gap-lg-15 {
    gap: 7rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 2rem !important;
  }
  .m-lg-6 {
    margin: 2.5rem !important;
  }
  .m-lg-7 {
    margin: 3rem !important;
  }
  .m-lg-8 {
    margin: 3.5rem !important;
  }
  .m-lg-9 {
    margin: 4rem !important;
  }
  .m-lg-10 {
    margin: 4.5rem !important;
  }
  .m-lg-11 {
    margin: 5rem !important;
  }
  .m-lg-12 {
    margin: 5.5rem !important;
  }
  .m-lg-13 {
    margin: 6rem !important;
  }
  .m-lg-14 {
    margin: 6.5rem !important;
  }
  .m-lg-15 {
    margin: 7rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-8 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-lg-9 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-10 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-lg-11 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-12 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-lg-13 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-14 {
    margin-right: 6.5rem !important;
    margin-left: 6.5rem !important;
  }
  .mx-lg-15 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-lg-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-10 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-lg-11 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-12 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-lg-13 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-14 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .my-lg-15 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 2rem !important;
  }
  .mt-lg-6 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-7 {
    margin-top: 3rem !important;
  }
  .mt-lg-8 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-9 {
    margin-top: 4rem !important;
  }
  .mt-lg-10 {
    margin-top: 4.5rem !important;
  }
  .mt-lg-11 {
    margin-top: 5rem !important;
  }
  .mt-lg-12 {
    margin-top: 5.5rem !important;
  }
  .mt-lg-13 {
    margin-top: 6rem !important;
  }
  .mt-lg-14 {
    margin-top: 6.5rem !important;
  }
  .mt-lg-15 {
    margin-top: 7rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 2rem !important;
  }
  .me-lg-6 {
    margin-right: 2.5rem !important;
  }
  .me-lg-7 {
    margin-right: 3rem !important;
  }
  .me-lg-8 {
    margin-right: 3.5rem !important;
  }
  .me-lg-9 {
    margin-right: 4rem !important;
  }
  .me-lg-10 {
    margin-right: 4.5rem !important;
  }
  .me-lg-11 {
    margin-right: 5rem !important;
  }
  .me-lg-12 {
    margin-right: 5.5rem !important;
  }
  .me-lg-13 {
    margin-right: 6rem !important;
  }
  .me-lg-14 {
    margin-right: 6.5rem !important;
  }
  .me-lg-15 {
    margin-right: 7rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 4.5rem !important;
  }
  .mb-lg-11 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-12 {
    margin-bottom: 5.5rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-14 {
    margin-bottom: 6.5rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 2rem !important;
  }
  .ms-lg-6 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-7 {
    margin-left: 3rem !important;
  }
  .ms-lg-8 {
    margin-left: 3.5rem !important;
  }
  .ms-lg-9 {
    margin-left: 4rem !important;
  }
  .ms-lg-10 {
    margin-left: 4.5rem !important;
  }
  .ms-lg-11 {
    margin-left: 5rem !important;
  }
  .ms-lg-12 {
    margin-left: 5.5rem !important;
  }
  .ms-lg-13 {
    margin-left: 6rem !important;
  }
  .ms-lg-14 {
    margin-left: 6.5rem !important;
  }
  .ms-lg-15 {
    margin-left: 7rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 2rem !important;
  }
  .p-lg-6 {
    padding: 2.5rem !important;
  }
  .p-lg-7 {
    padding: 3rem !important;
  }
  .p-lg-8 {
    padding: 3.5rem !important;
  }
  .p-lg-9 {
    padding: 4rem !important;
  }
  .p-lg-10 {
    padding: 4.5rem !important;
  }
  .p-lg-11 {
    padding: 5rem !important;
  }
  .p-lg-12 {
    padding: 5.5rem !important;
  }
  .p-lg-13 {
    padding: 6rem !important;
  }
  .p-lg-14 {
    padding: 6.5rem !important;
  }
  .p-lg-15 {
    padding: 7rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-8 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-lg-9 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-10 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-lg-11 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-12 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-lg-13 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-14 {
    padding-right: 6.5rem !important;
    padding-left: 6.5rem !important;
  }
  .px-lg-15 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-10 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-lg-11 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-12 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-lg-13 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-14 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .py-lg-15 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 2rem !important;
  }
  .pt-lg-6 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-7 {
    padding-top: 3rem !important;
  }
  .pt-lg-8 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-9 {
    padding-top: 4rem !important;
  }
  .pt-lg-10 {
    padding-top: 4.5rem !important;
  }
  .pt-lg-11 {
    padding-top: 5rem !important;
  }
  .pt-lg-12 {
    padding-top: 5.5rem !important;
  }
  .pt-lg-13 {
    padding-top: 6rem !important;
  }
  .pt-lg-14 {
    padding-top: 6.5rem !important;
  }
  .pt-lg-15 {
    padding-top: 7rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 2rem !important;
  }
  .pe-lg-6 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-7 {
    padding-right: 3rem !important;
  }
  .pe-lg-8 {
    padding-right: 3.5rem !important;
  }
  .pe-lg-9 {
    padding-right: 4rem !important;
  }
  .pe-lg-10 {
    padding-right: 4.5rem !important;
  }
  .pe-lg-11 {
    padding-right: 5rem !important;
  }
  .pe-lg-12 {
    padding-right: 5.5rem !important;
  }
  .pe-lg-13 {
    padding-right: 6rem !important;
  }
  .pe-lg-14 {
    padding-right: 6.5rem !important;
  }
  .pe-lg-15 {
    padding-right: 7rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 4.5rem !important;
  }
  .pb-lg-11 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-12 {
    padding-bottom: 5.5rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-14 {
    padding-bottom: 6.5rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 7rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 2rem !important;
  }
  .ps-lg-6 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-7 {
    padding-left: 3rem !important;
  }
  .ps-lg-8 {
    padding-left: 3.5rem !important;
  }
  .ps-lg-9 {
    padding-left: 4rem !important;
  }
  .ps-lg-10 {
    padding-left: 4.5rem !important;
  }
  .ps-lg-11 {
    padding-left: 5rem !important;
  }
  .ps-lg-12 {
    padding-left: 5.5rem !important;
  }
  .ps-lg-13 {
    padding-left: 6rem !important;
  }
  .ps-lg-14 {
    padding-left: 6.5rem !important;
  }
  .ps-lg-15 {
    padding-left: 7rem !important;
  }
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-justify {
    text-align: justify !important;
  }
}
@media (min-width: 1560px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 2rem !important;
  }
  .gap-xl-6 {
    gap: 2.5rem !important;
  }
  .gap-xl-7 {
    gap: 3rem !important;
  }
  .gap-xl-8 {
    gap: 3.5rem !important;
  }
  .gap-xl-9 {
    gap: 4rem !important;
  }
  .gap-xl-10 {
    gap: 4.5rem !important;
  }
  .gap-xl-11 {
    gap: 5rem !important;
  }
  .gap-xl-12 {
    gap: 5.5rem !important;
  }
  .gap-xl-13 {
    gap: 6rem !important;
  }
  .gap-xl-14 {
    gap: 6.5rem !important;
  }
  .gap-xl-15 {
    gap: 7rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 2rem !important;
  }
  .m-xl-6 {
    margin: 2.5rem !important;
  }
  .m-xl-7 {
    margin: 3rem !important;
  }
  .m-xl-8 {
    margin: 3.5rem !important;
  }
  .m-xl-9 {
    margin: 4rem !important;
  }
  .m-xl-10 {
    margin: 4.5rem !important;
  }
  .m-xl-11 {
    margin: 5rem !important;
  }
  .m-xl-12 {
    margin: 5.5rem !important;
  }
  .m-xl-13 {
    margin: 6rem !important;
  }
  .m-xl-14 {
    margin: 6.5rem !important;
  }
  .m-xl-15 {
    margin: 7rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-8 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xl-9 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-10 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xl-11 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-12 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-xl-13 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-14 {
    margin-right: 6.5rem !important;
    margin-left: 6.5rem !important;
  }
  .mx-xl-15 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xl-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-10 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xl-11 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-12 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-xl-13 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-14 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .my-xl-15 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 2rem !important;
  }
  .mt-xl-6 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-7 {
    margin-top: 3rem !important;
  }
  .mt-xl-8 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-9 {
    margin-top: 4rem !important;
  }
  .mt-xl-10 {
    margin-top: 4.5rem !important;
  }
  .mt-xl-11 {
    margin-top: 5rem !important;
  }
  .mt-xl-12 {
    margin-top: 5.5rem !important;
  }
  .mt-xl-13 {
    margin-top: 6rem !important;
  }
  .mt-xl-14 {
    margin-top: 6.5rem !important;
  }
  .mt-xl-15 {
    margin-top: 7rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 2rem !important;
  }
  .me-xl-6 {
    margin-right: 2.5rem !important;
  }
  .me-xl-7 {
    margin-right: 3rem !important;
  }
  .me-xl-8 {
    margin-right: 3.5rem !important;
  }
  .me-xl-9 {
    margin-right: 4rem !important;
  }
  .me-xl-10 {
    margin-right: 4.5rem !important;
  }
  .me-xl-11 {
    margin-right: 5rem !important;
  }
  .me-xl-12 {
    margin-right: 5.5rem !important;
  }
  .me-xl-13 {
    margin-right: 6rem !important;
  }
  .me-xl-14 {
    margin-right: 6.5rem !important;
  }
  .me-xl-15 {
    margin-right: 7rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xl-11 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-12 {
    margin-bottom: 5.5rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-14 {
    margin-bottom: 6.5rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 2rem !important;
  }
  .ms-xl-6 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-7 {
    margin-left: 3rem !important;
  }
  .ms-xl-8 {
    margin-left: 3.5rem !important;
  }
  .ms-xl-9 {
    margin-left: 4rem !important;
  }
  .ms-xl-10 {
    margin-left: 4.5rem !important;
  }
  .ms-xl-11 {
    margin-left: 5rem !important;
  }
  .ms-xl-12 {
    margin-left: 5.5rem !important;
  }
  .ms-xl-13 {
    margin-left: 6rem !important;
  }
  .ms-xl-14 {
    margin-left: 6.5rem !important;
  }
  .ms-xl-15 {
    margin-left: 7rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 2rem !important;
  }
  .p-xl-6 {
    padding: 2.5rem !important;
  }
  .p-xl-7 {
    padding: 3rem !important;
  }
  .p-xl-8 {
    padding: 3.5rem !important;
  }
  .p-xl-9 {
    padding: 4rem !important;
  }
  .p-xl-10 {
    padding: 4.5rem !important;
  }
  .p-xl-11 {
    padding: 5rem !important;
  }
  .p-xl-12 {
    padding: 5.5rem !important;
  }
  .p-xl-13 {
    padding: 6rem !important;
  }
  .p-xl-14 {
    padding: 6.5rem !important;
  }
  .p-xl-15 {
    padding: 7rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-8 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xl-9 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-10 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xl-11 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-12 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-xl-13 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-14 {
    padding-right: 6.5rem !important;
    padding-left: 6.5rem !important;
  }
  .px-xl-15 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-10 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xl-11 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-12 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-xl-13 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-14 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .py-xl-15 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 2rem !important;
  }
  .pt-xl-6 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-7 {
    padding-top: 3rem !important;
  }
  .pt-xl-8 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-9 {
    padding-top: 4rem !important;
  }
  .pt-xl-10 {
    padding-top: 4.5rem !important;
  }
  .pt-xl-11 {
    padding-top: 5rem !important;
  }
  .pt-xl-12 {
    padding-top: 5.5rem !important;
  }
  .pt-xl-13 {
    padding-top: 6rem !important;
  }
  .pt-xl-14 {
    padding-top: 6.5rem !important;
  }
  .pt-xl-15 {
    padding-top: 7rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 2rem !important;
  }
  .pe-xl-6 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-7 {
    padding-right: 3rem !important;
  }
  .pe-xl-8 {
    padding-right: 3.5rem !important;
  }
  .pe-xl-9 {
    padding-right: 4rem !important;
  }
  .pe-xl-10 {
    padding-right: 4.5rem !important;
  }
  .pe-xl-11 {
    padding-right: 5rem !important;
  }
  .pe-xl-12 {
    padding-right: 5.5rem !important;
  }
  .pe-xl-13 {
    padding-right: 6rem !important;
  }
  .pe-xl-14 {
    padding-right: 6.5rem !important;
  }
  .pe-xl-15 {
    padding-right: 7rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xl-11 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-12 {
    padding-bottom: 5.5rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-14 {
    padding-bottom: 6.5rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 7rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 2rem !important;
  }
  .ps-xl-6 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-7 {
    padding-left: 3rem !important;
  }
  .ps-xl-8 {
    padding-left: 3.5rem !important;
  }
  .ps-xl-9 {
    padding-left: 4rem !important;
  }
  .ps-xl-10 {
    padding-left: 4.5rem !important;
  }
  .ps-xl-11 {
    padding-left: 5rem !important;
  }
  .ps-xl-12 {
    padding-left: 5.5rem !important;
  }
  .ps-xl-13 {
    padding-left: 6rem !important;
  }
  .ps-xl-14 {
    padding-left: 6.5rem !important;
  }
  .ps-xl-15 {
    padding-left: 7rem !important;
  }
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .text-xl-justify {
    text-align: justify !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  top: 50%;
  margin: -55px 0 0;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small, .mfp-figure .small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small, .mfp-img-mobile .mfp-figure .small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  font-weight: var(--fa-style, 900);
}

.fas,
.fass,
.far,
.fasr,
.fal,
.fasl,
.fat,
.fast,
.fad,
.fadr,
.fadl,
.fadt,
.fasds,
.fasdr,
.fasdl,
.fasdt,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-brands,
.fa-classic,
.fa-duotone,
.fa-sharp,
.fa-sharp-duotone,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas::before,
.fass::before,
.far::before,
.fasr::before,
.fal::before,
.fasl::before,
.fat::before,
.fast::before,
.fad::before,
.fadr::before,
.fadl::before,
.fadt::before,
.fasds::before,
.fasdr::before,
.fasdl::before,
.fasdt::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-light::before,
.fa-thin::before,
.fa-brands::before,
.fa-classic::before,
.fa-duotone::before,
.fa-sharp::before,
.fa-sharp-duotone::before,
.fa::before {
  content: var(--fa);
}

.fad::after,
.fa-duotone.fa-solid::after,
.fa-duotone::after,
.fadr::after,
.fa-duotone.fa-regular::after,
.fadl::after,
.fa-duotone.fa-light::after,
.fadt::after,
.fa-duotone.fa-thin::after,
.fasds::after,
.fa-sharp-duotone.fa-solid::after,
.fa-sharp-duotone::after,
.fasdr::after,
.fa-sharp-duotone.fa-regular::after,
.fasdl::after,
.fa-sharp-duotone.fa-light::after,
.fasdt::after,
.fa-sharp-duotone.fa-thin::after {
  content: var(--fa--fa);
}

.fa-classic.fa-duotone {
  font-family: "Font Awesome 6 Duotone";
}

.fass,
.fa-sharp {
  font-weight: 900;
}

.fad,
.fa-duotone {
  font-weight: 900;
}

.fasds,
.fa-sharp-duotone {
  font-weight: 900;
}

.fa-classic,
.fas,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin {
  font-family: "Font Awesome 6 Pro";
}

.fa-duotone,
.fad,
.fadr,
.fadl,
.fadt {
  font-family: "Font Awesome 6 Duotone";
}

.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands";
}

.fa-sharp,
.fass,
.fasr,
.fasl,
.fast {
  font-family: "Font Awesome 6 Sharp";
}

.fa-sharp-duotone,
.fasds,
.fasdr,
.fasdl,
.fasdt {
  font-family: "Font Awesome 6 Sharp Duotone";
}

/*******************************************************************/
/* This file is generated by Build/tools.js                        */
/* If you need to add more icons, please edit Build/icons.js file. */
/*******************************************************************/
.fa-angle-down::before {
  content: "\f107";
}

.fa-angle-up::before {
  content: "\f106";
}

.fa-bars::before {
  content: "\f0c9";
}

.fa-calendar::before {
  content: "\f133";
}

.fa-chevron-down::before {
  content: "\f078";
}

.fa-chevron-left::before {
  content: "\f053";
}

.fa-chevron-right::before {
  content: "\f054";
}

.fa-envelope::before {
  content: "\f0e0";
}

.fa-external-link::before {
  content: "\f08e";
}

.fa-facebook-f::before {
  content: "\f39e";
}

.fa-globe::before {
  content: "\f0ac";
}

.fa-home::before {
  content: "\f015";
}

.fa-instagram::before {
  content: "\f16d";
}

.fa-linkedin-in::before {
  content: "\f0e1";
}

.fa-minus::before {
  content: "\f068";
}

.fa-phone::before {
  content: "\f095";
}

.fa-plus::before {
  content: "\+";
}

.fa-xmark::before {
  content: "\f00d";
}

.fa-youtube::before {
  content: "\f167";
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-light-300.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-light-300.ttf") format("truetype");
}
.fal,
.fa-light {
  font-weight: 300;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-solid-900.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-regular-400.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-thin-100.woff2?v=dcd6678b7b1aa210cff2b28907c104212c7115c2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-thin-100.ttf") format("truetype");
}
.fat,
.fa-thin {
  font-weight: 100;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-duotone: "Font Awesome 6 Duotone";
  --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";
}

@font-face {
  font-family: "Font Awesome 6 Duotone";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-duotone-900.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-duotone-900.ttf") format("truetype");
}
.fad,
.fa-duotone {
  position: relative;
  font-weight: 900;
  letter-spacing: normal;
}

.fad::before,
.fa-duotone::before {
  position: absolute;
  color: var(--fa-primary-color, inherit);
  opacity: var(--fa-primary-opacity, 1);
}

.fad::after,
.fa-duotone::after {
  color: var(--fa-secondary-color, inherit);
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fad::before,
.fa-swap-opacity .fa-duotone::before,
.fad.fa-swap-opacity::before,
.fa-duotone.fa-swap-opacity::before {
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fad::after,
.fa-swap-opacity .fa-duotone::after,
.fad.fa-swap-opacity::after,
.fa-duotone.fa-swap-opacity::after {
  opacity: var(--fa-primary-opacity, 1);
}

.fad.fa-inverse,
.fa-duotone.fa-inverse {
  color: var(--fa-inverse, #fff);
}

.fad.fa-stack-1x, .fad.fa-stack-2x,
.fa-duotone.fa-stack-1x, .fa-duotone.fa-stack-2x {
  position: absolute;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-sharp: "Font Awesome 6 Sharp";
  --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";
}

@font-face {
  font-family: "Font Awesome 6 Sharp";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-solid-900.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-solid-900.ttf") format("truetype");
}
.fass,
.fa-solid {
  font-weight: 900;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-sharp: "Font Awesome 6 Sharp";
  --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";
}

@font-face {
  font-family: "Font Awesome 6 Sharp";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-regular-400.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-regular-400.ttf") format("truetype");
}
.fasr,
.fa-regular {
  font-weight: 400;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-sharp: "Font Awesome 6 Sharp";
  --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";
}

@font-face {
  font-family: "Font Awesome 6 Sharp";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-light-300.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-light-300.ttf") format("truetype");
}
.fasl,
.fa-light {
  font-weight: 300;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-sharp: "Font Awesome 6 Sharp";
  --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 6 Sharp";
}

@font-face {
  font-family: "Font Awesome 6 Sharp";
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-thin-100.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-thin-100.ttf") format("truetype");
}
.fast,
.fa-thin {
  font-weight: 100;
}

:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-brands-400.woff2?v=e45e8191dcfc0fb64cbd4487756a78ce5a07b953") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
.swiper-arrow-container {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.swiper-arrow {
  transform-origin: center center;
  transform: rotateZ(-90deg);
  margin-right: 20px;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.swiper-arrow:hover {
  color: var(--theme-color-dark);
}
.swiper-arrow:last-child {
  margin-right: 0;
}
.swiper-arrow--prev {
  transform: scaleX(-1) rotateZ(-90deg);
}
.swiper-arrow.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.swiper-arrow.swiper-button-lock {
  display: none;
}

.swiper-wrapper {
  transition-timing-function: ease-out;
}

.air-datepicker-cell.-day-.-other-month-, .air-datepicker-cell.-year-.-other-decade- {
  color: var(--adp-color-other-month);
}

.air-datepicker-cell.-day-.-other-month-:hover, .air-datepicker-cell.-year-.-other-decade-:hover {
  color: var(--adp-color-other-month-hover);
}

.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month-, .-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  color: var(--adp-color-other-month);
}

.-selected-.air-datepicker-cell.-day-.-other-month-, .-selected-.air-datepicker-cell.-year-.-other-decade- {
  color: #fff;
  background: var(--adp-background-color-selected-other-month);
}

.-selected-.-focus-.air-datepicker-cell.-day-.-other-month-, .-selected-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  background: var(--adp-background-color-selected-other-month-focused);
}

.-in-range-.air-datepicker-cell.-day-.-other-month-, .-in-range-.air-datepicker-cell.-year-.-other-decade- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
}

.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month-, .-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  background-color: var(--adp-background-color-in-range-focused);
}

.air-datepicker-cell.-day-.-other-month-:empty, .air-datepicker-cell.-year-.-other-decade-:empty {
  background: none;
  border: none;
}

.air-datepicker-cell {
  border-radius: var(--adp-cell-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.air-datepicker-cell.-focus- {
  background: var(--adp-cell-background-color-hover);
}

.air-datepicker-cell.-current- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-current-.-focus- {
  color: var(--adp-color);
}

.air-datepicker-cell.-current-.-in-range- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}

.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border-radius: 0;
}

.air-datepicker-cell.-in-range-:hover {
  background: var(--adp-cell-background-color-in-range-hover);
}

.air-datepicker-cell.-range-from- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}

.air-datepicker-cell.-range-to- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}

.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}

.air-datepicker-cell.-selected- {
  color: #fff;
  border: none;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-current- {
  color: #fff;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-focus- {
  background: var(--adp-cell-background-color-selected-hover);
}

.air-datepicker-body {
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}

.air-datepicker-body.-hidden- {
  display: none;
}

.air-datepicker-body--day-names {
  display: grid;
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  margin: 8px 0 3px;
}

.air-datepicker-body--day-name {
  color: var(--adp-day-name-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}

.air-datepicker-body--day-name.-clickable- {
  cursor: pointer;
}

.air-datepicker-body--day-name.-clickable-:hover {
  color: var(--adp-day-name-color-hover);
}

.air-datepicker-body--cells {
  display: grid;
}

.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
}

.air-datepicker-body--cells.-months- {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
}

.air-datepicker-body--cells.-years- {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}

.air-datepicker-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--adp-border-color-inner);
  min-height: var(--adp-nav-height);
  padding: var(--adp-padding);
  box-sizing: content-box;
}

.-only-timepicker- .air-datepicker-nav {
  display: none;
}

.air-datepicker-nav--title, .air-datepicker-nav--action {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.air-datepicker-nav--action {
  width: var(--adp-nav-action-size);
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.air-datepicker-nav--action:hover {
  background: var(--adp-background-color-hover);
}

.air-datepicker-nav--action:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}

.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
}

.air-datepicker-nav--action path {
  fill: none;
  stroke: var(--adp-nav-arrow-color);
  stroke-width: 2px;
}

.air-datepicker-nav--title {
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
}

.air-datepicker-nav--title i {
  font-style: normal;
  color: var(--adp-nav-color-secondary);
  margin-left: 0.3em;
}

.air-datepicker-nav--title:hover {
  background: var(--adp-background-color-hover);
}

.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: none;
}

.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}

.air-datepicker-button {
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}

.air-datepicker-button:hover {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
}

.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: none;
}

.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}

.air-datepicker-button span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.air-datepicker-time {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}

.-only-timepicker- .air-datepicker-time {
  border-top: none;
}

.air-datepicker-time--current {
  display: flex;
  align-items: center;
  flex: 1 1;
  font-size: 14px;
  text-align: center;
}

.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.air-datepicker-time--current-hours, .air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.air-datepicker-time--current-hours:after, .air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.air-datepicker-time--current-hours.-focus-:after, .air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}

.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.air-datepicker-time--row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
}

.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}

.air-datepicker-time--row input[type=range] {
  background: none;
  cursor: pointer;
  flex: 1 1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-ms-tooltip {
  display: none;
}

.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-ms-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:focus {
  outline: none;
}

.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size) / 2 * -1);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-ms-fill-lower {
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-ms-fill-upper {
  background: transparent;
}

.air-datepicker {
  --adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas: "nav" "body" "timepicker" "buttons";
  --adp-transition-duration: .3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(92, 196, 239, .1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, .2);
  --adp-background-color-selected-other-month-focused: #8ad5f4;
  --adp-background-color-selected-other-month: #a2ddf6;
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #4eb5e6;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 32px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #ff9a19;
  --adp-day-name-color-hover: #8ad5f4;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 32px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #5cc4ef;
  --adp-cell-background-color-selected-hover: #45bced;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px ;
}

.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, .3);
  --adp-overlay-transition-duration: .3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99 ;
}

.air-datepicker {
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--adp-border-radius);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-family: var(--adp-font-family), sans-serif;
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
}

.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}

.air-datepicker.-from-top- {
  transform: translateY(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-from-right- {
  transform: translateX(var(--adp-transition-offset));
}

.air-datepicker.-from-bottom- {
  transform: translateY(var(--adp-transition-offset));
}

.air-datepicker.-from-left- {
  transform: translateX(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-active-:not(.-custom-position-) {
  transform: translate(0, 0);
  opacity: 1;
}

.air-datepicker.-active-.-custom-position- {
  transition: none;
}

.air-datepicker.-inline- {
  border-color: var(--adp-border-color-inline);
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}

.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}

.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: transparent;
}

.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile-:not(.-custom-position-) {
  transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  transform: translate(-50%, -50%);
}

.air-datepicker.-custom-position- {
  transition: none;
}

.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}

.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}

.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  box-sizing: border-box;
}

.-top-left- .air-datepicker--pointer, .-top-center- .air-datepicker--pointer, .-top-right- .air-datepicker--pointer, [data-popper-placement^=top] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}

.-top-left- .air-datepicker--pointer:after, .-top-center- .air-datepicker--pointer:after, .-top-right- .air-datepicker--pointer:after, [data-popper-placement^=top] .air-datepicker--pointer:after {
  transform: rotate(135deg);
}

.-right-top- .air-datepicker--pointer, .-right-center- .air-datepicker--pointer, .-right-bottom- .air-datepicker--pointer, [data-popper-placement^=right] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}

.-right-top- .air-datepicker--pointer:after, .-right-center- .air-datepicker--pointer:after, .-right-bottom- .air-datepicker--pointer:after, [data-popper-placement^=right] .air-datepicker--pointer:after {
  transform: rotate(225deg);
}

.-bottom-left- .air-datepicker--pointer, .-bottom-center- .air-datepicker--pointer, .-bottom-right- .air-datepicker--pointer, [data-popper-placement^=bottom] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}

.-bottom-left- .air-datepicker--pointer:after, .-bottom-center- .air-datepicker--pointer:after, .-bottom-right- .air-datepicker--pointer:after, [data-popper-placement^=bottom] .air-datepicker--pointer:after {
  transform: rotate(315deg);
}

.-left-top- .air-datepicker--pointer, .-left-center- .air-datepicker--pointer, .-left-bottom- .air-datepicker--pointer, [data-popper-placement^=left] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}

.-left-top- .air-datepicker--pointer:after, .-left-center- .air-datepicker--pointer:after, .-left-bottom- .air-datepicker--pointer:after, [data-popper-placement^=left] .air-datepicker--pointer:after {
  transform: rotate(45deg);
}

.-top-left- .air-datepicker--pointer, .-bottom-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}

.-top-right- .air-datepicker--pointer, .-bottom-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}

.-top-center- .air-datepicker--pointer, .-bottom-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size) / 2);
}

.-left-top- .air-datepicker--pointer, .-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}

.-left-bottom- .air-datepicker--pointer, .-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}

.-left-center- .air-datepicker--pointer, .-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size) / 2);
}

.air-datepicker--navigation {
  grid-area: nav;
}

.air-datepicker--content {
  box-sizing: content-box;
  padding: var(--adp-padding);
  grid-area: body;
}

.-only-timepicker- .air-datepicker--content {
  display: none;
}

.air-datepicker--time {
  grid-area: timepicker;
}

.air-datepicker--buttons {
  grid-area: buttons;
}

.air-datepicker--buttons, .air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}

.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
  transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}

.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
}

/* Fluid Styled Content default styling */
.ce-align-left {
  text-align: left;
}

.ce-align-center {
  text-align: center;
}

.ce-align-right {
  text-align: right;
}

.ce-table td,
.ce-table th {
  vertical-align: top;
}

.ce-textpic,
.ce-nowrap .ce-bodytext,
.ce-gallery,
.ce-row,
.ce-uploads li,
.ce-uploads div {
  overflow: hidden;
}

.ce-center .ce-outer {
  position: relative;
  float: right;
  right: 50%;
}

.ce-center .ce-inner {
  position: relative;
  float: right;
  right: -50%;
}

.ce-gallery figure {
  display: table;
  margin: 0;
}

.ce-gallery figcaption {
  display: table-caption;
  caption-side: bottom;
}

.ce-gallery img {
  display: block;
}

.ce-gallery iframe {
  border-width: 0;
}

.ce-border img,
.ce-border iframe {
  border: 2px solid #000000;
  padding: 0px;
}

.ce-intext.ce-right .ce-gallery,
.ce-intext.ce-left .ce-gallery,
.ce-above .ce-gallery {
  margin-bottom: 20px;
}

.ce-intext.ce-right .ce-gallery {
  margin-left: 0;
}

.ce-intext.ce-left .ce-gallery {
  margin-right: 0;
}

.ce-below .ce-gallery {
  margin-top: 20px;
}

.ce-column {
  margin-right: 10px;
}

.ce-column:last-child {
  margin-right: 0;
}

.ce-row {
  margin-bottom: 10px;
}

.ce-row:last-child {
  margin-bottom: 0;
}

.ce-above .ce-bodytext {
  clear: both;
}

/* Headline */
.ce-headline-left {
  text-align: left;
}

.ce-headline-center {
  text-align: center;
}

.ce-headline-right {
  text-align: right;
}

.ce-intext.ce-left ol,
.ce-intext.ce-left ul {
  padding-left: 40px;
  overflow: auto;
}

/* Uploads */
.ce-uploads {
  margin: 0;
  padding: 0;
}

.ce-uploads li {
  list-style: none outside none;
  margin: 1em 0;
}

.ce-uploads img {
  float: left;
  padding-right: 1em;
  vertical-align: top;
}

.ce-uploads span {
  display: block;
}

/* Table */
.ce-table {
  width: 100%;
  max-width: 100%;
}

.ce-table th, .ce-table td {
  padding: 0.5em 0.75em;
  vertical-align: top;
}

.ce-table thead th {
  border-bottom: 2px solid #dadada;
}

.ce-table th, .ce-table td {
  border-top: 1px solid #dadada;
}

.ce-table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.ce-table-bordered th, .ce-table-bordered td {
  border: 1px solid #dadada;
}

.video-embed video {
  max-width: 100%;
  height: auto;
}

/* Space */
.frame-space-before-extra-small {
  margin-top: 20px;
}

.frame-space-after-extra-small {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .frame-space-before-extra-small {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-extra-small {
    margin-bottom: 40px;
  }
}
.frame-space-before-small {
  margin-top: 30px;
}

.frame-space-after-small {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .frame-space-before-small {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-small {
    margin-bottom: 60px;
  }
}
.frame-space-before-medium {
  margin-top: 40px;
}

.frame-space-after-medium {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .frame-space-before-medium {
    margin-top: 80px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-medium {
    margin-bottom: 80px;
  }
}
.frame-space-before-large {
  margin-top: 50px;
}

.frame-space-after-large {
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .frame-space-before-large {
    margin-top: 100px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-large {
    margin-bottom: 100px;
  }
}
.frame-space-before-extra-large {
  margin-top: 60px;
}

.frame-space-after-extra-large {
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .frame-space-before-extra-large {
    margin-top: 120px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-extra-large {
    margin-bottom: 120px;
  }
}
/* Frame */
.frame-ruler-before:before {
  content: "";
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  margin-bottom: 2em;
}

.frame-ruler-after:after {
  content: "";
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  margin-top: 2em;
}

@media (min-width: 1560px) {
  .ce-left .ce-gallery,
.ce-column {
    float: left;
  }
  .ce-right .ce-gallery {
    float: right;
  }
  .ce-intext.ce-right .ce-gallery {
    margin-left: 20px;
  }
  .ce-intext.ce-left .ce-gallery {
    margin-right: 20px;
  }
}
/* Global styling */
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 100;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-100.woff2?v=bf017014e4bdd1360f4fd4ec9b1bf62bb5730cf2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: italic;
  font-weight: 100;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-100italic.woff2?v=43e49530ab7a038b3cf77111bdd62234627fd968") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: italic;
  font-weight: 200;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-200italic.woff2?v=21bcc3e35e360ec7c971502534983a4dc8e593a8") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 200;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-200.woff2?v=030c780da53e692d3a0369ec881b5ff724b2825e") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 300;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-300.woff2?v=d01c7573bcdea1d4a8c71c6a86a27e20cda2cb5a") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: italic;
  font-weight: 300;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-300italic.woff2?v=8ad0e98ed4c17586c72b2d1732b44549298606ef") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 500;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-500.woff2?v=66b5231ba834595445d6c8268ebccc3fd3e1e054") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: italic;
  font-weight: 500;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-500italic.woff2?v=88340a1a01d43c450241068d739477c321c43bcf") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 600;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-600.woff2?v=b0c40f96c672e61ca76533f3010d7eaa4a4d3a06") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: italic;
  font-weight: 600;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-600italic.woff2?v=d23c2d2340eea50613173aa9f66794eaabeb4a12") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: italic;
  font-weight: 400;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-italic.woff2?v=05607bcc8276e615da478dab049f71cb2dda89e9") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: italic;
  font-weight: 700;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-700italic.woff2?v=5e05a0f29999f3d445a845b19033c8f9ad15fd14") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 700;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-700.woff2?v=1f882d294691087807d77b1d81864524eabad3fa") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 400;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-regular.woff2?v=2bdcd18fa33c053f40f9f6aa4620ec7499b86e5d") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 800;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-800.woff2?v=99d7d2687b4c55f493a9db00c698778cebba27ff") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: italic;
  font-weight: 800;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-800italic.woff2?v=7766b37b99fde24e402222c78b41da2b3411936c") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 900;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-900.woff2?v=3e43e06880a650182c302767ab2c43408688842f") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Exo 2";
  font-style: italic;
  font-weight: 900;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/exo-2/exo-2-900italic.woff2?v=4ba68afe57e8fcda7086f7e73569e334832c6e3f") format("woff2");
}
:root {
  --bs-body-font-size: 17px;
  --p-margin: 1rem;
  --p-margin-last: 0;
  --link-text-decoration: none;
  --link-text-decoration-hover: none;
  --link-font-weight: 400;
  --input-bg: #F2F1EE;
}
@media (min-width: 992px) {
  :root {
    --bs-body-font-size: 20px;
  }
}

html {
  overflow-y: scroll;
}
html.nav-opened {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

body:before {
  display: none;
  visibility: hidden;
  content: "xs";
}
@media (min-width: 576px) {
  body:before {
    content: "sm";
  }
}
@media (min-width: 768px) {
  body:before {
    content: "md";
  }
}
@media (min-width: 992px) {
  body:before {
    content: "lg";
  }
}
@media (min-width: 1560px) {
  body:before {
    content: "xl";
  }
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 0;
  border-top: 1px solid rgba(22, 22, 21, 0.2);
}

b, strong {
  font-weight: 700;
}

p {
  margin-bottom: var(--p-margin);
}
p:last-child {
  margin-bottom: var(--p-margin-last);
}

a {
  color: var(--link-color);
  -webkit-text-decoration: var(--link-text-decoration);
          text-decoration: var(--link-text-decoration);
  font-weight: var(--link-font-weight);
}
a:hover {
  color: var(--link-color-hover);
  -webkit-text-decoration: var(--link-text-decoration-hover);
          text-decoration: var(--link-text-decoration-hover);
}

@media (min-width: 576px) {
  dl .print-inline {
    display: flex;
  }
  dl .print-inline dt {
    flex: 1 0 180px;
    max-width: 180px;
    width: 180px;
    font-weight: 600;
    margin-right: 10px;
  }
  dl .print-inline dd {
    flex: 1 0;
  }
}

.svg-hidden {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.reset-last {
  --p-margin-last: var(--p-margin);
}

.film-120-seconds-open,
.themenkompass-open {
  cursor: pointer;
}

.main-content ul:not(.no-list-bullet):not(.pagination):not(.select2-selection__rendered) {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.main-content ul:not(.no-list-bullet):not(.pagination):not(.select2-selection__rendered) li {
  position: relative;
  padding-left: 46px;
  margin-bottom: 25px;
}
.main-content ul:not(.no-list-bullet):not(.pagination):not(.select2-selection__rendered) li:before {
  content: "";
  width: 27px;
  height: 27px;
  background: var(--list-bullet-heptagon) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 4px;
}

.small-whitespace {
  word-spacing: -0.1em;
}

#dAopener {
  filter: none !important;
  top: auto !important;
  bottom: 160px !important;
  right: max(10px, 50% - 950px) !important;
}
@media (min-width: 768px) {
  #dAopener {
    top: calc(70vh - 80px) !important;
    bottom: auto !important;
  }
}

.da-opener-tooltip {
  top: auto !important;
  bottom: 192px !important;
  right: max(83px, 50% - 950px + 73px) !important;
}
@media (min-width: 768px) {
  .da-opener-tooltip {
    top: calc(70vh - 155px - var(--diac-tooltip-height) * 0.5) !important;
    bottom: auto !important;
  }
}

:root {
  --headings-color: #161615;
}

.ce-header, .ce-subheader {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .ce-header, .ce-subheader {
    margin-bottom: 50px;
  }
}
.ce-header h1, .ce-header .h1, .ce-subheader h1, .ce-subheader .h1 {
  margin-bottom: 10px;
}
.ce-header h1:last-child, .ce-header .h1:last-child, .ce-subheader h1:last-child, .ce-subheader .h1:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .ce-header h1, .ce-header .h1, .ce-subheader h1, .ce-subheader .h1 {
    margin-bottom: 20px;
  }
  .ce-header h1:last-child, .ce-header .h1:last-child, .ce-subheader h1:last-child, .ce-subheader .h1:last-child {
    margin-bottom: 0;
  }
}
.ce-header h2, .ce-header .h2, .ce-header h3, .ce-header .h3, .ce-header h4, .ce-header .h4, .ce-header h5, .ce-header .h5, .ce-header h6, .ce-header .h6, .ce-subheader h2, .ce-subheader .h2, .ce-subheader h3, .ce-subheader .h3, .ce-subheader h4, .ce-subheader .h4, .ce-subheader h5, .ce-subheader .h5, .ce-subheader h6, .ce-subheader .h6 {
  margin-bottom: 10px;
}
.ce-header h2:last-child, .ce-header .h2:last-child, .ce-header h3:last-child, .ce-header .h3:last-child, .ce-header h4:last-child, .ce-header .h4:last-child, .ce-header h5:last-child, .ce-header .h5:last-child, .ce-header h6:last-child, .ce-header .h6:last-child, .ce-subheader h2:last-child, .ce-subheader .h2:last-child, .ce-subheader h3:last-child, .ce-subheader .h3:last-child, .ce-subheader h4:last-child, .ce-subheader .h4:last-child, .ce-subheader h5:last-child, .ce-subheader .h5:last-child, .ce-subheader h6:last-child, .ce-subheader .h6:last-child {
  margin-bottom: 0;
}

.ce-header-icon-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .ce-header-icon-wrap {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .ce-header-icon-wrap {
    margin-bottom: 50px;
  }
}
.ce-header-icon-wrap .ce-header-icon {
  max-width: 90px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .ce-header-icon-wrap .ce-header-icon {
    flex: 1 0 120px;
    max-width: 120px;
    width: 120px;
    margin-right: 15px;
    margin-bottom: 0;
  }
}
.ce-header-icon-wrap .ce-header-icon svg, .ce-header-icon-wrap .ce-header-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.ce-header-icon-wrap .ce-header, .ce-header-icon-wrap .ce-subheader {
  margin-bottom: 0;
  flex: 1 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--headings-color);
}

h1, .h1 {
  font-size: 36px;
  line-height: 42px;
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 60px;
    line-height: 72px;
  }
}
h1 + h2, h1 + .h2, .h1 + h2, .h1 + .h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
}
@media (min-width: 992px) {
  h1 + h2, h1 + .h2, .h1 + h2, .h1 + .h2 {
    font-size: 44px;
    line-height: 54px;
  }
}

h2, .h2 {
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 48px;
    line-height: 56px;
  }
}
h2 + h3, h2 + .h3, .h2 + h3, .h2 + .h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
}
@media (min-width: 992px) {
  h2 + h3, h2 + .h3, .h2 + h3, .h2 + .h3 {
    font-size: 28px;
    line-height: 38px;
  }
}

h3, .h3 {
  font-size: 24px;
  line-height: 30px;
}
@media (min-width: 992px) {
  h3, .h3 {
    font-size: 38px;
    line-height: 46px;
  }
}

h4, .h4 {
  font-size: 24px;
  line-height: 30px;
}
@media (min-width: 992px) {
  h4, .h4 {
    font-size: 30px;
    line-height: 38px;
  }
}

:root {
  --theme-color-light: #F24D69;
  --theme-color: #D23C55;
  --theme-color-dark: #AF2D43;
  --theme-color-bg: #f6d8dd;
  --theme-color-bg-light: #fbecee;
  --theme-color-light-rgb: 242, 77, 105;
  --theme-color-rgb: 210, 60, 85;
  --theme-color-dark-rgb: 175, 45, 67;
  --link-color: #D23C55;
  --link-color-hover: #AF2D43;
  --list-bullet-heptagon: url("data:image/svg+xml;utf8,%3Csvg%20xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width=%2226.888%22%20height=%2226.214%22%20viewBox=%220%200%2026.888%2026.214%22%3E%3Cpath%20fill=%22%23D23C55%22%20d=%22M12.143.627a3,3,0,0,1,2.6,0l8.178,3.938A3,3,0,0,1,24.547,6.6l2.02,8.849a3,3,0,0,1-.579,2.538l-5.659,7.1a3,3,0,0,1-2.345,1.13H8.906a3,3,0,0,1-2.345-1.13L.9,17.988A3,3,0,0,1,.321,15.45L2.341,6.6A3,3,0,0,1,3.964,4.565Z%22%2F%3E%3C%2Fsvg%3E");
}

.theme-rose {
  --theme-color-light: #F24D69;
  --theme-color: #D23C55;
  --theme-color-dark: #AF2D43;
  --theme-color-bg: #f6d8dd;
  --theme-color-bg-light: #fbecee;
  --theme-color-light-rgb: 242, 77, 105;
  --theme-color-rgb: 210, 60, 85;
  --theme-color-dark-rgb: 175, 45, 67;
  --link-color: #D23C55;
  --link-color-hover: #AF2D43;
  --list-bullet-heptagon: url("data:image/svg+xml;utf8,%3Csvg%20xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width=%2226.888%22%20height=%2226.214%22%20viewBox=%220%200%2026.888%2026.214%22%3E%3Cpath%20fill=%22%23D23C55%22%20d=%22M12.143.627a3,3,0,0,1,2.6,0l8.178,3.938A3,3,0,0,1,24.547,6.6l2.02,8.849a3,3,0,0,1-.579,2.538l-5.659,7.1a3,3,0,0,1-2.345,1.13H8.906a3,3,0,0,1-2.345-1.13L.9,17.988A3,3,0,0,1,.321,15.45L2.341,6.6A3,3,0,0,1,3.964,4.565Z%22%2F%3E%3C%2Fsvg%3E");
}

.theme-ember {
  --theme-color-light: #FF9343;
  --theme-color: #E57624;
  --theme-color-dark: #C96115;
  --theme-color-bg: #fae4d3;
  --theme-color-bg-light: #fcf1e9;
  --theme-color-light-rgb: 255, 147, 67;
  --theme-color-rgb: 229, 118, 36;
  --theme-color-dark-rgb: 201, 97, 21;
  --link-color: #E57624;
  --link-color-hover: #C96115;
  --list-bullet-heptagon: url("data:image/svg+xml;utf8,%3Csvg%20xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width=%2226.888%22%20height=%2226.214%22%20viewBox=%220%200%2026.888%2026.214%22%3E%3Cpath%20fill=%22%23E57624%22%20d=%22M12.143.627a3,3,0,0,1,2.6,0l8.178,3.938A3,3,0,0,1,24.547,6.6l2.02,8.849a3,3,0,0,1-.579,2.538l-5.659,7.1a3,3,0,0,1-2.345,1.13H8.906a3,3,0,0,1-2.345-1.13L.9,17.988A3,3,0,0,1,.321,15.45L2.341,6.6A3,3,0,0,1,3.964,4.565Z%22%2F%3E%3C%2Fsvg%3E");
}

.theme-honey {
  --theme-color-light: #FFBC5B;
  --theme-color: #EEA63E;
  --theme-color-dark: #D59539;
  --theme-color-bg: #fcedd8;
  --theme-color-bg-light: #fdf6ec;
  --theme-color-light-rgb: 255, 188, 91;
  --theme-color-rgb: 238, 166, 62;
  --theme-color-dark-rgb: 213, 149, 57;
  --link-color: #EEA63E;
  --link-color-hover: #D59539;
  --list-bullet-heptagon: url("data:image/svg+xml;utf8,%3Csvg%20xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width=%2226.888%22%20height=%2226.214%22%20viewBox=%220%200%2026.888%2026.214%22%3E%3Cpath%20fill=%22%23EEA63E%22%20d=%22M12.143.627a3,3,0,0,1,2.6,0l8.178,3.938A3,3,0,0,1,24.547,6.6l2.02,8.849a3,3,0,0,1-.579,2.538l-5.659,7.1a3,3,0,0,1-2.345,1.13H8.906a3,3,0,0,1-2.345-1.13L.9,17.988A3,3,0,0,1,.321,15.45L2.341,6.6A3,3,0,0,1,3.964,4.565Z%22%2F%3E%3C%2Fsvg%3E");
}

.theme-sage {
  --theme-color-light: #9FB583;
  --theme-color: #829768;
  --theme-color-dark: #708457;
  --theme-color-bg: #e6eae1;
  --theme-color-bg-light: #f3f5f0;
  --theme-color-light-rgb: 159, 181, 131;
  --theme-color-rgb: 130, 151, 104;
  --theme-color-dark-rgb: 112, 132, 87;
  --link-color: #829768;
  --link-color-hover: #708457;
  --list-bullet-heptagon: url("data:image/svg+xml;utf8,%3Csvg%20xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width=%2226.888%22%20height=%2226.214%22%20viewBox=%220%200%2026.888%2026.214%22%3E%3Cpath%20fill=%22%23829768%22%20d=%22M12.143.627a3,3,0,0,1,2.6,0l8.178,3.938A3,3,0,0,1,24.547,6.6l2.02,8.849a3,3,0,0,1-.579,2.538l-5.659,7.1a3,3,0,0,1-2.345,1.13H8.906a3,3,0,0,1-2.345-1.13L.9,17.988A3,3,0,0,1,.321,15.45L2.341,6.6A3,3,0,0,1,3.964,4.565Z%22%2F%3E%3C%2Fsvg%3E");
}

.theme-aqua {
  --theme-color-light: #6FB9CE;
  --theme-color: #589FB4;
  --theme-color-dark: #4A889A;
  --theme-color-bg: #deecf0;
  --theme-color-bg-light: #eef5f8;
  --theme-color-light-rgb: 111, 185, 206;
  --theme-color-rgb: 88, 159, 180;
  --theme-color-dark-rgb: 74, 136, 154;
  --link-color: #589FB4;
  --link-color-hover: #4A889A;
  --list-bullet-heptagon: url("data:image/svg+xml;utf8,%3Csvg%20xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width=%2226.888%22%20height=%2226.214%22%20viewBox=%220%200%2026.888%2026.214%22%3E%3Cpath%20fill=%22%23589FB4%22%20d=%22M12.143.627a3,3,0,0,1,2.6,0l8.178,3.938A3,3,0,0,1,24.547,6.6l2.02,8.849a3,3,0,0,1-.579,2.538l-5.659,7.1a3,3,0,0,1-2.345,1.13H8.906a3,3,0,0,1-2.345-1.13L.9,17.988A3,3,0,0,1,.321,15.45L2.341,6.6A3,3,0,0,1,3.964,4.565Z%22%2F%3E%3C%2Fsvg%3E");
}

.theme-azure {
  --theme-color-light: #5D91B8;
  --theme-color: #46769A;
  --theme-color-dark: #386180;
  --theme-color-bg: #dae4eb;
  --theme-color-bg-light: #edf1f5;
  --theme-color-light-rgb: 93, 145, 184;
  --theme-color-rgb: 70, 118, 154;
  --theme-color-dark-rgb: 56, 97, 128;
  --link-color: #46769A;
  --link-color-hover: #386180;
  --list-bullet-heptagon: url("data:image/svg+xml;utf8,%3Csvg%20xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width=%2226.888%22%20height=%2226.214%22%20viewBox=%220%200%2026.888%2026.214%22%3E%3Cpath%20fill=%22%2346769A%22%20d=%22M12.143.627a3,3,0,0,1,2.6,0l8.178,3.938A3,3,0,0,1,24.547,6.6l2.02,8.849a3,3,0,0,1-.579,2.538l-5.659,7.1a3,3,0,0,1-2.345,1.13H8.906a3,3,0,0,1-2.345-1.13L.9,17.988A3,3,0,0,1,.321,15.45L2.341,6.6A3,3,0,0,1,3.964,4.565Z%22%2F%3E%3C%2Fsvg%3E");
}

.text-default {
  color: var(--bs-body-color);
  --headings-color: #161615;
}

.text-white {
  color: white;
  --headings-color: white;
}

.bg-white {
  background-color: white;
}

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

.text-theme-light {
  color: var(--theme-color-light);
}

.text-theme-dark {
  color: var(--theme-color-dark);
}

.bg-theme {
  background-color: var(--theme-color);
}

.bg-theme-light {
  background-color: var(--theme-color-light);
}

.bg-theme-dark {
  background-color: var(--theme-color-dark);
}

.default-link {
  --link-color: #161615;
  --link-color-hover: #232321;
}

.white-link {
  --link-color: white;
  --link-color-hover: transparentize(white, .1);
}

.default-inputs {
  --input-bg: #F2F1EE;
}

.white-inputs {
  --input-bg: white;
}

.page {
  max-width: 1920px;
  margin: 0 auto var(--fixed-footer-height);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 41px rgba(0, 0, 0, 0.05);
}
.header, .nav-header {
  padding: 10px 0 350px;
  position: relative;
}
.header--no-header-image {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .header, .nav-header {
    padding: 10px 0 55px;
  }
}
@media (min-width: 992px) {
  .header, .nav-header {
    padding: 55px 0;
  }
}
@media (min-width: 1560px) {
  .header, .nav-header {
    padding: 55px 0 133px;
  }
}
.header--with-breadcrumbs {
  padding-bottom: 300px;
}
.header--with-breadcrumbs.header--no-header-image {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .header--with-breadcrumbs {
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .header--with-breadcrumbs {
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .header--with-breadcrumbs {
    padding-bottom: 80px;
  }
}
.header__container, .nav-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
}
.header__logo-wrap, .nav-header__logo-wrap {
  flex: 1 0 72px;
  max-width: 72px;
  width: 72px;
}
@media (min-width: 576px) {
  .header__logo-wrap, .nav-header__logo-wrap {
    flex: 1 0 232px;
    max-width: 232px;
    width: 232px;
  }
}
.header__logo, .nav-header__logo {
  display: block;
  width: 100%;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 0 0;
     object-position: 0 0;
}

.main {
  min-height: 900px;
}

:root {
  --added-header-height: 0px;
}

.main-header-content {
  min-height: 0;
}
@media (min-width: 768px) {
  .main-header-content {
    min-height: 200px;
  }
}
@media (min-width: 992px) {
  .main-header-content {
    min-height: 300px;
  }
}
@media (min-width: 1560px) {
  .main-header-content {
    min-height: calc(500px + var(--added-header-height));
  }
}
.main-header-content--no-header-image {
  min-height: 0;
}
.main-header-content--added-height {
  --added-header-height: 250px;
}

.main-content--header-image-margin {
  margin-top: 0;
}
@media (min-width: 768px) {
  .main-content--header-image-margin {
    margin-top: 300px;
  }
}
@media (min-width: 992px) {
  .main-content--header-image-margin {
    margin-top: 470px;
  }
}
@media (min-width: 1560px) {
  .main-content--header-image-margin {
    margin-top: 810px;
  }
}

.frame-type-form_formframework .row {
  margin-left: -10px;
  margin-right: -10px;
}
.frame-type-form_formframework .row > .col,
.frame-type-form_formframework .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}
.frame-type-form_formframework .clearfix,
.frame-type-form_formframework .form-text {
  margin-top: 15px;
  font-size: 1.0625rem;
  margin-bottom: 40px;
}
.frame-type-form_formframework .form-label {
  display: none;
}
.frame-type-form_formframework legend {
  margin-bottom: 20px;
  font-weight: bold;
}
.frame-type-form_formframework .input.checkbox {
  position: relative;
}
.frame-type-form_formframework input[type=checkbox] {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  top: 5px;
  left: 5px;
}
.frame-type-form_formframework input[type=checkbox]:focus, .frame-type-form_formframework input[type=checkbox]:hover, .frame-type-form_formframework input[type=checkbox]:active {
  outline: none;
  border: none;
  box-shadow: none;
}
.frame-type-form_formframework textarea.form-control {
  min-height: 300px;
}
.frame-type-form_formframework .form-check-label {
  position: relative;
  padding-left: 44px;
  cursor: pointer;
  margin-bottom: 0;
}
.frame-type-form_formframework .form-check-label:before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--input-bg);
  background-clip: padding-box;
  border: 0 solid #ced4da;
  position: absolute;
  left: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .frame-type-form_formframework .form-check-label:before {
    transition: none;
  }
}
.frame-type-form_formframework .form-check-label:after {
  display: none;
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--theme-color);
  position: absolute;
  left: 4px;
  top: 4px;
}
.frame-type-form_formframework input[type=checkbox]:checked ~ .form-check-label:after {
  display: block;
}
.frame-type-form_formframework input[type=checkbox]:focus ~ .form-check-label:before {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--theme-color-rgb), 0.25);
}

.parsley-errors-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin-top: 15px;
  font-size: 1.0625rem;
  margin-bottom: 20px;
}
.parsley-errors-list li {
  padding-left: 32px !important;
}
.parsley-errors-list li:before {
  width: 20px !important;
  height: 20px !important;
}

.privacy-policy-link {
  display: flex;
  align-items: center;
}
.privacy-policy-link i {
  margin-right: 4px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  padding: 0 30px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #161615;
  border-radius: 0;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #161615;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #161615;
  border-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #161615;
  border-radius: 0;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #161615;
  border-radius: 0;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #161615;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.select2-container .select2-selection__rendered,
.select2-container .select2-search--inline .select2-search__field {
  font-size: 1.0625rem;
}
.select2-container .select2-selection--multiple, .select2-container .select2-selection--single {
  height: auto;
}
.select2-container .select2-selection--multiple .select2-selection__rendered, .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 19px 0 19px 30px;
  white-space: normal;
  text-overflow: initial;
}
.select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border: 0 solid #ced4da;
  background-color: var(--input-bg);
  border-radius: 29px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single {
    transition: none;
  }
}
.select2-container--default .select2-selection--multiple:focus, .select2-container--default .select2-selection--single:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--theme-color-rgb), 0.25);
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered, .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 300;
  line-height: 1.176470588;
  color: #161615;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow b, .select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  border: none;
  margin: 0;
  width: auto;
  height: auto;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow, .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow b, .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--theme-color);
  transform-origin: center center;
  transform: rotateZ(90deg);
  transition: transform 0.2s ease-in-out;
}
.select2-container--open .select2-selection__arrow b {
  transform: rotateZ(270deg) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__arrow b:after, .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
  content: "";
  display: block;
  background: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2217%22%20viewBox%3D%220%200%2023.326%2025.097%22%3E%3Cpath%20fill%3D%22white%22%20d%3D%22M455.166%2C32.141c-.14-.354%2C2.239-1.554%2C5.926-3.655%2C1.843-1.052%2C4-2.347%2C6.31-3.91a22.83%2C22.83%2C0%2C0%2C0%2C3.292-2.518c.434-.455.607-.894.541-1.013.019-.147-.339-.612-.914-1.006s-1.253-.783-1.95-1.189l-2.036-1.183-3.829-2.27c-2.432-1.462-4.6-2.81-6.409-3.975-3.611-2.33-5.756-3.928-5.577-4.241s2.646.718%2C6.49%2C2.638c1.923.959%2C4.19%2C2.142%2C6.687%2C3.489l3.9%2C2.138%2C2.055%2C1.148a23.907%2C23.907%2C0%2C0%2C1%2C2.191%2C1.328%2C6.308%2C6.308%2C0%2C0%2C1%2C1.139%2C1.021%2C3.391%2C3.391%2C0%2C0%2C1%2C.816%2C1.72%2C3.159%2C3.159%2C0%2C0%2C1-.341%2C1.916%2C5.251%2C5.251%2C0%2C0%2C1-.915%2C1.241%2C12.3%2C12.3%2C0%2C0%2C1-1.971%2C1.579q-.946.63-1.871%2C1.2a54.792%2C54.792%2C0%2C0%2C1-6.786%2C3.539c-4%2C1.727-6.632%2C2.322-6.753%2C2%22%20transform%3D%22translate(-450.51%20-7.126)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") no-repeat center center;
  background-size: contain;
  width: 36.9565217391%;
  height: 36.9565217391%;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 400px;
}

.select2-results__option {
  min-height: 36px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  white-space: nowrap;
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: 0 20px;
  height: 58px;
  position: relative;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered:after {
  display: block;
  content: "";
  position: absolute;
  right: 6px;
  top: 6px;
  width: 46px;
  height: 46px;
  background: var(--theme-color) url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2217%22%20viewBox%3D%220%200%2023.326%2025.097%22%3E%3Cpath%20fill%3D%22white%22%20d%3D%22M455.166%2C32.141c-.14-.354%2C2.239-1.554%2C5.926-3.655%2C1.843-1.052%2C4-2.347%2C6.31-3.91a22.83%2C22.83%2C0%2C0%2C0%2C3.292-2.518c.434-.455.607-.894.541-1.013.019-.147-.339-.612-.914-1.006s-1.253-.783-1.95-1.189l-2.036-1.183-3.829-2.27c-2.432-1.462-4.6-2.81-6.409-3.975-3.611-2.33-5.756-3.928-5.577-4.241s2.646.718%2C6.49%2C2.638c1.923.959%2C4.19%2C2.142%2C6.687%2C3.489l3.9%2C2.138%2C2.055%2C1.148a23.907%2C23.907%2C0%2C0%2C1%2C2.191%2C1.328%2C6.308%2C6.308%2C0%2C0%2C1%2C1.139%2C1.021%2C3.391%2C3.391%2C0%2C0%2C1%2C.816%2C1.72%2C3.159%2C3.159%2C0%2C0%2C1-.341%2C1.916%2C5.251%2C5.251%2C0%2C0%2C1-.915%2C1.241%2C12.3%2C12.3%2C0%2C0%2C1-1.971%2C1.579q-.946.63-1.871%2C1.2a54.792%2C54.792%2C0%2C0%2C1-6.786%2C3.539c-4%2C1.727-6.632%2C2.322-6.753%2C2%22%20transform%3D%22translate(-450.51%20-7.126)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") no-repeat center center;
  background-size: 36.9565217391% 36.9565217391%;
  border-radius: 50%;
  transform: rotateZ(90deg);
  transform-origin: center center;
  transition: transform 0.2s ease-in-out;
}
.select2-container--open .select2-selection__rendered:after {
  transform: rotateZ(270deg) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  display: none;
  float: none;
  margin: 0 0 0 5px;
  border: none;
  padding: 1px 5px;
  background: var(--theme-color);
  color: white;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice:first-child {
  margin-left: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: white;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: rgba(255, 255, 255, 0.9);
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
  font-weight: 300;
  margin: 0;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field::-moz-placeholder {
  color: #161615;
  opacity: 1;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
  color: #161615;
  opacity: 1;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
  box-shadow: 0 0 0 0.25rem rgba(var(--theme-color-rgb), 0.25);
}

.button {
  display: inline-flex;
  font-weight: 500;
  line-height: 1.176471;
  color: #161615;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  justify-content: center;
  align-items: center;
  padding: calc(1.1875rem - 2px) calc(2.125rem - 2px);
  font-size: 1.0625rem;
  border-radius: 29px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
.button--block {
  display: flex;
  width: 100%;
}
.button--sm {
  padding: 11px 20px 13px;
}
.button:has(> svg) {
  display: inline-flex;
  align-items: center;
}
.button > svg {
  display: block;
}
.button > svg:first-child {
  margin-right: 0.85em;
}
.button > svg:last-child {
  margin-left: 0.85em;
}
.button:hover {
  color: #161615;
}
.button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--theme-color-rgb), 0.25);
}
.button:has(.button-icon) {
  display: inline-flex;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
}
.button .button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  color: var(--theme-color);
  margin-left: 10px;
}
.button--primary {
  background: var(--theme-color);
  color: white;
}
.button--primary:hover {
  background: var(--theme-color-dark);
  color: white;
}
.button--primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--theme-color-rgb), 0.5);
}
.button--outline-primary {
  background: transparent;
  border-color: var(--theme-color);
  color: var(--theme-color);
}
.button--outline-primary:hover {
  background: rgba(var(--theme-color-rgb), 0.1);
  color: var(--theme-color);
}
.button--outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--theme-color-rgb), 0.5);
}
.button--default {
  background: #6c757d;
  color: #fff;
}
.button--default:hover {
  background: #616971;
  color: #fff;
}
.button--default:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.button--outline-default {
  background: transparent;
  border-color: #6c757d;
  color: #6c757d;
}
.button--outline-default:hover {
  background: rgba(108, 117, 125, 0.1);
}
.button--outline-default:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.button--danger {
  background: #dc3545;
  color: #fff;
}
.button--danger:hover {
  background: #c6303e;
  color: #fff;
}
.button--danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.button--outline-danger {
  background: transparent;
  border-color: #dc3545;
  color: #dc3545;
}
.button--outline-danger:hover {
  background: rgba(220, 53, 69, 0.1);
}
.button--outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.button--black {
  background: black;
  color: #fff;
}
.button--black:hover {
  background: black;
  color: #fff;
}
.button--black:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}
.button--outline-black {
  background: transparent;
  border-color: black;
  color: black;
}
.button--outline-black:hover {
  background: rgba(0, 0, 0, 0.1);
}
.button--outline-black:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}
.button--dsgvo {
  background: #efefef;
  color: #000;
}
.button--dsgvo:hover {
  background: #d7d7d7;
  color: #000;
}
.button--dsgvo:focus {
  box-shadow: 0 0 0 0.25rem rgba(239, 239, 239, 0.5);
}
.button--outline-dsgvo {
  background: transparent;
  border-color: #efefef;
  color: #efefef;
}
.button--outline-dsgvo:hover {
  background: rgba(239, 239, 239, 0.1);
}
.button--outline-dsgvo:focus {
  box-shadow: 0 0 0 0.25rem rgba(239, 239, 239, 0.5);
}

.round-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  background: var(--theme-color);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  transition: background-color 0.3s ease-in-out;
}
.round-button:hover, .round-button:focus, .round-button:focus-visible {
  outline: none;
}
.round-button:hover {
  background: var(--theme-color-dark);
}
.round-button svg {
  display: block;
  width: 0.4782608696em;
  height: 0.4782608696em;
}
.round-button.disabled, .round-button[disabled], .round-button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.checkbox {
  font-size: 1.0625rem;
  position: relative;
}
.checkbox__check {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  left: 1.0294117647em;
  top: 2.0588235294em;
}
.checkbox__label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox__styled-check {
  display: block;
  flex: 1 0 2.0588235294em;
  max-width: 2.0588235294em;
  width: 2.0588235294em;
  height: 2.0588235294em;
  background: var(--input-bg);
  border-radius: 8px;
  position: relative;
  margin-right: 10px;
  transition: box-shadow 0.2s ease-in-out;
  align-self: flex-start;
  margin-top: 6px;
  margin-bottom: 6px;
}
.checkbox__styled-check:after {
  content: "";
  position: absolute;
  width: calc(2.0588235294em - 12px);
  height: calc(2.0588235294em - 12px);
  top: 6px;
  left: 6px;
  background: transparent;
  border-radius: 6px;
  transition: background 0.2s ease-in-out;
}
.checkbox__styled-check--border {
  outline: 3px solid var(--theme-color);
}
.checkbox__check:focus ~ .checkbox__label .checkbox__styled-check {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--theme-color-rgb), 0.25);
}
.checkbox__check:checked ~ .checkbox__label .checkbox__styled-check:after {
  background: var(--theme-color);
}
.checkbox--radio .checkbox__styled-check {
  border-radius: 50%;
}
.checkbox--radio .checkbox__styled-check:after {
  border-radius: 50%;
}

.button-overlay {
  position: relative;
  border-radius: 29px;
  text-align: center;
}
@media (min-width: 1560px) {
  .button-overlay .form-control {
    padding-right: 200px;
  }
}
.button-overlay .button {
  margin-top: 20px;
}
@media (min-width: 1560px) {
  .button-overlay .button {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
}

.input-overlay {
  position: relative;
}
.input-overlay__icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.input-overlay__icon svg, .input-overlay__icon img {
  display: block;
  max-width: 42px;
  height: auto;
}
.input-overlay .form-control {
  padding-left: 70px;
}

.input-group {
  position: relative;
}
.input-group__button {
  position: absolute;
  font-size: 46px;
  top: 6px;
  right: 6px;
}

/*
  <div class="range">
    <button class="range__decrease" type="button"> ... </button>
    <div class="range__input-wrap">
      <input class="range__input" type="range" ... />
    </div>
    <button class="range__increase" type="button"> ... </button>
  </div>
 */
.range {
  position: relative;
}
.range__decrease, .range__increase {
  font-size: 46px;
  position: absolute;
  top: 6px;
}
.range__decrease {
  left: 6px;
}
.range__increase {
  right: 6px;
}
.range__input-wrap {
  display: flex;
  align-items: center;
  padding: 19px 58px;
  font-size: 1.0625rem;
  line-height: 1.176470588;
  height: 58px;
  background: var(--input-bg);
  border-radius: 100px;
}
.range__input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  display: inline-block;
  width: 100%;
}
.range__input::-webkit-slider-thumb, .range__input::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--theme-color);
}

/* BEM elements */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive table {
  min-width: 100%;
}
.table-responsive th, .table-responsive td {
  padding: 20px;
}
.table-responsive tr {
  background-color: white;
}
.table-responsive tr:nth-child(2n) {
  background-color: #FAFAFA;
}
.table-responsive th {
  background-color: var(--theme-color);
  color: white;
}

.pagination {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.pagination li {
  --link-color: white;
  --link-color-hover: transparentize(white, .1);
  color: white;
  --headings-color: white;
  font-size: 20px;
}
.pagination li a, .pagination li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  background: var(--theme-color);
  clip-path: url(#pagination-bg-clip);
}
.pagination li.spacer span {
  background: transparent;
  pointer-events: none;
  color: var(--bs-body-color);
  --headings-color: #161615;
}
.pagination li.current span {
  background: var(--theme-color-light);
  pointer-events: none;
}
.pagination svg {
  display: block;
  width: 1em;
  height: 1em;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 1560px) {
  .socials {
    justify-content: flex-end;
  }
}
.socials__link {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
}
.socials__fa-icon {
  font-size: 24px;
}

.button-bar {
  position: fixed;
  right: 0;
  top: 136px;
  z-index: 150;
}
@media (min-width: 768px) {
  .button-bar {
    top: 250px;
  }
}
.button-bar__item {
  width: 60px;
  height: 60px;
  margin-bottom: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-color);
  color: white;
  font-size: 32px;
  transition: 0.3s ease-in-out;
}
.button-bar__item:hover, .button-bar__item:focus {
  background-color: white;
  color: var(--theme-color);
}

.lang-menu__items {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
}
.lang-menu__item {
  text-transform: uppercase;
  padding: 0 5px;
}
.lang-menu__link--disabled {
  opacity: 0.7;
  pointer-events: none;
}

.two-click__preview {
  background: #FAFAFA;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 10px;
}
@media (min-width: 768px) {
  .two-click__preview {
    padding: 60px 30px;
  }
}
.two-click__content {
  width: 450px;
  max-width: 100%;
  padding: 20px;
}
.two-click__text {
  margin-bottom: 20px;
  font-size: 22px;
}
.two-click__check-wrap {
  margin-bottom: 20px;
}
.two-click__instagram-wrap {
  width: calc(100% + 50vw - 50% - var(--scrollbar-width) / 2);
}

:root {
  --page-heptagon-size: 580px;
  --page-heptagon-darker-size: 440px;
  --page-heptagon-image-size: 380px;
  --page-heptagon-transform-to: translate(50%, -26%);
  --page-heptagon-darker-transform-to: translate(3%, -5%);
  --page-heptagon-image-transform-to: translate(-3%, 6%) rotateZ(0deg);
}
@media (min-width: 768px) {
  :root {
    --page-heptagon-size: 750px;
    --page-heptagon-darker-size: 510px;
    --page-heptagon-image-size: 450px;
  }
}
@media (min-width: 992px) {
  :root {
    --page-heptagon-size: 1290px;
    --page-heptagon-darker-size: 930px;
    --page-heptagon-image-size: 910px;
  }
}
@media (min-width: 1560px) {
  :root {
    --page-heptagon-size: 1420px;
    --page-heptagon-darker-size: 900px;
    --page-heptagon-image-size: 840px;
    --page-heptagon-transform-to: translate(33%, -36%);
    --page-heptagon-darker-transform-to: translate(22%, -6%);
    --page-heptagon-image-transform-to: translate(7%, 4.5%) rotateZ(0deg);
  }
}
@media (min-width: 1850px) {
  :root {
    --page-heptagon-size: 1580px;
    --page-heptagon-darker-size: 1000px;
    --page-heptagon-image-size: 1000px;
  }
}

.page-heptagon-container {
  position: relative;
}

.page-heptagon {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--page-heptagon-size);
  height: var(--page-heptagon-size);
  opacity: 0;
  animation: roll-in-bg 1s 0s forwards ease-out;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  background: var(--theme-color);
  clip-path: url(#page-heptagon-clip-round);
}
@media (min-width: 1560px) {
  .page-heptagon {
    clip-path: url(#page-heptagon-clip);
  }
}
@media (min-width: 768px) {
  .page-heptagon {
    top: -60px;
    right: -70px;
  }
}
@media (min-width: 992px) {
  .page-heptagon {
    top: 0;
    right: -240px;
  }
}
@media (min-width: 1200px) {
  .page-heptagon {
    right: -180px;
  }
}
@media (min-width: 1280px) {
  .page-heptagon {
    right: -130px;
  }
}
@media (min-width: 1560px) {
  .page-heptagon {
    right: -130px;
  }
}
.page-heptagon--empty {
  --page-heptagon-transform-to: translate(50%, -69%);
}
@media (min-width: 1560px) {
  .page-heptagon--empty {
    --page-heptagon-transform-to: translate(33%, -79%);
  }
}
.page-heptagon__darker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--page-heptagon-darker-size);
  height: var(--page-heptagon-darker-size);
  opacity: 0;
  animation: roll-in-bg-darker 1s 0.4s forwards ease-out;
  background: var(--theme-color-dark);
  clip-path: url(#page-heptagon-clip-darker-round);
}
@media (min-width: 1560px) {
  .page-heptagon__darker {
    clip-path: url(#page-heptagon-clip-darker);
  }
}
.page-heptagon__image-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  width: var(--page-heptagon-image-size);
  height: var(--page-heptagon-image-size);
  animation: roll-in-element-image 1s 0.8s forwards ease-out;
  clip-path: url(#image-heptagon-clip-round);
}
@media (min-width: 1560px) {
  .page-heptagon__image-wrap {
    clip-path: url(#image-heptagon-clip);
  }
}
.page-heptagon__image-wrap .header-image {
  width: 100%;
  height: 100%;
}

@keyframes roll-in-bg {
  0% {
    opacity: 0;
    transform: translate(60%, -50%);
  }
  100% {
    opacity: 1;
    transform: var(--page-heptagon-transform-to);
  }
}
@keyframes roll-in-bg-darker {
  0% {
    opacity: 0;
    transform: translate(60%, -12%);
  }
  100% {
    opacity: 1;
    transform: var(--page-heptagon-darker-transform-to);
  }
}
@keyframes roll-in-element-image {
  0% {
    opacity: 0;
    transform: translate(60%, -5.5%) rotateZ(20deg);
  }
  100% {
    opacity: 1;
    transform: var(--page-heptagon-image-transform-to);
  }
}
.heptagon-wrap {
  display: inline-block;
  position: relative;
}
.heptagon-wrap__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.heptagon-wrap__svg svg {
  display: block;
  width: 100%;
  height: 100%;
}
.heptagon-wrap__content {
  padding: 150px 80px;
}

:root {
  --popup-image-padding-x: 10px;
  --popup-image-padding-y: 10px;
  --popup-image-border-radius: 25px;
  --popup-image-space-x: 1em;
  --popup-image-space-y: 1em;
}
@media (min-width: 992px) {
  :root {
    --popup-image-padding-x: 20px;
    --popup-image-padding-y: 20px;
    --popup-image-border-radius: 20px;
  }
}

.popup-root {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 150;
  transition: background 0.2s ease-in-out;
  background: rgba(132, 129, 121, 0);
}
.popup-root.show {
  display: block;
}
.popup-root.visible {
  background: rgba(132, 129, 121, 0.8);
}
.popup-root--ajax, .popup-root--inline {
  overflow: auto;
}
.popup-root--video.show, .popup-root--image.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup {
  border: none;
  outline: none;
  padding: 0;
  max-width: none;
  max-height: none;
  background: none transparent;
  overflow: visible;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.popup.visible {
  opacity: 1;
}
.popup::backdrop {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.popup.visible::backdrop {
  background: #848179;
  opacity: 0.8;
}
.popup__close {
  color: white;
  position: absolute;
  bottom: calc(100% + 20px);
  right: 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .popup__close {
    bottom: calc(100% + 30px);
  }
}
.popup__container {
  position: relative;
  border-radius: 35px;
  background: #F5F4F1;
  padding: var(--popup-image-padding-y) var(--popup-image-padding-x);
}
.popup__title {
  position: absolute;
  bottom: calc(10px + var(--popup-image-padding-y));
  left: calc(10px + var(--popup-image-padding-x));
  background: rgba(255, 255, 255, 0.6);
  color: #161615;
  padding: 5px 10px;
  border-bottom-left-radius: 15px;
}
.popup__image {
  max-width: calc(100vw - var(--popup-image-padding-x) * 2 - var(--popup-image-space-x) * 2);
  max-height: calc(100vh - var(--popup-image-padding-y) * 2 - var(--popup-image-space-y) * 2);
  width: auto;
  height: auto;
  border-radius: var(--popup-image-border-radius);
}
.popup__nav {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 575.98px) {
  .popup__nav {
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, max-content);
    grid-column-gap: 20px;
  }
}
.popup__nav-arrow {
  position: absolute;
  top: 50%;
  background: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 4px;
  margin-top: -25px;
}
@media (max-width: 575.98px) {
  .popup__nav-arrow {
    position: static;
    top: unset;
    left: unset;
    margin: 0;
  }
}
@media (min-width: 576px) {
  .popup__nav-arrow {
    width: 70px;
    height: 70px;
    padding: 5px;
    margin-top: -35px;
  }
}
.popup__nav-arrow.disabled svg, .popup__nav-arrow.disabled img {
  cursor: default;
  opacity: 0.3;
}
.popup__nav-arrow svg, .popup__nav-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.popup__nav-arrow--prev {
  left: 30px;
}
.popup__nav-arrow--next {
  right: 30px;
}
@media (min-width: 1860px) {
  .popup__nav-arrow--prev {
    left: -90px;
  }
  .popup__nav-arrow--next {
    right: -90px;
  }
}
.popup__error {
  padding: 50px;
  margin: 0;
  color: #dc3545;
}
.popup__video {
  display: block;
  border-radius: 35px;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 20px);
}
.popup--video, .popup--search, .popup--ajax, .popup--inline {
  width: 1760px;
  max-width: calc(100vw - 20px);
  margin: 20px auto;
}
@media (min-width: 992px) {
  .popup--video, .popup--search, .popup--ajax, .popup--inline {
    margin: 170px auto;
  }
}
.popup--default-close {
  margin: 90px auto 20px;
}
@media (min-width: 992px) {
  .popup--default-close {
    margin: 170px auto;
  }
}
.popup--ajax .popup__container, .popup--inline .popup__container {
  padding: 30px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .popup--ajax .popup__container, .popup--inline .popup__container {
    padding: 50px;
  }
}
@media (min-width: 992px) {
  .popup--ajax .popup__container, .popup--inline .popup__container {
    padding: 60px;
  }
}
@media (min-width: 1560px) {
  .popup--ajax .popup__container, .popup--inline .popup__container {
    padding: 114px 134px;
  }
}
.popup--ajax, .popup--search {
  width: 1280px;
}
.popup--search .popup__container {
  background: white;
}
.popup--video {
  width: 1280px;
  max-height: calc(100vh - 20px);
}
.popup--video .popup__container {
  padding: 0;
  background: none transparent;
}

html.popup-opened {
  overflow: hidden;
  margin-right: var(--scrollbar-width);
}

:root {
  --text-image-wrap-clip-path: url(#text-image-wrap-xs);
  --text-image-clip-path: url(#text-image-xs);
  --text-image-text-width: 700px;
  --text-image-offset: 850px;
}
@media (min-width: 992px) {
  :root {
    --text-image-wrap-clip-path: url(#text-image-wrap);
    --text-image-clip-path: url(#text-image);
  }
}

.text-image {
  position: relative;
}
.text-image__image-wrap {
  position: relative;
  clip-path: var(--text-image-wrap-clip-path);
  background: var(--theme-color);
  width: max(470px, 110vw);
  height: max(470px, 110vw);
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  overflow: hidden;
}
.text-image--size-small .text-image__image-wrap {
  width: max(470px, 80vw);
  height: max(470px, 80vw);
}

@media (min-width: 992px) {
  .text-image__image-wrap {
    width: 1000px;
    height: 1000px;
  }
}
@media (min-width: 1560px) {
  .text-image__image-wrap {
    position: absolute;
    left: auto;
    transform: translateZ(0);
    right: var(--text-image-offset);
    top: 0;
    width: 1230px;
    height: 1230px;
  }
}
@media (min-width: 992px) {
  .text-image--size-small .text-image__image-wrap {
    position: absolute;
    left: auto;
    transform: translateZ(0);
    right: var(--text-image-offset);
    top: 0;
    width: 1230px;
    height: 1230px;
  }
}

.text-image__image-holder {
  display: block;
  position: absolute;
  right: -5%;
  bottom: -1%;
  width: 89%;
  height: 89%;
  clip-path: var(--text-image-clip-path);
}
.text-image__image-holder--type-4 {
  bottom: 1%;
  width: 85%;
  height: 85%;
}
@media (min-width: 992px) {
  .text-image__image-holder {
    right: -8%;
  }
}
.text-image__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.text-image__image-poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
}
.text-image__play-icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  pointer-events: none;
}
.text-image__text-wrap {
  max-width: 650px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .text-image__text-wrap {
    max-width: none;
    margin: 0;
  }
}
.text-image__header-wrap {
  max-width: var(--text-image-text-width);
}
@media (min-width: 992px) {
  .text-image__body-wrap {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 90px;
         column-gap: 90px;
  }
}
.text-image__button-wrap {
  margin-top: 50px;
}
@media (min-width: 1560px) {
  .text-image--has-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 1200px;
  }
}
@media (min-width: 992px) {
  .text-image--has-image.text-image--size-small {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 1200px;
  }
}
@media (min-width: 1560px) {
  .text-image--has-image .text-image__text-wrap {
    max-width: var(--text-image-text-width);
  }
}
@media (min-width: 992px) {
  .text-image--size-small.text-image--has-image .text-image__text-wrap {
    max-width: var(--text-image-text-width);
  }
}

@media (min-width: 992px) {
  .text-image--has-image .text-image__body-wrap {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.text-image--image-right {
  --text-image-wrap-clip-path: url(#text-image-wrap-swap-xs);
  --text-image-clip-path: url(#text-image-swap-xs);
}
@media (min-width: 992px) {
  .text-image--image-right {
    --text-image-wrap-clip-path: url(#text-image-wrap-swap);
    --text-image-clip-path: url(#text-image-swap);
  }
}
@media (min-width: 1560px) {
  .text-image--image-right .text-image__image-wrap {
    right: auto;
    transform: translateZ(0);
    left: var(--text-image-offset);
  }
}
@media (min-width: 992px) {
  .text-image--size-small.text-image--image-right .text-image__image-wrap {
    right: auto;
    transform: translateZ(0);
    left: var(--text-image-offset);
  }
}

.text-image--image-right .text-image__image-holder {
  right: auto;
  left: -5%;
}
@media (min-width: 992px) {
  .text-image--image-right .text-image__image-holder {
    right: auto;
    left: -8%;
  }
}
@media (max-width: 1559.98px) {
  .text-image--image-top .text-image__image-wrap {
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .text-image--size-small.text-image--image-top .text-image__image-wrap {
    margin-bottom: 20px;
  }
}

@media (max-width: 1559.98px) {
  .text-image--image-bottom .text-image__image-wrap {
    margin-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .text-image--size-small.text-image--image-bottom .text-image__image-wrap {
    margin-top: 20px;
  }
}

@media (min-width: 1560px) {
  .text-image--has-image.text-image--image-right {
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .text-image--size-small.text-image--has-image.text-image--image-right {
    flex-direction: row-reverse;
  }
}

@media (max-width: 1559.98px) {
  .text-image--has-image.text-image--image-bottom {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1559.98px) and (min-width: 992px) and (max-width: 1559.98px) {
  .text-image--has-image.text-image--image-bottom {
    flex-direction: row;
  }
}
@media (max-width: 991.98px) {
  .text-image--size-small.text-image--has-image.text-image--image-bottom {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 991.98px) and (min-width: 992px) and (max-width: 1559.98px) {
  .text-image--size-small.text-image--has-image.text-image--image-bottom {
    flex-direction: row;
  }
}

@media (min-width: 992px) and (max-width: 1559.98px) {
  .text-image--has-image.text-image--image-bottom.text-image--size-default {
    flex-direction: column-reverse;
  }
}
.text-image--size-small.text-image--has-image {
  --text-image-text-width: 630px;
  --text-image-offset: 770px;
}
@media (min-width: 992px) {
  .text-image--size-small.text-image--has-image {
    --text-image-text-width: 470px;
    --text-image-offset: 500px;
    min-height: 540px;
  }
}
@media (min-width: 1200px) {
  .text-image--size-small.text-image--has-image {
    --text-image-text-width: 570px;
    --text-image-offset: 600px;
  }
}
@media (min-width: 1560px) {
  .text-image--size-small.text-image--has-image {
    --text-image-text-width: 630px;
    --text-image-offset: 770px;
    min-height: 760px;
  }
}
@media (min-width: 992px) {
  .text-image--size-small.text-image--has-image .text-image__image-wrap {
    width: 540px;
    height: 540px;
  }
}
@media (min-width: 1560px) {
  .text-image--size-small.text-image--has-image .text-image__image-wrap {
    width: 760px;
    height: 760px;
  }
}
.text-image--size-small.text-image--has-image .text-image__image-holder {
  width: 97%;
  height: 97%;
  right: -10%;
  bottom: 0;
}
.text-image--size-small.text-image--has-image.text-image--image-right .text-image__image-holder {
  right: auto;
  left: -9%;
}
.text-image:not(.text-image--has-image).text-image--text-center {
  max-width: 990px;
  text-align: center;
  margin: 50px auto 0;
}
.text-image:not(.text-image--has-image).text-image--text-center .text-image__header-wrap {
  max-width: unset;
}
.text-image:not(.text-image--has-image).text-image--text-center .text-image__body-wrap {
  -moz-column-count: unset;
       column-count: unset;
  -moz-column-gap: unset;
       column-gap: unset;
}
.text-image--has-multiple-images .text-image__image {
  transition: transform 1s ease-in-out;
  transform: rotateZ(0deg);
}
.text-image--has-multiple-images .swiper-initialized .swiper-slide:not(.swiper-slide-active) .text-image__image {
  transform: rotateZ(35deg);
}
.text-image__image--type-4 {
  position: relative;
}
.text-image__video-filler {
  height: 0;
  padding-bottom: 100%;
}
.text-image__video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.text-image__nav {
  position: absolute;
  bottom: 15%;
  left: 35%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  padding: 15px;
  border-radius: 50%;
  background: rgba(22, 22, 21, 0.4);
  color: white;
}
.text-image__nav .swiper-arrow {
  display: block;
  width: 100%;
  height: 100%;
}

.freq-used {
  display: flow-root;
  padding: 120px 0 60px;
  --freq-gutter-y: 20px;
  --freq-gutter-x: 20px;
}
@media (min-width: 768px) {
  .freq-used {
    --freq-gutter-y: 50px;
    --freq-gutter-x: 20px;
  }
}
@media (min-width: 1560px) {
  .freq-used {
    --freq-gutter-x: 0;
  }
}
.freq-used__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  margin-top: calc(-1 * var(--freq-gutter-y));
  margin-left: calc(var(--freq-gutter-x) * -0.5);
  margin-right: calc(var(--freq-gutter-x) * -0.5);
}
@media (min-width: 768px) {
  .freq-used__items {
    justify-content: space-between;
  }
}
.freq-used__item {
  display: flex;
  align-items: center;
  margin-top: var(--freq-gutter-y);
  line-height: 1.23;
  font-weight: 500;
  font-size: 17px;
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
  padding-left: calc(var(--freq-gutter-x) * 0.5);
  padding-right: calc(var(--freq-gutter-x) * 0.5);
}
@media (min-width: 576px) {
  .freq-used__item {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
  .freq-used__item:nth-child(2n+1) {
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .freq-used__item {
    font-size: 20px;
  }
}
@media (min-width: 1560px) {
  .freq-used__item {
    flex: unset;
    width: unset;
    max-width: unset;
  }
  .freq-used__item:nth-child(2n+1) {
    justify-content: flex-start;
  }
}
.freq-used__icon-wrap {
  margin-right: 15px;
}
.freq-used__icon {
  display: block;
  max-width: 55px;
  max-height: 45px;
}
@media (min-width: 992px) {
  .freq-used__icon {
    max-width: 90px;
    max-height: 65px;
  }
}
@media (min-width: 768px) {
  .freq-used__title {
    max-width: 150px;
  }
}
.freq-used--nav {
  padding-top: 60px;
}
@media (min-width: 992px) {
  .freq-used--nav {
    padding-top: 120px;
  }
}
.freq-used--content {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.freq-used--content .freq-used__header {
  text-align: center;
}
.freq-used--content .freq-used__item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 150px;
}
.freq-used--content .freq-used__icon-wrap {
  flex: unset;
  width: unset;
  max-width: unset;
  margin-bottom: 15px;
  margin-right: 0;
}

:root {
  --compass-vertical-margin: 100px;
  --compass-gutter-width: 40px;
}
@media (min-width: 992px) {
  :root {
    --compass-vertical-margin: 150px;
  }
}
@media (min-width: 1560px) {
  :root {
    --compass-vertical-margin: 150px;
    --compass-gutter-width: 60px;
  }
}

.compass {
  --text-image-text-width: 820px;
  --text-image-offset: 960px;
  font-size: 22px;
  line-height: 1.4167;
}
@media (min-width: 768px) {
  .compass {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .compass {
    font-size: 24px;
  }
}
.compass__header-line {
  margin-bottom: 110px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: margin 0.3s ease-in-out;
}
@media (min-width: 1560px) {
  .compass__header-line {
    margin-bottom: 190px;
  }
}
.compass__header-left, .compass__header-right {
  flex: 1 0 50%;
  max-width: 50%;
  width: 50%;
  display: flex;
  justify-content: flex-start;
  order: 1;
}
@media (min-width: 1560px) {
  .compass__header-left, .compass__header-right {
    flex: unset;
    width: unset;
    max-width: unset;
    flex: 1 0;
    order: unset;
  }
}
.compass__header-right {
  justify-content: flex-end;
  order: 2;
}
@media (min-width: 1560px) {
  .compass__header-right {
    order: unset;
  }
}
.compass__header-text {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
  order: 3;
  margin-top: 30px;
}
@media (max-width: 575.98px) {
  .compass__header-text {
    font-size: 30px;
  }
}
@media (min-width: 1560px) {
  .compass__header-text {
    flex: unset;
    width: unset;
    max-width: unset;
    order: unset;
    margin-top: 0;
  }
}
.compass__header-icon {
  background: var(--theme-color);
  font-size: 90px;
  width: 1em;
  height: 1em;
  padding: 0.1153846em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  order: 3;
  cursor: pointer;
}
@media (min-width: 992px) {
  .compass__header-icon {
    font-size: 130px;
    order: unset;
  }
}
.compass__close {
  display: block;
  cursor: pointer;
}
.compass__back {
  display: block;
  cursor: pointer;
}
.compass__tiles {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--compass-vertical-margin) * -1);
  margin-left: calc(var(--compass-gutter-width) * -1);
  margin-right: calc(var(--compass-gutter-width) * -1);
}
.compass__tile {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
  margin-top: var(--compass-vertical-margin);
  padding-left: var(--compass-gutter-width);
  padding-right: var(--compass-gutter-width);
}
@media (min-width: 992px) {
  .compass__tile {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
@media (min-width: 1560px) {
  .compass__tile {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
}
.compass__tile-inner {
  display: block;
  background: white;
  border-radius: 40px;
  padding: 90px 40px 40px;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  height: 100%;
}
@media (min-width: 576px) {
  .compass__tile-inner {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .compass__tile-inner {
    border-radius: 40px;
    padding: 110px 80px 70px;
  }
}
.compass__tile-icon-wrap {
  font-size: 150px;
  line-height: 1;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  color: white;
  background: var(--theme-color);
  clip-path: url(#compass-icon-mask);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .compass__tile-icon-wrap {
    font-size: 165px;
  }
}
.compass__tile-icon {
  display: block;
  width: 0.5454545454em;
  height: 0.5454545454em;
  transform-origin: center center;
}
.compass__tile-text {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 576px) {
  .compass__tile-text {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .compass__tile-text {
    font-size: 30px;
  }
}
.compass__arrow-wrap {
  position: absolute;
  right: 40px;
  bottom: 30px;
}
@media (min-width: 1560px) {
  .compass__page > .frame-type-header:first-child ~ .frame-type-mask_text_image .text-image--has-image {
    margin-top: -90px;
  }
}

.hepta-slider {
  margin-top: 120px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.hepta-slider__slider {
  flex: 1 0 75%;
  max-width: 75%;
  width: 75%;
  margin-bottom: 100px;
}
.hepta-slider__nav {
  flex: 1 0 25%;
  max-width: 25%;
  width: 25%;
  justify-content: center;
}
.hepta-slider__slide {
  position: relative;
}
.hepta-slider__slide-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.hepta-slider__date {
  font-size: 17px;
  margin-bottom: 10px;
}
.hepta-slider__header {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hepta-slider__text {
  font-size: 17px;
  margin-bottom: 20px;
  flex-grow: 1;
  min-height: 52px;
}
.hepta-slider__link {
  display: inline-flex;
  align-items: center;
  font-size: 17px;
}
.hepta-slider__link-icon {
  width: 2.70588em;
  height: 2.70588em;
  margin-left: 1.17647em;
  border-radius: 50%;
  background: var(--theme-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hepta-slider__link-icon:hover {
  background: var(--theme-color-dark);
}
.hepta-slider__heptagon {
  position: absolute;
  transition: all 0.5s ease-out;
  top: 0;
  left: 0;
  opacity: 1;
  pointer-events: none;
}
.hepta-slider__heptagon--lo {
  left: 0;
  transform: rotateZ(0) translate(-100%, -20%) scale(0.01);
  opacity: 0;
}
.hepta-slider__heptagon--ro {
  left: 100%;
  transform: rotateZ(0) translate(-100%, -20%) scale(0.01);
  opacity: 0;
}
.hepta-slider__heptagon--1 {
  transform: rotateZ(-20deg) translate(-21%, -33%) scale(1.05);
  left: 10%;
}
.hepta-slider__heptagon--2, .hepta-slider__heptagon--3 {
  display: none;
}
@media (min-width: 992px) {
  .hepta-slider__heptagon--1 {
    transform: rotateZ(-20deg) translate(-25%, -25%) scale(1.15);
    left: 0;
  }
  .hepta-slider__heptagon--2 {
    display: block;
    transform: rotateZ(15deg) translate(-27%, -17%) scale(0.95);
    left: 43%;
  }
}
@media (min-width: 1560px) {
  .hepta-slider__heptagon--1 {
    transform: rotateZ(-20deg) translate(-25%, -25%) scale(1.15);
    left: 0;
  }
  .hepta-slider__heptagon--2 {
    transform: rotateZ(15deg) translate(-27%, -17%) scale(0.95);
    left: 28%;
  }
  .hepta-slider__heptagon--3 {
    display: block;
    transform: rotateZ(5deg) translate(-16%, -23%) scale(1.1);
    left: 56%;
  }
}

.circle-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: var(--theme-color);
  color: white;
}
.circle-icon--bg-white {
  background: white;
  color: var(--theme-color);
}
.circle-icon svg, .circle-icon img {
  display: block;
  width: 37.7777778%;
  height: 37.7777778%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@keyframes spinner-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.tiles {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: -40px;
}
.tiles__tile {
  margin-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .tiles__tile {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
@media (min-width: 1560px) {
  .tiles__tile {
    flex: 1 0 25%;
    max-width: 25%;
    width: 25%;
  }
}
.tiles__inner {
  display: block;
  height: 100%;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 300;
  min-height: 290px;
  position: relative;
}
.tiles__inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: var(--theme-color);
  border-radius: 40px;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.tiles__inner:hover:before {
  transform: scale(1.04);
}
.tiles__content {
  height: 100%;
  min-height: 290px;
  padding: 50px 30px 40px;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.tiles__spacer {
  flex: 1 0;
}
.tiles__top-header {
  margin-bottom: 10px;
}
.tiles__header {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tiles__sub-header {
  margin-bottom: 30px;
}
.tiles__link {
  display: flex;
  align-items: center;
}
.tiles__link .circle-icon {
  margin-left: 25px;
  font-size: 46px;
}
.tiles--2 .tiles__tile {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .tiles--2 .tiles__tile {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
.tiles--big-tiles .tiles__tile {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
.tiles--big-tiles .tiles__inner {
  font-size: inherit;
}
.tiles--loading {
  position: relative;
  pointer-events: none;
  --spinner-size: 100px;
  --spinner-offset: 100px;
}
.tiles--loading:after, .tiles--loading:before {
  content: "";
  display: block;
  position: absolute;
  top: var(--spinner-offset);
  left: calc(50% - var(--spinner-size) * 0.5);
  width: var(--spinner-size);
  height: var(--spinner-size);
  border-radius: 50%;
  border: calc(var(--spinner-size) * 0.1) solid var(--theme-color);
  border-top-color: transparent;
  z-index: 2;
  transform-origin: center center;
  animation: spinner-rotate 1s linear infinite;
}
.tiles--loading:after {
  top: unset;
  bottom: var(--spinner-offset);
}
.tiles--loading .tiles__tile {
  opacity: 0.5;
  z-index: 1;
  position: relative;
}

.back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 66px;
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s, background-color 0.3s ease-in-out;
  position: fixed;
  right: max(10px, 50% - 950px);
  bottom: 90px;
  z-index: 98;
  padding: 11px;
}
html.nav-opened .back-to-top {
  right: max(0px, 50% - 950px + var(--scrollbar-width) * 0.5);
}

@media (min-width: 768px) {
  .back-to-top {
    width: 66px;
    height: 66px;
    top: 70vh;
    bottom: auto;
  }
}
@media (min-width: 992px) {
  .back-to-top {
    width: 66px;
    height: 66px;
  }
}
.back-to-top:hover {
  background-color: var(--theme-color-dark);
}
.back-to-top.hide {
  opacity: 0;
  z-index: -1;
}
.back-to-top__icon {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotateZ(180deg);
}

:root {
  --nav-search-form-icon-size: 40px;
}

.nav-search-form {
  display: flex;
  position: relative;
  max-width: 100%;
}
.nav-search-form svg {
  display: block;
  width: 1em;
  height: 1em;
}
.nav-search-form__input-wrap {
  position: relative;
}
.nav-search-form__input {
  padding-left: 70px;
  padding-right: 210px;
}
@media (max-width: 1559.98px) {
  .nav-search-form__input {
    padding: 16px 50px 16px 70px;
  }
}
.nav-search-form__input-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  display: flex;
  align-items: center;
  font-size: 35px;
}
.nav-search-form__button-wrap {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 6px;
  display: flex;
  align-items: center;
}
@media (min-width: 1560px) {
  .nav-search-form__button-wrap {
    right: 0;
  }
}
@media (max-width: 1559.98px) {
  .nav-search-form__button {
    padding: 0;
    border: 0;
  }
}
@media (min-width: 1560px) {
  .nav-search-form__button {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
  }
}
.nav-search-form__button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--nav-search-form-icon-size);
  height: var(--nav-search-form-icon-size);
}
@media (min-width: 1560px) {
  .nav-search-form__button-icon {
    width: auto;
    height: 100%;
  }
}
.nav-search-form__button-label {
  display: none;
  margin-right: 10px;
}
@media (min-width: 1560px) {
  .nav-search-form__button-label {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .nav-search-form--nav-header {
    width: 100%;
  }
  .nav-search-form--nav-header .nav-search-form__input-wrap {
    width: 100%;
  }
}

.breadcrumb {
  font-size: 17px;
  --link-font-weight: 600;
  margin-bottom: 30px;
  overflow: scroll;
  margin-top: 50px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 576px) {
  .breadcrumb {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .breadcrumb {
    overflow: auto;
  }
}
.breadcrumb__home {
  font-size: 24px;
  --link-color-hover: var(--theme-color);
}
.breadcrumb__list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin: 0;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 570px;
}
@media (min-width: 1560px) {
  .breadcrumb__list {
    max-width: 670px;
  }
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
}
.breadcrumb__link {
  white-space: nowrap;
}
.breadcrumb__link--styled {
  color: var(--link-color);
  font-weight: var(--link-font-weight);
}

.search-popup {
  max-width: 800px;
  margin: 0 auto;
}
.search-popup__search-wrap {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}
.search-popup .nav-search-form__input-wrap {
  width: 610px;
  max-width: 100%;
}
.search-popup__freq-searched {
  margin-top: 55px;
}
@media (min-width: 992px) {
  .search-popup__freq-searched {
    margin-top: 110px;
  }
}

/* Styling for specific pages */
/* Navigation related styling */
:root {
  --nav-lvl1-gutter: 55px;
}
@media (min-width: 992px) {
  :root {
    --nav-lvl1-gutter: 40px;
  }
}
@media (min-width: 1200px) {
  :root {
    --nav-lvl1-gutter: 55px;
  }
}

.nav-container {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.nav-container.open {
  display: block;
}
.nav-container.visible {
  opacity: 1;
}

.nav {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: white;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .nav {
    border-radius: 0 0 80px 80px;
  }
}
.nav__list--level-1 {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 20px;
  margin-left: calc(var(--nav-lvl1-gutter) * -0.5);
  margin-right: calc(var(--nav-lvl1-gutter) * -0.5);
}
@media (max-width: 991.98px) {
  .nav__list--level-1 {
    display: none;
  }
}
.nav__page--level-1 {
  padding-left: calc(var(--nav-lvl1-gutter) * 0.5);
  padding-right: calc(var(--nav-lvl1-gutter) * 0.5);
  display: block;
}

html.nav-opened body:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  background: transparent;
  transition: background 0.3s ease-in-out;
}
html.nav-opened.nav-visible body:after {
  background: rgba(132, 129, 121, 0.8);
}

@media (min-width: 1560px) {
  .nav-header {
    padding-bottom: 55px;
  }
}
@media (min-width: 1560px) {
  .nav-header__search-wrap .form-control {
    width: 610px;
  }
}
.nav-header__gap {
  display: none;
}
@media (max-width: 991.98px) {
  .nav-header {
    padding-bottom: 40px;
  }
  .nav-header__container {
    display: flex;
    flex-wrap: wrap;
  }
  .nav-header__logo-wrap {
    order: 1;
  }
  .nav-header__nav-wrap {
    order: 2;
  }
  .nav-header__gap {
    order: 3;
    display: block;
    flex: 1 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .nav-header__search-wrap {
    order: 5;
    flex: 1 0 100%;
    max-width: 100%;
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: center;
  }
}

.fixed-nav-toggle {
  position: fixed;
  z-index: 99;
  right: max(0px, 50% - 960px);
  top: 0;
  cursor: pointer;
  overflow: hidden;
  padding: 10px 16px 25px 35px;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
}
html.nav-opened .fixed-nav-toggle {
  right: max(0px, 50% - 960px + var(--scrollbar-width) * 0.5);
}

.fixed-nav-toggle.visible {
  transform: translateY(0%);
}
.fixed-nav-toggle, .fixed-nav-toggle:hover {
  color: white;
}
.fixed-nav-toggle__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  color: var(--theme-color);
  transition: color 0.3s ease-in-out;
}
.fixed-nav-toggle:hover .fixed-nav-toggle__bg {
  color: var(--theme-color-dark);
}
.fixed-nav-toggle__icon_wrap {
  position: relative;
  z-index: 2;
}

.mega-menu__sections {
  display: none;
}
.mega-menu__sections.open {
  display: block;
}
@media (max-width: 991.98px) {
  .mega-menu__sections {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  }
  .mega-menu__sections.open {
    max-height: 10000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
  }
}
.mega-menu__container {
  padding: 50px 100px 50px;
  display: flow-root;
}
@media (max-width: 991.98px) {
  .mega-menu__container {
    padding: 40px 0 20px;
  }
  .mega-menu__container > .container {
    max-width: 100%;
  }
}
.mega-menu__nav-toggle-icon {
  display: block;
  width: 1em;
  height: 1em;
  transform-origin: center center;
  transform: rotateZ(90deg);
  transition: transform 0.3s ease-in-out;
}
.mega-menu__icon-link-wrap {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .mega-menu__icon-link-wrap {
    align-items: stretch;
  }
}
.mega-menu__icon {
  flex: 1 0 40px;
  max-width: 40px;
  width: 40px;
  height: 60px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mega-menu__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .mega-menu__icon {
    flex: 1 0 70px;
    max-width: 70px;
    width: 70px;
  }
}
.mega-menu__link--level-1 {
  display: inline-block;
  flex: 1 0;
}
@media (min-width: 992px) {
  .mega-menu__link--level-1 {
    margin-top: 10px;
  }
}
.mega-menu__list--level-1 {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin-left: -20px;
  margin-right: -20px;
  gap: 10px 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 17px;
  line-height: 1.23;
  font-weight: 500;
  --link-font-weight: 500;
}
@media (min-width: 992px) {
  .mega-menu__list--level-1 {
    margin-left: -30px;
    margin-right: -30px;
    font-size: 20px;
    gap: 40px 0;
  }
}
.mega-menu__page--level-1 {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .mega-menu__page--level-1 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .mega-menu__page--level-1 {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
@media (min-width: 1560px) {
  .mega-menu__page--level-1 {
    flex: 1 0 25%;
    max-width: 25%;
    width: 25%;
  }
}
.mega-menu__nav-toggle--level-1 {
  font-size: 16px;
  margin-top: 12px;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .mega-menu__nav-toggle--level-1 {
    display: none;
  }
}
.mega-menu__page--level-1.opened .mega-menu__nav-toggle-icon {
  transform: rotateZ(-90deg);
}
.mega-menu__list--level-2 {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  padding-left: 90px;
  margin-top: 15px;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  --link-font-weight: 400;
  display: block;
}
@media (max-width: 991.98px) {
  .mega-menu__list--level-2 {
    font-weight: 300;
    --link-font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding-left: 80px;
    margin-top: 5px;
    margin-left: -20px;
    margin-right: -20px;
    background: var(--theme-color-dark);
  }
}
@media (max-width: 991.98px) {
  .mega-menu__page--level-1.opened .mega-menu__list--level-2 {
    max-height: 10000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
  }
}
.mega-menu__page--level-1.opened .mega-menu__list--level-2 {
  display: block;
}
.mega-menu__page--level-1.opened .mega-menu__nav-toggle-icon {
  transform: rotateZ(-90deg);
}
.mega-menu__page--level-2 {
  margin: 13px 0;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .mega-menu__page--level-2 {
    margin: 0 0 10px;
    padding-right: 0;
  }
}

.mobile-menu {
  display: block;
  font-size: 24px;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu__page {
  padding: 12px 20px;
}
.footer {
  position: relative;
  padding: 10px 0 90px;
}
@media (min-width: 1560px) {
  .footer {
    padding: 140px 0 65px;
  }
}
.footer__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transform: translate(-34%, -16%);
}
@media (min-width: 1560px) {
  .footer__bg {
    transform: translate(-30%, -27%);
  }
}
.footer__container {
  position: relative;
  z-index: 2;
}
.footer__logo {
  margin-bottom: 90px;
}
.footer__logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
.footer__text {
  position: relative;
  font-size: 17px;
  font-weight: 300;
  line-height: 26px;
}
.footer__text strong, .footer__text b {
  font-weight: 600;
}
@media (max-width: 1559.98px) {
  .footer__logo {
    order: 2;
    margin-bottom: 35px;
  }
  .footer__logo img {
    width: 200px;
  }
  .footer__text {
    order: 3;
  }
  .footer__menus {
    order: 1;
    margin-bottom: 130px;
  }
}
.footer__header {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: left;
}
.footer__header--right {
  text-align: center;
}
@media (min-width: 1560px) {
  .footer__header {
    font-size: 38px;
    line-height: 46px;
    text-align: left;
  }
  .footer__header--right {
    text-align: right;
  }
}
.footer__disclaimer {
  margin-top: 80px;
  max-width: 490px;
}
.footer__search {
  margin-bottom: 70px;
}
.footer__search-wrap {
  max-width: 330px;
  margin: 0 auto;
}
@media (min-width: 1560px) {
  .footer__search-wrap {
    max-width: none;
    margin: 0 0;
  }
}
.footer__socials {
  margin-bottom: 80px;
}
.footer__socials h4, .footer__socials .h4 {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}
@media (min-width: 1560px) {
  .footer__socials h4, .footer__socials .h4 {
    text-align: right;
  }
}

.footer-menu {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

:root {
  --fixed-footer-height: 65px;
}
@media (min-width: 992px) {
  :root {
    --fixed-footer-height: 80px;
  }
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: white;
  height: var(--fixed-footer-height);
  font-size: 17px;
  line-height: 1.294;
  --link-font-weight: 500;
  box-shadow: 0 0 21px -10px rgba(0, 0, 0, 0.17);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
html.nav-opened .fixed-footer {
  padding-right: var(--scrollbar-width);
}

.fixed-footer.visible {
  transform: translateY(0%);
}
.fixed-footer__wrappings {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .fixed-footer__wrappings {
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .fixed-footer__logo-wrap, .fixed-footer__search-wrap {
    flex: 1 0;
  }
}
.fixed-footer__logo-wrap {
  display: none;
}
@media (min-width: 992px) {
  .fixed-footer__logo-wrap {
    display: block;
  }
}
.fixed-footer__search-wrap {
  margin-left: 20px;
  display: flex;
  justify-content: flex-end;
}
.fixed-footer__search-wrap, .fixed-footer__menu-item-icon {
  font-size: 42px;
}
@media (min-width: 992px) {
  .fixed-footer__search-wrap, .fixed-footer__menu-item-icon {
    font-size: 56px;
  }
}
.fixed-footer__search-wrap svg, .fixed-footer__menu-item-icon svg {
  display: block;
  width: auto;
  height: 1em;
}
.fixed-footer__menu-wrap {
  flex: 0 1 auto;
}
.fixed-footer__menu {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-footer__menu-item {
  margin-right: 20px;
}
@media (min-width: 992px) {
  .fixed-footer__menu-item {
    margin-right: 70px;
  }
}
.fixed-footer__menu-item:last-child {
  margin-right: 0 !important;
}
.fixed-footer__menu-link {
  display: flex;
  align-items: center;
}
.fixed-footer__menu-item-icon {
  color: var(--theme-color);
}
@media (min-width: 1560px) {
  .fixed-footer__menu-item-icon {
    margin-right: 10px;
  }
}
.fixed-footer__menu-item-icon:hover {
  color: var(--theme-color-dark);
}
.fixed-footer__menu-item-label {
  max-width: 130px;
  display: none;
}
@media (min-width: 1560px) {
  .fixed-footer__menu-item-label {
    display: block;
  }
}

/* Mask Elements */
.youtube {
  background-color: #000;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 5px;
}
.youtube:hover .youtube__overlay, .youtube:focus .youtube__overlay {
  opacity: 1;
}
.youtube:after {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  width: 100%;
  height: 100%;
}
.youtube img {
  display: block;
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.youtube__play-button {
  z-index: 1;
  color: #fff;
  font-size: 62px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.youtube__overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 20px;
  z-index: 10;
  color: white;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  display: flex;
}
@media (min-width: 768px) {
  .youtube__overlay {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .youtube__overlay {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
}
.youtube__overlay-text {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}
.youtube iframe {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border: 0;
  z-index: 10;
}

.accordion__element {
  margin-bottom: 30px;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  padding: 0.9em 1.5em 0.9em 1em;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  background: var(--theme-color);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .accordion__header {
    line-height: 40px;
    font-size: 30px;
  }
}
.accordion__title {
  display: block;
  margin-right: 0.5em;
  transition: all 0.2s ease-in-out;
  align-self: center;
  flex: 1 0;
}
.accordion__icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.accordion__icon {
  transform-origin: center center;
  transform: rotateZ(90deg);
  transition: transform 0.4s ease;
}
.accordion__content-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s cubic-bezier(0, 1, 0, 1);
}
.accordion__content {
  padding: 0 30px 70px;
  margin-bottom: 30px;
  background-color: var(--theme-color-bg-light);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
}
.accordion__content > .frame:last-child {
  margin-bottom: 0;
}
.accordion__check:checked ~ .accordion__header {
  background: var(--theme-color-bg-light);
  color: #161615;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.accordion__check:checked ~ .accordion__header .accordion__title {
  margin-top: 45px;
}
.accordion__check:checked ~ .accordion__header .accordion__icon-wrap {
  background: var(--theme-color);
  color: white;
}
.accordion__check:checked ~ .accordion__header .accordion__icon {
  transform: rotateZ(270deg);
}
.accordion__check:checked ~ .accordion__content-wrap {
  max-height: 50000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.header-image__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .header-text {
    max-width: 430px;
  }
}
@media (min-width: 992px) {
  .header-text {
    max-width: 610px;
  }
}
@media (min-width: 1560px) {
  .header-text {
    max-width: 610px;
  }
}

.main-header-content--no-header-image .header-text {
  max-width: 990px;
  text-align: center;
  margin: 50px auto 0;
}
@media (min-width: 992px) {
  .main-header-content--no-header-image .header-text {
    margin: 100px auto 0;
  }
}

.discover-waldorf {
  max-width: 740px;
}
@media (max-width: 767.98px) {
  .discover-waldorf {
    margin-top: 80px;
  }
}
.discover-waldorf__buttons {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .discover-waldorf__buttons {
    flex-direction: row;
  }
}
.discover-waldorf__button-wrap {
  display: flex;
  align-items: center;
}
.discover-waldorf__button-wrap:not(:first-child) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .discover-waldorf__button-wrap:not(:first-child) {
    margin-top: 0;
    margin-left: 50px;
  }
}
.discover-waldorf__button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 86px;
  max-width: 86px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: white;
}
.discover-waldorf__button-label {
  flex: 1 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.network {
  display: flow-root;
}
.network__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 992px) {
  .network__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1560px) {
  .network__items {
    grid-template-columns: repeat(4, 1fr);
  }
}
.network__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.network__image {
  max-width: 100%;
  height: auto;
}

.gallery-slider .ce-header, .gallery-slider .ce-subheader {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .gallery-slider .ce-header, .gallery-slider .ce-subheader {
    margin-bottom: 70px;
  }
}
.gallery-slider__item {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .gallery-slider__item {
    width: 480px;
  }
}
@media (min-width: 1560px) {
  .gallery-slider__item {
    width: 736px;
  }
}
.gallery-slider__image {
  border-radius: 35px;
  display: block;
  width: 100%;
  height: auto;
}
.gallery-slider__view {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 48px;
  top: 0.303030303em;
  right: 0.303030303em;
  width: 1.6515151515em;
  height: 1.6515151515em;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  background-color: rgba(22, 22, 21, 0.4);
  --link-color: white;
  --link-color-hover: white;
}
.gallery-slider__view:hover, .gallery-slider__view:focus {
  background-color: var(--theme-color-dark);
}
@media (min-width: 992px) {
  .gallery-slider__view {
    font-size: 66px;
  }
}
.gallery-slider__view svg {
  display: block;
  width: 1em;
  height: 1em;
}
.swiper-slide-active .gallery-slider__view {
  opacity: 1;
}
.gallery-slider__nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

:root {
  --tiles-gutter: 30px;
}
@media (min-width: 992px) {
  :root {
    --tiles-gutter: 60px;
  }
}

.theme-pages {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-1 * var(--tiles-gutter)) calc(-0.5 * var(--tiles-gutter)) 0;
}
.theme-pages__item {
  padding-left: calc(0.5 * var(--tiles-gutter));
  padding-right: calc(0.5 * var(--tiles-gutter));
  margin-top: var(--tiles-gutter);
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .theme-pages__item {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
@media (min-width: 1560px) {
  .theme-pages__item {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
}
.theme-pages__link {
  display: block;
  position: relative;
  height: 100%;
  position: relative;
}
.theme-pages__link:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: var(--theme-color);
  border-radius: 20px;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.theme-pages__link:hover:before {
  transform: scale(1.04);
}
.theme-pages__content {
  position: relative;
  z-index: 2;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .theme-pages__content {
    border-radius: 40px;
    padding: 40px;
  }
}
.theme-pages__header {
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  flex: 1 0 auto;
}
.theme-pages__icons {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.theme-pages__arrow-wrap {
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
  transform: none;
}
.theme-pages__link:hover .theme-pages__arrow-wrap {
  transform: translateX(15px) scale(1.2) rotateZ(20deg);
}

.jsz__profile-images {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -20px;
  margin-bottom: 30px;
}
.jsz__profile-image-wrap {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 20px;
}
.jsz__profile-image {
  padding: 8px;
  background: white;
  border: 1px solid #E8E7E3;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  transition: background 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.jsz__profile-image-wrap.active .jsz__profile-image {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
.jsz__person-name {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .jsz__person-name {
    font-size: 24px;
    font-weight: 700;
  }
}
.jsz__person-text {
  font-size: 17px;
}
.jsz__logo-wrap {
  margin: 70px 0;
}
@media (min-width: 1560px) {
  .jsz__logo-wrap {
    margin-bottom: 0;
  }
}

.counter {
  display: flex;
  flex-wrap: wrap;
  margin-top: -30px;
}
@media (min-width: 576px) {
  .counter {
    margin-top: -60px;
  }
}
.counter__item {
  flex: 1 0 50%;
  max-width: 50%;
  width: 50%;
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 576px) {
  .counter__item {
    margin-top: 60px;
  }
}
@media (min-width: 1560px) {
  .counter__item {
    text-align: left;
  }
}
.counter__item-inner {
  max-width: 210px;
  margin: 0 auto;
}
@media (min-width: 1560px) {
  .counter__item-inner {
    max-width: none;
    margin: 0;
  }
}
.counter__icon-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 20px;
  height: 120px;
}
@media (min-width: 1560px) {
  .counter__icon-wrap {
    justify-content: flex-start;
  }
}
.counter__counter {
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
}
.counter__header {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
}

:root {
  --general-teaser-top-icon-size: 130px;
}
@media (min-width: 992px) {
  :root {
    --general-teaser-top-icon-size: 165px;
  }
}

.general-teaser-list {
  display: flow-root;
}
.general-teaser-list__items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -30px;
}
@media (min-width: 992px) {
  .general-teaser-list__items {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -50px;
  }
}
.general-teaser-list__item-wrap {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 30px;
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .general-teaser-list__item-wrap {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 50px;
  }
}
@media (min-width: 1560px) {
  .general-teaser-list__item-wrap {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
.general-teaser-list__item-wrap .general-teaser,
.general-teaser-list__item-wrap .general-teaser__inner,
.general-teaser-list__item-wrap .general-teaser__content {
  height: 100%;
}

.general-teaser {
  padding-top: 110px;
}
.general-teaser__inner {
  position: relative;
  padding: 90px 30px 60px;
  position: relative;
}
.general-teaser__inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: var(--theme-color-dark);
  border-radius: 40px;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.general-teaser__inner:hover:before {
  transform: scale(1.04);
}
@media (min-width: 576px) {
  .general-teaser__inner {
    padding: 90px 60px 80px;
  }
}
.general-teaser--with-image .general-teaser__inner {
  padding-top: 45px;
}
@media (min-width: 576px) {
  .general-teaser--with-image .general-teaser__inner {
    padding-top: 45px;
  }
}
.general-teaser__top-icon-wrap {
  position: absolute;
  background-color: var(--theme-color);
  color: white;
  clip-path: url(#general-teaser-top-icon);
  width: var(--general-teaser-top-icon-size);
  height: var(--general-teaser-top-icon-size);
  left: 30px;
  top: calc(var(--general-teaser-top-icon-size) * -0.6);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(var(--general-teaser-top-icon-size) * 0.4);
}
@media (min-width: 576px) {
  .general-teaser__top-icon-wrap {
    left: 60px;
  }
}
.general-teaser__top-icon-wrap svg {
  display: block;
  width: 1em;
  height: 1em;
}
.general-teaser__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.general-teaser__image-headers-wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .general-teaser__image-headers-wrap {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .general-teaser__text {
    margin-top: 30px;
  }
}
.general-teaser__image-wrap {
  flex: 1 0 230px;
  max-width: 230px;
  width: 230px;
  margin: -105px auto 40px;
}
@media (min-width: 768px) {
  .general-teaser__image-wrap {
    margin-left: 0;
    margin-right: 60px;
    margin-bottom: 0;
  }
}
.general-teaser__image {
  border-radius: 20px;
  background: white;
}
.general-teaser__headers-wrap {
  margin-bottom: 20px;
}
.general-teaser__header {
  margin-bottom: 10px;
}
.general-teaser__subheader {
  font-size: 24px;
  line-height: 1.25;
}
.general-teaser__buttons {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .general-teaser__buttons {
    margin-top: 25px;
  }
}
.general-teaser__button-wrap {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 30px;
}
.general-teaser__button {
  display: inline-flex;
  font-size: 17px;
}
.general-teaser__button--icon {
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
}
.general-teaser__button-icon-left {
  display: block;
  margin-right: 10px;
}
.general-teaser__button-icon-left svg {
  display: block;
  width: 1em;
  height: 1em;
}
.general-teaser__button-icon-right {
  display: block;
  flex: 1 0 46px;
  max-width: 46px;
  width: 46px;
  height: 46px;
  padding: 7px;
  border-radius: 50%;
  background: white;
  color: var(--theme-color);
  margin-left: 20px;
}
.general-teaser__button-icon-right svg {
  display: block;
  width: 100%;
  height: 100%;
}

.link-tree {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 940px;
  margin: 0 auto;
}
.link-tree__item {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: calc(33.3333333333% - 20px);
  max-width: calc(33.3333333333% - 20px);
  width: calc(33.3333333333% - 20px);
}
.link-tree__image {
  width: 100%;
  height: auto;
}

@media (min-width: 490px) {
  .advent-calendar__items {
    display: flex;
    flex-wrap: wrap;
  }
}
.advent-calendar__item-wrap {
  position: relative;
  background-color: transparent;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  max-width: 100%;
  flex-basis: 100%;
  margin-bottom: 20px;
}
@media (min-width: 490px) {
  .advent-calendar__item-wrap {
    max-width: calc(50% - 20px);
    flex-basis: calc(50% - 20px);
    margin: 0 10px 20px;
  }
}
@media (min-width: 768px) {
  .advent-calendar__item-wrap {
    max-width: calc(33.3333% - 40px);
    flex-basis: calc(33.3333% - 40px);
    margin: 0 20px 20px;
  }
}
@media (min-width: 1560px) {
  .advent-calendar__item-wrap {
    max-width: calc(25% - 60px);
    flex-basis: calc(25% - 60px);
    margin: 0 30px 40px;
  }
}
.advent-calendar__item-wrap:hover .advent-calendar__item--active {
  transform: rotateY(180deg);
  border-color: red;
}
.advent-calendar__item {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 86.3%;
}
.advent-calendar__item > .advent-calendar__link {
  display: block;
  margin-top: -86.3%;
}
.advent-calendar__item > .advent-calendar__item-front, .advent-calendar__item .advent-calendar__item-back {
  top: 0;
}
.advent-calendar__item--active {
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.advent-calendar__item--active img {
  filter: none;
}
.advent-calendar__item--active .advent-calendar__title {
  color: #fff;
}
.advent-calendar__inner-wrap {
  margin-top: -86.3%;
  height: 86.3%;
}
.advent-calendar__inner-wrap > .advent-calendar__item-front > img {
  filter: saturate(30%) brightness(75%);
}
.advent-calendar__title {
  font-size: 120px;
  color: #AF2D43;
  font-weight: 700;
}
.advent-calendar__title--back {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
.advent-calendar__item-front, .advent-calendar__item-back {
  position: absolute;
  width: 100%;
  height: 100%; /* Safari */
  backface-visibility: hidden;
  border-radius: 40px;
}
.advent-calendar__item-front {
  background-color: #D23C55;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.advent-calendar__item-back {
  background-color: #AF2D43;
  color: white;
  transform: rotateY(180deg);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  z-index: 1;
}
.advent-calendar__button {
  position: relative;
  color: #fff !important;
  background-color: #D23C55;
  border-radius: 35px;
  padding: 20px 73px 20px 30px;
  font-size: 17px;
}
.advent-calendar__button:after {
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 46px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 12px;
  background: #fff url(/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Icons/Waldorf/geschenk.svg) no-repeat center center;
  background-size: contain;
}
.advent-calendar__button:hover {
  background-color: #98234c;
}
.advent-calendar__link {
  position: relative;
  z-index: 1;
}
.advent-calendar__icon {
  position: absolute;
  left: 35px;
  bottom: 3px;
}
.advent-calendar__icon--right {
  left: auto;
  right: 35px;
}

@keyframes sparkle {
  50% {
    opacity: 0.4;
    transform: scale(1);
    box-shadow: 0px 0px 15px 5px rgba(252, 186, 3, 0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
    box-shadow: 0px 0px 15px 5px rgb(252, 186, 3);
  }
  100% {
    opacity: 0;
    transform: scale(1);
    box-shadow: 0px 0px 15px 5px rgba(252, 186, 3, 0.5);
  }
}
@media (min-width: 1560px) {
  .advent-calendar-detail-text {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.advent-calendar-detail-text__image-wrap {
  position: relative;
  background-color: #fff;
  border-radius: 40px;
  padding: 30px;
  max-width: 535px;
}
@media (min-width: 768px) {
  .advent-calendar-detail-text__image-wrap {
    padding: 70px;
    max-width: 615px;
  }
}
@media (min-width: 1560px) {
  .advent-calendar-detail-text__image-wrap {
    flex-basis: 615px;
    margin-right: 75px;
  }
}
.advent-calendar-detail-text__image-wrap:after {
  content: "";
  width: 128px;
  height: 128px;
  background: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Icons/weihnachtsschmuck.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -50px;
  right: -64px;
}
@media (min-width: 768px) {
  .advent-calendar-detail-text__image-wrap:after {
    width: 256px;
    height: 256px;
    bottom: -100px;
    right: -128px;
  }
}
.advent-calendar-detail-text__image {
  max-width: 100%;
  height: auto;
}
.advent-calendar-detail-text__text-wrap {
  margin-top: 80px;
}
@media (min-width: 1560px) {
  .advent-calendar-detail-text__text-wrap {
    max-width: calc(100% - 615px - 150px);
    flex-basis: calc(100% - 615px - 150px);
    margin: 0 0 0 75px;
  }
}
.advent-calendar-detail-text__more-text-wrap {
  margin-top: 70px;
}
@media (min-width: 768px) {
  .advent-calendar-detail-text__more-text-wrap {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 992px) {
  .advent-calendar-detail-text__more-text-wrap {
    margin-top: 160px;
  }
}

.advent-calendar-detail-intro__shape {
  width: 246px;
  height: 246px;
  background: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Icons/Waldorf/heptagon.svg") no-repeat center center;
  background-size: contain;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #fff;
  margin: 0 auto;
  font-weight: 700;
}
.advent-calendar-detail-intro__headline {
  margin-top: -10px;
  text-align: center;
}

.interferer {
  position: fixed;
  transition: 0.3s ease-in-out;
  z-index: 50;
  transform: scale(0.5) translateZ(0);
  bottom: -180px;
  right: -50px;
}
@media (min-width: 992px) {
  .interferer {
    bottom: auto;
    top: 80px;
    right: -310px;
  }
}
@media (max-width: 991.98px) {
  .interferer--small {
    bottom: -240px;
  }
}
.interferer.force-visible, .interferer.visible {
  transform: scale(1) translateZ(0);
  right: 0;
  bottom: 0;
}
@media (min-width: 992px) {
  .interferer.force-visible, .interferer.visible {
    top: 280px;
    right: -40px;
    bottom: auto;
  }
}
.interferer.force-visible .interferer__content-inner, .interferer.visible .interferer__content-inner {
  opacity: 1;
  pointer-events: auto;
}
.interferer__close {
  position: absolute;
  color: white;
  width: 25px;
  right: 90px;
  top: 60px;
}
@media (min-width: 992px) {
  .interferer__close {
    right: 120px;
    top: 50px;
    width: 45px;
  }
}
.interferer__close:hover, .interferer__close:focus {
  color: white;
}
.interferer__content-inner {
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .interferer__header {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}
.interferer__content {
  position: relative;
  color: #fff;
  padding: 100px 60px 0;
  width: 360px;
  height: 400px;
}
@media (min-width: 992px) {
  .interferer__content {
    width: 500px;
    height: 500px;
    padding: 120px 70px 0;
  }
}
@media (max-width: 991.98px) {
  .interferer__content {
    font-size: 0.9375rem;
    line-height: 1.3125rem;
  }
}
.interferer__header {
  color: white;
}
.interferer__icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: 10;
  left: -5px;
  top: -20px;
}
@media (min-width: 992px) {
  .interferer__icon-wrap {
    width: 150px;
    height: 150px;
    left: 5px;
    top: -40px;
  }
}
.interferer__icon {
  width: 60px;
  height: auto;
  fill: white;
}
@media (min-width: 992px) {
  .interferer__icon {
    width: 90px;
  }
}
.interferer__icon-heptagon, .interferer__content-heptagon {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.interferer__icon-heptagon {
  width: 100%;
  height: auto;
}
.interferer__content-heptagon {
  left: -50px;
  top: -20px;
  width: 435px;
  height: auto;
}
@media (min-width: 992px) {
  .interferer__content-heptagon {
    left: -50px;
    top: -40px;
    width: 600px;
  }
}
.interferer__button {
  margin-top: 40px;
}
@media (max-width: 991.98px) {
  .interferer__button {
    margin-top: 15px;
    font-size: 1rem;
  }
  .interferer__button svg:first-child {
    display: none;
  }
}

:root {
  --timeline-heptagon-size: 550px;
}
@media (min-width: 992px) {
  :root {
    --timeline-heptagon-size: 600px;
  }
}

.timeline {
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 576px) {
  .timeline {
    margin-left: 0;
    margin-right: 0;
  }
}
.timeline__item-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--timeline-heptagon-size);
}
.swiper-slide-prev .timeline__item-inner {
  justify-content: flex-start;
}

.swiper-slide-next .timeline__item-inner {
  justify-content: flex-end;
}

.timeline__heptagon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: var(--timeline-heptagon-size);
  height: var(--timeline-heptagon-size);
  background: var(--theme-color-dark);
  clip-path: url(#timeline-heptagon);
  opacity: 0;
  transform: scale(0.9) translate(-50%, -50%);
  transform-origin: center center;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.swiper-slide-active .timeline__heptagon {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}

.timeline__text-wrap {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  width: calc(var(--timeline-heptagon-size) * 0.73333);
  max-width: 100%;
}
.timeline__text-wrap, .timeline__text-wrap * {
  transition: color 0.3s ease-in-out;
}
.swiper-slide-active .timeline__text-wrap {
  color: white;
  --headings-color: white;
}

.timeline__header {
  margin-bottom: 30px;
}
.timeline__arrows {
  justify-content: center;
  margin-top: 50px;
}
.timeline__bullets {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 0;
}
.timeline__bullets .swiper-wrapper {
  align-items: center;
}
.timeline__bullets-line {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--theme-color-dark) 20%, var(--theme-color-dark) 80%, transparent 100%);
  position: absolute;
  top: 50%;
  z-index: 1;
}
.timeline__bullet {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  clip-path: url(#timeline-heptagon-bullet);
  border: none;
  padding: 0;
  margin: 0;
  color: white;
  background: var(--theme-color);
  font-size: 30px;
  width: 1.91em;
  height: 1.91em;
  cursor: pointer;
  opacity: 0;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.timeline__bullet.swiper-slide-fully-visible {
  opacity: 1;
}
.timeline__bullet.swiper-slide-active {
  background: var(--theme-color-dark);
  cursor: default;
  transform: scale(1.4666667);
}

/* Grid Container */
.container .container:not(.container-standalone), .container .container-fluid:not(.container-standalone), .container .container-sm:not(.container-standalone), .container .container-md:not(.container-standalone), .container .container-lg:not(.container-standalone), .container .container-xl:not(.container-standalone), .container-fluid .container:not(.container-standalone), .container-sm .container:not(.container-standalone), .container-md .container:not(.container-standalone), .container-lg .container:not(.container-standalone), .container-xl .container:not(.container-standalone), .container-fluid .container-fluid:not(.container-standalone), .container-sm .container-fluid:not(.container-standalone), .container-md .container-fluid:not(.container-standalone), .container-lg .container-fluid:not(.container-standalone), .container-xl .container-fluid:not(.container-standalone), .container-fluid .container-sm:not(.container-standalone), .container-sm .container-sm:not(.container-standalone), .container-md .container-sm:not(.container-standalone), .container-lg .container-sm:not(.container-standalone), .container-xl .container-sm:not(.container-standalone), .container-fluid .container-md:not(.container-standalone), .container-sm .container-md:not(.container-standalone), .container-md .container-md:not(.container-standalone), .container-lg .container-md:not(.container-standalone), .container-xl .container-md:not(.container-standalone), .container-fluid .container-lg:not(.container-standalone), .container-sm .container-lg:not(.container-standalone), .container-md .container-lg:not(.container-standalone), .container-lg .container-lg:not(.container-standalone), .container-xl .container-lg:not(.container-standalone), .container-fluid .container-xl:not(.container-standalone), .container-sm .container-xl:not(.container-standalone), .container-md .container-xl:not(.container-standalone), .container-lg .container-xl:not(.container-standalone), .container-xl .container-xl:not(.container-standalone) {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 992px) and (max-width: 1559.98px) {
  .main-header-content .container-fluid, .main-header-content .container-sm, .main-header-content .container-md, .main-header-content .container-lg, .main-header-content .container-xl,
.container-wide {
    --bs-gutter-x: 60px;
  }
}
@media (min-width: 1560px) {
  .main-header-content .container-fluid, .main-header-content .container-sm, .main-header-content .container-md, .main-header-content .container-lg, .main-header-content .container-xl,
.container-wide {
    --bs-gutter-x: 100px;
  }
}
@media (min-width: 1560px) {
  .main-header-content .container-fluid, .main-header-content .container-sm, .main-header-content .container-md, .main-header-content .container-lg, .main-header-content .container-xl,
.container-wide {
    --bs-gutter-x: 180px;
  }
}

@media (min-width: 992px) and (max-width: 1559.98px) {
  .container-less {
    --bs-gutter-x: 120px;
  }
}

.grid-container {
  padding: 0;
  position: relative;
  background: none transparent;
}
.grid-container--margin-before-extra-small {
  margin-top: 20px;
}
.grid-container--margin-after-extra-small {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-extra-small {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-extra-small {
    margin-bottom: 60px;
  }
}
.grid-container--margin-before-small {
  margin-top: 30px;
}
.grid-container--margin-after-small {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-small {
    margin-top: 90px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-small {
    margin-bottom: 90px;
  }
}
.grid-container--margin-before-medium {
  margin-top: 40px;
}
.grid-container--margin-after-medium {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-medium {
    margin-top: 120px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-medium {
    margin-bottom: 120px;
  }
}
.grid-container--margin-before-large {
  margin-top: 50px;
}
.grid-container--margin-after-large {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-large {
    margin-top: 150px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-large {
    margin-bottom: 150px;
  }
}
.grid-container--margin-before-extra-large {
  margin-top: 60px;
}
.grid-container--margin-after-extra-large {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-extra-large {
    margin-top: 180px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-extra-large {
    margin-bottom: 180px;
  }
}
.grid-container--margin-before-extra-small-negative {
  margin-top: -10px;
}
.grid-container--margin-after-extra-small-negative {
  margin-bottom: -10px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-extra-small-negative {
    margin-top: -30px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-extra-small-negative {
    margin-bottom: -30px;
  }
}
.grid-container--margin-before-small-negative {
  margin-top: -15px;
}
.grid-container--margin-after-small-negative {
  margin-bottom: -15px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-small-negative {
    margin-top: -45px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-small-negative {
    margin-bottom: -45px;
  }
}
.grid-container--margin-before-medium-negative {
  margin-top: -20px;
}
.grid-container--margin-after-medium-negative {
  margin-bottom: -20px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-medium-negative {
    margin-top: -60px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-medium-negative {
    margin-bottom: -60px;
  }
}
.grid-container--margin-before-large-negative {
  margin-top: -25px;
}
.grid-container--margin-after-large-negative {
  margin-bottom: -25px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-large-negative {
    margin-top: -75px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-large-negative {
    margin-bottom: -75px;
  }
}
.grid-container--margin-before-extra-large-negative {
  margin-top: -30px;
}
.grid-container--margin-after-extra-large-negative {
  margin-bottom: -30px;
}
@media (min-width: 768px) {
  .grid-container--margin-before-extra-large-negative {
    margin-top: -90px;
  }
}
@media (min-width: 768px) {
  .grid-container--margin-after-extra-large-negative {
    margin-bottom: -90px;
  }
}
.grid-container > .container > .frame:first-child,
.grid-container > .container > .row > *[class*=col-] > .frame:first-child {
  margin-top: 0;
}
.grid-container > .container > .frame:last-child,
.grid-container > .container > .row > *[class*=col-] > .frame:last-child {
  margin-bottom: 0;
}

.content-bg {
  display: flow-root;
  position: relative;
}
.content-bg--colored {
  padding-top: 14%;
  padding-bottom: 19%;
}
.content-bg--colored .content-bg__content {
  --input-bg: white;
  display: flow-root;
  background-color: var(--theme-color-bg-light);
}
.content-bg--colored .content-bg__content > .grid-container:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-fluid > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-sm > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-md > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-lg > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-xl > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-fluid > .row > *[class*=col-] > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-sm > .row > *[class*=col-] > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-md > .row > *[class*=col-] > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-lg > .row > *[class*=col-] > .frame:last-child,
.content-bg--colored .content-bg__content > .grid-container:last-child > .container-xl > .row > *[class*=col-] > .frame:last-child {
  margin-bottom: 0;
}
.content-bg__svg {
  pointer-events: none;
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -2;
}
.content-bg__svg--top {
  bottom: -1px;
}
.content-bg__svg--bottom {
  top: -1px;
}
.content-bg--add-padding-top .content-bg__content {
  padding-top: 50px;
}
.content-bg--add-padding-bottom .content-bg__content {
  padding-bottom: 50px;
}

/* Extensions */
@keyframes load-rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.dsgvo-consent, .dsgvo-consent:after, .dsgvo-consent:before, .dsgvo-consent *, .dsgvo-consent *:after, .dsgvo-consent *:before {
  box-sizing: border-box;
}
.dsgvo-consent__bg {
  background-color: transparent;
  transition: all 0.5s ease;
  position: fixed;
  z-index: 90000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.6;
}
.dsgvo-consent__container {
  max-width: 350px;
  text-align: center;
  width: 100%;
  background-color: white;
  left: 0;
  right: 0;
  top: 0;
  position: fixed;
  margin: 0 auto;
  z-index: 100000;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 40px);
  color: #000;
  transition: all 0.5s ease;
  transform: translateY(-100%);
  opacity: 1;
}
.dsgvo-consent__content {
  padding: 40px 20px;
}
.dsgvo-consent__settings {
  display: none;
  margin-left: -20px;
  margin-right: -20px;
  flex-wrap: wrap;
}
.dsgvo-consent__settings--open {
  display: flex;
}
.dsgvo-consent__buttons {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.dsgvo-consent--fade-in .dsgvo-consent__bg {
  background-color: black;
}
.dsgvo-consent--fade-in .dsgvo-consent__container {
  transform: translateY(20px);
}
.dsgvo-consent--fade-out .dsgvo-consent__container {
  transform: translateY(calc(-20% + 20px));
  opacity: 0;
}
.dsgvo-consent--popup:not(.dsgvo-consent--fade-in) {
  pointer-events: none;
}
.dsgvo-consent__description {
  margin-bottom: 20px;
  font-size: 16px;
}
.dsgvo-consent__description h1, .dsgvo-consent__description .h1, .dsgvo-consent__description h2, .dsgvo-consent__description .h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.dsgvo-button {
  padding-left: 20px;
  padding-right: 20px;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 10px;
  text-align: center;
}
.dsgvo-button:last-child {
  margin-bottom: 0;
}
.dsgvo-button__link {
  display: block;
}

.dsgvo-category {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.dsgvo-category__checkbox {
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.dsgvo-category__checkbox-label {
  display: block;
  position: relative;
  width: 72px;
  height: 36px;
  border-radius: 18px;
  transition: all 0.2s ease;
  background: #868686;
}
.dsgvo-category__checkbox-label:before {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  top: 0;
  left: 0;
  transition: all 0.2s ease;
  background: #bbb;
}
.dsgvo-category__checkbox:checked + .dsgvo-category__checkbox-label {
  background: #549c3c;
}
.dsgvo-category__checkbox:checked + .dsgvo-category__checkbox-label:before {
  background: #79e24c;
  left: 50%;
}
.dsgvo-category__checkbox-wrap {
  display: flex;
  justify-content: center;
}
.dsgvo-category__checkbox-wrap--default {
  display: none;
}
.dsgvo-category__checkbox-wrap--disabled {
  display: flex;
  opacity: 0.4;
}
.dsgvo-category__text {
  margin-bottom: 20px;
}

.dsgvo-cookies {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 15px;
}
.dsgvo-cookies__check {
  display: none;
}
.dsgvo-cookies__label {
  display: block;
  cursor: pointer;
  margin: 0;
  font-size: 90%;
}
.dsgvo-cookies__label:before {
  content: "";
  display: inline-block;
  width: 0.83333em;
  height: 0.83333em;
  margin-right: 5px;
  vertical-align: middle;
  background: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Icons/chevron-down-light.svg") no-repeat center center;
  background-size: contain;
  transform-origin: center center;
  transform: rotateZ(0deg);
  transition: transform 0.2s ease;
}
.dsgvo-cookies__content {
  display: none;
  width: 100%;
  overflow-x: auto;
}
.dsgvo-cookies__check:checked ~ .dsgvo-cookies__label:before {
  transform: rotateZ(180deg);
}
.dsgvo-cookies__check:checked ~ .dsgvo-cookies__content {
  display: block;
}
.dsgvo-cookies__table {
  min-width: 100%;
}
.dsgvo-cookies__table > p, .dsgvo-cookies__table > ul, .dsgvo-cookies__table > ol {
  margin-bottom: 0;
}
.dsgvo-cookies__type {
  font-size: 120%;
  font-weight: 400;
  padding-top: 20px;
}
.dsgvo-cookies__group {
  padding-top: 9px;
}
.dsgvo-cookies__cookie {
  padding: 5px;
  border: 1px solid #dfdfdf;
  margin-bottom: 10px;
}
.dsgvo-cookies__cookie--odd {
  background: #efefef;
}
.dsgvo-cookies__cookie-name {
  font-family: monospace;
  white-space: nowrap;
}
.dsgvo-cookies__cookie-description-check, .dsgvo-cookies__cookie-description {
  display: none;
}
.dsgvo-cookies__cookie-name-label, .dsgvo-cookies__cookie-lifespan-label {
  font-weight: bolder;
}
.dsgvo-cookies__cookie-description-label {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: bolder;
  cursor: pointer;
}
.dsgvo-cookies__cookie-description-label:after {
  content: "";
  display: inline-block;
  width: 0.83333em;
  height: 0.83333em;
  margin-left: 5px;
  vertical-align: middle;
  background: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Icons/chevron-down-light.svg") no-repeat center center;
  background-size: contain;
  transform-origin: center center;
  transform: rotateZ(0deg);
  transition: transform 0.2s ease;
}
.dsgvo-cookies__cookie-description-check:checked ~ .dsgvo-cookies__cookie-description {
  display: block;
}
.dsgvo-cookies__cookie-description-check:checked ~ .dsgvo-cookies__cookie-description-label:after {
  transform: rotateZ(180deg);
}

.dsgvo-consent--inline {
  position: relative;
}
@media (min-width: 768px) {
  .dsgvo-consent--inline .dsgvo-consent__buttons {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .dsgvo-consent--inline .dsgvo-button {
    flex: 0 1 auto;
    max-width: none;
    width: auto;
  }
}
.dsgvo-consent--inline .dsgvo-button--decline,
.dsgvo-consent--inline .dsgvo-button--settings {
  display: none;
}
@media (min-width: 768px) {
  .dsgvo-consent--inline .dsgvo-category {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.dsgvo-consent--inline .dsgvo-category__checkbox-wrap {
  justify-content: flex-start;
}
.dsgvo-consent--inline .dsgvo-consent__bg {
  display: none;
}
.dsgvo-consent--inline .dsgvo-consent__container {
  position: static;
  max-width: none;
  text-align: left;
  animation: none;
  transition: none;
  overflow: visible;
  margin: 0;
  max-height: none;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
}
.dsgvo-consent--inline .dsgvo-consent__content {
  background: #eee;
}
.dsgvo-consent--inline .dsgvo-consent__settings {
  display: flex;
}
.dsgvo-consent--inline.dsgvo-consent--inline-auto-confirm .dsgvo-consent__buttons {
  display: none;
}
.dsgvo-consent--loading:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100001;
  background: rgba(255, 255, 255, 0.5);
}
.dsgvo-consent--loading:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border-radius: 50%;
  border-top: 8px solid #000;
  border-right: 8px solid #4d4d4d;
  border-bottom: 8px solid #999999;
  border-left: 8px solid #e6e6e6;
  transform-origin: center center;
  animation: linear 1s load-rotate;
}

.news-slider__slider {
  align-items: stretch;
  overflow: visible;
}
.news-slider__top-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 125px;
}
.news-slider__nav {
  flex: 1 0 150px;
  max-width: 150px;
  width: 150px;
  justify-content: flex-end;
  margin-bottom: 70px;
}
.news-slider__item {
  max-width: 100%;
  width: 610px;
  background: var(--theme-color);
  border-radius: 20px;
  padding: 20px;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 992px) {
  .news-slider__item {
    border-radius: 50px;
    padding: 50px 40px 40px;
  }
}
.news-slider__item-inner {
  position: relative;
  padding-bottom: 42px;
  height: 100%;
}
.news-slider__date-category {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .news-slider__date-category {
    margin-bottom: 20px;
  }
}
.news-slider__header {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .news-slider__header {
    margin-bottom: 40px;
  }
}
.news-slider__teaser {
  margin-bottom: 20px;
  --p-margin: 0;
  --p-margin-last: 0;
}
.news-slider__link {
  position: absolute;
  bottom: 0;
  right: 0;
}
.news-slider__filter {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-left: -10px;
  margin-right: -10px;
  max-width: 900px;
}
.news-slider__filter-item {
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.kesearch__input-group {
  display: flex;
  margin-bottom: 30px;
}
.kesearch__submit {
  margin-left: 10px;
}
.kesearch__num-results {
  font-weight: 700;
  margin-bottom: 20px;
}
.kesearch__page-browser--top {
  margin-bottom: 20px;
}
.kesearch__page-browser--bottom {
  margin-top: 20px;
}

.tx-kesearch-pi1 .result-list-item {
  margin-bottom: 20px;
}

.job-search-form {
  margin: 0 auto;
  max-width: 1130px;
}

.school-search__form {
  max-width: 1080px;
  margin: 0 auto;
}
.school-search__text {
  max-width: 660px;
  margin: 0 auto 60px auto;
}
.school-search__row {
  --bs-gutter-x: 20px;
}
.school-search__fieldset {
  display: block;
  margin: 0;
  padding: 0;
}
@media (min-width: 1560px) {
  .school-search__fieldset--school-type {
    padding-left: 125px;
  }
}
.school-search__fieldset--languages {
  margin-top: 50px;
  margin-bottom: 50px;
}
.school-search__languages {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (min-width: 1560px) {
  .school-search__school-types {
    margin-left: -45px;
  }
}

.school-map__map {
  border-radius: 80px;
  overflow: hidden;
}
.school-map__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--input-bg);
  cursor: pointer;
}
.school-map__overlay {
  padding: 50px;
}
.school-map .checkbox__check[value="11"] ~ .checkbox__label {
  --theme-color: #589FB4;
}
.school-map .checkbox__check[value="20"] ~ .checkbox__label {
  --theme-color: #829768;
}
.school-map .checkbox__check[value="30"] ~ .checkbox__label {
  --theme-color: #829768;
}
.school-map .checkbox__check[value="45"] ~ .checkbox__label {
  --theme-color: #EEA63E;
}

:root {
  --person-tiles-img-size: 165px;
}

.person-tiles {
  display: flow-root;
}
.person-tiles__container {
  display: flex;
  flex-wrap: wrap;
  margin-top: -50px;
  justify-content: center;
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 992px) {
  .person-tiles__container {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.person-tiles__item {
  padding-top: calc(var(--person-tiles-img-size) * 0.5);
  margin-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .person-tiles__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .person-tiles__item {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
@media (min-width: 1560px) {
  .person-tiles__item {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
}
.person-tiles__item-inner {
  position: relative;
  height: 100%;
}
.person-tiles__item-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: var(--theme-color);
  border-radius: 20px;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.person-tiles__item-inner:hover:before {
  transform: scale(1.04);
}
.person-tiles__item-content {
  position: relative;
  z-index: 2;
  padding: 105px 40px 40px;
}
.person-tiles__image-wrap {
  position: absolute;
  z-index: 3;
  top: calc(var(--person-tiles-img-size) * -0.5);
  left: calc(50% - var(--person-tiles-img-size) * 0.5);
  width: var(--person-tiles-img-size);
  height: var(--person-tiles-img-size);
  pointer-events: none;
}
.person-tiles__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: url(#person-tiles-heptagon);
}
.person-tiles__name-wrap {
  margin-bottom: 30px;
}
.person-tiles__field {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 300;
}
.person-tiles__contact-item-list {
  display: inline-flex;
  flex-direction: column;
  margin-top: -10px;
  max-width: -moz-max-content;
  max-width: max-content;
  justify-content: center;
}
.person-tiles__contact-item {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 17px;
  text-align: left;
}
.person-tiles__contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  color: var(--theme-color);
  flex: 1 0 65px;
  max-width: 65px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-right: 10px;
  padding: 14px;
}
.person-tiles__contact-icon--email {
  padding: 10px;
}
.person-tiles__contact-icon svg {
  display: block;
  height: 100%;
  width: 100%;
}
.person-tiles__contact-label {
  flex: 1 0 max-content;
}