@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-primary: #C81446;
  --bs-dsgvo: #efefef;
  --bs-primary-rgb: 200, 20, 70;
  --bs-dsgvo-rgb: 239, 239, 239;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 20, 20, 50;
  --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: Rubik, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 300;
  --bs-body-line-height: 1.5;
  --bs-body-color: #141432;
  --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, .accordion__header, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #141432;
}

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, .accordion__header {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4, .accordion__header {
    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: #C81446;
  text-decoration: none;
}
a:hover {
  color: #820d2e;
  text-decoration: none;
}

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

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

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

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

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

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

.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-xml,
.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: 1340px) {
  .container-xml, .container-lg, .container-md, .container-sm, .container {
    max-width: 1340px;
  }
}
@media (min-width: 1530px) {
  .container-xl, .container-xml, .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: 3rem;
}

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

@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: 3rem;
  }
  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@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: 3rem;
  }
  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@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: 3rem;
  }
  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1340px) {
  .col-xml {
    flex: 1 0;
  }
  .row-cols-xml-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xml-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xml-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xml-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xml-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xml-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xml-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xml-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xml-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xml-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xml-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xml-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xml-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xml-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xml-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xml-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xml-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xml-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xml-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xml-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xml-0 {
    margin-left: 0;
  }
  .offset-xml-1 {
    margin-left: 8.33333333%;
  }
  .offset-xml-2 {
    margin-left: 16.66666667%;
  }
  .offset-xml-3 {
    margin-left: 25%;
  }
  .offset-xml-4 {
    margin-left: 33.33333333%;
  }
  .offset-xml-5 {
    margin-left: 41.66666667%;
  }
  .offset-xml-6 {
    margin-left: 50%;
  }
  .offset-xml-7 {
    margin-left: 58.33333333%;
  }
  .offset-xml-8 {
    margin-left: 66.66666667%;
  }
  .offset-xml-9 {
    margin-left: 75%;
  }
  .offset-xml-10 {
    margin-left: 83.33333333%;
  }
  .offset-xml-11 {
    margin-left: 91.66666667%;
  }
  .g-xml-0,
.gx-xml-0 {
    --bs-gutter-x: 0;
  }
  .g-xml-0,
.gy-xml-0 {
    --bs-gutter-y: 0;
  }
  .g-xml-1,
.gx-xml-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xml-1,
.gy-xml-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xml-2,
.gx-xml-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xml-2,
.gy-xml-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xml-3,
.gx-xml-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xml-3,
.gy-xml-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xml-4,
.gx-xml-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xml-4,
.gy-xml-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xml-5,
.gx-xml-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xml-5,
.gy-xml-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1530px) {
  .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: 3rem;
  }
  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1940px) {
  .col-fhd {
    flex: 1 0;
  }
  .row-cols-fhd-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-fhd-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-fhd-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-fhd-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-fhd-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-fhd-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-fhd-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-fhd-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-fhd-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-fhd-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-fhd-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-fhd-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-fhd-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-fhd-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-fhd-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-fhd-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-fhd-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-fhd-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-fhd-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-fhd-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-fhd-0 {
    margin-left: 0;
  }
  .offset-fhd-1 {
    margin-left: 8.33333333%;
  }
  .offset-fhd-2 {
    margin-left: 16.66666667%;
  }
  .offset-fhd-3 {
    margin-left: 25%;
  }
  .offset-fhd-4 {
    margin-left: 33.33333333%;
  }
  .offset-fhd-5 {
    margin-left: 41.66666667%;
  }
  .offset-fhd-6 {
    margin-left: 50%;
  }
  .offset-fhd-7 {
    margin-left: 58.33333333%;
  }
  .offset-fhd-8 {
    margin-left: 66.66666667%;
  }
  .offset-fhd-9 {
    margin-left: 75%;
  }
  .offset-fhd-10 {
    margin-left: 83.33333333%;
  }
  .offset-fhd-11 {
    margin-left: 91.66666667%;
  }
  .g-fhd-0,
.gx-fhd-0 {
    --bs-gutter-x: 0;
  }
  .g-fhd-0,
.gy-fhd-0 {
    --bs-gutter-y: 0;
  }
  .g-fhd-1,
.gx-fhd-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-fhd-1,
.gy-fhd-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-fhd-2,
.gx-fhd-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-fhd-2,
.gy-fhd-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-fhd-3,
.gx-fhd-3 {
    --bs-gutter-x: 1rem;
  }
  .g-fhd-3,
.gy-fhd-3 {
    --bs-gutter-y: 1rem;
  }
  .g-fhd-4,
.gx-fhd-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-fhd-4,
.gy-fhd-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-fhd-5,
.gx-fhd-5 {
    --bs-gutter-x: 3rem;
  }
  .g-fhd-5,
.gy-fhd-5 {
    --bs-gutter-y: 3rem;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

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

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #141432;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  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: #141432;
  background-color: #fff;
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: none;
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.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: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #141432;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #141432;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

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

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0;
}
.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.5em + 1rem + 2px);
  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.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

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

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  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 0.75rem;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  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-shown) ~ 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.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

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

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

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

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

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

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

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

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

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

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

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

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

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

.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: #141432;
  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: 1340px) {
  .dropdown-menu-xml-start {
    --bs-position: start;
  }
  .dropdown-menu-xml-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xml-end {
    --bs-position: end;
  }
  .dropdown-menu-xml-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1530px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1940px) {
  .dropdown-menu-fhd-start {
    --bs-position: start;
  }
  .dropdown-menu-fhd-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-fhd-end {
    --bs-position: end;
  }
  .dropdown-menu-fhd-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;
  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: #C81446;
}
.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: #C81446;
}
.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;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: var(--primary-color);
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--primary-color);
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: var(--primary-color);
  background-color: #e9ecef;
  outline: 0;
  box-shadow: none;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

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

.link-primary {
  color: #C81446;
}
.link-primary:hover, .link-primary:focus {
  color: #a01038;
}

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

.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: 1340px) {
  .sticky-xml-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1530px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1940px) {
  .sticky-fhd-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 #CCCCCC !important;
}

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

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

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

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

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

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

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

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

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

.border-primary {
  border-color: #C81446 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-dsgvo {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dsgvo-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;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .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: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .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: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .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: 1340px) {
  .float-xml-start {
    float: left !important;
  }
  .float-xml-end {
    float: right !important;
  }
  .float-xml-none {
    float: none !important;
  }
  .d-xml-inline {
    display: inline !important;
  }
  .d-xml-inline-block {
    display: inline-block !important;
  }
  .d-xml-block {
    display: block !important;
  }
  .d-xml-grid {
    display: grid !important;
  }
  .d-xml-table {
    display: table !important;
  }
  .d-xml-table-row {
    display: table-row !important;
  }
  .d-xml-table-cell {
    display: table-cell !important;
  }
  .d-xml-flex {
    display: flex !important;
  }
  .d-xml-inline-flex {
    display: inline-flex !important;
  }
  .d-xml-none {
    display: none !important;
  }
  .flex-xml-fill {
    flex: 1 1 auto !important;
  }
  .flex-xml-row {
    flex-direction: row !important;
  }
  .flex-xml-column {
    flex-direction: column !important;
  }
  .flex-xml-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xml-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xml-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xml-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xml-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xml-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xml-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xml-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xml-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xml-0 {
    gap: 0 !important;
  }
  .gap-xml-1 {
    gap: 0.25rem !important;
  }
  .gap-xml-2 {
    gap: 0.5rem !important;
  }
  .gap-xml-3 {
    gap: 1rem !important;
  }
  .gap-xml-4 {
    gap: 1.5rem !important;
  }
  .gap-xml-5 {
    gap: 3rem !important;
  }
  .justify-content-xml-start {
    justify-content: flex-start !important;
  }
  .justify-content-xml-end {
    justify-content: flex-end !important;
  }
  .justify-content-xml-center {
    justify-content: center !important;
  }
  .justify-content-xml-between {
    justify-content: space-between !important;
  }
  .justify-content-xml-around {
    justify-content: space-around !important;
  }
  .justify-content-xml-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xml-start {
    align-items: flex-start !important;
  }
  .align-items-xml-end {
    align-items: flex-end !important;
  }
  .align-items-xml-center {
    align-items: center !important;
  }
  .align-items-xml-baseline {
    align-items: baseline !important;
  }
  .align-items-xml-stretch {
    align-items: stretch !important;
  }
  .align-content-xml-start {
    align-content: flex-start !important;
  }
  .align-content-xml-end {
    align-content: flex-end !important;
  }
  .align-content-xml-center {
    align-content: center !important;
  }
  .align-content-xml-between {
    align-content: space-between !important;
  }
  .align-content-xml-around {
    align-content: space-around !important;
  }
  .align-content-xml-stretch {
    align-content: stretch !important;
  }
  .align-self-xml-auto {
    align-self: auto !important;
  }
  .align-self-xml-start {
    align-self: flex-start !important;
  }
  .align-self-xml-end {
    align-self: flex-end !important;
  }
  .align-self-xml-center {
    align-self: center !important;
  }
  .align-self-xml-baseline {
    align-self: baseline !important;
  }
  .align-self-xml-stretch {
    align-self: stretch !important;
  }
  .order-xml-first {
    order: -1 !important;
  }
  .order-xml-0 {
    order: 0 !important;
  }
  .order-xml-1 {
    order: 1 !important;
  }
  .order-xml-2 {
    order: 2 !important;
  }
  .order-xml-3 {
    order: 3 !important;
  }
  .order-xml-4 {
    order: 4 !important;
  }
  .order-xml-5 {
    order: 5 !important;
  }
  .order-xml-last {
    order: 6 !important;
  }
  .m-xml-0 {
    margin: 0 !important;
  }
  .m-xml-1 {
    margin: 0.25rem !important;
  }
  .m-xml-2 {
    margin: 0.5rem !important;
  }
  .m-xml-3 {
    margin: 1rem !important;
  }
  .m-xml-4 {
    margin: 1.5rem !important;
  }
  .m-xml-5 {
    margin: 3rem !important;
  }
  .m-xml-auto {
    margin: auto !important;
  }
  .mx-xml-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xml-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xml-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xml-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xml-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xml-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xml-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xml-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xml-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xml-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xml-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xml-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xml-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xml-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xml-0 {
    margin-top: 0 !important;
  }
  .mt-xml-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xml-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xml-3 {
    margin-top: 1rem !important;
  }
  .mt-xml-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xml-5 {
    margin-top: 3rem !important;
  }
  .mt-xml-auto {
    margin-top: auto !important;
  }
  .me-xml-0 {
    margin-right: 0 !important;
  }
  .me-xml-1 {
    margin-right: 0.25rem !important;
  }
  .me-xml-2 {
    margin-right: 0.5rem !important;
  }
  .me-xml-3 {
    margin-right: 1rem !important;
  }
  .me-xml-4 {
    margin-right: 1.5rem !important;
  }
  .me-xml-5 {
    margin-right: 3rem !important;
  }
  .me-xml-auto {
    margin-right: auto !important;
  }
  .mb-xml-0 {
    margin-bottom: 0 !important;
  }
  .mb-xml-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xml-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xml-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xml-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xml-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xml-auto {
    margin-bottom: auto !important;
  }
  .ms-xml-0 {
    margin-left: 0 !important;
  }
  .ms-xml-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xml-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xml-3 {
    margin-left: 1rem !important;
  }
  .ms-xml-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xml-5 {
    margin-left: 3rem !important;
  }
  .ms-xml-auto {
    margin-left: auto !important;
  }
  .p-xml-0 {
    padding: 0 !important;
  }
  .p-xml-1 {
    padding: 0.25rem !important;
  }
  .p-xml-2 {
    padding: 0.5rem !important;
  }
  .p-xml-3 {
    padding: 1rem !important;
  }
  .p-xml-4 {
    padding: 1.5rem !important;
  }
  .p-xml-5 {
    padding: 3rem !important;
  }
  .px-xml-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xml-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xml-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xml-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xml-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xml-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xml-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xml-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xml-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xml-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xml-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xml-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xml-0 {
    padding-top: 0 !important;
  }
  .pt-xml-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xml-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xml-3 {
    padding-top: 1rem !important;
  }
  .pt-xml-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xml-5 {
    padding-top: 3rem !important;
  }
  .pe-xml-0 {
    padding-right: 0 !important;
  }
  .pe-xml-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xml-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xml-3 {
    padding-right: 1rem !important;
  }
  .pe-xml-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xml-5 {
    padding-right: 3rem !important;
  }
  .pb-xml-0 {
    padding-bottom: 0 !important;
  }
  .pb-xml-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xml-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xml-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xml-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xml-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xml-0 {
    padding-left: 0 !important;
  }
  .ps-xml-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xml-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xml-3 {
    padding-left: 1rem !important;
  }
  .ps-xml-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xml-5 {
    padding-left: 3rem !important;
  }
  .text-xml-left {
    text-align: left !important;
  }
  .text-xml-right {
    text-align: right !important;
  }
  .text-xml-center {
    text-align: center !important;
  }
  .text-xml-justify {
    text-align: justify !important;
  }
}
@media (min-width: 1530px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .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: 1940px) {
  .float-fhd-start {
    float: left !important;
  }
  .float-fhd-end {
    float: right !important;
  }
  .float-fhd-none {
    float: none !important;
  }
  .d-fhd-inline {
    display: inline !important;
  }
  .d-fhd-inline-block {
    display: inline-block !important;
  }
  .d-fhd-block {
    display: block !important;
  }
  .d-fhd-grid {
    display: grid !important;
  }
  .d-fhd-table {
    display: table !important;
  }
  .d-fhd-table-row {
    display: table-row !important;
  }
  .d-fhd-table-cell {
    display: table-cell !important;
  }
  .d-fhd-flex {
    display: flex !important;
  }
  .d-fhd-inline-flex {
    display: inline-flex !important;
  }
  .d-fhd-none {
    display: none !important;
  }
  .flex-fhd-fill {
    flex: 1 1 auto !important;
  }
  .flex-fhd-row {
    flex-direction: row !important;
  }
  .flex-fhd-column {
    flex-direction: column !important;
  }
  .flex-fhd-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-fhd-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-fhd-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-fhd-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-fhd-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-fhd-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-fhd-wrap {
    flex-wrap: wrap !important;
  }
  .flex-fhd-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-fhd-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-fhd-0 {
    gap: 0 !important;
  }
  .gap-fhd-1 {
    gap: 0.25rem !important;
  }
  .gap-fhd-2 {
    gap: 0.5rem !important;
  }
  .gap-fhd-3 {
    gap: 1rem !important;
  }
  .gap-fhd-4 {
    gap: 1.5rem !important;
  }
  .gap-fhd-5 {
    gap: 3rem !important;
  }
  .justify-content-fhd-start {
    justify-content: flex-start !important;
  }
  .justify-content-fhd-end {
    justify-content: flex-end !important;
  }
  .justify-content-fhd-center {
    justify-content: center !important;
  }
  .justify-content-fhd-between {
    justify-content: space-between !important;
  }
  .justify-content-fhd-around {
    justify-content: space-around !important;
  }
  .justify-content-fhd-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-fhd-start {
    align-items: flex-start !important;
  }
  .align-items-fhd-end {
    align-items: flex-end !important;
  }
  .align-items-fhd-center {
    align-items: center !important;
  }
  .align-items-fhd-baseline {
    align-items: baseline !important;
  }
  .align-items-fhd-stretch {
    align-items: stretch !important;
  }
  .align-content-fhd-start {
    align-content: flex-start !important;
  }
  .align-content-fhd-end {
    align-content: flex-end !important;
  }
  .align-content-fhd-center {
    align-content: center !important;
  }
  .align-content-fhd-between {
    align-content: space-between !important;
  }
  .align-content-fhd-around {
    align-content: space-around !important;
  }
  .align-content-fhd-stretch {
    align-content: stretch !important;
  }
  .align-self-fhd-auto {
    align-self: auto !important;
  }
  .align-self-fhd-start {
    align-self: flex-start !important;
  }
  .align-self-fhd-end {
    align-self: flex-end !important;
  }
  .align-self-fhd-center {
    align-self: center !important;
  }
  .align-self-fhd-baseline {
    align-self: baseline !important;
  }
  .align-self-fhd-stretch {
    align-self: stretch !important;
  }
  .order-fhd-first {
    order: -1 !important;
  }
  .order-fhd-0 {
    order: 0 !important;
  }
  .order-fhd-1 {
    order: 1 !important;
  }
  .order-fhd-2 {
    order: 2 !important;
  }
  .order-fhd-3 {
    order: 3 !important;
  }
  .order-fhd-4 {
    order: 4 !important;
  }
  .order-fhd-5 {
    order: 5 !important;
  }
  .order-fhd-last {
    order: 6 !important;
  }
  .m-fhd-0 {
    margin: 0 !important;
  }
  .m-fhd-1 {
    margin: 0.25rem !important;
  }
  .m-fhd-2 {
    margin: 0.5rem !important;
  }
  .m-fhd-3 {
    margin: 1rem !important;
  }
  .m-fhd-4 {
    margin: 1.5rem !important;
  }
  .m-fhd-5 {
    margin: 3rem !important;
  }
  .m-fhd-auto {
    margin: auto !important;
  }
  .mx-fhd-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-fhd-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-fhd-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-fhd-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-fhd-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-fhd-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-fhd-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-fhd-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-fhd-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-fhd-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-fhd-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-fhd-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-fhd-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-fhd-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-fhd-0 {
    margin-top: 0 !important;
  }
  .mt-fhd-1 {
    margin-top: 0.25rem !important;
  }
  .mt-fhd-2 {
    margin-top: 0.5rem !important;
  }
  .mt-fhd-3 {
    margin-top: 1rem !important;
  }
  .mt-fhd-4 {
    margin-top: 1.5rem !important;
  }
  .mt-fhd-5 {
    margin-top: 3rem !important;
  }
  .mt-fhd-auto {
    margin-top: auto !important;
  }
  .me-fhd-0 {
    margin-right: 0 !important;
  }
  .me-fhd-1 {
    margin-right: 0.25rem !important;
  }
  .me-fhd-2 {
    margin-right: 0.5rem !important;
  }
  .me-fhd-3 {
    margin-right: 1rem !important;
  }
  .me-fhd-4 {
    margin-right: 1.5rem !important;
  }
  .me-fhd-5 {
    margin-right: 3rem !important;
  }
  .me-fhd-auto {
    margin-right: auto !important;
  }
  .mb-fhd-0 {
    margin-bottom: 0 !important;
  }
  .mb-fhd-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-fhd-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-fhd-3 {
    margin-bottom: 1rem !important;
  }
  .mb-fhd-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-fhd-5 {
    margin-bottom: 3rem !important;
  }
  .mb-fhd-auto {
    margin-bottom: auto !important;
  }
  .ms-fhd-0 {
    margin-left: 0 !important;
  }
  .ms-fhd-1 {
    margin-left: 0.25rem !important;
  }
  .ms-fhd-2 {
    margin-left: 0.5rem !important;
  }
  .ms-fhd-3 {
    margin-left: 1rem !important;
  }
  .ms-fhd-4 {
    margin-left: 1.5rem !important;
  }
  .ms-fhd-5 {
    margin-left: 3rem !important;
  }
  .ms-fhd-auto {
    margin-left: auto !important;
  }
  .p-fhd-0 {
    padding: 0 !important;
  }
  .p-fhd-1 {
    padding: 0.25rem !important;
  }
  .p-fhd-2 {
    padding: 0.5rem !important;
  }
  .p-fhd-3 {
    padding: 1rem !important;
  }
  .p-fhd-4 {
    padding: 1.5rem !important;
  }
  .p-fhd-5 {
    padding: 3rem !important;
  }
  .px-fhd-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-fhd-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-fhd-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-fhd-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-fhd-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-fhd-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-fhd-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-fhd-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-fhd-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-fhd-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-fhd-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-fhd-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-fhd-0 {
    padding-top: 0 !important;
  }
  .pt-fhd-1 {
    padding-top: 0.25rem !important;
  }
  .pt-fhd-2 {
    padding-top: 0.5rem !important;
  }
  .pt-fhd-3 {
    padding-top: 1rem !important;
  }
  .pt-fhd-4 {
    padding-top: 1.5rem !important;
  }
  .pt-fhd-5 {
    padding-top: 3rem !important;
  }
  .pe-fhd-0 {
    padding-right: 0 !important;
  }
  .pe-fhd-1 {
    padding-right: 0.25rem !important;
  }
  .pe-fhd-2 {
    padding-right: 0.5rem !important;
  }
  .pe-fhd-3 {
    padding-right: 1rem !important;
  }
  .pe-fhd-4 {
    padding-right: 1.5rem !important;
  }
  .pe-fhd-5 {
    padding-right: 3rem !important;
  }
  .pb-fhd-0 {
    padding-bottom: 0 !important;
  }
  .pb-fhd-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-fhd-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-fhd-3 {
    padding-bottom: 1rem !important;
  }
  .pb-fhd-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-fhd-5 {
    padding-bottom: 3rem !important;
  }
  .ps-fhd-0 {
    padding-left: 0 !important;
  }
  .ps-fhd-1 {
    padding-left: 0.25rem !important;
  }
  .ps-fhd-2 {
    padding-left: 0.5rem !important;
  }
  .ps-fhd-3 {
    padding-left: 1rem !important;
  }
  .ps-fhd-4 {
    padding-left: 1.5rem !important;
  }
  .ps-fhd-5 {
    padding-left: 3rem !important;
  }
  .text-fhd-left {
    text-align: left !important;
  }
  .text-fhd-right {
    text-align: right !important;
  }
  .text-fhd-center {
    text-align: center !important;
  }
  .text-fhd-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-img-wrap {
  background-color: #fff;
}

.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: #000;
  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: #000;
  right: -6px;
  text-align: right;
  padding-right: 20px;
  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 #000;
  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 #000;
  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,
.glossary-list__arrow:after,
.glossary-list__teaser:after,
.glossary-list__item:after,
.button:after,
.swiper-arrow:before,
.fa-light,
.fa-thin,
.select2-container--default .select2-selection--single .select2-selection__arrow b,
.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,
.swiper-arrow::before,
.fa-light::before,
.fa-thin::before,
.select2-container--default .select2-selection--single .select2-selection__arrow b::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,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone::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,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone::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,
.glossary-list__arrow:after,
.glossary-list__teaser:after,
.glossary-list__item:after,
.button:after,
.swiper-arrow:before,
.fal,
.fa-light,
.fat,
.fa-thin,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  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";
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
.fa-bounce,
.fa-fade,
.fa-beat-fade,
.fa-flip,
.fa-pulse,
.fa-shake,
.fa-spin,
.fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*******************************************************************/
/* 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-arrow-down::before {
  content: "\f063";
}

.fa-arrow-left::before {
  content: "\f060";
}

.fa-arrow-right::before {
  content: "\f061";
}

.fa-arrow-right-to-bracket::before {
  content: "\f090";
}

.fa-arrow-up-right-from-square::before {
  content: "\f08e";
}

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

.fa-building-user::before {
  content: "\e4da";
}

.fa-buildings::before {
  content: "\e0cc";
}

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

.fa-check::before {
  content: "\f00c";
}

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

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

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

.fa-chevron-up::before {
  content: "\f077";
}

.fa-clock::before {
  content: "\f017";
}

.fa-comment-lines::before {
  content: "\f4b0";
}

.fa-download::before {
  content: "\f019";
}

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

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

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

.fa-file-arrow-down::before {
  content: "\f56d";
}

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

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

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

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

.fa-location-dot::before {
  content: "\f3c5";
}

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

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

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

.fa-spinner-scale::before {
  content: "\e62a";
}

.fa-video::before {
  content: "\f03d";
}

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

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

.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?v=8ce5048d847e1fa00c70a4cd70693d814c8d3798") 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?v=6b5f1b2439ce0b7dc01ff55fb36537f6397cb6a7") 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?v=1942cb035e9969a2118ee5fc2bcf6220ee60afc0") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular,
.glossary-list__arrow:after,
.glossary-list__teaser:after,
.glossary-list__item:after,
.button:after,
.swiper-arrow:before {
  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=bd63c29c12d2a0a4f9c9de0dac5f26bcaa4c0617") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-thin-100.ttf") format("truetype");
}
.fat,
.fa-thin,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  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,
.glossary-list__arrow:after,
.glossary-list__teaser:after,
.glossary-list__item:after,
.button:after,
.swiper-arrow:before {
  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,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  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.4
 * 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: February 14, 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 */
.centered-swiper-arrows,
.align-right-swiper-arrows {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .centered-swiper-arrows,
.align-right-swiper-arrows {
    margin-top: 50px;
  }
}
.centered-swiper-arrows .swiper-arrow,
.align-right-swiper-arrows .swiper-arrow {
  margin: 0 10px;
}

.align-right-swiper-arrows {
  justify-content: flex-end;
  margin-top: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .align-right-swiper-arrows {
    margin-bottom: 40px;
  }
}

.swiper-arrow {
  color: white;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 23px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .swiper-arrow {
    width: 74px;
    height: 74px;
    font-size: 29px;
  }
}
.swiper-arrow.swiper-button-lock {
  display: none;
}
.swiper-arrow:hover {
  background-color: white;
  color: var(--primary-color);
}
.swiper-arrow--prev:before {
  content: "\f053";
}
.swiper-arrow--next:before {
  content: "\f054";
}

.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: 50px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-extra-small {
    margin-bottom: 50px;
  }
}
.frame-space-before-small {
  margin-top: 30px;
}

.frame-space-after-small {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .frame-space-before-small {
    margin-top: 70px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-small {
    margin-bottom: 70px;
  }
}
.frame-space-before-medium {
  margin-top: 40px;
}

.frame-space-after-medium {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .frame-space-before-medium {
    margin-top: 90px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-medium {
    margin-bottom: 90px;
  }
}
.frame-space-before-large {
  margin-top: 50px;
}

.frame-space-after-large {
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .frame-space-before-large {
    margin-top: 120px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-large {
    margin-bottom: 120px;
  }
}
.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: 150px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-extra-large {
    margin-bottom: 150px;
  }
}
/* 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: 1530px) {
  .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;
  }
}
.button {
  font-weight: 500;
  line-height: 1.5;
  color: #141432;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 15px 35px;
  font-size: 1rem;
  border-radius: 0;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border-radius: 10000px;
  transition: 0.3s ease-in-out;
}
.button:after {
  content: "\f061";
  margin-left: 10px;
  transition: 0.3s ease-in-out;
}
.button:hover:after, .button:focus-visible:after {
  transform: translateX(5px);
}
.button--block {
  display: block;
  width: 100%;
}
.button--flex {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.button:hover {
  color: #141432;
}
.button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(200, 20, 70, 0.25);
}
.button--primary {
  background: var(--primary-color);
  color: white;
}
.button--primary:hover, .button--primary:focus-visible {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.button--outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.button--outline-primary:hover, .button--outline-primary:focus-visible {
  background: var(--primary-color);
  color: white;
}
.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);
  color: #6c757d;
}
.button--outline-default:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
  color: #6c757d;
}
.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);
  color: #dc3545;
}
.button--outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
  color: #dc3545;
}
.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);
  color: #efefef;
}
.button--outline-dsgvo:focus {
  box-shadow: 0 0 0 0.25rem rgba(239, 239, 239, 0.5);
  color: #efefef;
}

/* Global styling */
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-300.woff2?v=662e36abfdfa041420061ce216ce895e097655c1") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: italic;
  font-weight: 300;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-300italic.woff2?v=453219038eaa6e4806307e76ba75668e91e70073") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-regular.woff2?v=65bc8c65415dc29f93986ed868b2c111dc5d5f82") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: italic;
  font-weight: 400;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-italic.woff2?v=a7f42230b69cf0a52619c288654bd91ddfaeb053") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 500;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-500.woff2?v=9170307012d60109548247ce761fb5d71a45beb2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-600.woff2?v=908b5fc88d5154fbbe984a0bfc3efe7bce3617c6") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: italic;
  font-weight: 600;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-600italic.woff2?v=f55e81278be03ca4d7cbca9ebe375ad3a5c73434") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: italic;
  font-weight: 500;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-500italic.woff2?v=eb13328f8725d3e7829e405d6ce1038fee039417") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-700.woff2?v=4e8c13dd368dc392df82ddf9273eb0c7352d454f") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: italic;
  font-weight: 700;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-700italic.woff2?v=afc38d8cd735355a981dff09d096bf370e0e2e3b") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 800;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-800.woff2?v=ddf9dcca2cf7e340c56abb71680ef2f7bbe865c2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: italic;
  font-weight: 800;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-800italic.woff2?v=762b79f9a887b1fc6be1a58041d0d98626280c97") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 900;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-900.woff2?v=c52c1dc38a64f0f5f502e2a36625f43a9c351820") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: italic;
  font-weight: 900;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/rubik/rubik-900italic.woff2?v=0c38fb1510869b332883c3b4cccd9ac71b224c6a") format("woff2");
}
:root {
  --p-margin: 1rem;
  --p-margin-last: 0;
  --primary-color: #C81446;
  --icon-dimension: 60px;
}
@media (min-width: 992px) {
  :root {
    --icon-dimension: 80px;
  }
}

html {
  overflow-y: scroll;
}
html.scroll-lock {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

body {
  font-size: 16px;
  line-height: 25px;
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 27px;
  }
}

a {
  font-weight: 500;
  transition: 0.3s ease-in-out;
  color: var(--primary-color);
}
a:hover, a:focus-visible {
  color: #141432;
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 0;
  border-top: 1px solid rgba(204, 204, 204, 0.2);
}

b, strong {
  font-weight: 600;
}

p, ul, ol {
  margin-bottom: var(--p-margin);
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: var(--p-margin-last);
}

.reset-last {
  --p-margin-last: var(--p-margin);
}

.main-content ul:not(.no-list-bullet):not(.slick-dots):not(.pagination):not(.topics__items):not(.select2-selection__rendered):not(.job__list) {
  padding-left: 0;
  list-style: none;
  padding-left: 20px;
}
.main-content ul:not(.no-list-bullet):not(.slick-dots):not(.pagination):not(.topics__items):not(.select2-selection__rendered):not(.job__list) li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 10px;
}
.main-content ul:not(.no-list-bullet):not(.slick-dots):not(.pagination):not(.topics__items):not(.select2-selection__rendered):not(.job__list) li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro", sans-serif;
  color: var(--primary-color);
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.3em;
  transition: 0.3s ease-in-out;
}

.header-subheader {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.document-link {
  display: inline-flex;
}
.document-link:before {
  content: "\f56d";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-right: 10px;
  transform: translateY(-2px);
}

.mfp-img-wrap {
  position: relative;
}

.mfp-download-link {
  right: 20px;
  bottom: 60px;
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: white;
  color: #C81446;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  border-radius: 50%;
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.26);
}

.top-subheader {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.875rem;
  margin-bottom: 10px;
}

p + h1, p + .h1, p + h2, p + .h2, p + h3, p + .h3, p + h4, p + .h4, p + .accordion__header, p + h5, p + .h5, p + h6, p + .h6, ul + h1, ul + .h1, ul + h2, ul + .h2, ul + h3, ul + .h3, ul + h4, ul + .h4, ul + .accordion__header, ul + h5, ul + .h5, ul + h6, ul + .h6, ol + h1, ol + .h1, ol + h2, ol + .h2, ol + h3, ol + .h3, ol + h4, ol + .h4, ol + .accordion__header, ol + h5, ol + .h5, ol + h6, ol + .h6 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  p + h1, p + .h1, p + h2, p + .h2, p + h3, p + .h3, p + h4, p + .h4, p + .accordion__header, p + h5, p + .h5, p + h6, p + .h6, ul + h1, ul + .h1, ul + h2, ul + .h2, ul + h3, ul + .h3, ul + h4, ul + .h4, ul + .accordion__header, ul + h5, ul + .h5, ul + h6, ul + .h6, ol + h1, ol + .h1, ol + h2, ol + .h2, ol + h3, ol + .h3, ol + h4, ol + .h4, ol + .accordion__header, ol + h5, ol + .h5, ol + h6, ol + .h6 {
    margin-top: 40px;
  }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, .accordion__header, h5, .h5, h6, .h6 {
  line-height: 1.25;
  font-weight: 300;
}
h1 .marked-text, .h1 .marked-text, h2 .marked-text, .h2 .marked-text, h3 .marked-text, .h3 .marked-text, h4 .marked-text, .h4 .marked-text, .accordion__header .marked-text, h5 .marked-text, .h5 .marked-text, h6 .marked-text, .h6 .marked-text {
  font-weight: 600;
}

h1, .h1 {
  font-size: 1.875rem;
  line-height: 2.3125rem;
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 3.75rem;
    line-height: 4.25rem;
  }
}
@media (min-width: 1530px) {
  h1, .h1 {
    font-size: 4.125rem;
    line-height: 4.9375rem;
  }
}
h1 .underline-text, .h1 .underline-text {
  background: linear-gradient(var(--primary-color) 0%, var(--primary-color) 100%) 0 85% no-repeat;
  background-size: 100% 9px;
}
@media (min-width: 992px) {
  h1 .underline-text, .h1 .underline-text {
    background-size: 100% 20px;
  }
}

h2, .h2 {
  font-size: 1.625rem;
  line-height: 2rem;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 2.75rem;
    line-height: 3.625rem;
    margin-bottom: 40px;
  }
}

h3, .h3 {
  font-size: 1.375rem;
  line-height: 1.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2.25rem;
    margin-bottom: 30px;
  }
}

h4, .h4, .accordion__header {
  font-size: 1.1875rem;
  line-height: 1.625rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  h4, .h4, .accordion__header {
    font-size: 1.375rem;
    line-height: 1.875rem;
  }
}

.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 .input.checkbox {
  position: relative;
}
.frame-type-form_formframework input[type=radio],
.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=radio]:focus, .frame-type-form_formframework input[type=radio]:hover, .frame-type-form_formframework input[type=radio]:active,
.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 .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: #fff;
  background-clip: padding-box;
  border: 1px 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(--primary-color);
  position: absolute;
  left: 4px;
  top: 4px;
}
.frame-type-form_formframework input[type=radio] + .form-check-label:before {
  border-radius: 50%;
}
.frame-type-form_formframework input[type=radio] + .form-check-label:after {
  border-radius: 50%;
}
.frame-type-form_formframework input[type=radio]:checked ~ .form-check-label:after,
.frame-type-form_formframework input[type=checkbox]:checked ~ .form-check-label:after {
  display: block;
}
.frame-type-form_formframework input[type=radio]:focus ~ .form-check-label:before,
.frame-type-form_formframework input[type=checkbox]:focus ~ .form-check-label:before {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: none;
}
.frame-type-form_formframework textarea {
  min-height: 220px;
}
.frame-type-form_formframework .form-check {
  position: relative;
}

.parsley-errors-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.privacy-policy-link {
  display: flex;
  align-items: center;
}
.privacy-policy-link i {
  margin-right: 4px;
}

.form-group {
  margin-bottom: 20px;
}

.page__head {
  background-color: #141432;
  color: white;
  padding-top: 95px;
  padding-bottom: 299px;
  position: relative;
  margin-bottom: -299px;
}
@media (min-width: 768px) {
  .page__head {
    margin-bottom: -720px;
    padding-top: 155px;
    padding-bottom: 660px;
  }
}
.page__head--overlay:after {
  content: "";
  position: absolute;
  background: transparent linear-gradient(245deg, var(--primary-color) 0%, rgba(20, 20, 50, 0.69) 100%);
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.page__head--image-overlay:before {
  content: "";
  position: absolute;
  background-image: var(--head-background-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .page__head--small {
    padding-top: 125px;
    padding-bottom: 610px;
  }
}
@media (min-width: 1530px) {
  .page__head--small {
    padding-bottom: 480px;
  }
}
@media (min-width: 768px) {
  .page__head--small h1, .page__head--small .h1 {
    font-size: 50px;
    line-height: 64px;
  }
}
@media screen and (min-width: 1940px) {
  .page__head--small {
    padding-bottom: 620px;
  }
}
.page__head > * {
  position: relative;
  z-index: 5;
}
.page__head h1, .page__head .h1, .page__head h2, .page__head .h2, .page__head h3, .page__head .h3, .page__head h4, .page__head .h4, .page__head .accordion__header, .page__head h5, .page__head .h5, .page__head h6, .page__head .h6 {
  color: white;
}
.page__head .button--outline-primary {
  border-color: white;
  color: white;
}
.page__head .button--outline-primary:hover, .page__head .button--outline-primary:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.page__head .searchbox__input-wrap {
  background-color: white;
}
.page__head .searchbox__header {
  color: #141432;
}
@media screen and (min-width: 992px) and (max-width: 1700px) {
  .page--intranet, .page--intranetsubpage {
    padding-left: var(--icon-dimension);
  }
}
.page--intranet .site-nav-toggle, .page--intranetsubpage .site-nav-toggle {
  display: none;
}
.page--intranet .header__logo:not(.header__logo--filled) *, .page--intranetsubpage .header__logo:not(.header__logo--filled) * {
  transition: 0.3s ease-in-out;
  fill: white;
}
.page--intranet .main-content, .page--intranetsubpage .main-content {
  z-index: 5;
  position: relative;
  overflow: hidden;
  padding: 170px 0 140px;
}
@media (min-width: 768px) {
  .page--intranet .main-content, .page--intranetsubpage .main-content {
    padding-top: 100px;
  }
}
.page--intranet .main-content:after, .page--intranetsubpage .main-content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 300px;
  width: 100%;
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Headerkurve_mobile.svg");
  background-size: auto 300px;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: -5;
}
@media (min-width: 768px) {
  .page--intranet .main-content:after, .page--intranetsubpage .main-content:after {
    background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Headerkurve_Startseite.svg");
    background-size: auto 745px;
    height: 745px;
  }
}
@media (min-width: 1530px) {
  .page--intranet .main-content:after, .page--intranetsubpage .main-content:after {
    background-position: bottom right;
  }
}
@media (min-width: 1940px) {
  .page--intranet .main-content:after, .page--intranetsubpage .main-content:after {
    background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Headerkurve_Startseite_4k.svg");
    background-position: right top;
    background-size: auto 100%;
  }
}
.page--intranet .main-content:before, .page--intranetsubpage .main-content:before {
  content: "";
  position: absolute;
  top: 745px;
  height: calc(100% - 745px);
  left: 0;
  width: 100%;
  background-color: white;
  z-index: -5;
}
.page--subpage .main-nav, .page--subpage .search-overlay, .page--frontpage .main-nav, .page--frontpage .search-overlay {
  padding-left: 0;
}
.page--subpage .main-content, .page--frontpage .main-content {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .page--subpage .main-content, .page--frontpage .main-content {
    padding-top: 0;
  }
}
.page--subpage .header, .page--frontpage .header {
  position: relative;
  z-index: 100;
  transition: 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .page--subpage .header, .page--frontpage .header {
    padding: 40px 0;
  }
}
.page--subpage .header__container, .page--frontpage .header__container {
  justify-content: space-between;
}
@media (min-width: 768px) {
  .page--intranetsubpage .main-content:after {
    background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Headerkurve_Unterseite.svg");
  }
}
@media (min-width: 1940px) {
  .page--intranetsubpage .main-content:after {
    background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Headerkurve_Unterseite_4k.svg");
  }
}

@media (min-width: 992px) {
  .subpage .header__logo {
    max-width: 200px;
  }
}

.header {
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .header {
    padding: 40px 0;
  }
}
.header--open-nav .nav {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 992px) {
  .header--small-nav .main-nav,
.header--small-nav .site-nav-toggle {
    display: none;
  }
  .header--small-nav .header__container {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1600px) {
  .header--small-nav .header__container {
    padding-right: var(--bs-gutter-x, 20px);
    padding-left: var(--bs-gutter-x, 20px);
  }
}
.header__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1529.98px) {
  .header__container {
    max-width: none;
  }
}
@media (min-width: 992px) and (max-width: 1339.98px) {
  .header__container {
    padding: 0 calc(var(--icon-dimension) + 20px);
  }
}
.header__logo {
  max-width: 160px;
  position: relative;
  transition: 0.3s ease-in-out;
  z-index: 400;
}
@media (min-width: 992px) {
  .header__logo {
    max-width: 280px;
  }
}
.header__logo-link {
  margin-left: auto;
}

.footer {
  background-color: #141432;
  position: relative;
}
.footer:before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Footerkurve.svg");
  background-size: auto 100%;
  background-position: right top;
  background-repeat: no-repeat;
}
@media (min-width: 1940px) {
  .footer:before {
    right: calc(50% - 750px);
    height: calc(100% + 10px);
    top: -10px;
  }
}
.footer:after {
  content: "";
  position: absolute;
  top: -1px;
  right: calc(50% + 960px);
  width: 100vw;
  height: calc(100% + 1px);
  background-color: white;
}
@media (min-width: 1940px) {
  .footer:after {
    right: calc(50% + 1150px);
  }
}
.footer a:hover, .footer a:focus-visible {
  color: rgba(255, 255, 255, 0.5);
}
.footer__content {
  padding: 50px 0 10px;
  color: white;
  position: relative;
  z-index: 5;
}
@media (min-width: 1530px) {
  .footer__content {
    padding: 105px 0 60px;
  }
}
.footer__content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__slogan {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 110px;
}
.footer__logo {
  margin-bottom: 30px;
}
.footer__extra-content {
  max-width: 830px;
  text-align: right;
}

.site-footer {
  position: relative;
}
.site-footer:before, .site-footer:after {
  content: "";
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Netzkontor_Footer_Symbol_light.svg");
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  width: 345px;
  height: 275px;
}
@media (min-width: 768px) {
  .site-footer:before, .site-footer:after {
    width: 645px;
    height: 520px;
  }
}
.site-footer:after {
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Netzkontor_Footer_Symbol_dark.svg");
  z-index: 15;
  mix-blend-mode: lighten;
  opacity: 0.2;
}
.site-footer__intro {
  text-align: center;
}
.site-footer__logo {
  margin-bottom: 20px;
}
.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.site-footer__column {
  max-width: 100%;
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 10px;
}
@media (min-width: 576px) {
  .site-footer__column {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 992px) {
  .site-footer__column {
    max-width: 25%;
    flex-basis: 25%;
    margin-bottom: 60px;
  }
}
.site-footer__column ul {
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.site-footer__column a {
  color: #141432;
  font-weight: 600;
}
.site-footer__bar {
  background-color: #141432;
  padding: 40px 0;
  position: relative;
}
.site-footer__bar-container {
  z-index: 50;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer__intranet {
  display: flex;
  align-items: center;
  color: white;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .site-footer__intranet {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
}
.site-footer__intranet:hover, .site-footer__intranet:focus-visible {
  color: white;
}
.site-footer__intranet:hover .site-footer__intranet-icon, .site-footer__intranet:focus-visible .site-footer__intranet-icon {
  background-color: var(--primary-color);
  color: white;
}
.site-footer__intranet-icon {
  background-color: white;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 24px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  width: 58px;
  height: 58px;
}
@media (min-width: 768px) {
  .site-footer__intranet-icon {
    width: 74px;
    height: 74px;
    font-size: 32px;
  }
}
.site-footer__intranet-label {
  font-size: 1rem;
  text-transform: uppercase;
}
.site-footer__metanav {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px 20px 10px;
}
.site-footer__metanav-page {
  margin: 0 20px 20px;
  font-weight: 500;
}
.site-footer__metanav-link {
  color: #141432;
  text-transform: uppercase;
  font-size: 1rem;
}
.site-footer__content-container, .site-footer__metanav {
  position: relative;
  z-index: 20;
}

.main-nav {
  position: fixed;
  max-height: 100vh;
  overflow: auto;
  left: 0;
  right: 0;
  top: 0;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
  height: var(--header-min-height);
  min-height: 100vh;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  padding: 15px 0 100px var(--icon-dimension);
  z-index: 500;
}
@media (min-width: 992px) {
  .main-nav {
    padding: 40px 0 100px;
  }
}
.main-nav--visible {
  opacity: 1;
  pointer-events: auto;
}
.main-nav .header__logo-link {
  margin-right: 20px;
}
@media (min-width: 992px) {
  .main-nav .header__logo-link {
    margin-right: 0;
  }
}
.main-nav .header__logo-link-wrap {
  margin-bottom: 45px;
}
@media (min-width: 992px) {
  .main-nav .header__logo-link-wrap {
    margin-right: 0;
    margin-bottom: 130px;
  }
}
.main-nav .lang-menu {
  position: absolute;
  left: 80px;
  z-index: 100;
  top: 20px;
  margin-top: 0;
}
@media (min-width: 992px) {
  .main-nav .lang-menu {
    display: none;
  }
}
.main-nav .lang-menu__item {
  border-color: #141432;
}
.main-nav .lang-menu__link {
  color: #141432;
}
.main-nav__container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) and (max-width: 1339.98px) {
  .main-nav__container {
    padding: 0 calc(var(--icon-dimension) + 20px);
    max-width: none;
  }
}
@media (max-width: 991.98px) {
  .main-nav__container {
    max-width: none;
    padding: 0;
  }
}
.main-nav__container .header__logo-link {
  margin-left: auto;
}
.main-nav__top {
  display: flex;
  align-items: center;
  position: relative;
}
.main-nav__list {
  padding-left: 0;
  list-style: none;
}
.main-nav__list--level1 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .main-nav__list--level1 {
    display: flex;
    flex-wrap: wrap;
    min-height: 0;
    padding: 0;
    margin-bottom: 0;
  }
}
.main-nav__list--level2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease-in-out;
  background-color: rgba(163, 183, 203, 0.17);
  padding: 0 30px;
}
@media (min-width: 992px) {
  .main-nav__list--level2 {
    max-height: none;
    overflow: visible;
    background-color: transparent;
    padding: 0;
  }
}
.main-nav__list--level2.main-nav__list--visible {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease-in-out;
  padding: 12px 30px 7px;
}
.main-nav__list--level3 {
  padding-left: 5px;
  margin-bottom: 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .main-nav__list--level3 {
    max-height: none;
    overflow: visible;
  }
}
.main-nav__list--level3.main-nav__list--visible {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease-in-out;
}
.main-nav__page {
  position: relative;
}
.main-nav__page--level1 {
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .main-nav__page--level1 {
    max-width: 33.33%;
    flex-basis: 33.33%;
    margin-bottom: 70px;
    padding: 0 20px;
  }
}
@media (min-width: 1340px) {
  .main-nav__page--level1 {
    padding: 0 40px;
  }
}
@media (min-width: 1530px) {
  .main-nav__page--level1 {
    max-width: 25%;
    flex-basis: 25%;
  }
}
.main-nav__page--level2 {
  margin-bottom: 10px;
}
.main-nav__page--level3 {
  padding-left: 17px;
}
.main-nav__page--level3:before {
  content: "\f054";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  position: absolute;
  left: 0;
  top: 0;
}
.main-nav__link {
  color: #141432;
  display: block;
}
@media (min-width: 992px) {
  .main-nav__link {
    display: inline-block;
  }
}
.main-nav__link--disabled {
  cursor: default;
}
.main-nav__link--level1 {
  font-size: 1.0625rem;
  line-height: 1.5625rem;
  padding: 8px 60px 8px 20px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .main-nav__link--level1 {
    font-size: 1.375rem;
    line-height: 1.9375rem;
    margin-bottom: 15px;
    padding: 0;
  }
}
.main-nav__link--level2 {
  font-size: 0.9375rem;
  line-height: 1.4375rem;
  font-weight: 300;
}
@media (min-width: 992px) {
  .main-nav__link--level2 {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.main-nav__link--level3 {
  font-size: 0.8125rem;
  line-height: 1.3125rem;
  font-weight: 300;
}
@media (min-width: 992px) {
  .main-nav__link--level3 {
    font-size: 0.9375rem;
    line-height: 1.4375rem;
  }
}
.main-nav__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 1px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .main-nav__toggle {
    display: none;
  }
}
.main-nav__toggle:before {
  font-family: "Font Awesome 6 Pro", sans-serif;
  content: "\f078";
  font-weight: 300;
  font-size: 23px;
  transition: transform 0.2s ease;
}
.main-nav__toggle--open:before {
  content: "\f077";
}
.main-nav__toggle--level2 {
  top: -10px;
}
.main-nav__search {
  padding: 0 10px;
}

@media (max-width: 991.98px) {
  .small-nav {
    display: none;
  }
}
.small-nav__container {
  display: flex;
  flex-direction: column;
}
.small-nav__list {
  padding-left: 0;
  list-style: none;
}
.small-nav__list--level1 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .small-nav__list--level1 {
    display: flex;
    flex-wrap: wrap;
    min-height: 0;
    padding: 0;
    margin: 0 -20px;
  }
}
@media (min-width: 1530px) {
  .small-nav__list--level1 {
    margin: 0 -30px;
  }
}
.small-nav__list--level2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background-color: white;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.small-nav__page {
  position: relative;
}
.small-nav__page--level1 {
  padding: 10px 20px;
}
@media (min-width: 1530px) {
  .small-nav__page--level1 {
    padding: 10px 30px;
  }
}
.small-nav__page--level1:hover .small-nav__list--level2, .small-nav__page--level1:focus-visible .small-nav__list--level2 {
  display: block;
}
.small-nav__page--level2 {
  margin-bottom: 10px;
}
.small-nav__link {
  color: #141432;
  display: block;
}
@media (min-width: 992px) {
  .small-nav__link {
    display: inline-block;
  }
}
.small-nav__link--disabled {
  cursor: default;
}
.small-nav__link--level1 {
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.9375rem;
}
.small-nav__link--level2 {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.6875rem;
}

.nav {
  transition: 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .nav {
    opacity: 0;
    pointer-events: none;
  }
}
.nav__icon-wrap {
  width: var(--icon-dimension);
  height: var(--icon-dimension);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  position: relative;
  flex-shrink: 0;
  background-color: var(--primary-color);
}
.nav__icon-wrap:after {
  content: "";
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #141432;
  opacity: 0;
  position: absolute;
  transition: 0.3s ease-in-out;
}
.nav__title {
  color: white;
  white-space: nowrap;
  padding: 10px 20px 10px 40px;
  background-color: #141432;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
  min-width: 295px;
  display: none;
}
@media (min-width: 992px) {
  .nav__title {
    display: flex;
  }
}
.nav__icon {
  fill: white;
  transition: 0.3s ease-in-out;
  color: white;
  max-width: 23px;
  max-height: 23px;
  width: auto;
  height: auto;
}
@media (min-width: 992px) {
  .nav__icon {
    max-width: none;
    max-height: none;
  }
}
.nav__list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  position: relative;
}
@media (min-width: 992px) {
  .nav__list--level1 {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
}
.nav__page {
  position: relative;
  z-index: 20;
}
.nav__link {
  line-height: 1;
  font-weight: 300;
  display: flex;
  max-width: var(--icon-dimension);
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .nav__link {
    font-size: 1.1875rem;
    line-height: 1.6875rem;
  }
}
.nav__link .marked-text {
  font-weight: 500;
}
.nav__link:hover .nav__title, .nav__link:focus-visible .nav__title {
  opacity: 1;
  pointer-events: auto;
}
.nav__link:hover .nav__icon-wrap, .nav__link:focus-visible .nav__icon-wrap {
  background-color: white;
}
.nav__link:hover .nav__icon-wrap:after, .nav__link:focus-visible .nav__icon-wrap:after {
  opacity: 1;
}
.nav__link:hover .nav__icon-wrap .nav__icon, .nav__link:focus-visible .nav__icon-wrap .nav__icon {
  fill: #141432;
  color: #141432;
}
.nav__link.nav__link--current .nav__title, .nav__link.nav__link--active .nav__title {
  opacity: 1;
  pointer-events: auto;
}
.nav__link.nav__link--current .nav__icon-wrap, .nav__link.nav__link--active .nav__icon-wrap {
  background-color: white;
}
.nav__link.nav__link--current .nav__icon-wrap:after, .nav__link.nav__link--active .nav__icon-wrap:after {
  opacity: 1;
}
.nav__link.nav__link--current .nav__icon-wrap .nav__icon, .nav__link.nav__link--active .nav__icon-wrap .nav__icon {
  fill: #141432;
  color: #141432;
}
.nav__link.nav__link--current:not(:hover):not(:focus) .nav__title, .nav__link.nav__link--active:not(:hover):not(:focus) .nav__title {
  opacity: 0;
  pointer-events: none;
}
.nav__link--active .nav__icon {
  display: none;
}
.nav__link--active .nav__icon + .nav__icon {
  display: block;
}
.nav__link--active .nav__title {
  opacity: 0 !important;
  pointer-events: none !important;
}
.nav__toggle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .nav__toggle {
    display: none;
  }
}
.nav__toggle:before {
  font-family: "Font Awesome 6 Pro", sans-serif;
  content: "+";
  font-weight: 100;
  font-size: 30px;
  transition: transform 0.2s ease;
}
.nav__toggle--open:before {
  content: "\f068";
}

.site-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 200;
}
@media (min-width: 992px) {
  .site-nav {
    max-height: none;
    overflow: visible;
    position: static;
    width: auto;
    background-color: transparent;
  }
}
.site-nav--visible {
  max-height: 10000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}
.site-nav__container {
  --nav-container-padding-top: 70px;
  --nav-container-padding-bottom: 20px;
  padding: var(--nav-container-padding-top) 0 var(--nav-container-padding-bottom) 0;
}
@media (min-width: 992px) {
  .site-nav__container {
    padding: 0;
    margin: 0 -20px;
  }
}
.site-nav__list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  position: relative;
}
.site-nav__list--level1 {
  max-height: calc(100vh - var(--nav-container-padding-top) - var(--nav-container-padding-bottom));
  overflow: auto;
}
@media (min-width: 992px) {
  .site-nav__list--level1 {
    padding: 0;
    display: flex;
    max-height: none;
    overflow: visible;
  }
}
.site-nav__list--level2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s cubic-bezier(0, 1, 0, 1), padding 0.2s ease-in-out;
  margin-top: -10px;
  --p-margin-last: 10px;
}
@media (min-width: 992px) {
  .site-nav__list--level2 {
    overflow: visible;
    max-height: none;
    display: none;
    position: absolute;
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    padding: 10px 20px;
    min-width: 200px;
    margin: 0;
    --p-margin-last: 0;
    border-radius: 10px;
  }
}
.site-nav__list--visible {
  max-height: 10000px;
  transition: max-height 0.2s cubic-bezier(1, 0, 1, 0), padding 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .site-nav__list--visible {
    max-height: none;
  }
}
.site-nav__page {
  position: relative;
  z-index: 20;
}
@media (min-width: 992px) {
  .site-nav__page--level1:hover .site-nav__list--level2 {
    display: block;
  }
}
.site-nav__link {
  display: block;
  line-height: 1;
}
.site-nav__link--level1 {
  color: #141432;
  font-size: 1.125rem;
  padding: 15px 20px;
}
@media (min-width: 992px) {
  .site-nav__link--level1 {
    font-size: 1rem;
    padding: 15px;
    color: white;
  }
}
@media (min-width: 1340px) {
  .site-nav__link--level1 {
    font-size: 1.25rem;
    padding: 15px 20px;
  }
}
.site-nav__link--level1:hover, .site-nav__link--level1:focus-visible {
  color: #141432;
}
@media (min-width: 992px) {
  .site-nav__link--level1:hover, .site-nav__link--level1:focus-visible {
    color: white;
  }
}
.site-nav__link--level2 {
  color: #141432;
  padding: 7px 20px;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .site-nav__link--level2 {
    text-align: left;
    padding: 7px 0;
  }
}
.site-nav__link--level2:hover, .site-nav__link--level2:focus-visible {
  color: var(--primary-color);
}
.site-nav__toggle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .site-nav__toggle {
    display: none;
  }
}
.site-nav__toggle:before {
  font-family: "Font Awesome 6 Pro", sans-serif;
  content: "\f078";
  font-weight: 100;
  font-size: 24px;
  transition: transform 0.2s ease;
}
.site-nav__toggle--open:before {
  content: "\f077";
}

/* BEM elements */
.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;
  -webkit-clip-path: inset(50%) !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 #CCCCCC;
  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 #CCCCCC;
  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 #CCCCCC;
  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 #CCCCCC;
  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 #CCCCCC;
  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 #CCCCCC;
  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--single {
  height: auto;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0.375rem 0 0.375rem 0.75rem;
  white-space: normal;
  text-overflow: initial;
}
.select2-container .select2-selection--multiple {
  background-color: transparent;
  border: none !important;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
  border: none;
  border-radius: 1000px;
  padding: 2px 10px;
  font-size: 16px;
  background-color: white;
  display: flex;
  align-items: center;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove {
  font-size: 0;
  line-height: 0;
  margin-right: 10px;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove:before {
  content: "\e59b";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 400;
  color: #C81446;
  font-size: 12px;
  line-height: 1;
}
.select2-container--default .select2-selection--single {
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid #ced4da;
  border-radius: 0;
  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--single {
    transition: none;
  }
}
.select2-container--default .select2-selection--single:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(200, 20, 70, 0.25);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 400;
  line-height: 1.5;
}
.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--single .select2-selection__arrow {
  display: flex;
  align-items: center;
  padding: 0 7px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  --fa: "\f078";
  --fa--fa: "\f078\f078";
}
.select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  font-size: 18px;
}
.select2-container--default .select2-selection--placeholder .select2-selection__rendered {
  color: #A8A8A8;
}

.select2-results__option {
  min-height: 36px;
}

.slick-arrow {
  color: white;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 23px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .slick-arrow {
    width: 74px;
    height: 74px;
    font-size: 29px;
  }
}
.slick-arrow:hover {
  background-color: white;
  color: var(--primary-color);
}

.slick-dots {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  position: absolute;
  right: 50%;
  transform: translate(50%);
}
.slick-dots li {
  margin: 0 10px;
}
.slick-dots li button {
  border: 0;
  font-size: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  display: block;
  padding: 0;
}

.absolute-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1530px) {
  .absolute-container {
    width: 1530px;
  }
}

.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 20px 20px 0;
}

.metanav {
  padding-left: 0;
  list-style: none;
  margin-bottom: -10px;
  text-align: right;
}
.metanav__link {
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.metanav__page {
  padding: 0 10px;
}

.socials {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.socials--site-footer {
  margin-bottom: 0;
  justify-content: center;
}
.socials--site-footer .socials__link {
  width: 58px;
  height: 58px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 10px;
}
@media (min-width: 768px) {
  .socials--site-footer .socials__link {
    width: 74px;
    height: 74px;
  }
}
.socials--site-footer .socials__link:hover, .socials--site-footer .socials__link:focus-visible {
  background-color: white;
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .socials--site-footer .socials__fa-icon {
    font-size: 22px;
  }
}
.socials__link {
  display: block;
  padding: 0 10px;
  color: white;
}
.socials__fa-icon {
  font-size: 22px;
}

.header--open-nav .navbar-wrap {
  overflow: auto visible;
}

.navbar-wrap {
  position: fixed;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  left: 0;
  top: 0;
  max-height: 100vh;
  z-index: 600;
  overflow: hidden;
  width: 600px;
  pointer-events: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 992px) {
  .navbar-wrap {
    overflow: auto visible;
  }
}
.navbar-wrap > * {
  pointer-events: auto;
}

.navbar {
  max-width: var(--icon-dimension);
  transition: 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .navbar {
    padding-bottom: 90px;
    background-color: var(--primary-color);
  }
}
.navbar--open {
  max-width: 1000px;
}
.navbar .lang-menu {
  display: none;
}
@media (min-width: 992px) {
  .navbar .lang-menu {
    display: block;
  }
}

.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: #C81446;
  color: white;
  font-size: 32px;
  transition: 0.3s ease-in-out;
}
.button-bar__item:hover, .button-bar__item:focus-visible {
  background-color: white;
  color: #C81446;
}

.lang-menu {
  margin-top: 30px;
}
.lang-menu__items {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  width: var(--icon-dimension);
}
.lang-menu__item {
  text-transform: uppercase;
  padding: 0 5px;
  position: relative;
  border-right: 1px solid white;
  line-height: 1.375rem;
}
.lang-menu__item:last-child {
  border: none;
}
.lang-menu__link {
  color: white;
  font-weight: 300;
}
.lang-menu__link--active {
  pointer-events: none;
  font-weight: 600;
}
.lang-menu__link--disabled {
  opacity: 0.7;
  pointer-events: none;
}

.nav-toggle {
  display: flex;
  cursor: pointer;
}
.nav-toggle--active .nav__title {
  opacity: 1;
  pointer-events: auto;
}
.nav-toggle--active .nav__icon-wrap {
  background-color: white;
}
.nav-toggle--active .nav__icon-wrap:after {
  opacity: 1;
}
.nav-toggle--active .nav__icon-wrap .nav__icon {
  fill: #141432;
  color: #141432;
}
.nav-toggle--active .nav__title {
  opacity: 0 !important;
  pointer-events: none !important;
}
.nav-toggle--active .nav-toggle__icon--close {
  display: block;
}
.nav-toggle--active .nav-toggle__icon--open {
  display: none;
}
.nav-toggle__icon {
  font-size: 28px;
}
@media (min-width: 992px) {
  .nav-toggle__icon {
    font-size: 32px;
  }
}
.nav-toggle__icon--close {
  display: none;
}
.nav-toggle__icon--open {
  width: 28px;
  height: auto;
}
@media (min-width: 992px) {
  .nav-toggle__icon--open {
    width: 37px;
  }
}

.site-nav-toggle {
  font-size: 32px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #141432;
  z-index: 400;
  border-radius: 50%;
  justify-content: center;
  position: absolute;
  left: 20px;
}
@media (min-width: 992px) {
  .site-nav-toggle {
    font-size: 42px;
    width: 76px;
    height: 76px;
    left: 0;
  }
}
.site-nav-toggle:hover, .site-nav-toggle:focus-visible {
  color: #141432;
}
.site-nav-toggle--fixed {
  position: fixed;
  border-radius: 50%;
  background-color: white;
  left: auto;
}
.site-nav-toggle__icon {
  width: 32px;
  height: auto;
}
@media (min-width: 992px) {
  .site-nav-toggle__icon {
    width: 50px;
  }
}

.two-click__preview {
  background: #A3B7CB;
  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);
}

.ajax-popup {
  background-color: white;
  border-radius: 15px;
  padding: 60px 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  max-width: 990px;
  margin: 50px auto;
  position: relative;
}
@media (min-width: 992px) {
  .ajax-popup {
    padding: 60px 125px 95px;
    margin: 100px auto;
  }
}
.ajax-popup--small {
  max-width: 525px;
  padding: 60px 20px;
}
.ajax-popup__close {
  top: 30px;
  right: 30px;
  opacity: 1;
  cursor: pointer;
  font-size: 22px;
}
.ajax-popup__close:active {
  top: 30px;
}

.searchbox {
  max-width: 610px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.searchbox__input-wrap {
  background-color: rgba(163, 183, 203, 0.17);
  padding: 15px 30px;
  border-radius: 500px;
  width: 100%;
}
@media (min-width: 768px) {
  .searchbox__input-wrap {
    padding-right: 195px;
    padding-left: 40px;
  }
}
.searchbox__header {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.9375rem;
  text-transform: uppercase;
}
.searchbox__input {
  background-color: transparent;
  padding: 0;
  border: none;
  width: 100%;
  outline: none;
}
.searchbox__input::-moz-placeholder {
  color: #A8A8A8;
}
.searchbox__input::placeholder {
  color: #A8A8A8;
}
.searchbox__submit {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .searchbox__submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
}

.search-toggle {
  cursor: pointer;
}

.search-overlay {
  position: fixed;
  max-height: 100vh;
  overflow: auto;
  left: 0;
  right: 0;
  top: 0;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
  height: var(--header-min-height);
  min-height: 100vh;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  padding: 15px 0 100px var(--icon-dimension);
  z-index: 500;
}
@media (min-width: 992px) {
  .search-overlay {
    padding: 40px 0 100px;
  }
}
.search-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}
.search-overlay .header__logo-link {
  margin-right: 20px;
}
@media (min-width: 992px) {
  .search-overlay .header__logo-link {
    margin-right: 0;
  }
}
.search-overlay .header__logo-link-wrap {
  margin-bottom: 45px;
}
@media (min-width: 992px) {
  .search-overlay .header__logo-link-wrap {
    margin-right: 0;
    margin-bottom: 130px;
  }
}
.search-overlay .lang-menu {
  position: absolute;
  left: 80px;
  z-index: 100;
  top: 20px;
  margin-top: 0;
}
@media (min-width: 992px) {
  .search-overlay .lang-menu {
    display: none;
  }
}
.search-overlay .lang-menu__item {
  border-color: #141432;
}
.search-overlay .lang-menu__link {
  color: #141432;
}
.search-overlay__header {
  text-align: center;
  margin-bottom: 40px;
}
.search-overlay__content {
  max-width: 1100px;
  margin: 70px auto 0;
}
@media (min-width: 992px) {
  .search-overlay__content {
    margin-top: 140px;
  }
}
.search-overlay__container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .search-overlay__container {
    max-width: none;
    padding: 0;
  }
}

/* Styling for specific pages */
@media (min-width: 992px) {
  .subpage .header__logo {
    max-width: 200px;
  }
}

/* Mask Elements */
.slider {
  position: relative;
}
.slider .slick-dots {
  bottom: 30px;
}
.slider .slick-dots li.slick-active button {
  background-color: #C81446;
}
.slider .slick-dots li button {
  background-color: rgba(255, 255, 255, 0.5);
}
.slider__slick {
  display: none;
}
.slider__slick.slick-initialized {
  display: block;
}
.slider__image {
  width: auto !important;
  height: 350px;
}
@media (min-width: 768px) {
  .slider__image {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .slider__image {
    height: 640px;
  }
}
.slider__item {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.arrow-container .slick-arrow {
  position: absolute;
  z-index: 150;
}
.arrow-container .slick-next {
  right: 0;
}
.arrow-container .slick-prev {
  left: 0;
}

.isotope-center {
  margin: 0 auto;
  width: 300px;
  max-width: 100%;
}
@media screen and (min-width: 670px) {
  .isotope-center {
    width: 630px;
  }
}
@media screen and (min-width: 1000px) {
  .isotope-center {
    width: 960px;
  }
}
@media screen and (min-width: 1330px) {
  .isotope-center {
    width: 1290px;
  }
}

.gallery {
  margin: -15px;
}
.gallery__item {
  margin: 15px;
}
.gallery__image {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 670px) {
  .gallery__image {
    max-width: none;
  }
}

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

.map__placeholder-text, .map__placeholder:before, .map__placeholder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.map {
  width: 1080px;
  max-width: 100%;
  height: 300px;
  margin: 0 auto 40px;
  position: relative;
}
@media (min-width: 992px) {
  .map {
    height: 530px;
  }
}
.map__placeholder {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.map__placeholder:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .map__placeholder:before {
    opacity: 0;
  }
}
.map__placeholder:hover:before {
  opacity: 1;
}
.map__placeholder:hover .map__placeholder-text {
  opacity: 1;
}
.map__placeholder-text {
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 440px;
  max-width: 100%;
  padding: 20px;
  margin: auto;
  color: #fff;
  text-align: center;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .map__placeholder-text {
    font-size: 1.5rem;
    opacity: 0;
  }
}

.accordion {
  max-width: 990px;
  margin: 0 auto;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  padding: 20px 0;
}
@media (min-width: 768px) {
  .accordion {
    padding: 40px 0;
  }
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  cursor: pointer;
  font-weight: bold;
}
@media (min-width: 768px) {
  .accordion__header {
    padding: 0 50px;
  }
}
.accordion__element {
  background-color: white;
  transition: 0.3s ease-in-out;
}
.accordion__element--active {
  background-color: rgba(163, 183, 203, 0.15);
}
.accordion__element--active .accordion__title, .accordion__element--active + .accordion__element .accordion__title {
  border: none;
}
.accordion__element:first-child .accordion__title {
  border: none;
}
.accordion__title {
  flex-grow: 1;
  padding: 15px 0;
  margin-right: 20px;
  border-top: 1px solid #CCCCCC;
}
@media (min-width: 768px) {
  .accordion__title {
    padding: 40px 0;
  }
}
.accordion__toggle {
  transform-origin: center center;
  transform: rotateZ(0deg);
  transition: transform 0.4s ease;
  display: flex;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: white;
  align-items: center;
  font-size: 23px;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}
@media (min-width: 768px) {
  .accordion__toggle {
    width: 58px;
    height: 58px;
  }
}
.accordion__content-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s cubic-bezier(0, 1, 0, 1);
}
.accordion__content {
  padding: 10px 20px 40px;
}
@media (min-width: 768px) {
  .accordion__content {
    padding: 10px 50px 70px;
  }
}
.accordion__check:checked ~ .accordion__header .accordion__toggle {
  transform: rotateZ(180deg);
  background-color: #141432;
}
.accordion__check:checked ~ .accordion__content-wrap {
  max-height: 50000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.link-tiles {
  padding: 20px 10px;
  margin: -20px -10px;
}
.link-tiles--logos .link-tiles__items {
  flex-wrap: wrap;
}
.link-tiles--logos .link-tiles__item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  min-height: 150px;
  padding: 40px;
}
@media (min-width: 768px) {
  .link-tiles--logos .link-tiles__item {
    padding: 60px 90px;
  }
}
.link-tiles--logos .link-tiles__item:after {
  content: none;
}
.link-tiles--logos .link-tiles__item:hover, .link-tiles--logos .link-tiles__item:focus-visible {
  background: white;
}
.link-tiles--logos .link-tiles__item:hover .link-tiles__logo, .link-tiles--logos .link-tiles__item:focus-visible .link-tiles__logo {
  filter: grayscale(0);
}
.link-tiles--logos .link-tiles__logo {
  max-height: 120px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  transition: 0.3s ease-in-out;
  -o-object-fit: contain;
     object-fit: contain;
}
.link-tiles--logos .link-tiles__item-wrap {
  max-width: 100%;
  flex-basis: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .link-tiles--logos .link-tiles__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 1340px) {
  .link-tiles--logos .link-tiles__item-wrap {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}
.link-tiles--downloads .link-tiles__items {
  flex-wrap: wrap;
  margin-bottom: -50px;
}
.link-tiles--downloads .link-tiles__item-wrap {
  max-width: 100%;
  flex-basis: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .link-tiles--downloads .link-tiles__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 1530px) {
  .link-tiles--downloads .link-tiles__item-wrap {
    max-width: 25%;
    flex-basis: 25%;
  }
}
.link-tiles--downloads .link-tiles__item {
  padding: 20px 70px 30px 20px;
}
.link-tiles--downloads .link-tiles__item:hover, .link-tiles--downloads .link-tiles__item:focus-visible {
  transform: translateY(10px);
}
.link-tiles--downloads .link-tiles__item:after {
  content: "\f56d";
}
.link-tiles--downloads .link-tiles__text {
  font-size: 1rem;
  line-height: 1.375rem;
}
@media (min-width: 992px) {
  .link-tiles--two-column .link-tiles__item-wrap, .link-tiles--two-column-external .link-tiles__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
  }
}
.link-tiles--two-column-external .link-tiles__item-wrap, .link-tiles--four-column-links .link-tiles__item-wrap {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .link-tiles--two-column-external .link-tiles__item, .link-tiles--four-column-links .link-tiles__item {
    padding-right: 120px;
  }
}
.link-tiles--two-column-external .link-tiles__item:after, .link-tiles--four-column-links .link-tiles__item:after {
  content: "\f08e";
}
@media (min-width: 768px) {
  .link-tiles--two-column-external .link-tiles__item:after, .link-tiles--four-column-links .link-tiles__item:after {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    font-size: 28px;
  }
}
.link-tiles--four-column-links .link-tiles__item {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.link-tiles--four-column-links .link-tiles__item:after {
  content: "\f061";
  width: 50px;
  height: 50px;
  font-size: 28px;
}
@media (max-width: 767.98px) {
  .link-tiles--four-column-links .link-tiles__item:after {
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}
.link-tiles__image {
  margin-top: -60px;
  margin-bottom: 20px;
  background-color: white;
}
.link-tiles__items {
  display: flex;
  margin-bottom: -30px;
}
@media (min-width: 992px) {
  .link-tiles__items--centered {
    justify-content: center;
  }
  .link-tiles__items--centered.swiper-wrapper {
    padding-left: 10px;
  }
}
.link-tiles__item-wrap {
  padding: 10px 0 30px;
  height: auto !important;
}
.link-tiles__header {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .link-tiles__header {
    font-size: 22px;
    line-height: 32px;
  }
}
.link-tiles__header--no-content {
  margin-bottom: 0;
}
.link-tiles__item {
  padding: 30px 20px 80px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
  background-color: white;
  border-radius: 15px;
  transition: 0.3s ease-in-out;
  position: relative;
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Teaser_Overlay.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  display: block;
  color: #141432;
}
@media (min-width: 768px) {
  .link-tiles__item {
    padding: 30px 40px 80px;
  }
}
.link-tiles__item:hover, .link-tiles__item:focus-visible {
  color: white;
  background-color: var(--primary-color);
}
@media (min-width: 768px) {
  .link-tiles__item:hover, .link-tiles__item:focus-visible {
    transform: translateY(15px);
  }
}
.link-tiles__item:hover .link-tiles__icon-wrap, .link-tiles__item:focus-visible .link-tiles__icon-wrap {
  border-color: white;
}
.link-tiles__item:hover li:before, .link-tiles__item:focus-visible li:before {
  color: white !important;
}
.link-tiles__item:after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 400;
  color: var(--primary-color);
  background-color: white;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  font-size: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-tiles__item--no-link:after {
  content: none;
}
.link-tiles__text {
  font-weight: 400;
}
.link-tiles__icon-wrap {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1px solid #CCCCCC;
  margin-bottom: 25px;
  transition: 0.3s ease-in-out;
}
.link-tiles__icon {
  width: 35px;
  height: auto;
}
.link-tiles__arrows {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .link-tiles__arrows {
    margin-top: 50px;
  }
}
.link-tiles__arrow {
  margin: 0 7px;
}
@media (min-width: 768px) {
  .link-tiles__arrow {
    margin: 0 10px;
  }
}

@media (min-width: 992px) {
  .slider-gallery__item {
    display: flex;
    margin: 0 -10px;
  }
}
.slider-gallery__image-group {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -5px -10px;
}
@media (min-width: 768px) {
  .slider-gallery__image-group {
    margin: 20px -10px -20px;
  }
}
@media (min-width: 992px) {
  .slider-gallery__image-group {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .slider-gallery__col {
    max-width: 50%;
    flex-basis: 50%;
    padding: 0 10px;
  }
}
.slider-gallery__image-wrap {
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .slider-gallery__image-wrap {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
.slider-gallery__image {
  border-radius: 15px;
}
.slider-gallery__image--placeholder {
  width: 100%;
  padding-bottom: 74.5%;
  background-color: var(--primary-color);
}
.slider-gallery__arrows {
  display: flex;
}
.slider-gallery__arrow {
  margin-right: 20px;
}
.slider-gallery__controls {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1530px) {
  .help-tiles {
    display: flex;
    margin: 0 -10px;
  }
}
@media (min-width: 1530px) {
  .help-tiles__items-wrap {
    max-width: 67.5%;
    flex-basis: 67.5%;
    padding: 0 10px;
  }
}
.help-tiles__header {
  margin-bottom: 0;
}
.help-tiles__text {
  margin-top: 10px;
}
@media (min-width: 1530px) {
  .help-tiles__sidebar {
    max-width: 32.5%;
    flex-basis: 32.5%;
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  .help-tiles__items {
    display: flex;
    flex-wrap: wrap;
  }
}
.help-tiles__item {
  display: flex;
  padding: 30px 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  color: #141432;
  font-weight: 300;
  position: relative;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .help-tiles__item {
    padding: 30px 70px 30px 40px;
  }
}
@media (min-width: 992px) {
  .help-tiles__item {
    flex-direction: row;
  }
}
.help-tiles__item:hover, .help-tiles__item:focus-visible {
  color: #141432;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.help-tiles__item:hover:after, .help-tiles__item:focus-visible:after {
  transform: translateX(5px);
}
.help-tiles__item:after {
  content: "\f061";
  font-weight: 400;
  font-family: "Font Awesome 6 Pro", sans-serif;
  margin-left: 10px;
  font-size: 1.45em;
  transition: 0.3s ease-in-out;
  color: var(--primary-color);
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.help-tiles__icon {
  margin-bottom: 20px;
  flex-shrink: 0;
  width: 50px;
  height: auto;
  fill: var(--primary-color);
}
@media (min-width: 992px) {
  .help-tiles__icon {
    margin-bottom: 0;
    margin-right: 30px;
    align-self: start;
    width: 50px;
    height: 50px;
  }
}
.help-tiles__item-wrap {
  margin-bottom: 20px;
  max-width: 100%;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .help-tiles__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
    padding: 0 10px;
  }
}
.help-tiles__news, .help-tiles__footer {
  padding: 35px 20px;
  background-color: rgba(163, 183, 203, 0.15);
  border-radius: 15px;
  min-height: 239px;
}
@media (min-width: 768px) {
  .help-tiles__news, .help-tiles__footer {
    padding: 50px 40px 35px;
  }
}
.help-tiles__news {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .help-tiles__news {
    margin-bottom: 40px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1530px) {
  .help-tiles__news {
    min-height: 519px;
  }
}
.help-tiles__news h3, .help-tiles__news .h3 {
  font-weight: 300;
  margin-bottom: 30px;
}
.help-tiles__footer {
  --p-margin: 0;
}
.help-tiles__footer-button {
  margin-top: 30px;
}
.help-tiles__overline {
  font-weight: 400;
  margin-bottom: 10px;
}
.help-tiles__item-location {
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: var(--primary-color);
}
.help-tiles__item-location-icon {
  margin-right: 10px;
  fill: var(--primary-color);
}

.topics__items {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0 -30px;
}
.topics__item {
  padding: 0 10px;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .topics__item {
    font-size: 0.875rem;
    line-height: 1.375rem;
    margin-bottom: 15px;
  }
  .topics__item .button {
    padding: 10px 20px;
  }
}

@media screen and (min-width: 1940px) {
  .teaser {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
  }
}
@media (min-width: 1530px) {
  .teaser {
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1700px) {
  .teaser {
    justify-content: flex-start;
  }
}
@media (min-width: 1530px) {
  .teaser--image-left {
    flex-direction: row;
  }
}
.teaser--image-left .teaser__image {
  -webkit-clip-path: url("#svg-clip-2");
          clip-path: url("#svg-clip-2");
}
@media (max-width: 1529.98px) {
  .teaser--image-left .teaser__image {
    margin-left: 0;
    margin-right: auto;
  }
}
@media (min-width: 1530px) {
  .teaser--image-left .teaser__content {
    padding-right: 40px;
    padding-left: 0;
    margin: 0 0 0 145px;
    max-width: none;
  }
}
.teaser__content {
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 1530px) {
  .teaser__content {
    padding-top: 80px;
    padding-left: 40px;
    padding-right: 0;
    margin-right: 145px;
    width: 775px;
  }
}
.teaser__subheader {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.teaser__header {
  margin-bottom: 40px;
}
.teaser__button {
  margin-top: 50px;
}
.teaser__image {
  -webkit-clip-path: url("#svg-clip");
          clip-path: url("#svg-clip");
  align-self: flex-start;
  margin-left: auto;
  display: block;
  margin-bottom: 30px;
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .teaser__image {
    width: auto;
  }
}
@media (min-width: 1530px) {
  .teaser__image {
    margin-bottom: 0;
    flex-grow: 1;
    margin-left: 0;
  }
}
@media screen and (min-width: 1340px) {
  .teaser__image {
    width: 600px;
  }
}
@media (min-width: 1530px) {
  .teaser__image {
    width: auto;
  }
}
@media screen and (min-width: 1700px) {
  .teaser__image {
    flex-grow: 0;
  }
}
@media screen and (min-width: 1940px) {
  .teaser__image {
    -webkit-clip-path: none !important;
            clip-path: none !important;
    border-radius: 15px !important;
  }
}
.teaser__contact {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .teaser__contact {
    margin-top: 50px;
  }
}

.container .text-intro {
  padding: 0;
  max-width: 990px;
}

.text-intro {
  max-width: 1030px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.text-intro--align-left {
  text-align: left;
  max-width: none;
}
.text-intro__header {
  margin-bottom: 40px;
}

@media (min-width: 1530px) {
  .content-teaser {
    display: flex;
  }
}
.content-teaser--image-right {
  flex-direction: row-reverse;
}
@media (min-width: 1530px) {
  .content-teaser--image-right .content-teaser__content {
    padding-left: 0;
    padding-right: 125px;
  }
}
@media (min-width: 1530px) {
  .content-teaser__content {
    padding-left: 125px;
    padding-top: 30px;
  }
}
.content-teaser__image-wrap {
  flex-shrink: 0;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .content-teaser__image-wrap {
    margin-bottom: 40px;
  }
}
@media (min-width: 1530px) {
  .content-teaser__image-wrap {
    margin-bottom: 0;
  }
}
.content-teaser__image {
  border-radius: 15px;
}
.content-teaser__footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .content-teaser__footer {
    margin-top: 50px;
    display: block;
  }
}
.content-teaser__download {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .content-teaser__download {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .content-teaser__button {
    margin-right: 50px;
  }
}

.quote {
  padding: 120px 20px 110px;
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/netzkontor_oval_quote.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
}
@media screen and (min-width: 1940px) {
  .quote {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
  }
}
@media (min-width: 768px) {
  .quote {
    padding: 150px 40px 140px;
  }
}
@media (min-width: 992px) {
  .quote {
    padding: 225px 100px 130px;
    background-size: 1705px;
    min-height: 900px;
  }
}
@media (min-width: 1530px) {
  .quote {
    background-position: -1px top;
    padding: 225px 190px 100px 400px;
  }
}
.quote:after {
  line-height: 1;
  position: absolute;
  color: white;
  font-weight: 600;
  pointer-events: none;
  font-size: 270px;
  bottom: 90px;
  left: 30px;
}
@media (min-width: 768px) {
  .quote:after {
    content: "„";
  }
}
@media (min-width: 992px) {
  .quote:after {
    font-size: 400px;
    bottom: 120px;
    left: 70px;
  }
}
@media (min-width: 1530px) {
  .quote:after {
    font-size: 533px;
    bottom: 160px;
    left: 200px;
  }
}
.quote__content {
  max-width: 1115px;
  width: 100%;
  text-align: center;
  color: white;
  margin: 0 auto;
}
@media (min-width: 1530px) {
  .quote__content {
    margin: 0;
  }
}
.quote__content a {
  color: white;
}
.quote__text {
  font-size: 1.375rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .quote__text {
    font-size: 2rem;
    line-height: 2.6875rem;
  }
}
.quote__author {
  font-size: 14px;
  margin-top: 40px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .quote__author {
    margin-top: 70px;
  }
}

.link-list__item {
  display: block;
  margin-bottom: 30px;
}
.link-list__item:last-child {
  margin-bottom: 0;
}
.link-list__item:hover .link-list__item-header:after, .link-list__item:focus-visible .link-list__item-header:after {
  transform: translateY(3px) translateX(5px);
}
.link-list__item-header {
  margin-bottom: 0;
}
.link-list__item-header:after {
  content: "\f061";
  font-weight: 400;
  font-family: "Font Awesome 6 Pro", sans-serif;
  margin-left: 10px;
  font-size: 1.45em;
  transition: 0.3s ease-in-out;
  color: var(--primary-color);
  transform: translateY(3px);
  display: inline-block;
}

.statistics {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .statistics {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin-bottom: -50px;
    align-items: flex-start;
  }
}
.statistics__item {
  max-width: 190px;
  text-align: center;
  margin-bottom: 50px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .statistics__item {
    margin: 0 37px 50px;
  }
}
.statistics__icon-wrap {
  margin-bottom: 15px;
}
.statistics__value {
  margin-bottom: 5px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .statistics__value {
    font-size: 1.625rem;
    line-height: 1.875rem;
    margin-bottom: 10px;
  }
}
.statistics__title {
  font-size: 1rem;
  line-height: 1.4375rem;
}
@media (min-width: 768px) {
  .statistics__title {
    font-size: 1.3125rem;
    line-height: 1.8125rem;
  }
}

.teaser-slider {
  padding: 0 10px;
  margin: 0 -10px;
}
@media (min-width: 992px) {
  .teaser-slider__item:not(:hover):not(:focus) .list-article__content {
    background-color: transparent;
    box-shadow: none;
  }
}
.teaser-slider__item .list-article__header {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .teaser-slider__item .list-article__header {
    min-height: 90px;
  }
}
@media (min-width: 992px) {
  .teaser-slider__item .list-article__header {
    min-height: 110px;
  }
}
.teaser-slider__item .list-article__content {
  padding: 20px 20px 30px;
}
@media (min-width: 992px) {
  .teaser-slider__item .list-article__content {
    padding: 40px 40px 50px;
  }
}
.teaser-slider__item .list-article__link, .teaser-slider__item .list-event__link {
  text-align: left;
}

.icon-teaser-slider {
  margin: -20px;
  padding: 20px 20px;
}
.icon-teaser-slider__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}
.icon-teaser-slider__items .help-tiles__item-wrap {
  max-width: 100%;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .icon-teaser-slider__items .help-tiles__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 1530px) {
  .icon-teaser-slider__items .help-tiles__item-wrap {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}
.icon-teaser-slider .swiper-wrapper .help-tiles__item-wrap {
  max-width: none;
  flex-basis: auto;
  margin: 0;
  padding: 0;
}
.icon-teaser-slider .help-tiles__item {
  box-shadow: none;
  padding: 30px 70px 70px 30px;
}
@media (min-width: 992px) {
  .icon-teaser-slider .help-tiles__item {
    padding-top: 50px;
  }
}
.icon-teaser-slider .help-tiles__item:hover, .icon-teaser-slider .help-tiles__item:focus-visible {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
}
.icon-teaser-slider .help-tiles__item:not(:hover):not(:focus) {
  background-color: #F5F5F5;
}
@media (min-width: 992px) {
  .icon-teaser-slider .help-tiles__icon {
    align-self: center;
  }
}

.page-intro {
  overflow: hidden;
}
@media screen and (min-width: 1940px) {
  .page-intro {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
  }
}
@media (min-width: 768px) {
  .page-intro {
    display: flex;
    overflow: visible;
  }
}
.page-intro__image-outer-wrap {
  position: relative;
  flex-shrink: 0;
  width: 360px;
  height: 360px;
  padding-right: 10px;
  padding-bottom: 10px;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .page-intro__image-outer-wrap {
    max-width: 60vw;
    max-height: 60vw;
    padding-bottom: 4vw;
    padding-right: 4vw;
    width: 1100px;
    height: 1100px;
    margin: 0 0 0 -130px;
  }
}
@media (min-width: 1530px) {
  .page-intro__image-outer-wrap {
    padding-bottom: 96px;
    padding-right: 96px;
  }
}
.page-intro__image-outer-wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -20px;
  -webkit-clip-path: url("#svg-clip-3");
          clip-path: url("#svg-clip-3");
  background-color: #F5F5F5;
}
@media (min-width: 768px) {
  .page-intro__image-outer-wrap:before {
    right: 1vw;
  }
}
@media (min-width: 1530px) {
  .page-intro__image-outer-wrap:before {
    right: 40px;
  }
}
.page-intro__image-outer-wrap--oval {
  padding: 0;
}
@media (max-width: 767.98px) {
  .page-intro__image-outer-wrap--oval {
    margin-left: 0;
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .page-intro__image-outer-wrap--oval {
    width: 1100px;
    height: 1100px;
    margin-bottom: 0;
  }
}
.page-intro__image-outer-wrap--oval:before {
  -webkit-clip-path: url("#svg-clip-5");
          clip-path: url("#svg-clip-5");
  left: 0;
  top: 30px;
  right: auto;
}
@media (min-width: 768px) {
  .page-intro__image-outer-wrap--oval:before {
    left: 0;
    top: 5.5vw;
  }
}
.page-intro__image-outer-wrap--oval .page-intro__image-wrap {
  -webkit-clip-path: url("#svg-clip-5");
          clip-path: url("#svg-clip-5");
}
.page-intro__image-wrap {
  -webkit-clip-path: url("#svg-clip-3");
          clip-path: url("#svg-clip-3");
  position: relative;
  width: 100%;
  height: 100%;
}
.page-intro__image-wrap:not(.page-intro__image-wrap--no-overlay):after {
  content: "";
  position: absolute;
  background: transparent linear-gradient(245deg, var(--primary-color) 0%, rgba(20, 20, 50, 0.69) 100%);
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.page-intro__image {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-intro__content {
  max-width: 540px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-intro__content {
    margin-left: 60px;
    padding: 60px 40px 0 0;
    max-width: 580px;
  }
}
@media (min-width: 1340px) {
  .page-intro__content {
    margin-left: 120px;
    padding-top: 200px;
  }
}
@media (min-width: 992px) {
  .page-intro__header {
    margin-bottom: 70px;
  }
}
.page-intro__button {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-intro__button {
    margin-top: 50px;
  }
}

.slider-tiles {
  overflow: hidden;
}
.slider-tiles__container {
  display: flex;
  flex-wrap: wrap;
}
.slider-tiles__content {
  max-width: 100%;
  flex-basis: 100%;
  margin-bottom: 30px;
}
@media (min-width: 1340px) {
  .slider-tiles__content {
    max-width: 33.33%;
    flex-basis: 33.33%;
    padding-top: 110px;
    padding-right: 40px;
    margin-bottom: 0;
  }
}
@media (min-width: 1530px) {
  .slider-tiles__content {
    padding-right: 145px;
  }
}
.slider-tiles__slides-wrap {
  max-width: 100%;
  flex-basis: 100%;
}
@media (min-width: 1340px) {
  .slider-tiles__slides-wrap {
    max-width: 66.66%;
    flex-basis: 66.66%;
  }
}
.slider-tiles__slides {
  padding-right: 50vw;
  width: calc(100% + 50vw);
}
.slider-tiles__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.slider-tiles__button {
  margin-bottom: 20px;
}
.slider-tiles__button:first-child {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .slider-tiles__button:first-child {
    margin-top: 50px;
  }
}
.slider-tiles__slide {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.slider-tiles__slide:hover .slider-tiles__slide-text-wrap, .slider-tiles__slide:focus-visible .slider-tiles__slide-text-wrap {
  max-height: 500px;
  transition: 0.3s max-height cubic-bezier(1, 0, 1, 0);
}
.slider-tiles__slide:hover:before, .slider-tiles__slide:focus-visible:before {
  opacity: 0;
}
.slider-tiles__slide:hover:after, .slider-tiles__slide:focus-visible:after {
  opacity: 1;
}
.slider-tiles__slide:before, .slider-tiles__slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 50, 0) 0%, rgb(20, 20, 50) 100%);
  transition: 0.3s ease-in-out;
}
.slider-tiles__slide:after {
  opacity: 0;
  background: linear-gradient(180deg, rgba(20, 20, 50, 0.48) 0%, var(--primary-color) 100%);
}
.slider-tiles__slide-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: white;
  z-index: 5;
}
.slider-tiles__slide-header {
  color: white;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .slider-tiles__slide-text-wrap {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s max-height cubic-bezier(0, 1, 0, 1);
  }
}
.slider-tiles__slide-link {
  display: inline-flex;
  align-items: center;
  color: white;
  margin-top: 30px;
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
}
.slider-tiles__slide-link:after {
  content: "\f061";
  font-weight: 400;
  font-family: "Font Awesome 6 Pro", sans-serif;
  margin-left: 10px;
  font-size: 1.45em;
  transition: 0.3s ease-in-out;
  transform: translateY(-1px);
}
.slider-tiles__slide-link:hover:after, .slider-tiles__slide-link:focus-visible:after {
  transform: translateY(-1px) translateX(5px);
}
.slider-tiles__slide-link:after {
  transform: translateY(1px);
  display: inline-block;
}
.slider-tiles__slide-link:hover, .slider-tiles__slide-link:focus-visible {
  color: white;
}
.slider-tiles__slide-link:hover:after, .slider-tiles__slide-link:focus-visible:after {
  transform: translateY(1px) translateX(5px);
}

.contact-persons__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}
.contact-persons__placeholder-wrap {
  background-color: #F5F5F5;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-persons__image {
  width: 220px;
  height: 220px;
  margin-top: -110px;
  border-radius: 50%;
  border: 15px solid white;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
}
@media (min-width: 768px) {
  .contact-persons__image {
    width: 266px;
    height: 266px;
    margin-top: -133px;
    border: 29px solid white;
  }
}
.contact-persons__item-wrap {
  max-width: 100%;
  flex-basis: 100%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .contact-persons__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 1530px) {
  .contact-persons__item-wrap {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}
.contact-persons__item {
  background-color: #F5F5F5;
  border-radius: 20px;
  text-align: center;
  margin-top: 110px;
  margin-bottom: 40px;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .contact-persons__item {
    margin-top: 133px;
  }
}
.contact-persons__content {
  font-size: 1rem;
  line-height: 1.4375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 40px;
}
@media (min-width: 768px) {
  .contact-persons__content {
    padding: 20px 40px 80px;
  }
}
.contact-persons__header {
  margin-bottom: 10px;
}
.contact-persons__position {
  font-weight: 300;
  margin-bottom: 10px;
}
.contact-persons__head {
  margin-bottom: 30px;
}
.contact-persons__info {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-direction: column;
}
@media (min-width: 1530px) {
  .contact-persons__info {
    flex-direction: row;
    margin-bottom: 20px;
  }
}
.contact-persons__info-label {
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 1530px) {
  .contact-persons__info-label {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.contact-persons__info-icon {
  font-size: 30px;
  margin-right: 10px;
}
.contact-persons__footer {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .contact-persons__footer {
    margin-top: 45px;
  }
}
@media (min-width: 1530px) {
  .contact-persons__footer {
    margin-top: 65px;
  }
}
.contact-persons__footer--no-info {
  margin-top: 0;
}
.contact-persons__subheader {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact-persons__subheader {
    margin-bottom: 30px;
  }
}

/* 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-xml: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-xml .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-xml .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-xml .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-xml .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-xml .container-lg:not(.container-standalone), .container-xl .container-lg:not(.container-standalone), .container-fluid .container-xml:not(.container-standalone), .container-sm .container-xml:not(.container-standalone), .container-md .container-xml:not(.container-standalone), .container-lg .container-xml:not(.container-standalone), .container-xml .container-xml:not(.container-standalone), .container-xl .container-xml: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-xml .container-xl:not(.container-standalone), .container-xl .container-xl:not(.container-standalone) {
  padding-left: 0;
  padding-right: 0;
}

.grid-container--indent-left > .container > * {
  max-width: 900px;
}
.grid-container--padding-before-extra-small {
  padding-top: 20px;
}
.grid-container--padding-after-extra-small {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .grid-container--padding-before-extra-small {
    padding-top: 50px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-extra-small {
    padding-bottom: 50px;
  }
}
.grid-container--padding-before-small {
  padding-top: 30px;
}
.grid-container--padding-after-small {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .grid-container--padding-before-small {
    padding-top: 70px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-small {
    padding-bottom: 70px;
  }
}
.grid-container--padding-before-medium {
  padding-top: 40px;
}
.grid-container--padding-after-medium {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .grid-container--padding-before-medium {
    padding-top: 90px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-medium {
    padding-bottom: 90px;
  }
}
.grid-container--padding-before-large {
  padding-top: 50px;
}
.grid-container--padding-after-large {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .grid-container--padding-before-large {
    padding-top: 120px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-large {
    padding-bottom: 120px;
  }
}
.grid-container--padding-before-extra-large {
  padding-top: 60px;
}
.grid-container--padding-after-extra-large {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .grid-container--padding-before-extra-large {
    padding-top: 150px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-extra-large {
    padding-bottom: 150px;
  }
}
.grid-container--background-white {
  background-color: white;
  display: flow-root;
}
.grid-container--background-light {
  background-color: #F5F5F5;
  display: flow-root;
}
.grid-container--background-dark {
  background-color: #141432;
  display: flow-root;
}
.grid-container--background-dark {
  color: white;
}
.grid-container--background-dark h1, .grid-container--background-dark .h1, .grid-container--background-dark h2, .grid-container--background-dark .h2, .grid-container--background-dark h3, .grid-container--background-dark .h3, .grid-container--background-dark h4, .grid-container--background-dark .accordion__header, .grid-container--background-dark .h4, .grid-container--background-dark h5, .grid-container--background-dark .h5, .grid-container--background-dark h6, .grid-container--background-dark .h6 {
  color: white;
}
.grid-container--background-dark a {
  color: white;
}
.grid-container--background-dark .button--outline-primary {
  border-color: white;
  color: white;
}
.grid-container--background-dark .button--outline-primary:hover, .grid-container--background-dark .button--outline-primary:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.grid-container--wave {
  -webkit-clip-path: url(#svg-clip-4-mobile);
          clip-path: url(#svg-clip-4-mobile);
  padding-top: 240px;
  padding-bottom: 120px;
  margin-top: -90px;
}
@media (min-width: 768px) {
  .grid-container--wave {
    -webkit-clip-path: url(#svg-clip-4-tablet);
            clip-path: url(#svg-clip-4-tablet);
    padding-top: 330px;
    margin-top: -200px;
  }
}
@media (min-width: 1530px) {
  .grid-container--wave {
    padding-top: 500px;
    padding-bottom: 200px;
    margin-top: -300px;
    -webkit-clip-path: url(#svg-clip-4);
            clip-path: url(#svg-clip-4);
  }
}

/* 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;
}
.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__slides {
  padding: 0 10px;
  margin: 0 -10px;
  width: 100%;
}
.news-slider__header {
  margin-left: auto;
  text-align: right;
  max-width: 320px;
}
@media (min-width: 992px) {
  .news-slider__header {
    max-width: 500px;
    margin-bottom: 80px;
  }
}
.news-slider__bg-area {
  fill: var(--primary-color);
  height: auto;
  position: absolute;
  top: 0;
  z-index: -1;
  right: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .news-slider__bg-area {
    width: 665px;
    top: -200px;
  }
}
@media (min-width: 992px) {
  .news-slider__bg-area {
    right: auto;
    left: 0;
  }
}
.news-slider__arrows {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
@media (min-width: 992px) {
  .news-slider__arrows {
    margin-top: 35px;
  }
}
.news-slider__arrow {
  margin: 0 7px;
}
@media (min-width: 768px) {
  .news-slider__arrow {
    margin: 0 10px;
  }
}
.news-slider__item {
  padding: 0 0 20px;
  transition: 0.3s ease-in-out;
  height: auto !important;
}
.news-slider__item .list-article {
  height: 100%;
}

.news-list-view__items {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .news-list-view__items {
    margin: 0 -20px;
  }
}
.news-list-view .list-article {
  max-width: 100%;
  flex-basis: 100%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .news-list-view .list-article {
    max-width: 50%;
    flex-basis: 50%;
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .news-list-view .list-article {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}

.list-article {
  display: flex;
  flex-direction: column;
}
.list-article__content {
  padding: 0 20px 30px 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
  background-color: white;
  border-radius: 0 0 15px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .list-article__content {
    padding: 0 30px 30px 40px;
  }
}
.list-article__date, .list-event__date, .list-article__author {
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 1.1875rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .list-article__date, .list-event__date, .list-article__author {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 20px;
  }
}
.list-article__author {
  margin-top: -10px;
}
.list-article__image {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.list-article__teaser {
  margin-bottom: 20px;
}
.list-article__link, .list-event__link {
  text-align: right;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  margin-top: auto;
}
@media (min-width: 768px) {
  .list-article__link, .list-event__link {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.list-article__link a, .list-event__link a {
  display: inline-flex;
  align-items: center;
}
.list-article__link a:after, .list-event__link a:after {
  content: "\f061";
  font-weight: 400;
  font-family: "Font Awesome 6 Pro", sans-serif;
  margin-left: 10px;
  font-size: 1.45em;
  transition: 0.3s ease-in-out;
  transform: translateY(-1px);
}
.list-article__link a:hover:after, .list-event__link a:hover:after, .list-article__link a:focus-visible:after, .list-event__link a:focus-visible:after {
  transform: translateY(-1px) translateX(5px);
}
.list-article__icon-wrap {
  margin-top: -35px;
  margin-bottom: 10px;
  width: 74px;
  height: 74px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.list-article__icon {
  fill: var(--primary-color);
}

.article {
  max-width: 900px;
  margin: 0 auto;
}
.article__icon {
  fill: var(--primary-color);
  margin-right: 20px;
}
.article__header {
  margin-bottom: 20px;
}
.article__extras-wrap {
  font-size: 1.125em;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.article__text {
  margin-bottom: 30px;
}
.article__images {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 10px;
}
.article__image {
  margin: 0 10px 20px;
  max-width: calc(50% - 20px);
}
@media (min-width: 768px) {
  .article__image {
    max-width: none;
  }
}
.article__header-image {
  margin-bottom: 40px;
}

@media (min-width: 1530px) {
  .event-list__row {
    display: flex;
  }
}
@media (min-width: 1530px) {
  .event-list__col--left {
    flex-grow: 1;
    padding-right: 20px;
  }
}
.event-list__col--right {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .event-list__col--right {
    padding: 0;
  }
}
@media (min-width: 1530px) {
  .event-list__col--right {
    max-width: 485px;
    flex-shrink: 0;
  }
}
.event-list__more {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .event-list__more {
    margin-top: 70px;
  }
}

.list-event {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .list-event {
    display: flex;
  }
}
@media (min-width: 1530px) {
  .list-event:last-child {
    margin-bottom: 0;
  }
}
.list-event--big .list-event__icon-wrap {
  position: absolute;
  width: 74px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  top: 0;
}
@media (min-width: 768px) {
  .list-event--big .list-event__icon-wrap {
    top: 50%;
    left: 0;
    transform: translateX(-50%) translateY(-50%);
  }
}
.list-event--big .list-event__content {
  border-radius: 0 0 15px 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  padding: 50px 20px 30px 20px;
}
@media (min-width: 768px) {
  .list-event--big .list-event__content {
    padding: 40px 30px 30px 50px;
    border-radius: 0 15px 15px 0;
  }
}
.list-event--small {
  position: relative;
  margin-bottom: 0;
  display: block;
}
.list-event--small .list-event__link {
  text-align: left;
}
.list-event--small .list-event__icon-wrap {
  width: 27px;
  margin-right: 10px;
  margin-top: -4px;
}
.list-event--small .list-event__head {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .list-event--small .list-event__head {
    margin-bottom: 17px;
    margin-top: -2px;
  }
}
.list-event--small:after {
  content: "";
  height: 1px;
  background-color: #CCCCCC;
  width: calc(100% - 40px);
  margin: 10px auto;
  display: block;
}
@media (min-width: 768px) {
  .list-event--small:after {
    width: calc(100% - 80px);
    margin: 8px auto 11px;
  }
}
.list-event--small:last-child:after {
  content: none;
}
.list-event__header {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .list-event__header {
    margin-bottom: 35px;
  }
}
.list-event__image {
  border-radius: 15px 15px 0 0;
  flex-shrink: 0;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .list-event__image {
    width: 300px;
    border-radius: 15px 0 0 15px;
  }
}
@media (min-width: 992px) {
  .list-event__image {
    width: auto;
  }
}
.list-event__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.list-event__content {
  background-color: white;
  padding: 20px;
  position: relative;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .list-event__content {
    padding: 40px 30px 30px 50px;
  }
}
.list-event__icon {
  fill: var(--primary-color);
}
.list-event__date {
  margin-bottom: 0;
}
.list-event__head {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .list-event__head {
    margin-bottom: 20px;
  }
}

.news-pagination {
  width: 100%;
  margin-bottom: 20px;
}

.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;
}
.kesearch__page-browser--bottom .kesearch_pagebrowser {
  margin-top: 10px;
}

.tx-kesearch-pi1 .result-list-item {
  margin-bottom: 20px;
}

.glossary-list__filter-items-wrap {
  border-radius: 10000px;
  background-color: #A3B7CB;
  padding: 10px 60px;
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .glossary-list__filter-items-wrap {
    padding: 10px 100px;
    margin-bottom: 90px;
  }
}
.glossary-list__filter-items {
  display: flex;
  border-radius: 10000px;
}
.glossary-list__filter {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  line-height: 1;
  background-color: white;
  border-radius: 50%;
  flex-shrink: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
}
@media (min-width: 768px) {
  .glossary-list__filter {
    width: 62px;
    height: 62px;
    font-size: 44px;
  }
}
.glossary-list__filter--active {
  background-color: var(--primary-color);
  font-weight: 600;
  color: white;
}
.glossary-list__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.glossary-list__item-wrap {
  max-width: 100%;
  flex-basis: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .glossary-list__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
    margin-bottom: 40px;
  }
}
@media (min-width: 1530px) {
  .glossary-list__item-wrap {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}
.glossary-list__item-wrap--hidden {
  display: none;
}
.glossary-list__item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  background-color: white;
  min-height: 160px;
  padding: 50px 40px;
  border-radius: 15px;
  display: block;
  position: relative;
  overflow: hidden;
}
.glossary-list__item:hover .glossary-list__teaser, .glossary-list__item:focus-visible .glossary-list__teaser {
  opacity: 1;
}
.glossary-list__item:after {
  content: "\f061";
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 23px;
  color: var(--primary-color);
  transition: 0.3s ease-in-out;
}
.glossary-list__item:hover, .glossary-list__item:focus-visible {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.glossary-list__item:hover:after, .glossary-list__item:focus-visible:after {
  transform: translateX(5px);
}
.glossary-list__teaser {
  color: white;
  background-color: var(--primary-color);
  position: absolute;
  inset: 0;
  z-index: 5;
  padding: 30px 60px 30px 40px;
  opacity: 0;
  transition: 0.3s ease-in-out;
  display: none;
  font-weight: 300;
}
@media (min-width: 992px) {
  .glossary-list__teaser {
    display: block;
  }
}
.glossary-list__teaser:after {
  content: "\f060";
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 23px;
  color: white;
  transition: 0.3s ease-in-out;
}
.glossary-list__name {
  margin-bottom: 0;
}
.glossary-list__arrow {
  position: absolute;
  font-size: 23px;
  color: var(--primary-color);
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.glossary-list__arrow--prev {
  left: 0;
}
@media (min-width: 768px) {
  .glossary-list__arrow--prev {
    left: 20px;
  }
}
.glossary-list__arrow--prev:after {
  content: "\f060";
}
.glossary-list__arrow--next {
  right: 0;
}
@media (min-width: 768px) {
  .glossary-list__arrow--next {
    right: 20px;
  }
}
.glossary-list__arrow--next:after {
  content: "\f061";
}

.glossary-entry {
  text-align: center;
}
.glossary-entry__header {
  margin-bottom: 10px;
}
.glossary-entry__subheader {
  margin-bottom: 30px;
}
.glossary-entry__content {
  text-align: left;
}

.felogin {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.felogin__label {
  margin-bottom: 10px;
}
.felogin__input-wrap {
  margin-bottom: 20px;
}
.felogin__head {
  margin-bottom: 50px;
}

.persons__items-wrap {
  min-height: 400px;
  position: relative;
}
.persons__items-wrap--loading:before {
  content: "";
  position: absolute;
  width: 104%;
  height: 100%;
  background-color: white;
  z-index: 10;
  opacity: 0.7;
  inset: 0 -2%;
}
.persons__items-wrap--loading:after {
  content: "\e62a";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 900;
  animation-name: fa-spin;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  width: 100px;
  height: 100px;
  font-size: 100px;
  line-height: 1;
  margin: auto;
  z-index: 100;
}
@media (min-width: 768px) {
  .persons__items-wrap--loading:after {
    top: 200px;
  }
}
.persons__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.persons__item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  padding: 45px 20px;
  position: relative;
  height: 100%;
  display: block;
  color: #141432;
  font-weight: 300;
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Teaser_Overlay.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .persons__item {
    padding: 45px 40px;
  }
}
.persons__item:hover, .persons__item:focus-visible {
  background-color: var(--primary-color);
  transform: translateY(10px);
  color: white;
}
.persons__item:hover .persons__name, .persons__item:focus-visible .persons__name {
  color: white;
}
.persons__item:after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 400;
  color: var(--primary-color);
  background-color: white;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  font-size: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.persons__item-wrap {
  max-width: 100%;
  flex-basis: 100%;
  padding: 43px 10px 0;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .persons__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 992px) {
  .persons__item-wrap {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}
.persons__image-wrap {
  width: 86px;
  height: 86px;
  background-color: white;
  border-radius: 50%;
  padding: 9px;
  position: absolute;
  left: 20px;
  top: 0;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .persons__image-wrap {
    left: 40px;
  }
}
.persons__image {
  border-radius: 50%;
  fill: var(--primary-color);
}
.persons__filter-wrap {
  display: flex;
  margin-bottom: 40px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .persons__filter-wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
.persons__filter {
  width: 375px;
  position: relative;
  margin: 0 0 30px;
  max-width: 100%;
}
.persons__filter .searchbox__input-wrap {
  padding-right: 105px;
  border-radius: 40px;
}
.persons__filter .select2 {
  position: static;
}
.persons__filter .select2 .select2-selection--single {
  border: none;
  background-color: transparent;
  box-shadow: none;
}
.persons__filter .select2 .select2-selection__rendered {
  padding: 0;
}
.persons__filter .select2 .select2-selection__arrow {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 50px;
  height: 50px;
  background-color: #C81446;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.persons__filter .select2 .select2-selection__arrow b:before {
  content: "\f063";
  font-weight: 400;
}
.persons__filter-icon {
  fill: var(--primary-color);
  margin-top: -2px;
  margin-left: 5px;
}
.persons__name {
  transition: color 0.3s ease-in-out;
}
.persons__search {
  margin: 0 0 30px;
  width: 100%;
}
.persons__load-more-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .persons__load-more-wrap {
    margin-top: 90px;
  }
}
.persons__load-more--loading {
  pointer-events: none;
  opacity: 0.7;
}
.persons__load-more--loading:after {
  content: "\e62a";
  font-weight: 900;
  animation-name: fa-spin;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.person__image-wrap {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: white;
  width: 90px;
  height: 90px;
  padding: 8px;
}
@media (min-width: 768px) {
  .person__image-wrap {
    width: 120px;
    height: 120px;
    padding: 13px;
  }
}
.person__image {
  border-radius: 50%;
  fill: var(--primary-color);
}
.person__head {
  text-align: center;
  margin-bottom: 30px;
}
.person__contact {
  display: flex;
  justify-content: center;
  padding: 10px 0px;
  background-color: rgba(163, 183, 203, 0.17);
  border-radius: 1000px;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .person__contact {
    padding: 10px 60px;
  }
}
.person__contact-item {
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: #C81446;
  width: 48px;
  height: 48px;
  margin: 0 7px;
}
@media (min-width: 768px) {
  .person__contact-item {
    width: 62px;
    height: 62px;
    font-size: 1.75rem;
    margin: 0 15px;
  }
}
.person__infos {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}
.person__info {
  display: flex;
  max-width: 100%;
  flex-basis: 100%;
  font-size: 1rem;
  line-height: 1.4375rem;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .person__info {
    max-width: 50%;
    flex-basis: 50%;
    min-height: 60px;
    margin-bottom: 40px;
    padding: 0 20px;
  }
}
.person__info-icon {
  font-size: 32px;
  margin-right: 10px;
  width: 40px;
}
.person__info-header {
  font-weight: bold;
}

.person-slider {
  max-width: 920px;
  margin: 0 auto;
}
.person-slider__slider {
  padding: 60px 30px 10px;
  margin: 0 -30px;
}
.person-slider__arrows {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.person-slider__arrow {
  margin: 0 10px;
}
.person-slider__item {
  position: relative;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.21);
  border-radius: 15px;
  padding: 60px 20px;
  background-color: white;
}
.person-slider__item .person {
  max-width: 485px;
  margin: 0 auto;
}

.job__list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media (min-width: 1530px) {
  .job__list-item {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}
.job__list-item--hidden {
  display: none;
}
.job__filter-reset {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .job__filter-reset {
    margin-top: 20px;
  }
}
.job__filter {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .job__filter-input-wrap {
    display: flex;
  }
}
.job__filter-item {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .job__filter-item {
    min-width: 280px;
    width: auto;
    margin-bottom: 0;
    margin-right: 20px;
  }
}
.job__filter-label {
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}

.job-detail h3, .job-detail .h3 {
  margin-bottom: 20px;
}
.job-detail__attribute-list {
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.job-detail__attribute-item {
  margin-right: 35px;
}
.job-detail__header {
  margin-bottom: 20px;
}
.job-detail__section {
  margin-bottom: 70px;
}
.job-detail__contact {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .job-detail__contact {
    flex-direction: row;
  }
}
.job-detail__contact-content {
  text-align: center;
}
@media (min-width: 768px) {
  .job-detail__contact-content {
    text-align: left;
  }
}
.job-detail__contact-image {
  border-radius: 50%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .job-detail__contact-image {
    margin-right: 30px;
    margin-bottom: 0;
  }
}
.job-detail__contact-placeholder {
  width: 192px;
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.job-detail__contact-placeholder-icon {
  fill: white;
}
/*# sourceMappingURL=theme.css.map */
