@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: #95C23D;
  --bs-secondary: #13357A;
  --bs-dsgvo: #efefef;
  --bs-error: #dc3545;
  --bs-primary-rgb: 149, 194, 61;
  --bs-secondary-rgb: 19, 53, 122;
  --bs-dsgvo-rgb: 239, 239, 239;
  --bs-error-rgb: 220, 53, 69;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 44, 44, 44;
  --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: Hind, Arial, sans-serif;
  --bs-body-font-size: 1.25rem;
  --bs-body-font-weight: 300;
  --bs-body-line-height: 1.4;
  --bs-body-color: #2C2C2C;
  --bs-body-bg: #fff;
}

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

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

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

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

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

h1, .h1 {
  font-size: calc(1.4375rem + 2.25vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 3.125rem;
  }
}

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

h3, .h3 {
  font-size: calc(1.34375rem + 1.125vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 2.1875rem;
  }
}

h4, .h4 {
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.875rem;
  }
}

h5, .h5 {
  font-size: calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  h5, .h5 {
    font-size: 1.5625rem;
  }
}

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

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: #95C23D;
  text-decoration: none;
}
a:hover {
  color: #68882b;
  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: calc(1.28125rem + 0.375vw);
  font-weight: 300;
}
@media (min-width: 1200px) {
  .lead {
    font-size: 1.5625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.blockquote {
  margin-bottom: 1rem;
  font-size: calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  .blockquote {
    font-size: 1.5625rem;
  }
}
.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: 35px;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

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

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

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

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

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  .col-form-label-lg {
    font-size: 1.5625rem;
  }
}

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

.form-control {
  display: block;
  width: 100%;
  padding: 1.1875rem 1.875rem;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.4;
  color: #2C2C2C;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 35px;
  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: #2C2C2C;
  background-color: #fff;
  border-color: #cae19e;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(149, 194, 61, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.4em;
}
.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: 1.1875rem 1.875rem;
  margin: -1.1875rem -1.875rem;
  margin-inline-end: 1.875rem;
  color: #2C2C2C;
  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: 1.1875rem 1.875rem;
  margin: -1.1875rem -1.875rem;
  margin-inline-end: 1.875rem;
  color: #2C2C2C;
  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: 1.1875rem 0;
  margin-bottom: 0;
  line-height: 1.4;
  color: #2C2C2C;
  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.4em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 1.09375rem;
  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.4em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: calc(1.28125rem + 0.375vw);
  border-radius: 0;
}
@media (min-width: 1200px) {
  .form-control-lg {
    font-size: 1.5625rem;
  }
}
.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.4em + 2.375rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.4em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.4em + 1rem + 2px);
}

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

.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 1.875rem;
  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 1.875rem;
}
.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: 1.09375rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 35px;
}

.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.4em + 2.375rem);
  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.35em + 0.59375rem) center;
  background-size: calc(0.7em + 1.1875rem) calc(0.7em + 1.1875rem);
}
.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.4em + 2.375rem);
  background-position: top calc(0.35em + 0.59375rem) right calc(0.35em + 0.59375rem);
}

.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: 10.3125rem;
  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 1.875rem center, center right 5.625rem;
  background-size: 16px 12px, calc(0.7em + 1.1875rem) calc(0.7em + 1.1875rem);
}
.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: 1.09375rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 35px;
}

.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.4em + 2.375rem);
  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.35em + 0.59375rem) center;
  background-size: calc(0.7em + 1.1875rem) calc(0.7em + 1.1875rem);
}
.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.4em + 2.375rem);
  background-position: top calc(0.35em + 0.59375rem) right calc(0.35em + 0.59375rem);
}

.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: 10.3125rem;
  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 1.875rem center, center right 5.625rem;
  background-size: 16px 12px, calc(0.7em + 1.1875rem) calc(0.7em + 1.1875rem);
}
.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: 1.25rem;
  color: #2C2C2C;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 35px;
}
.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: 1440px) {
  .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: 1620px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

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

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

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

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  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: #95C23D;
}
.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: 1.09375rem;
  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: #95C23D;
}
.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;
}

.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: Hind, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.09375rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: white;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: white;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: white;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: white;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: white;
  border-radius: 35px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: Hind, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.09375rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #2C2C2C;
}

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

.link-primary {
  color: #95C23D;
}
.link-primary:hover, .link-primary:focus {
  color: #aace64;
}

.link-secondary {
  color: #13357A;
}
.link-secondary:hover, .link-secondary:focus {
  color: #0f2a62;
}

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

.link-error {
  color: #dc3545;
}
.link-error:hover, .link-error:focus {
  color: #b02a37;
}

.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: 1440px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1620px) {
  .sticky-xxl-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 #73808d !important;
}

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

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

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

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

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

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

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

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

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

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

.border-secondary {
  border-color: #13357A !important;
}

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

.border-error {
  border-color: #dc3545 !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ms-n5 {
  margin-left: -3rem !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.4375rem + 2.25vw) !important;
}

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

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

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

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

.fs-6 {
  font-size: 1.25rem !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.4 !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-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-error {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-error-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: 35px !important;
}

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

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

.rounded-2 {
  border-radius: 35px !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: 35px !important;
  border-top-right-radius: 35px !important;
}

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

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

.rounded-start {
  border-bottom-left-radius: 35px !important;
  border-top-left-radius: 35px !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;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -1rem !important;
  }
  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -1rem !important;
  }
  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n5 {
    margin-left: -3rem !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;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n5 {
    margin-top: -3rem !important;
  }
  .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  .me-md-n3 {
    margin-right: -1rem !important;
  }
  .me-md-n4 {
    margin-right: -1.5rem !important;
  }
  .me-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -1rem !important;
  }
  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n5 {
    margin-left: -3rem !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;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -1rem !important;
  }
  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -1rem !important;
  }
  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n5 {
    margin-left: -3rem !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: 1440px) {
  .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;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -1rem !important;
  }
  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n5 {
    margin-left: -3rem !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: 1620px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -1rem !important;
  }
  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .text-xxl-justify {
    text-align: justify !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 3.125rem !important;
  }
  .fs-2 {
    font-size: 2.5rem !important;
  }
  .fs-3 {
    font-size: 2.1875rem !important;
  }
  .fs-4 {
    font-size: 1.875rem !important;
  }
  .fs-5 {
    font-size: 1.5625rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fas::before,
.fass::before,
.far::before,
.fasr::before,
.fal::before,
.fasl::before,
.fat::before,
.fast::before,
.fad::before,
.fadr::before,
.fadl::before,
.fadt::before,
.fasds::before,
.fasdr::before,
.fasdl::before,
.fasdt::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-light::before,
.fa-thin::before,
.select2-container--default .select2-selection--single .select2-selection__arrow b::before,
.swiper-arrow::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,
.fal,
.fa-light,
.fat,
.fa-thin,
.select2-container--default .select2-selection--single .select2-selection__arrow b,
.swiper-arrow:before {
  font-family: "Font Awesome 6 Pro";
}

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

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

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

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

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

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

.fa-arrow-down-long {
  --fa: "\f175";
  --fa--fa: "\f175\f175";
}

.fa-arrow-right-long {
  --fa: "\f178";
  --fa--fa: "\f178\f178";
}

.fa-at {
  --fa: "\@";
  --fa--fa: "\@\@";
}

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

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

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

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

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

.fa-circle-info {
  --fa: "\f05a";
  --fa--fa: "\f05a\f05a";
}

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

.fa-ditto {
  --fa: "\"";
  --fa--fa: "\"\"";
}

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

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

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

.fa-fax {
  --fa: "\f1ac";
  --fa--fa: "\f1ac\f1ac";
}

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

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

.fa-info {
  --fa: "\f129";
  --fa--fa: "\f129\f129";
}

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

.fa-lightbulb-on {
  --fa: "\f672";
  --fa--fa: "\f672\f672";
}

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

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

.fa-mobile {
  --fa: "\f3ce";
  --fa--fa: "\f3ce\f3ce";
}

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

.fa-play {
  --fa: "\f04b";
  --fa--fa: "\f04b\f04b";
}

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

.fa-print {
  --fa: "\f02f";
  --fa--fa: "\f02f\f02f";
}

.fa-share-nodes {
  --fa: "\f1e0";
  --fa--fa: "\f1e0\f1e0";
}

.fa-square-arrow-up-right {
  --fa: "\f14c";
  --fa--fa: "\f14c\f14c";
}

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

.fa-youtube {
  --fa: "\f167";
  --fa--fa: "\f167\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: swap;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-light-300.woff2?v=f316160c01227e47d5f0472bf2727ee1d31b3d36") 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: swap;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-solid-900.woff2?v=5160b65c2f1b6a15cf0a9354f1cb6cd393a259f0") 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: swap;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-regular-400.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

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

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-thin-100.woff2?v=d1ab6e419155421c42849fd31abc4ae29f49eedd") 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,
.swiper-arrow:before {
  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: swap;
  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-duotone: "Font Awesome 6 Duotone";
  --fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 6 Duotone";
}

@font-face {
  font-family: "Font Awesome 6 Duotone";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-duotone-thin-100.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-duotone-thin-100.ttf") format("truetype");
}
.fadt,
.fa-duotone.fa-thin,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone,
.fa-duotone.swiper-arrow:before {
  position: relative;
  font-weight: 100;
  letter-spacing: normal;
}

.fadt::before,
.fa-duotone.fa-thin::before,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone::before,
.fa-duotone.swiper-arrow::before {
  position: absolute;
  color: var(--fa-primary-color, inherit);
  opacity: var(--fa-primary-opacity, 1);
}

.fadt::after,
.fa-duotone.fa-thin::after,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone::after {
  color: var(--fa-secondary-color, inherit);
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fadt::before,
.fa-swap-opacity .fa-duotone.fa-thin::before,
.fa-swap-opacity .select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone::before,
.select2-container--default .select2-selection--single .select2-selection__arrow .fa-swap-opacity b.fa-duotone::before,
.fa-swap-opacity .fa-duotone.swiper-arrow::before,
.fadt.fa-swap-opacity::before,
.fa-duotone.fa-swap-opacity::before,
.fa-duotone.fa-thin.fa-swap-opacity::before,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone.fa-swap-opacity::before {
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fadt::after,
.fa-swap-opacity .fa-duotone.fa-thin::after,
.fa-swap-opacity .select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone::after,
.select2-container--default .select2-selection--single .select2-selection__arrow .fa-swap-opacity b.fa-duotone::after,
.fadt.fa-swap-opacity::after,
.fa-duotone.fa-swap-opacity::after,
.fa-duotone.fa-thin.fa-swap-opacity::after,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone.fa-swap-opacity::after {
  opacity: var(--fa-primary-opacity, 1);
}

.fadt.fa-inverse,
.fa-duotone.fa-thin.fa-inverse,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone.fa-inverse,
.fa-duotone.fa-inverse.swiper-arrow:before {
  color: var(--fa-inverse, #fff);
}

.fadt.fa-stack-1x,
.fadt.fa-stack-2x,
.fa-duotone.fa-thin.fa-stack-1x,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone.fa-stack-1x,
.fa-duotone.fa-stack-1x.swiper-arrow:before,
.fa-duotone.fa-thin.fa-stack-2x,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-duotone.fa-stack-2x,
.fa-duotone.fa-stack-2x.swiper-arrow:before {
  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-duotone: "Font Awesome 6 Duotone";
  --fa-font-duotone-light: normal 300 1em/1 "Font Awesome 6 Duotone";
}

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

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

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

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

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

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

.fadl.fa-stack-1x,
.fadl.fa-stack-2x,
.fa-duotone.fa-light.fa-stack-1x,
.fa-duotone.fa-light.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-duotone: "Font Awesome 6 Duotone";
  --fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 6 Duotone";
}

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

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

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

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

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

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

.fadr.fa-stack-1x,
.fadr.fa-stack-2x,
.fa-duotone.fa-regular.fa-stack-1x,
.fa-duotone.fa-regular.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: swap;
  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: swap;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-regular-400.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-regular-400.ttf") format("truetype");
}
.fasr,
.fa-regular {
  font-weight: 400;
}

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

@font-face {
  font-family: "Font Awesome 6 Sharp";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  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: swap;
  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,
.swiper-arrow:before {
  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-sharp-duotone: "Font Awesome 6 Sharp Duotone";
  --fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 6 Sharp Duotone";
}

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

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

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

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

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

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

.fasds.fa-stack-1x,
.fasds.fa-stack-2x,
.fa-sharp-duotone.fa-stack-1x,
.fa-sharp-duotone.fa-solid.fa-stack-1x,
.fa-sharp-duotone.fa-stack-2x,
.fa-sharp-duotone.fa-solid.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-duotone: "Font Awesome 6 Sharp Duotone";
  --fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 6 Sharp Duotone";
}

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

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

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

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

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

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

.fasdr.fa-stack-1x,
.fasdr.fa-stack-2x,
.fa-sharp-duotone.fa-regular.fa-stack-1x,
.fa-sharp-duotone.fa-regular.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-duotone: "Font Awesome 6 Sharp Duotone";
  --fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 6 Sharp Duotone";
}

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

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

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

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

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

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

.fasdl.fa-stack-1x,
.fasdl.fa-stack-2x,
.fa-sharp-duotone.fa-light.fa-stack-1x,
.fa-sharp-duotone.fa-light.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-duotone: "Font Awesome 6 Sharp Duotone";
  --fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 6 Sharp Duotone";
}

@font-face {
  font-family: "Font Awesome 6 Sharp Duotone";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-duotone-thin-100.woff2") format("woff2"), url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/font-awesome-pro/fa-sharp-duotone-thin-100.ttf") format("truetype");
}
.fasdt,
.fa-sharp-duotone.fa-thin,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone,
.fa-sharp-duotone.swiper-arrow:before {
  position: relative;
  font-weight: 100;
  letter-spacing: normal;
}

.fasdt::before,
.fa-sharp-duotone.fa-thin::before,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone::before,
.fa-sharp-duotone.swiper-arrow::before {
  position: absolute;
  color: var(--fa-primary-color, inherit);
  opacity: var(--fa-primary-opacity, 1);
}

.fasdt::after,
.fa-sharp-duotone.fa-thin::after,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone::after {
  color: var(--fa-secondary-color, inherit);
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fasdt::before,
.fa-swap-opacity .fa-sharp-duotone.fa-thin::before,
.fa-swap-opacity .select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone::before,
.select2-container--default .select2-selection--single .select2-selection__arrow .fa-swap-opacity b.fa-sharp-duotone::before,
.fa-swap-opacity .fa-sharp-duotone.swiper-arrow::before,
.fasdt.fa-swap-opacity::before,
.fa-sharp-duotone.fa-swap-opacity::before,
.fa-sharp-duotone.fa-thin.fa-swap-opacity::before,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone.fa-swap-opacity::before {
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fasdt::after,
.fa-swap-opacity .fa-sharp-duotone.fa-thin::after,
.fa-swap-opacity .select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone::after,
.select2-container--default .select2-selection--single .select2-selection__arrow .fa-swap-opacity b.fa-sharp-duotone::after,
.fasdt.fa-swap-opacity::after,
.fa-sharp-duotone.fa-swap-opacity::after,
.fa-sharp-duotone.fa-thin.fa-swap-opacity::after,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone.fa-swap-opacity::after {
  opacity: var(--fa-primary-opacity, 1);
}

.fasdt.fa-inverse,
.fa-sharp-duotone.fa-thin.fa-inverse,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone.fa-inverse,
.fa-sharp-duotone.fa-inverse.swiper-arrow:before {
  color: var(--fa-inverse, #fff);
}

.fasdt.fa-stack-1x,
.fasdt.fa-stack-2x,
.fa-sharp-duotone.fa-thin.fa-stack-1x,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone.fa-stack-1x,
.fa-sharp-duotone.fa-stack-1x.swiper-arrow:before,
.fa-sharp-duotone.fa-thin.fa-stack-2x,
.select2-container--default .select2-selection--single .select2-selection__arrow b.fa-sharp-duotone.fa-stack-2x,
.fa-sharp-duotone.fa-stack-2x.swiper-arrow:before {
  position: absolute;
}

: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: swap;
  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.5
 * 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: March 3, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation font end */
.swiper-arrow {
  color: var(--contrast-white, white);
  background-color: var(--contrast-black, #95C23D);
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 0;
  transition: 0.3s ease-in-out;
  border-radius: 50%;
  border: none;
}
.swiper-arrow:hover, .swiper-arrow:focus-visible {
  background-color: var(--contrast-black, #13357A);
  color: var(--contrast-white, white);
}
.swiper-arrow:before {
  font-size: 26px;
}
.swiper-arrow--prev:before {
  content: "\f053";
}
.swiper-arrow--next:before {
  content: "\f054";
}
.swiper-arrow.swiper-button-lock {
  display: none;
}

.swiper-arrow-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1440px) {
  .swiper-arrow-container {
    width: 1400px;
  }
}
.swiper-arrow-container .swiper-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-arrow-container .swiper-arrow--prev {
  left: 0;
}
.swiper-arrow-container .swiper-arrow--next {
  right: 0;
}

.swiper-controls-pagination {
  position: absolute;
  bottom: 20px;
}

.swiper-pagination-bullets {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  position: static;
  bottom: 40px;
  z-index: 5;
  justify-content: center;
  margin: 30px 0 0;
}
.swiper-pagination-bullets.swiper-pagination-lock {
  display: none;
}

.swiper-pagination-bullet {
  margin: 0 7px;
  font-size: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
  display: block;
  padding: 0;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--contrast-black, #95C23D);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--contrast-black, #95C23D);
}

.static-swiper-arrows {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .static-swiper-arrows {
    margin-top: 50px;
  }
}
.static-swiper-arrows .swiper-arrow {
  margin: 0 10px;
}

.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-nowrap .ce-bodytext {
  padding-top: 5px;
  margin-top: -5px;
}

.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 var(--contrast-black, #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 var(--contrast-black, #dadada);
}

.ce-table th, .ce-table td {
  border-top: 1px solid var(--contrast-black, #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 var(--contrast-black, #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: 60px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-extra-small {
    margin-bottom: 60px;
  }
}
.frame-space-before-small {
  margin-top: 30px;
}

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

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

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

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

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

@media (min-width: 768px) {
  .frame-space-before-large {
    margin-top: 150px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-large {
    margin-bottom: 150px;
  }
}
.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: 180px;
  }
}
@media (min-width: 768px) {
  .frame-space-after-extra-large {
    margin-bottom: 180px;
  }
}
/* 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;
}

.image-embed-item {
  border-radius: 20px;
}
@media (min-width: 768px) {
  .image-embed-item {
    border-radius: 40px;
  }
}

@media (min-width: 1440px) {
  .ce-left .ce-gallery,
.ce-column {
    float: left;
  }
  .ce-right .ce-gallery {
    float: right;
  }
  .ce-intext.ce-right .ce-gallery {
    margin-left: 20px;
  }
  .ce-intext.ce-left .ce-gallery {
    margin-right: 20px;
  }
}
/* Global styling */
@keyframes overlay-move-in {
  from {
    transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--rot, -90deg));
  }
}
@keyframes overlay-fade-in {
  from {
    opacity: 0;
  }
}
@font-face {
  font-display: swap;
  font-family: "Hind";
  font-style: normal;
  font-weight: 300;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/hind/hind-300.woff2?v=977eae4a3b34d8e39a5cb6a58a10ab2deba30d61") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Hind";
  font-style: normal;
  font-weight: 400;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/hind/hind-regular.woff2?v=f051f482061dc48d09c328c45459dd04db5b5547") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Hind";
  font-style: normal;
  font-weight: 500;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/hind/hind-500.woff2?v=978c3d524cc6a8114d11f78b6292b58c69cb8632") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Hind";
  font-style: normal;
  font-weight: 600;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/hind/hind-600.woff2?v=53503e38c6c13a2d0cb2189ec56527b5340e3673") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Hind";
  font-style: normal;
  font-weight: 700;
  src: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Fonts/hind/hind-700.woff2?v=10731308876ef0b8b9763815352d6b18020026e0") format("woff2");
}
:root {
  --header-offset: 60px;
  --p-margin: 30px;
  --p-margin-last: 0;
  --bs-body-font-size: 1.0625rem;
  --text-color: var(--contrast-black, #2C2C2C);
  --link-color: var(--contrast-black, #95C23D);
  --link-decoration: none;
  --link-hover-color: var(--contrast-black, #68882b);
  --link-hover-decoration: none;
}
@media (min-width: 1440px) {
  :root {
    --header-offset: 70px;
  }
}
@media (min-width: 992px) {
  :root {
    --bs-body-font-size: 1.25rem;
  }
}

body {
  color: var(--text-color);
  --accessibility-offset: 11%;
}
@media (min-width: 576px) {
  body {
    --accessibility-offset: 3%;
  }
}
@media (min-width: 768px) {
  body {
    --accessibility-offset: 260px;
  }
}

html {
  overflow-y: scroll;
}
html[data-font-level="2"] {
  font-size: 17px;
}
html[data-font-level="3"] {
  font-size: 19px;
}
html[data-font-level="4"] {
  font-size: 21px;
}
html[data-font-level="5"] {
  font-size: 22px;
}
html.nav-is-open {
  overflow: hidden;
}
@media (min-width: 1440px) {
  html.nav-is-open {
    overflow-y: scroll;
  }
}

a {
  font-weight: 600;
}

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

b, strong {
  font-weight: 600;
}

a {
  color: var(--contrast-black, var(--link-color));
  -webkit-text-decoration: var(--link-decoration);
          text-decoration: var(--link-decoration);
}
a:hover {
  color: var(--contrast-black, var(--link-hover-color));
  -webkit-text-decoration: var(--link-hover-decoration);
          text-decoration: var(--link-hover-decoration);
}

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

svg:focus, svg:focus-visible {
  outline: none;
}

.larger-text {
  font-size: 1.1875rem;
}
@media (min-width: 992px) {
  .larger-text {
    font-size: 1.6875rem;
  }
}

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

.svg-hidden {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    --bs-gutter-x: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    --bs-gutter-x: 100px;
  }
}

.counter-reset {
  counter-reset: ol-bullets;
}

.main-content ol:not(.no-list-bullet):not(.pagination),
.main-content ul:not(.no-list-bullet):not(.pagination) {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin-bottom: var(--p-margin);
}
.main-content ol:not(.no-list-bullet):not(.pagination) > li,
.main-content ul:not(.no-list-bullet):not(.pagination) > li {
  position: relative;
  padding-left: 1.44em;
  margin-bottom: 10px;
}
.main-content ol:not(.no-list-bullet):not(.pagination) > li:before,
.main-content ul:not(.no-list-bullet):not(.pagination) > li:before {
  content: "";
  width: 1.07em;
  height: 1.07em;
  background-image: var(--small-octagon-contrast-img, url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/small_octagon_cut_green.svg"));
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0.1em;
}
.main-content ol:not(.no-list-bullet):not(.pagination) > li ol, .main-content ol:not(.no-list-bullet):not(.pagination) > li ul,
.main-content ul:not(.no-list-bullet):not(.pagination) > li ol,
.main-content ul:not(.no-list-bullet):not(.pagination) > li ul {
  margin-top: 10px;
  margin-bottom: 15px;
}
.main-content ol:not(.no-list-bullet):not(.pagination) > li {
  counter-increment: ol-bullets 1;
  padding-left: 2.7em;
  margin-bottom: 1.2em;
  padding-top: 0.5em;
}
.main-content ol:not(.no-list-bullet):not(.pagination) > li:before {
  content: counter(ol-bullets);
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1;
  width: 1.8333333333em;
  height: 1.8333333333em;
  padding: 0.125em 0.0416666667em 0 0;
  background-image: var(--octagon-contrast-img, url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/octagon_cut_green.svg"));
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
}
.main-content p + ol {
  margin-top: 2.25em;
}

.skip-section {
  position: fixed;
  left: -200vw;
  top: 20px;
  z-index: 1000;
  padding: 10px;
  background-color: white;
  color: var(--link-color) !important;
}
.skip-section:focus {
  left: 20px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.link-arrow:hover:after, .link-arrow:focus-visible:after {
  transform: translateX(5px);
}
.link-arrow:after {
  content: "\f178";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 300;
  margin-left: 10px;
  transition: 0.3s ease-in-out;
  font-size: 34px;
  line-height: 1;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--contrast-black, #13357A);
}
h1 .highlight, .h1 .highlight, h2 .highlight, .h2 .highlight, h3 .highlight, .h3 .highlight, h4 .highlight, .h4 .highlight, h5 .highlight, .h5 .highlight, h6 .highlight, .h6 .highlight {
  color: #2C2C2C;
  font-weight: 300;
}

.ce-header, .ce-subheader {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .ce-header, .ce-subheader {
    margin-bottom: 50px;
  }
}

.ce-header.ce-subheader h1 + h2, .ce-header.ce-subheader .h1 + h2, .ce-header.ce-subheader h1 + .h2, .ce-header.ce-subheader .h1 + .h2, .ce-header.ce-subheader h1 + .h2, .ce-header.ce-subheader .h1 + .h2, .ce-header.ce-subheader h1 + h3, .ce-header.ce-subheader .h1 + h3, .ce-header.ce-subheader h1 + .h3, .ce-header.ce-subheader .h1 + .h3, .ce-header.ce-subheader h1 + .h3, .ce-header.ce-subheader .h1 + .h3, .ce-header.ce-subheader h1 + h4, .ce-header.ce-subheader .h1 + h4, .ce-header.ce-subheader h1 + .h4, .ce-header.ce-subheader .h1 + .h4, .ce-header.ce-subheader h1 + .h4, .ce-header.ce-subheader .h1 + .h4, .ce-header.ce-subheader h1 + h5, .ce-header.ce-subheader .h1 + h5, .ce-header.ce-subheader h1 + .h5, .ce-header.ce-subheader .h1 + .h5, .ce-header.ce-subheader h1 + .h5, .ce-header.ce-subheader .h1 + .h5, .ce-header.ce-subheader .h1 + h2, .ce-header.ce-subheader .h1 + .h2, .ce-header.ce-subheader .h1 + .h2, .ce-header.ce-subheader .h1 + h3, .ce-header.ce-subheader .h1 + .h3, .ce-header.ce-subheader .h1 + .h3, .ce-header.ce-subheader .h1 + h4, .ce-header.ce-subheader .h1 + .h4, .ce-header.ce-subheader .h1 + .h4, .ce-header.ce-subheader .h1 + h5, .ce-header.ce-subheader .h1 + .h5, .ce-header.ce-subheader .h1 + .h5, .ce-header.ce-subheader h2 + h2, .ce-header.ce-subheader .h2 + h2, .ce-header.ce-subheader h2 + .h2, .ce-header.ce-subheader .h2 + .h2, .ce-header.ce-subheader h2 + .h2, .ce-header.ce-subheader .h2 + .h2, .ce-header.ce-subheader h2 + h3, .ce-header.ce-subheader .h2 + h3, .ce-header.ce-subheader h2 + .h3, .ce-header.ce-subheader .h2 + .h3, .ce-header.ce-subheader h2 + .h3, .ce-header.ce-subheader .h2 + .h3, .ce-header.ce-subheader h2 + h4, .ce-header.ce-subheader .h2 + h4, .ce-header.ce-subheader h2 + .h4, .ce-header.ce-subheader .h2 + .h4, .ce-header.ce-subheader h2 + .h4, .ce-header.ce-subheader .h2 + .h4, .ce-header.ce-subheader h2 + h5, .ce-header.ce-subheader .h2 + h5, .ce-header.ce-subheader h2 + .h5, .ce-header.ce-subheader .h2 + .h5, .ce-header.ce-subheader h2 + .h5, .ce-header.ce-subheader .h2 + .h5, .ce-header.ce-subheader .h2 + h2, .ce-header.ce-subheader .h2 + .h2, .ce-header.ce-subheader .h2 + .h2, .ce-header.ce-subheader .h2 + h3, .ce-header.ce-subheader .h2 + .h3, .ce-header.ce-subheader .h2 + .h3, .ce-header.ce-subheader .h2 + h4, .ce-header.ce-subheader .h2 + .h4, .ce-header.ce-subheader .h2 + .h4, .ce-header.ce-subheader .h2 + h5, .ce-header.ce-subheader .h2 + .h5, .ce-header.ce-subheader .h2 + .h5, .ce-header.ce-subheader h3 + h2, .ce-header.ce-subheader .h3 + h2, .ce-header.ce-subheader h3 + .h2, .ce-header.ce-subheader .h3 + .h2, .ce-header.ce-subheader h3 + .h2, .ce-header.ce-subheader .h3 + .h2, .ce-header.ce-subheader h3 + h3, .ce-header.ce-subheader .h3 + h3, .ce-header.ce-subheader h3 + .h3, .ce-header.ce-subheader .h3 + .h3, .ce-header.ce-subheader h3 + .h3, .ce-header.ce-subheader .h3 + .h3, .ce-header.ce-subheader h3 + h4, .ce-header.ce-subheader .h3 + h4, .ce-header.ce-subheader h3 + .h4, .ce-header.ce-subheader .h3 + .h4, .ce-header.ce-subheader h3 + .h4, .ce-header.ce-subheader .h3 + .h4, .ce-header.ce-subheader h3 + h5, .ce-header.ce-subheader .h3 + h5, .ce-header.ce-subheader h3 + .h5, .ce-header.ce-subheader .h3 + .h5, .ce-header.ce-subheader h3 + .h5, .ce-header.ce-subheader .h3 + .h5, .ce-header.ce-subheader .h3 + h2, .ce-header.ce-subheader .h3 + .h2, .ce-header.ce-subheader .h3 + .h2, .ce-header.ce-subheader .h3 + h3, .ce-header.ce-subheader .h3 + .h3, .ce-header.ce-subheader .h3 + .h3, .ce-header.ce-subheader .h3 + h4, .ce-header.ce-subheader .h3 + .h4, .ce-header.ce-subheader .h3 + .h4, .ce-header.ce-subheader .h3 + h5, .ce-header.ce-subheader .h3 + .h5, .ce-header.ce-subheader .h3 + .h5, .ce-header.ce-subheader h4 + h2, .ce-header.ce-subheader .h4 + h2, .ce-header.ce-subheader h4 + .h2, .ce-header.ce-subheader .h4 + .h2, .ce-header.ce-subheader h4 + .h2, .ce-header.ce-subheader .h4 + .h2, .ce-header.ce-subheader h4 + h3, .ce-header.ce-subheader .h4 + h3, .ce-header.ce-subheader h4 + .h3, .ce-header.ce-subheader .h4 + .h3, .ce-header.ce-subheader h4 + .h3, .ce-header.ce-subheader .h4 + .h3, .ce-header.ce-subheader h4 + h4, .ce-header.ce-subheader .h4 + h4, .ce-header.ce-subheader h4 + .h4, .ce-header.ce-subheader .h4 + .h4, .ce-header.ce-subheader h4 + .h4, .ce-header.ce-subheader .h4 + .h4, .ce-header.ce-subheader h4 + h5, .ce-header.ce-subheader .h4 + h5, .ce-header.ce-subheader h4 + .h5, .ce-header.ce-subheader .h4 + .h5, .ce-header.ce-subheader h4 + .h5, .ce-header.ce-subheader .h4 + .h5, .ce-header.ce-subheader .h4 + h2, .ce-header.ce-subheader .h4 + .h2, .ce-header.ce-subheader .h4 + .h2, .ce-header.ce-subheader .h4 + h3, .ce-header.ce-subheader .h4 + .h3, .ce-header.ce-subheader .h4 + .h3, .ce-header.ce-subheader .h4 + h4, .ce-header.ce-subheader .h4 + .h4, .ce-header.ce-subheader .h4 + .h4, .ce-header.ce-subheader .h4 + h5, .ce-header.ce-subheader .h4 + .h5, .ce-header.ce-subheader .h4 + .h5 {
  font-weight: 300;
  color: var(--contrast-black, #2C2C2C);
}

h1, .h1 {
  font-size: 2.125rem;
}
.ce-header.ce-subheader h1 + h2, .ce-header.ce-subheader h1 + .h2, .ce-header.ce-subheader .h1 + h2, .ce-header.ce-subheader .h1 + .h2 {
  font-size: 1.75rem;
}

@media (min-width: 992px) {
  h1, .h1 {
    font-size: 3.875rem;
  }
  .ce-header.ce-subheader h1 + h2, .ce-header.ce-subheader h1 + .h2, .ce-header.ce-subheader .h1 + h2, .ce-header.ce-subheader .h1 + .h2 {
    font-size: 2.625rem;
  }
}

h2, .h2 {
  font-size: 1.75rem;
}
.ce-header.ce-subheader h2 + h3, .ce-header.ce-subheader h2 + .h3, .ce-header.ce-subheader .h2 + h3, .ce-header.ce-subheader .h2 + .h3 {
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  h2, .h2 {
    font-size: 3.25rem;
  }
  .ce-header.ce-subheader h2 + h3, .ce-header.ce-subheader h2 + .h3, .ce-header.ce-subheader .h2 + h3, .ce-header.ce-subheader .h2 + .h3 {
    font-size: 2.25rem;
  }
}

h3, .h3 {
  font-size: 1.75rem;
}
.ce-header.ce-subheader h3 + h4, .ce-header.ce-subheader h3 + .h4, .ce-header.ce-subheader .h3 + h4, .ce-header.ce-subheader .h3 + .h4 {
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  h3, .h3 {
    font-size: 2.5rem;
  }
  .ce-header.ce-subheader h3 + h4, .ce-header.ce-subheader h3 + .h4, .ce-header.ce-subheader .h3 + h4, .ce-header.ce-subheader .h3 + .h4 {
    font-size: 1.875rem;
  }
}

h4, .h4 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (min-width: 992px) {
  h4, .h4 {
    font-size: 1.6875rem;
  }
  .ce-header.ce-subheader h4 + h5, .ce-header.ce-subheader h4 + .h5, .ce-header.ce-subheader .h4 + h5, .ce-header.ce-subheader .h4 + .h5 {
    font-size: 1.6875rem;
  }
}

h5, .h5 {
  font-size: 1.375rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  h5, .h5 {
    font-size: 1.375rem;
  }
  .ce-header.ce-subheader h5 + h6, .ce-header.ce-subheader h5 + .h6, .ce-header.ce-subheader .h5 + h6, .ce-header.ce-subheader .h5 + .h6 {
    font-size: 1.375rem;
  }
}

form[id^=barrierefreiheit] .input-wrap--text .form-text {
  margin-top: 10px;
}
@media (min-width: 768px) {
  form[id^=barrierefreiheit] .input-wrap--text .form-text {
    margin-top: 20px;
  }
}
form[id^=barrierefreiheit] textarea {
  min-height: 200px;
}
form[id^=barrierefreiheit] input[type=file] {
  font-size: 1rem;
  margin: 15px 0;
}
form[id^=barrierefreiheit] .input {
  display: flex;
  flex-direction: column;
}
form[id^=barrierefreiheit] .form-text {
  order: -1;
  font-size: 1rem;
  margin-bottom: 10px;
}
form[id^=barrierefreiheit] .row {
  align-items: flex-end;
}
form[id^=barrierefreiheit] .form-check-label {
  font-size: 1rem;
  max-width: 550px;
}

.frame-type-form_formframework .row {
  margin: 0 -20px;
}
.frame-type-form_formframework .row > .col,
.frame-type-form_formframework .row > [class*=col-] {
  padding: 0 20px;
}
.frame-type-form_formframework .form-label {
  font-weight: 400;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.frame-type-form_formframework .input.checkbox {
  position: relative;
}
.frame-type-form_formframework input[type=checkbox], .frame-type-form_formframework input[type=radio] {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  top: 5px;
  left: 5px;
}
.frame-type-form_formframework input[type=checkbox]:focus, .frame-type-form_formframework input[type=checkbox]:hover, .frame-type-form_formframework input[type=checkbox]:active, .frame-type-form_formframework input[type=radio]:focus, .frame-type-form_formframework input[type=radio]:hover, .frame-type-form_formframework input[type=radio]:active {
  outline: none;
  border: none;
  box-shadow: none;
}
.frame-type-form_formframework .form-check {
  position: relative;
}
.frame-type-form_formframework .form-check-label {
  position: relative;
  padding-left: 44px;
  cursor: pointer;
  margin-bottom: 0;
}
.frame-type-form_formframework .form-check-label:before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--contrast-white, #fff);
  background-clip: padding-box;
  border: 1px solid var(--contrast-black, #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(--contrast-black, #95C23D);
  position: absolute;
  left: 4px;
  top: 4px;
}
.frame-type-form_formframework input[type=radio] ~ .form-check-label:before, .frame-type-form_formframework input[type=radio] ~ .form-check-label:after {
  border-radius: 50%;
}
.frame-type-form_formframework input[type=checkbox]:checked ~ .form-check-label:after, .frame-type-form_formframework input[type=radio]:checked ~ .form-check-label:after {
  display: block;
}
.frame-type-form_formframework input[type=checkbox]:focus ~ .form-check-label:before, .frame-type-form_formframework input[type=radio]:focus ~ .form-check-label:before {
  border-color: #cae19e;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(149, 194, 61, 0.25);
}
.frame-type-form_formframework .btn-toolbar {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .frame-type-form_formframework .btn-toolbar {
    justify-content: flex-start;
  }
}
.frame-type-form_formframework .input-wrap {
  border-radius: 20px;
  background-color: white;
  padding: 0 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .frame-type-form_formframework .input-wrap {
    padding: 0 30px;
  }
}
.frame-type-form_formframework .input-wrap--imageupload {
  padding-top: 20px;
  padding-bottom: 20px;
}
.frame-type-form_formframework .input-wrap--lfmcaptcha, .frame-type-form_formframework .input-wrap--linkedcheckbox {
  background-color: transparent;
  padding: 0;
}
@media (min-width: 768px) {
  .frame-type-form_formframework .input-wrap--linkedcheckbox .checkbox__label {
    font-size: 1.0625rem;
  }
}
.frame-type-form_formframework .input-wrap--textarea {
  padding-top: 20px;
  padding-bottom: 20px;
}
.frame-type-form_formframework .input-wrap--textarea .form-control {
  min-height: 270px;
  padding: 20px 0;
  border: none !important;
  box-shadow: none !important;
  resize: none;
}
@media (max-width: 767.98px) {
  .frame-type-form_formframework .input-wrap--text, .frame-type-form_formframework .input-wrap--email {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .frame-type-form_formframework .input-wrap--text, .frame-type-form_formframework .input-wrap--email {
    display: flex;
    align-items: center;
  }
}
.frame-type-form_formframework .input-wrap--text > .input, .frame-type-form_formframework .input-wrap--email > .input {
  flex-grow: 1;
}
.frame-type-form_formframework .input-wrap--text label, .frame-type-form_formframework .input-wrap--email label {
  margin: 0 20px 0 0;
  min-width: 100px;
}
.frame-type-form_formframework .input-wrap--text .form-control, .frame-type-form_formframework .input-wrap--email .form-control {
  padding: 10px 0;
  min-width: 100px;
  border: none !important;
  box-shadow: none !important;
}
@media (min-width: 768px) {
  .frame-type-form_formframework .input-wrap--text .form-control, .frame-type-form_formframework .input-wrap--email .form-control {
    padding: 20px 0;
    height: 72px;
  }
}
@media (min-width: 768px) {
  .frame-type-form_formframework .clearfix {
    font-size: 1.0625rem;
  }
}
.frame-type-form_formframework fieldset.form-group {
  margin-bottom: 0;
}

.parsley-errors-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin: 4px 0 0;
  color: var(--contrast-black, #dc3545);
  font-size: 1rem;
}

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

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

.form-control {
  padding-bottom: 0.9375rem;
}

.form-control::-moz-placeholder {
  opacity: 0.7;
  color: inherit;
}

.form-control::placeholder {
  opacity: 0.7;
  color: inherit;
}

.page {
  position: relative;
}
.header {
  position: relative;
}
.header--big-rectangle {
  padding-bottom: min(500px, 78.9473684211vw + 50px);
}
@media (min-width: 768px) {
  .header--big-rectangle {
    padding-bottom: 0;
  }
}
.header--small-rectangle {
  padding-bottom: min(500px, 65.2631578947vw + 50px);
}
@media (min-width: 768px) {
  .header--small-rectangle {
    padding-bottom: 0;
  }
}
.header--big-octagon {
  padding-bottom: min(500px, 92.3076923077vw + 50px);
}
@media (min-width: 768px) {
  .header--big-octagon {
    padding-bottom: 0;
  }
}
.header--small-octagon {
  padding-bottom: min(500px, 73.6842105263vw + 50px);
}
@media (min-width: 768px) {
  .header--small-octagon {
    padding-bottom: 0;
  }
}
@media (min-width: 1620px) {
  .header > .container {
    max-width: 100%;
    padding-left: 70px;
    padding-right: 70px;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background: white;
}
@media (min-width: 1440px) {
  .header__container {
    height: auto;
    background: none;
  }
}
.header__nav {
  position: relative;
  z-index: 11;
}
@media (max-width: 1439.98px) {
  .header__nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    padding: 0;
  }
}
.header__logo {
  max-width: none;
  width: auto;
  height: 42px;
}
@media (min-width: 1440px) {
  .header__logo {
    max-width: 240px;
    height: auto;
  }
}
.header__fixed-container {
  padding-top: 20px;
  padding-bottom: 18px;
}
@media (min-width: 1440px) {
  .header__fixed-container {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.header__fixed-container--fixed {
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.21);
  transform: translateY(-100%);
  top: 0;
  left: 0;
}
@media (max-width: 1439.98px) {
  .header__fixed-container--fixed {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1440px) {
  .header__fixed-container--fixed {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .header__fixed-container--fixed .header__fixed-container-inner {
    display: flex;
    align-items: center;
  }
  .header__fixed-container--fixed .header__logo {
    max-width: 210px;
  }
  .header__fixed-container--fixed .header__container {
    margin-right: 50px;
  }
  .header__fixed-container--fixed .nav__container {
    margin-top: -13px;
  }
  .header__fixed-container--fixed .header__fixed-search {
    display: block;
  }
}
.header__fixed-container--visible {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}
.header__fixed-search {
  display: none;
  margin-left: auto;
}

.header-image {
  position: relative;
  z-index: -1;
}
.header-image__wrap {
  position: absolute;
  top: 140px;
  right: 0;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .header-image__wrap {
    max-width: 41.6666666667%;
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .header-image__wrap {
    max-width: 41.6666666667%;
  }
}
.header-image__wrap--big-rectangle, .header-image__wrap--small-rectangle {
  top: 180px;
  padding-left: 20px;
}
@media (min-width: 1440px) {
  .header-image__wrap {
    top: 70px;
  }
  .header-image__wrap--big-rectangle, .header-image__wrap--small-rectangle {
    top: 250px;
    padding-left: 0;
  }
}
.header-image__wrap--big-octagon {
  clip-path: url(#big-octagon);
}
.header-image__wrap--small-octagon {
  clip-path: url(#small-octagon);
}
@media (min-width: 1440px) {
  .header-image__wrap--big-rectangle, .header-image__wrap--small-rectangle {
    width: min(950px, 50vw);
  }
  .header-image__wrap--big-octagon {
    width: min(1040px, 50vw);
  }
  .header-image__wrap--small-octagon {
    width: min(950px, 50vw);
  }
}
.header-image__wrap:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(153deg, transparent 58%, var(--contrast-transparent-black, rgba(19, 53, 122, 0.72)) 80%);
}
.header-image__wrap--big-rectangle:after, .header-image__wrap--small-rectangle:after {
  background: linear-gradient(130deg, transparent 58%, var(--contrast-transparent-black, rgba(19, 53, 122, 0.72)) 80%);
}
.header-image__image {
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1439.98px) {
  .header-image__image--big-rectangle {
    width: auto;
    max-height: min(450px, 100vw);
  }
  .header-image__image--small-rectangle {
    width: auto;
    max-height: min(450px, 100vw);
  }
  .header-image__image--big-octagon {
    width: auto;
    max-height: min(450px, 100vw);
  }
  .header-image__image--small-octagon {
    width: auto;
    max-height: min(450px, 100vw);
  }
}
@media (max-width: 1439.98px) and (min-width: 992px) and (max-width: 1439.98px) {
  .header-image__image--big-rectangle, .header-image__image--small-rectangle {
    height: min(450px, 100vw);
  }
}
.header-image__image--big-rectangle, .header-image__image--small-rectangle {
  border-radius: 20px 0 0 20px;
}
@media (min-width: 1440px) {
  .header-image__image--big-rectangle, .header-image__image--small-rectangle {
    border-radius: 80px 0 0 80px;
  }
}
.header-image__octagon-overlay {
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;
  width: 800px;
  height: auto;
  opacity: 0.5;
  visibility: hidden;
}
.header-image__octagon-overlay.octimate {
  --tx: -10%;
  --ty: -20%;
  visibility: visible;
  animation: overlay-move-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
.header-image__octagon-overlay--big-rectangle {
  width: 77.8947368421%;
  transform: translate(36%, 50%);
}
.header-image__octagon-overlay--small-rectangle {
  width: 70.5263157895%;
  transform: translate(15%, 60%);
}
.header-image__octagon-overlay--big-octagon {
  width: 71.1538461538%;
  transform: translate(25%, 45%);
}
.header-image__octagon-overlay--small-octagon {
  width: 61.0526315789%;
  transform: translate(20%, 57%);
}
.header-image__video-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header-image__image--video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

:root {
  --main-content-magazine-shape-size: 800px;
  --main-content-pictogram-position: translate(-30%, 20%);
}
@media (min-width: 768px) {
  :root {
    --main-content-pictogram-position: translate(-55%, 10%);
  }
}
@media (min-width: 1440px) {
  :root {
    --main-content-pictogram-position: translate(-55%, -20%);
  }
}

.main-content {
  min-height: 400px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .main-content {
    padding-top: 50px;
  }
}
@media (min-width: 1440px) {
  .main-content {
    padding-top: 140px;
  }
  .frontpage .main-content {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .main-content__header-area {
    min-height: 750px;
  }
  .main-content__header-area--no-img {
    min-height: 0;
  }
  .main-content__header-area--small-rectangle {
    min-height: 670px;
  }
  .main-content__header-area--small-octagon {
    min-height: 620px;
  }
}
.main-content__header-area .ce-bodytext {
  max-width: 630px;
}
.main-content__header-area-content {
  position: relative;
  z-index: 2;
}
.main-content__pictogram-wrap {
  position: relative;
}
.main-content__pictogram {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: var(--main-content-pictogram-position);
  z-index: 1;
  opacity: 0.2;
  color: var(--contrast-black, #95C23D);
}
.main-content__pictogram.flipped {
  transform: var(--main-content-pictogram-position) scaleX(-1);
}
.main-content--magazine {
  position: relative;
}
.main-content--magazine:before {
  content: "";
  position: absolute;
  width: var(--main-content-magazine-shape-size);
  height: var(--main-content-magazine-shape-size);
  background-color: var(--contrast-white, #F8F8F8);
  z-index: -1;
  clip-path: url(#octagon);
  top: 0;
  left: max(-400px, 50vw - 960px - 400px);
  visibility: hidden;
}
.main-content--magazine.octimate:before {
  --tx: 25vw;
  visibility: visible;
  animation: overlay-move-in 1.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1.5s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}

.footer {
  --border-width: 10px;
  position: relative;
  border-bottom: var(--border-width) solid var(--contrast-black, #95C23D);
}
@media (min-width: 768px) {
  .footer {
    --border-width: 30px;
  }
}
.footer:after {
  content: "";
  height: var(--border-width);
  bottom: calc(0px - var(--border-width));
  left: 0;
  width: 30%;
  background-color: var(--contrast-black, #13357A);
  display: block;
  position: absolute;
}
.footer__logo {
  max-width: 235px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__logo {
    max-width: none;
    margin-bottom: 0;
  }
}
.footer__wrap {
  position: relative;
  padding: 45px 0 70px;
  overflow: hidden;
}
.footer__container {
  max-width: 1300px;
}
.footer:before {
  content: "";
  width: 570px;
  height: 570px;
  background-color: #F8F8F8;
  clip-path: url(#octagon);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  display: block;
  z-index: -1;
  visibility: hidden;
}
.footer.octimate:before {
  --tx: 20vw;
  --rot: 90deg;
  visibility: visible;
  animation: overlay-move-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
.footer__content {
  font-weight: 300;
}
@media (min-width: 992px) {
  .footer__content {
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
}
.footer__content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.footer__content ul a {
  color: var(--contrast-black, #2C2C2C);
  font-weight: 300;
}
.footer__content strong {
  color: var(--contrast-black, #13357A);
}
.footer__content .ce-header, .footer__content .ce-subheader {
  margin-bottom: 0;
}
.footer__content h1, .footer__content .h1, .footer__content h2, .footer__content .h2, .footer__content h3, .footer__content .h3, .footer__content h4, .footer__content .h4, .footer__content h5, .footer__content .h5, .footer__content h6, .footer__content .h6 {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.footer__column {
  margin-bottom: 35px;
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__column {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
@media (min-width: 1440px) {
  .footer__column {
    flex: 0 1 auto;
    width: unset;
    max-width: unset;
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .footer__column:first-child {
    width: 100%;
  }
}
.footer__head {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__head {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* 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;
  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 #73808d;
  border-radius: 35px;
  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 #73808d;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
  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 #73808d;
  border-radius: 0;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  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 #73808d;
  border-radius: 35px;
  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 #73808d;
  border-radius: 35px;
  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 #73808d;
  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: 1.1875rem 0 1.1875rem 1.875rem;
  white-space: normal;
  text-overflow: initial;
}
.select2-container--default .select2-selection--single {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid #ced4da;
  border-radius: 35px;
  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: #cae19e;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(149, 194, 61, 0.25);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 300;
  line-height: 1.4;
  color: #2C2C2C;
}
.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 {
  opacity: 0.7;
  color: inherit;
}

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

.button {
  display: inline-block;
  font-weight: 600;
  line-height: 1.4;
  color: var(--contrast-black, #2C2C2C);
  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 25px 15px 25px;
  font-size: 1.0625rem;
  border-radius: 35px;
  transition: background-color 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .button {
    padding: 1.125rem 2.25rem 1rem 2.25rem;
    font-size: 1.25rem;
    border-radius: 35px;
  }
}
.button--block {
  display: block;
  width: 100%;
}
.button--flex {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.button:hover {
  color: var(--contrast-black, #2C2C2C);
}
.button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(149, 194, 61, 0.25);
}
.button--primary {
  background: var(--contrast-black, #95C23D);
  color: var(--contrast-white, #000);
  color: white;
}
.button--primary:hover {
  background: var(--contrast-black, #86af37);
  color: var(--contrast-white, #000);
}
.button--primary:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(149, 194, 61, 0.5));
}
.button--primary:hover, .button--primary:focus-visible {
  color: white;
  background-color: var(--contrast-black, #13357A);
}
.button--outline-primary, .button--outline-primary-inactive {
  background: var(--contrast-white, transparent);
  border-color: var(--contrast-black, #95C23D);
  color: var(--contrast-black, #95C23D);
}
.button--outline-primary:hover, .button--outline-primary-inactive:hover, .button--outline-primary:focus-visible, .button--outline-primary-inactive:focus-visible {
  background: var(--contrast-white, rgba(149, 194, 61, 0.1));
  color: var(--contrast-black, #95C23D);
}
.button--outline-primary:focus, .button--outline-primary-inactive:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(149, 194, 61, 0.5));
}
.button--outline-primary-inactive {
  color: var(--contrast-black, #C9C9C9);
}
.button--outline-primary-inactive:hover, .button--outline-primary-inactive:focus-visible {
  color: var(--contrast-black, #95C23D);
}
.button--secondary {
  background: var(--contrast-black, #13357A);
  color: var(--contrast-white, #fff);
}
.button--secondary:hover {
  background: var(--contrast-black, #11306e);
  color: var(--contrast-white, #fff);
}
.button--secondary:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(19, 53, 122, 0.5));
}
.button--secondary, .button--secondary:hover {
  color: white;
}
.button--outline-secondary {
  background: var(--contrast-white, transparent);
  border-color: var(--contrast-black, #13357A);
  color: var(--contrast-black, #13357A);
}
.button--outline-secondary:hover, .button--outline-secondary:focus-visible {
  background: var(--contrast-white, rgba(19, 53, 122, 0.1));
  color: var(--contrast-black, #13357A);
}
.button--outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(19, 53, 122, 0.5));
}
.button--default {
  background: var(--contrast-black, #13357A);
  color: var(--contrast-white, #fff);
}
.button--default:hover {
  background: var(--contrast-black, #11306e);
  color: var(--contrast-white, #fff);
}
.button--default:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(19, 53, 122, 0.5));
}
.button--outline-default {
  background: var(--contrast-white, transparent);
  border-color: var(--contrast-black, #13357A);
  color: var(--contrast-black, #13357A);
}
.button--outline-default:hover, .button--outline-default:focus-visible {
  background: var(--contrast-white, rgba(19, 53, 122, 0.1));
  color: var(--contrast-black, #13357A);
}
.button--outline-default:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(19, 53, 122, 0.5));
}
.button--danger {
  background: var(--contrast-black, #dc3545);
  color: var(--contrast-white, #fff);
}
.button--danger:hover {
  background: var(--contrast-black, #c6303e);
  color: var(--contrast-white, #fff);
}
.button--danger:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(220, 53, 69, 0.5));
}
.button--outline-danger {
  background: var(--contrast-white, transparent);
  border-color: var(--contrast-black, #dc3545);
  color: var(--contrast-black, #dc3545);
}
.button--outline-danger:hover, .button--outline-danger:focus-visible {
  background: var(--contrast-white, rgba(220, 53, 69, 0.1));
  color: var(--contrast-black, #dc3545);
}
.button--outline-danger:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(220, 53, 69, 0.5));
}
.button--dsgvo {
  background: var(--contrast-black, #efefef);
  color: var(--contrast-white, #000);
}
.button--dsgvo:hover {
  background: var(--contrast-black, #d7d7d7);
  color: var(--contrast-white, #000);
}
.button--dsgvo:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(239, 239, 239, 0.5));
}
.button--outline-dsgvo {
  background: var(--contrast-white, transparent);
  border-color: var(--contrast-black, #efefef);
  color: var(--contrast-black, #efefef);
}
.button--outline-dsgvo:hover, .button--outline-dsgvo:focus-visible {
  background: var(--contrast-white, rgba(239, 239, 239, 0.1));
  color: var(--contrast-black, #efefef);
}
.button--outline-dsgvo:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black, rgba(239, 239, 239, 0.5));
}

.checkbox {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.checkbox svg {
  color: var(--contrast-black, #95C23D);
}
.checkbox__input {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
  top: 38px;
  left: 19px;
}
.checkbox__check {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  flex: 1 0 1em;
  max-width: 1em;
  width: 1em;
  height: 1em;
  border: 1px solid var(--contrast-black, #c9c9c9);
  background: white;
  border-radius: 10px;
  cursor: pointer;
}
.checkbox__check:after {
  content: "";
  display: block;
  width: calc(1em - 16px);
  height: calc(1em - 16px);
  background: transparent;
  border-radius: 5px;
}
.checkbox--radio .checkbox__check, .checkbox--radio .checkbox__check:after {
  border-radius: 50%;
}
.checkbox__input:focus-visible ~ .checkbox__check {
  border-color: #cae19e;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(149, 194, 61, 0.25);
}
.checkbox__input:checked + .checkbox__check:after {
  background: var(--contrast-black, #95C23D);
}
.checkbox__label {
  flex: 1 0;
  align-self: center;
  cursor: pointer;
}

.checkbox-extra-text {
  margin-left: calc(38px + 0.5rem);
}

.drop-field {
  height: 220px;
  background: white url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='%23C9C9C9FF' stroke-width='3' stroke-dasharray='20%2c20' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.drop-field:has(input:focus-visible) {
  outline: 1px solid;
  outline-offset: 5px;
}
.drop-field.droppable {
  transform: scale(1.1);
  background-color: rgba(149, 194, 61, 0.2);
}
.drop-field.drop-targeted {
  background-color: rgba(19, 53, 122, 0.2);
}
.drop-field__text-wrap {
  z-index: 1;
}
.drop-field input[type=file], .drop-field input[type=image] {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
.drop-field__title {
  color: var(--contrast-black, #13357A);
  font-weight: 600;
}
.drop-field__description {
  font-weight: 300;
  margin-bottom: 25px;
}
.drop-field__icon-wrap {
  color: var(--contrast-black, #95C23D);
}
.drop-field__file-info {
  font-size: 0.9em;
  line-height: 1.1;
}
.drop-field__file-info.has-content {
  margin-top: 10px;
}

.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: 28px 30px 24px;
}
@media (min-width: 768px) {
  .table-responsive th, .table-responsive td {
    padding: 28px 40px 24px;
  }
}
.table-responsive tr {
  background-color: white;
}
.table-responsive tr:nth-child(2n) {
  background-color: var(--contrast-white, #F8F8F8);
}
.table-responsive th {
  background-color: var(--contrast-black, #13357A);
  color: white;
  padding: 27px 30px 18px;
}
@media (min-width: 768px) {
  .table-responsive th {
    padding: 27px 40px 18px;
  }
}
.table-responsive thead tr:first-child th:first-child {
  border-top-left-radius: 20px;
}
@media (min-width: 768px) {
  .table-responsive thead tr:first-child th:first-child {
    border-top-left-radius: 40px;
  }
}
.table-responsive thead tr:first-child th:last-child {
  border-top-right-radius: 20px;
}
@media (min-width: 768px) {
  .table-responsive thead tr:first-child th:last-child {
    border-top-right-radius: 40px;
  }
}

.footer-meta {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-meta {
    flex-direction: row;
    justify-content: center;
    margin: 0 -15px;
  }
}
.footer-meta__page {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer-meta__page {
    padding: 0 15px;
    margin-bottom: 0;
  }
}

.header-meta {
  display: none;
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  list-style: none;
  margin: 0;
  font-size: 1.125rem;
  background: #F8F8F8;
  padding: 20px 70px 18px 110px;
  border-bottom-left-radius: 30px;
  --link-color: var(--contrast-black, #2C2C2C);
  --link-hover-color: var(--contrast-black, #2C2C2C);
}
@media (min-width: 1440px) {
  .header-meta {
    transform: translateY(var(--header-offset));
  }
}
@media (min-width: 1440px) {
  .header-meta {
    display: flex;
  }
}
.header-meta__page:not(:last-child) {
  margin-right: 24px;
}
.header-meta__link {
  font-weight: 400;
}
.header-meta__link:hover, .header-meta__link:focus-visible {
  color: var(--contrast-black, #95C23D);
}

.header-blue-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-offset);
  background: var(--contrast-black, #13357A);
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 1440px) {
  .header-blue-meta {
    position: absolute;
    justify-content: flex-end;
    top: 0;
    right: 0;
    left: auto;
  }
}
@media (min-width: 1440px) {
  .header-blue-meta {
    width: min(1040px, 50vw);
  }
  .header-blue-meta--big-rectangle, .header-blue-meta--small-rectangle {
    width: min(950px, 50vw);
  }
  .header-blue-meta--big-octagon {
    width: min(1040px, 50vw);
  }
  .header-blue-meta--small-octagon {
    width: min(950px, 50vw);
  }
}
.header-blue-meta__item {
  display: flex;
  align-items: center;
  color: white;
  font-size: 12px;
  line-height: 1.3;
}
.header-blue-meta__item:not(:last-child) {
  margin-right: 10px;
}
@media (min-width: 576px) {
  .header-blue-meta__item:not(:last-child) {
    margin-right: 40px;
  }
}
@media (min-width: 1440px) {
  .header-blue-meta__item:not(:last-child) {
    margin-right: 72px;
  }
}
@media (min-width: 1440px) {
  .header-blue-meta__item {
    font-size: 15px;
    margin-right: 72px;
  }
}
.header-blue-meta__item-icon {
  display: block;
  margin-right: 10px;
}
@media (max-width: 575.98px) {
  .header-blue-meta__item-icon {
    margin-right: 5px;
    width: auto;
    height: 28px;
  }
}
.header-blue-meta__item-label {
  position: relative;
  top: 4px;
}

.header-buttons {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header-buttons--mobile {
  display: flex;
}
@media (min-width: 1440px) {
  .header-buttons {
    display: flex;
    transform: translateY(var(--header-offset));
    position: absolute;
    z-index: 5;
    top: 90px;
    right: 70px;
  }
  .header-buttons--mobile {
    display: none;
  }
}
.header-buttons--big-octagon .js-search, .header-buttons--small-octagon .js-search {
  background-color: rgba(0, 0, 0, 0.21);
  border-radius: 50%;
}
.header-buttons .js-search {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-buttons .js-search * {
  transition: 0.3s ease-in-out;
}
.header-buttons .js-search:hover *, .header-buttons .js-search:focus-visible * {
  stroke: var(--contrast-black, #13357A);
}
@media (max-width: 1439.98px) {
  .header-buttons .js-search {
    display: none;
  }
  .header-buttons .button {
    margin-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .header-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
  .header-buttons .button {
    margin-left: 20px;
  }
  .header-buttons .js-search {
    margin-left: 12px;
  }
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
}
@media (min-width: 992px) {
  .socials {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.socials__link {
  margin: 0 7px;
  font-size: 32px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--contrast-black, #95C23D);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.socials__link:hover, .socials__link:focus-visible {
  color: white;
  background-color: var(--contrast-black, #13357A);
}

.navbar {
  display: flex;
  align-items: center;
}

.button-bar {
  position: fixed;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  gap: 10px;
  bottom: 25px;
  left: 0;
  right: 0;
}
@media (min-width: 1440px) {
  .button-bar {
    opacity: 1;
    pointer-events: auto;
  }
}
.button-bar--visible {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1440px) {
  .button-bar {
    bottom: unset;
    left: unset;
    right: 20px;
    top: 370px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.button-bar__item {
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--contrast-black, #95C23D);
  color: white;
  font-size: 32px;
  transition: 0.3s ease-in-out;
  border-radius: 50%;
}
.button-bar__item svg {
  transition: 0.3s ease-in-out;
}
.button-bar__item:hover, .button-bar__item:focus-visible {
  background-color: var(--contrast-black, #13357A);
  color: var(--contrast-white, white);
}
.button-bar__item:hover svg, .button-bar__item:focus-visible svg {
  fill: var(--contrast-white, white);
}

.lang-menu__items {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
}
.lang-menu__item {
  text-transform: uppercase;
  padding: 0 5px;
}
.lang-menu__link--disabled {
  opacity: 0.7;
  pointer-events: none;
}

.nav-toggle {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  width: 32px;
  height: 26px;
  position: relative;
  background: none;
}
@media (min-width: 1440px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle:focus, .nav-toggle:focus-within {
  outline-color: transparent;
}
.nav-toggle__bar {
  height: 2px;
  border-radius: 3px;
  background: var(--contrast-black, #13357A);
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  transform: rotate(0deg);
}
.nav-toggle__bar--1 {
  top: 0;
}
.nav-toggle__bar--2, .nav-toggle__bar--3 {
  top: 12px;
}
.nav-toggle__bar--4 {
  bottom: 0;
}
.nav-toggle.active .nav-toggle__bar--1, .nav-toggle.active .nav-toggle__bar--4 {
  left: 50%;
  right: 50%;
  opacity: 0;
}
.nav-toggle.active .nav-toggle__bar--2 {
  transform: rotate(45deg);
}
.nav-toggle.active .nav-toggle__bar--3 {
  transform: rotate(-45deg);
}

.nav-meta {
  --link-color: var(--contrast-black, #2C2C2C);
  --link-hover-color: var(--contrast-black, #2C2C2C);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.125rem;
}
@media (min-width: 1440px) {
  .nav-meta {
    display: none;
  }
}
.nav-meta__page {
  padding: 0 20px;
  margin-bottom: 15px;
}
.nav-meta__link {
  font-weight: var(--contrast-black, 400);
}

.two-click__preview {
  background: var(--contrast-white, #F8F8F8);
  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);
}

@media (min-width: 768px) {
  .column-text {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 992px) {
  .column-text[data-columns="2"] {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
  .column-text[data-columns="3"] {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .column-text[data-columns="4"] {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .column-text[data-columns="2"] {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
  .column-text[data-columns="3"] {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .column-text[data-columns="4"] {
    -moz-column-count: 4;
         column-count: 4;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

.popover-link, .popover-link:hover, .popover-link:focus-visible {
  color: inherit !important;
  font-weight: inherit !important;
  font-style: inherit !important;
  text-decoration: inherit !important;
  cursor: default !important;
}
.popover-link__icon {
  display: inline-block;
  color: var(--contrast-black, #95C23D);
  margin-left: 4px;
  position: relative;
  top: -4px;
  cursor: pointer;
}
.popover-link--source .popover-link__icon {
  color: white;
  background: var(--contrast-black, #95C23D);
  border-radius: 50%;
  font-size: 12px;
  width: 19px;
  height: 19px;
  padding: 4px 0 0 4px;
}

.search-popup {
  max-width: 1280px;
  margin: 0 auto;
  background: white;
  padding: 100px 20px 50px;
  border-radius: 40px;
  position: relative;
}
@media (min-width: 576px) {
  .search-popup {
    padding: 70px 20px;
  }
}
@media (min-width: 768px) {
  .search-popup {
    padding: 70px;
  }
}
.search-popup__header {
  margin-bottom: 40px;
}
.search-popup__input-wrap {
  position: relative;
  max-width: 470px;
  margin: 0 auto;
}
.search-popup__input {
  border: none;
  background: #F8F8F8;
}
.search-popup__button {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 62px;
}
.search-popup__common-search-terms {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .search-popup__common-search-terms {
    margin-top: 120px;
  }
}
.search-popup__terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .search-popup__terms {
    gap: 30px;
  }
}
.search-popup__term {
  margin: 0;
  border: none;
  padding: 6px 20px 4px;
  border-radius: 30px;
  font-weight: 500;
  color: white;
  --link-color: white;
  --link-hover-color: white;
  --link-decoration: none;
  --link-hover-decoration: none;
}
.search-popup__term, .search-popup__term:focus, .search-popup__term:focus-visible {
  outline: none;
  box-shadow: none;
}

.info-tiles .row {
  --bs-gutter-y: 40px;
}
.info-tiles__tile {
  height: 100%;
  background: #F8F8F8;
  padding: 40px 20px 70px;
  border-radius: 20px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .info-tiles__tile {
    border-radius: 40px;
  }
}
.info-tiles__header {
  color: var(--contrast-black, #13357A);
  font-weight: 600;
  margin-bottom: 30px;
}
.small-textimage {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .small-textimage {
    flex-direction: row;
  }
}
.small-textimage__image-wrap {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .small-textimage__image-wrap {
    flex: 1 0 280px;
    max-width: 280px;
    width: 280px;
    margin-bottom: 0;
    margin-right: 60px;
  }
}
@media (min-width: 992px) {
  .small-textimage__image-wrap {
    flex: 1 0 370px;
    max-width: 370px;
    width: 370px;
  }
}
.small-textimage__image {
  border-radius: 20px;
}
@media (min-width: 768px) {
  .small-textimage__image {
    border-radius: 40px;
  }
}
.small-textimage__headers .ce-header, .small-textimage__headers .ce-subheader {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .small-textimage--image-right {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .small-textimage--image-right .small-textimage__image-wrap {
    margin-right: 0;
    margin-left: 60px;
  }
}

.breadcrumb {
  overflow: auto;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 5px 0;
}
@media (min-width: 1440px) {
  .breadcrumb {
    overflow: visible;
  }
}
@media (min-width: 1440px) {
  .breadcrumb {
    margin-top: -100px;
    margin-bottom: 70px;
  }
}
.breadcrumb__list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 1440px) {
  .breadcrumb__list {
    flex-wrap: wrap;
  }
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.breadcrumb__item:last-child:after {
  content: none;
}
.breadcrumb__link {
  white-space: nowrap;
}
.breadcrumb__label {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.breadcrumb__label:before {
  content: "";
  display: block;
  width: 32px;
  height: 21px;
  margin-right: 10px;
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/Logo_Symbol.svg");
  margin-top: -3px;
}

.tag {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5625rem;
  color: white;
  background-color: var(--contrast-black, #13357A);
  border-radius: 30px;
  padding: 4px 15px 1px;
}
@media (min-width: 992px) {
  .tag {
    font-size: 1.125rem;
  }
}

.hotbar {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .hotbar {
    justify-content: flex-end;
    margin-top: -10px;
  }
}
@media (min-width: 1440px) {
  .hotbar {
    margin-top: -20px;
  }
}
.hotbar__fill {
  flex: 1 0;
}
.hotbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hotbar__icon {
  font-size: 1.3em;
}

.pagination {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  flex: 1 0 2em;
  max-width: 2em;
  width: 2em;
  height: 2em;
  background: var(--contrast-black, #95C23D);
  clip-path: url(#octagon);
  color: white;
  transition: background-color 0.2s ease-in-out;
}
.pagination a:hover {
  color: white;
  background: var(--contrast-black, #779b31);
}

/* Styling for specific pages */
.nav {
  display: flex;
  flex-direction: column;
  font-size: 1.625rem;
  font-weight: 600;
}
@media (max-width: 1439.98px) {
  .nav {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease-in-out;
    background: white;
  }
  .nav.visible {
    height: calc(100vh - 80px);
  }
  .nav.scroll {
    overflow: auto;
  }
}
@media (min-width: 1440px) {
  .nav {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
@media (max-width: 1439.98px) {
  .nav__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.nav__list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.nav__list--level1 {
  padding: 10px 0;
}
@media (min-width: 1440px) {
  .nav__list--level1 {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0;
    display: flex;
  }
}
.nav__list--level2 {
  font-size: 1.1875rem;
  font-weight: 500;
}
@media (max-width: 1439.98px) {
  .nav__list--level2 {
    padding: 0 20px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease-in-out;
  }
  .nav__list--level2.visible {
    max-height: 5000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease-in-out;
    padding: 10px 20px;
  }
}
@media (min-width: 1440px) {
  .nav__list--level2 {
    display: none;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 20px 40px 25px;
    background: #F8F8F8;
    border-radius: 0 20px 20px 20px;
  }
}
.nav__page--level1 {
  position: relative;
  padding: 10px 20px;
}
@media (max-width: 1439.98px) {
  .nav__page--level1 {
    background: transparent;
    transition: background-color 0.3s ease-in-out;
  }
  .nav__page--level1.open {
    background-color: #F8F8F8;
  }
}
@media (min-width: 1440px) {
  .nav__page--level1 {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 13px;
    padding-bottom: 0;
    z-index: 1;
  }
  .nav__page--level1.nav__page--has-children:hover {
    z-index: 2;
    background: #F8F8F8;
    border-radius: 20px 20px 0px 0px;
  }
}
.nav__page--level2 {
  margin-bottom: 15px;
}
@media (min-width: 1440px) {
  .nav__page--level1:hover .nav__list--level2 {
    display: block;
  }
}
.nav__link {
  color: var(--contrast-black, #13357A);
}
.nav__link:hover, .nav__link:focus-visible {
  color: var(--contrast-black, #95C23D);
}
.nav__link--level1 {
  position: relative;
  z-index: 2;
}
.nav__link--level2 {
  white-space: nowrap;
}
.nav__toggle {
  position: absolute;
  top: 14px;
  right: 20px;
  color: var(--contrast-black, #13357A);
  transform-origin: center center;
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__toggle.open {
  transform: rotate(180deg);
}
@media (min-width: 1440px) {
  .nav__toggle {
    display: none;
  }
}

.js-search {
  --link-color: var(--contrast-black, #2C2C2C);
  --link-hover-color: var(--contrast-black, #2C2C2C);
}

.header-buttons--big-octagon .js-search,
.header-buttons--small-octagon .js-search {
  --link-color: white;
  --link-hover-color: white;
}

/* Mask Elements */
.isotope-center {
  margin: 0 auto;
  width: 500px;
  max-width: 100%;
}
@media screen and (min-width: 1052px) {
  .isotope-center {
    width: 1012px;
  }
}
@media screen and (min-width: 1564px) {
  .isotope-center {
    width: 1524px;
  }
}
@media screen and (min-width: 2076px) {
  .isotope-center {
    width: 2036px;
  }
}

.gallery {
  margin: -6px;
}
.gallery__item {
  margin: 6px;
  border-radius: 40px;
  overflow: hidden;
}
.gallery__item:hover .gallery__image, .gallery__item:focus-visible .gallery__image {
  transform: scale(1.05);
}
.gallery__image {
  max-width: 100%;
  height: auto;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 1052px) {
  .gallery__image {
    max-width: none;
  }
}

.youtube {
  background-color: #000;
  position: relative;
  padding-top: 56.25%;
  cursor: pointer;
  margin-bottom: 5px;
}
.youtube--placeholder {
  background: transparent;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .youtube--placeholder {
    border-radius: 40px;
  }
}
.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;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(19, 53, 122, 0.8);
  font-size: 28px;
}
@media (min-width: 768px) {
  .youtube__play-button {
    font-size: 35px;
    width: 160px;
    height: 160px;
  }
}
.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:hover, .youtube__overlay:focus-visible {
  opacity: 1;
  color: white;
}
.youtube__overlay-text {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}
.youtube iframe {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border: 0;
  z-index: 10;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  cursor: pointer;
  color: var(--contrast-black, #2C2C2C);
  font-weight: bold;
  background-color: var(--contrast-white, #F8F8F8);
  transition: 0.2s ease-in-out;
  padding: 10px 20px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .accordion__header {
    padding: 20px 30px;
    border-radius: 20px;
  }
}
.accordion__header:hover, .accordion__header:focus-visible {
  color: var(--contrast-black, #2C2C2C);
}
.accordion__title {
  margin-bottom: 0;
  color: inherit;
  padding-right: 20px;
}
@media (max-width: 767.98px) {
  .accordion__title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 768px) {
  .accordion__title {
    padding-right: 40px;
  }
}
.accordion__element {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .accordion__element {
    margin-bottom: 20px;
  }
}
.accordion__toggle {
  transform-origin: center center;
  transform: rotateZ(0deg);
  transition: transform 0.4s ease;
  border-radius: 50%;
  background-color: white;
  color: var(--contrast-black, #95C23D);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
@media (min-width: 768px) {
  .accordion__toggle {
    width: 62px;
    height: 62px;
    font-size: 34px;
  }
}
.accordion__content-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s cubic-bezier(0, 1, 0, 1);
  transform: translateY(-10px);
}
@media (min-width: 768px) {
  .accordion__content-wrap {
    transform: translateY(-20px);
  }
}
.accordion__content {
  padding: 10px 20px 30px;
}
@media (min-width: 768px) {
  .accordion__content {
    padding: 10px 100px 40px 30px;
  }
}
.accordion__check:checked ~ .accordion__header {
  color: var(--contrast-black, #13357A);
  background-color: var(--contrast-white, white);
}
.accordion__check:checked ~ .accordion__header .accordion__toggle {
  background-color: var(--contrast-black, #95C23D);
  color: white;
}
.accordion__check:checked ~ .accordion__header .accordion__toggle:before {
  content: "\f068";
}
.accordion__check:checked ~ .accordion__content-wrap {
  max-height: 50000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

:root {
  --interferer-image: none;
}

.interferer {
  position: relative;
  overflow: hidden;
  height: 600px;
}
@media (min-width: 768px) {
  .interferer {
    height: 700px;
  }
}
.interferer__image-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.interferer__image {
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 1% center;
     object-position: 1% center;
}
.interferer__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  padding: 90px 40px 30px 20px;
}
@media (min-width: 576px) {
  .interferer__content {
    padding-right: 250px;
  }
}
@media (min-width: 768px) {
  .interferer__content {
    padding: 150px 280px 75px 70px;
    width: 800px;
  }
}
.interferer__content:before {
  content: "";
  width: 995px;
  height: 995px;
  position: absolute;
  display: block;
  background-color: white;
  clip-path: url("#octagon");
  z-index: -1;
  top: 0;
  right: -190px;
  visibility: hidden;
}
@media (min-width: 576px) {
  .interferer__content:before {
    right: 0;
  }
}
.interferer__content.octimate:before {
  --tx: 3vw;
  --ty: -2vh;
  --rot: 10deg;
  visibility: visible;
  animation: overlay-move-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}

.linktiles {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -20px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .linktiles {
    flex-direction: row;
    align-items: normal;
  }
}
.linktiles__item-wrap {
  max-width: 360px;
  flex-basis: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .linktiles__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 992px) {
  .linktiles__item-wrap {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}
.linktiles__item {
  border-radius: 20px;
  position: relative;
  display: block;
  overflow: hidden;
}
@media (min-width: 768px) {
  .linktiles__item {
    border-radius: 40px;
  }
}
.linktiles__item:hover .linktiles__image, .linktiles__item:focus-visible .linktiles__image {
  transform: scale(1.05);
}
.linktiles__item:hover .linktiles__title, .linktiles__item:focus-visible .linktiles__title {
  color: #95C23D;
}
.linktiles__image {
  transition: 0.3s ease-in-out;
}
.linktiles__title {
  position: absolute;
  left: 0;
  background-color: white;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--contrast-black, #13357A);
  border-radius: 0 20px 20px 0;
  transition: 0.3s ease-in-out;
  padding: 10px 20px;
  bottom: 40px;
}
@media (min-width: 992px) {
  .linktiles__title {
    font-size: 1.6875rem;
    line-height: 2.1875rem;
    padding: 20px 30px;
    bottom: 50px;
  }
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -60px;
}
@media (min-width: 768px) {
  .steps {
    margin-left: -50px;
    margin-right: -50px;
  }
}
.steps.octimate .steps__item {
  opacity: 1;
  transition: opacity 1.4s ease-in-out;
  transition-delay: var(--transition-delay);
}
.steps.octimate .steps__item:nth-child(1) {
  --transition-delay: 0s;
}
.steps.octimate .steps__item:nth-child(1) .steps__step-number:before {
  --tx: -1vw;
  --ty: 1vw;
  --rot: -35deg;
  visibility: visible;
  animation: overlay-move-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
  animation-delay: var(--transition-delay);
}
.steps.octimate .steps__item:nth-child(2) {
  --transition-delay: 0.3s;
}
.steps.octimate .steps__item:nth-child(2) .steps__step-number:before {
  --tx: 1vw;
  --ty: -1vw;
  --rot: 35deg;
  visibility: visible;
  animation: overlay-move-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
  animation-delay: var(--transition-delay);
}
.steps.octimate .steps__item:nth-child(3) {
  --transition-delay: 0.6s;
}
.steps.octimate .steps__item:nth-child(3) .steps__step-number:before {
  --tx: -1vw;
  --ty: 1vw;
  --rot: -35deg;
  visibility: visible;
  animation: overlay-move-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
  animation-delay: var(--transition-delay);
}
.steps.octimate .steps__item:nth-child(4) {
  --transition-delay: 0.9s;
}
.steps.octimate .steps__item:nth-child(4) .steps__step-number:before {
  --tx: 1vw;
  --ty: -1vw;
  --rot: 35deg;
  visibility: visible;
  animation: overlay-move-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
  animation-delay: var(--transition-delay);
}
.steps.octimate .steps__item:nth-child(5) {
  --transition-delay: 1.2s;
}
.steps.octimate .steps__item:nth-child(5) .steps__step-number:before {
  --tx: -1vw;
  --ty: 1vw;
  --rot: -35deg;
  visibility: visible;
  animation: overlay-move-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
  animation-delay: var(--transition-delay);
}
.steps.octimate .steps__item:nth-child(6) {
  --transition-delay: 1.5s;
}
.steps.octimate .steps__item:nth-child(6) .steps__step-number:before {
  --tx: 1vw;
  --ty: -1vw;
  --rot: 35deg;
  visibility: visible;
  animation: overlay-move-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
  animation-delay: var(--transition-delay);
}
.steps__step-number {
  display: flex;
  align-items: center;
  color: var(--contrast-black, #2C2C2C);
  background-repeat: no-repeat;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 64px;
  line-height: 64px;
  width: 130px;
  height: 130px;
  padding-top: 5px;
  position: relative;
}
@media (min-width: 992px) {
  .steps__step-number {
    font-size: 100px;
    line-height: 110px;
    width: 174px;
    height: 174px;
    margin-bottom: 45px;
    padding-top: 11px;
  }
}
.steps__step-number:before {
  content: "";
  display: block;
  background-image: var(--octagon-contrast-img, url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/octagon_cut_green.svg"));
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.steps__step-number.octimate:before {
  --rot: -35deg;
  visibility: visible;
  animation: overlay-move-in 1.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1.5s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
.steps__item {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
}
@media (min-width: 768px) {
  .steps__item {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
    padding: 0 50px;
  }
}
@media (min-width: 1440px) {
  [data-steps="3"] .steps__item {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
  [data-steps="4"] .steps__item {
    flex: 1 0 25%;
    max-width: 25%;
    width: 25%;
  }
}
.steps__icon-wrap {
  margin-top: 20px;
  position: relative;
}
.steps__icon {
  color: var(--contrast-black, #95C23D);
  display: block;
  font-size: 67px;
  max-width: 1em;
  max-height: 1.0746em;
  width: auto;
  height: auto;
}
.steps__icon-popover {
  position: absolute;
  top: 0;
  right: -30px;
}
.steps .popover-link {
  font-size: 20px;
}

.teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
@media (min-width: 1440px) {
  .teaser {
    flex-direction: row;
    padding: 0;
  }
}
.teaser__image {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 0;
     object-position: center 0;
}
.teaser__image-wrap {
  overflow: hidden;
  position: relative;
  max-width: 980px;
  margin-bottom: 40px;
  border-radius: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .teaser__image-wrap {
    margin-bottom: 60px;
    border-radius: 80px;
  }
}
@media (min-width: 1440px) {
  .teaser__image-wrap {
    max-width: 50%;
    flex-basis: 50%;
    margin-bottom: 0;
    border-radius: 0 80px 80px 0;
  }
}
.teaser__image-wrap:hover .teaser__image, .teaser__image-wrap:focus-visible .teaser__image {
  transform: scale(1.05);
}
.teaser__image-wrap--image:before {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(217deg, rgba(0, 0, 0, 0) 53.36%, rgba(19, 53, 122, 0.66) 83.72%);
  z-index: 9;
}
.teaser__image-wrap--shape:after {
  content: "";
  position: absolute;
  background-image: var(--octagon-contrast-img, url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/octagon_cut_green.svg"));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.66;
  pointer-events: none;
  z-index: 10;
  width: 320px;
  height: 320px;
  bottom: -180px;
  left: -120px;
  visibility: hidden;
}
@media (min-width: 768px) {
  .teaser__image-wrap--shape:after {
    bottom: -370px;
    left: -150px;
    width: 650px;
    height: 650px;
  }
}
.teaser__image-wrap--shape.octimate:after {
  --tx: 10vw;
  --ty: -20vh;
  visibility: visible;
  animation: overlay-move-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
.teaser__image-wrap--shape-top:before {
  background: linear-gradient(310deg, rgba(0, 0, 0, 0) 53.36%, rgba(19, 53, 122, 0.66) 83.72%);
}
.teaser__image-wrap--shape-top:after {
  bottom: auto;
  top: -340px;
}
.teaser__image-wrap--shape-highlight:after {
  background-image: var(--small-octagon-contrast-img, url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/small_octagon_cut_blue.svg"));
}
.teaser__image-wrap--image {
  height: 220px;
}
@media (min-width: 576px) {
  .teaser__image-wrap--image {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .teaser__image-wrap--image {
    height: 540px;
  }
}
@media (min-width: 1440px) {
  .teaser__image-wrap--image {
    height: 790px;
  }
}
.teaser__image-wrap:has(iframe) {
  border-radius: 0 !important;
}
.teaser__content {
  max-width: 710px;
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .teaser__content {
    margin: 0 0 0 100px;
    padding: 0 40px;
  }
}
.teaser__header {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .teaser__header {
    margin-bottom: 50px;
  }
}
.teaser__button {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .teaser__button {
    margin-top: 50px;
  }
}
.teaser--image-right .teaser__image-wrap:before {
  background: linear-gradient(131deg, rgba(0, 0, 0, 0) 53.36%, rgba(19, 53, 122, 0.66) 83.72%);
}
.teaser--image-right .teaser__image-wrap.teaser__image-wrap--shape-top:before {
  background: linear-gradient(30deg, rgba(0, 0, 0, 0) 53.36%, rgba(19, 53, 122, 0.66) 83.72%);
}
.teaser--image-right .teaser__image-wrap .youtube {
  margin-bottom: 0;
}
@media (min-width: 1440px) {
  .teaser--image-right {
    flex-direction: row-reverse;
  }
  .teaser--image-right .teaser__image-wrap {
    border-radius: 80px 0 0 80px;
  }
  .teaser--image-right .teaser__image-wrap--shape:after {
    left: auto;
    opacity: 0.3;
    right: -270px;
  }
  .teaser--image-right .teaser__image-wrap--shape.octimate:after {
    --tx: -10vw;
    --ty: 20vh;
    visibility: visible;
    animation: overlay-move-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards;
  }
  .teaser--image-right .teaser__content {
    margin: 0 100px 0 0;
  }
}

@media (min-width: 1440px) {
  .small-teaser {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1440px) {
  .small-teaser--image-right {
    flex-direction: row-reverse;
  }
  .small-teaser--image-right .small-teaser__content {
    padding-left: 0;
    padding-right: 130px;
  }
}
@media (min-width: 1440px) {
  .small-teaser__content {
    padding-left: 130px;
  }
}
.small-teaser__image-wrap {
  max-width: 700px;
  border-radius: 20px;
  flex-shrink: 0;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .small-teaser__image-wrap {
    border-radius: 40px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1440px) {
  .small-teaser__image-wrap {
    max-width: 50%;
    flex-basis: 50%;
    margin-bottom: 0;
  }
}
.small-teaser__image-wrap:hover .small-teaser__image, .small-teaser__image-wrap:focus-visible .small-teaser__image {
  transform: scale(1.05);
}
.small-teaser__image {
  transition: 0.3s ease-in-out;
}
.small-teaser__header {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .small-teaser__header {
    margin-bottom: 50px;
  }
}

.contactperson {
  display: flex;
  margin: 0 -10px -40px;
  flex-wrap: wrap;
}
.contactperson__item {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  flex-basis: 100%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .contactperson__item {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 1440px) {
  .contactperson__item {
    max-width: 33.33%;
    flex-basis: 33.33%;
  }
}
.contactperson__content {
  padding: 95px 0 70px;
  background-color: #F8F8F8;
  text-align: center;
  border-radius: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .contactperson__content {
    border-radius: 40px;
  }
}
.contactperson__head {
  padding: 0 80px;
  margin-bottom: 40px;
}
.contactperson__image {
  border-radius: 50%;
}
.contactperson__image-wrap {
  border-radius: 50%;
  background-color: white;
  margin-bottom: -60px;
  z-index: 1;
  padding: 10px;
  max-width: 190px;
}
@media (min-width: 992px) {
  .contactperson__image-wrap {
    padding: 20px;
    max-width: none;
  }
}
.contactperson__contact-item {
  width: 100%;
  padding: 25px;
  background-color: var(--contrast-black, #13357A);
  color: white;
  margin-bottom: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactperson__contact-item:before {
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 100;
  margin-right: 10px;
  font-size: 30px;
}
.contactperson__contact-item--phone:before {
  content: "\f095";
}
.contactperson__contact-item--email:before {
  content: "\f0e0";
}

.center-teaser {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .center-teaser {
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .center-teaser {
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
  }
}
.center-teaser__header {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .center-teaser__header {
    margin-bottom: 50px;
  }
}
.center-teaser__content {
  text-align: center;
  max-width: 580px;
  padding: 40px 0;
}
@media (min-width: 992px) {
  .center-teaser__content {
    padding: 60px 40px;
  }
}
.center-teaser__button {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .center-teaser__button {
    margin-top: 50px;
  }
}
.center-teaser__image {
  width: 100%;
}
.center-teaser__image-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .center-teaser__image-wrap {
    border-radius: 80px;
  }
}
@media (min-width: 992px) {
  .center-teaser__image-wrap {
    max-width: 560px;
  }
}
.center-teaser__image-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
}
@media (min-width: 992px) {
  .center-teaser__image-wrap:first-child {
    border-radius: 0 80px 80px 0;
    align-self: flex-start;
    margin-right: 20px;
  }
}
@media (min-width: 1440px) {
  .center-teaser__image-wrap:first-child {
    align-self: inherit;
    margin-right: 0;
  }
}
.center-teaser__image-wrap:first-child:before {
  background: linear-gradient(212deg, rgba(19, 53, 122, 0) 39.61%, rgba(19, 53, 122, 0.8) 89.02%);
}
.center-teaser__image-wrap:first-child:after {
  content: "";
  position: absolute;
  background-image: var(--octagon-contrast-img, url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/octagon_cut_green.svg"));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 10;
  width: 370px;
  height: 370px;
  bottom: -200px;
  right: -70px;
  visibility: hidden;
}
.center-teaser__image-wrap.octimate:first-child:after {
  --tx: -5vw;
  --ty: -5vh;
  visibility: visible;
  animation: overlay-move-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
@media (min-width: 992px) {
  .center-teaser__image-wrap:last-child {
    border-radius: 80px 0 0 80px;
    align-self: flex-end;
    margin-left: 20px;
  }
}
@media (min-width: 1440px) {
  .center-teaser__image-wrap:last-child {
    align-self: inherit;
    margin-left: 0;
  }
}
.center-teaser__image-wrap:last-child:before {
  background: linear-gradient(131deg, rgba(0, 0, 0, 0) 34.06%, rgba(19, 53, 122, 0.8) 69.63%);
}

.teaser-gallery {
  overflow: hidden;
}
@media (min-width: 1440px) {
  .teaser-gallery--left .teaser-gallery__container {
    flex-direction: row-reverse;
  }
  .teaser-gallery--left .teaser-gallery__content {
    padding-right: 0;
    padding-left: var(--gallery-content-padding);
  }
  .teaser-gallery--left .teaser-gallery__images-wrap {
    align-items: flex-end;
  }
}
.teaser-gallery__header {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .teaser-gallery__header {
    margin-bottom: 50px;
  }
}
.teaser-gallery__images {
  flex-shrink: 0;
}
@media (min-width: 1440px) {
  .teaser-gallery__images {
    margin-left: -10px;
  }
}
.teaser-gallery__images-wrap {
  margin-top: 40px;
}
@media (min-width: 1440px) {
  .teaser-gallery__images-wrap {
    margin-top: 0;
    max-width: 50%;
    flex-basis: 50%;
    flex-shrink: 0;
  }
}
.teaser-gallery__images-wrap--big {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1440px) {
  .teaser-gallery__images-wrap--big .teaser-gallery__images {
    width: calc(50vw + 20px);
  }
}
.teaser-gallery__item {
  border-radius: 20px;
  overflow: hidden;
  margin: 10px;
  width: calc(100% - 20px);
}
@media (min-width: 576px) {
  .teaser-gallery__item {
    border-radius: 40px;
    width: calc(50% - 20px);
  }
}
.teaser-gallery__item:hover .teaser-gallery__image, .teaser-gallery__item:focus-visible .teaser-gallery__image {
  transform: scale(1.05);
}
.teaser-gallery__image {
  transition: 0.3s ease-in-out;
  width: 100%;
}
@media (min-width: 1440px) {
  .teaser-gallery__container {
    display: flex;
  }
}
@media (min-width: 1440px) {
  .teaser-gallery__content {
    --gallery-content-padding: 165px;
    padding-right: var(--gallery-content-padding);
    padding-top: 90px;
  }
}
@media (min-width: 992px) {
  .teaser-gallery__content ul {
    font-size: 1.3125rem;
    line-height: 1.8125rem;
  }
  .teaser-gallery__content ul li {
    margin-bottom: 15px !important;
  }
}
.teaser-gallery__button {
  margin-top: 40px;
}

.services {
  overflow: hidden;
  background-color: #F8F8F8;
  padding: 40px 0 20px;
}
@media (min-width: 768px) {
  .services {
    padding: 140px 0 100px;
  }
}
.services__container {
  position: relative;
}
.services__container:before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: var(--small-octagon-contrast-img, url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/small_octagon_cut_blue.svg"));
  opacity: 0.3;
  left: -50px;
  top: 10px;
  visibility: hidden;
}
@media (min-width: 992px) {
  .services__container:before {
    left: -120px;
    top: -40px;
    width: 420px;
    height: 420px;
  }
}
.services__container.octimate:before {
  --tx: -10vw;
  visibility: visible;
  animation: overlay-move-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
.services__top-header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .services__top-header {
    margin-bottom: 90px;
  }
}
.services__items {
  padding-top: 30px;
}
@media (min-width: 992px) {
  .services__items {
    padding-top: 0;
  }
}
@media (max-width: 991.98px) {
  .services__item-wrap.swiper-slide-active .services__item {
    transform: translateY(-30px);
  }
}
.services__item {
  padding: 50px 20px;
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.3s ease-in-out;
  box-shadow: 0 -20px 34px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .services__item {
    box-shadow: none;
    padding: 50px 40px;
    border-radius: 40px;
  }
}
.services__item:hover, .services__item:focus-visible {
  box-shadow: 0 -20px 34px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .services__item:hover, .services__item:focus-visible {
    transform: translateY(-20px);
  }
}
.services__header {
  margin-bottom: 30px;
}
.services__icon-wrap {
  margin-bottom: 10px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .services__dots {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .services__arrows {
    display: none;
  }
}

.form-container {
  position: relative;
}
.form-container__content {
  background-color: #F8F8F8;
  padding: 70px 0 50px;
}
@media (min-width: 768px) {
  .form-container__content {
    padding: 120px 0;
  }
}
.form-container__header {
  max-width: 630px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .form-container__header {
    margin-bottom: 60px;
  }
}
.form-container__extra {
  background-color: var(--contrast-black, #95C23D);
  color: white;
  font-size: 1.25rem;
  line-height: 1.5rem;
  clip-path: url("#octagon");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  margin-left: auto;
  width: 260px;
  height: 260px;
  padding: 40px 50px 40px 40px;
  margin-bottom: -30px;
  visibility: hidden;
}
.form-container__extra.octimate {
  --tx: -1vw;
  --ty: 1vh;
  --rot: -5deg;
  visibility: visible;
  animation: overlay-move-in 1.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1.5s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
@media (min-width: 768px) {
  .form-container__extra {
    width: 710px;
    height: 710px;
    font-size: 3.25rem;
    line-height: 3.75rem;
    padding: 40px 180px 220px 40px;
    margin-top: -250px;
  }
}
@media (min-width: 1620px) {
  .form-container__extra {
    position: absolute;
    right: 0;
    top: -210px;
    margin: 0;
  }
}
.form-container__extra:before {
  content: "";
  width: 53px;
  height: 31px;
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Icons/quote_white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .form-container__extra:before {
    width: 137px;
    height: 80px;
    margin-bottom: 45px;
  }
}
.form-container__form {
  position: relative;
  z-index: 5;
}

.logos {
  position: relative;
}
@media screen and (min-width: 1600px) {
  .logos {
    margin: 0 -25px;
  }
}
.logos:before, .logos:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}
.logos:before {
  left: 0;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.logos:after {
  right: 0;
  background: linear-gradient(270deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.logos__items-wrap {
  align-items: center;
}
@media screen and (min-width: 1600px) {
  .logos__items-wrap {
    justify-content: center;
  }
}
.logos__item-wrap {
  width: auto;
}
@media screen and (min-width: 1600px) {
  .logos__item {
    margin: 0 25px;
  }
}

.news-teaser:not(.swiper-initialized) .swiper-controls-pagination {
  display: none;
}
@media (min-width: 1440px) {
  .news-teaser__items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
  }
}
.news-teaser__items.filter-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -20px;
}
@media (min-width: 1440px) {
  .news-teaser__item-wrap {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
.news-teaser__item-wrap.filterable {
  padding: 0 10px;
  margin-bottom: 20px;
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .news-teaser__item-wrap.filterable {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
@media (min-width: 1440px) {
  .news-teaser__item-wrap.filterable {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
}
.news-teaser__item {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .news-teaser__item {
    border-radius: 40px;
  }
}
.news-teaser__item:hover, .news-teaser__item:focus-visible {
  box-shadow: 0 -20px 34px 0 rgba(0, 0, 0, 0.1);
}
.news-teaser__image-wrap {
  position: relative;
}
.news-teaser__tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
@media (min-width: 992px) {
  .news-teaser__tag {
    left: 30px;
    bottom: 30px;
  }
}
.news-teaser__content {
  background-color: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 15px 40px;
}
@media (min-width: 992px) {
  .news-teaser__content {
    padding: 40px 30px 55px;
  }
}
.news-teaser__link-wrap {
  margin-top: auto;
}

.green-box {
  background: var(--contrast-light, #EAF3D8);
  border-radius: 20px;
  padding: 35px 40px 30px;
  position: relative;
  margin-top: 70px;
}
.green-box--icon {
  padding-top: 70px;
}
@media (min-width: 768px) {
  .green-box {
    padding: 70px 80px 60px;
    margin-top: 0;
    border-radius: 40px;
  }
}
.green-box__icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  width: 3.25em;
  height: 3.25em;
  left: 1.25em;
  top: -1.625em;
  border: 0.625em solid white;
  border-radius: 50%;
  background: var(--contrast-black, #13357A);
  color: white;
  line-height: 1;
}
@media (min-width: 768px) {
  .green-box__icon {
    left: 2.5em;
  }
}
.green-box__icon--inverted {
  border: 0.625em solid white;
  background: white;
  color: var(--contrast-black, #13357A);
}
.green-box__icon--inverted i {
  font-size: 2em;
}
.green-box__icon i.fa-duotone, .green-box__icon i.fa-sharp-duotone {
  --fa-primary-color: var(--contrast-black, #C9C9C9);
  --fa-primary-opacity: 1;
  --fa-secondary-color: var(--contrast-white, inherit);
  --fa-secondary-opacity: 1;
}
.green-box__icon--ditto i {
  position: relative;
  font-size: 2.2em;
  top: 20%;
}
.green-box__headers .ce-header.ce-subheader {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 1.875rem;
}
.green-box__headers .ce-header.ce-subheader h1, .green-box__headers .ce-header.ce-subheader .h1, .green-box__headers .ce-header.ce-subheader h2, .green-box__headers .ce-header.ce-subheader .h2, .green-box__headers .ce-header.ce-subheader h3, .green-box__headers .ce-header.ce-subheader .h3 {
  margin-bottom: 0;
  font-size: 1.75rem;
}
@media (min-width: 992px) {
  .green-box__headers .ce-header.ce-subheader h1, .green-box__headers .ce-header.ce-subheader .h1, .green-box__headers .ce-header.ce-subheader h2, .green-box__headers .ce-header.ce-subheader .h2, .green-box__headers .ce-header.ce-subheader h3, .green-box__headers .ce-header.ce-subheader .h3 {
    font-size: 2.5rem;
  }
}
.green-box__headers .ce-header.ce-subheader h1 + h2, .green-box__headers .ce-header.ce-subheader h1 + .h2, .green-box__headers .ce-header.ce-subheader h1 + h3, .green-box__headers .ce-header.ce-subheader h1 + .h3, .green-box__headers .ce-header.ce-subheader h1 + h4, .green-box__headers .ce-header.ce-subheader h1 + .h4, .green-box__headers .ce-header.ce-subheader .h1 + h2, .green-box__headers .ce-header.ce-subheader .h1 + .h2, .green-box__headers .ce-header.ce-subheader .h1 + h3, .green-box__headers .ce-header.ce-subheader .h1 + .h3, .green-box__headers .ce-header.ce-subheader .h1 + h4, .green-box__headers .ce-header.ce-subheader .h1 + .h4, .green-box__headers .ce-header.ce-subheader h2 + h2, .green-box__headers .ce-header.ce-subheader h2 + .h2, .green-box__headers .ce-header.ce-subheader h2 + h3, .green-box__headers .ce-header.ce-subheader h2 + .h3, .green-box__headers .ce-header.ce-subheader h2 + h4, .green-box__headers .ce-header.ce-subheader h2 + .h4, .green-box__headers .ce-header.ce-subheader .h2 + h2, .green-box__headers .ce-header.ce-subheader .h2 + .h2, .green-box__headers .ce-header.ce-subheader .h2 + h3, .green-box__headers .ce-header.ce-subheader .h2 + .h3, .green-box__headers .ce-header.ce-subheader .h2 + h4, .green-box__headers .ce-header.ce-subheader .h2 + .h4, .green-box__headers .ce-header.ce-subheader h3 + h2, .green-box__headers .ce-header.ce-subheader h3 + .h2, .green-box__headers .ce-header.ce-subheader h3 + h3, .green-box__headers .ce-header.ce-subheader h3 + .h3, .green-box__headers .ce-header.ce-subheader h3 + h4, .green-box__headers .ce-header.ce-subheader h3 + .h4, .green-box__headers .ce-header.ce-subheader .h3 + h2, .green-box__headers .ce-header.ce-subheader .h3 + .h2, .green-box__headers .ce-header.ce-subheader .h3 + h3, .green-box__headers .ce-header.ce-subheader .h3 + .h3, .green-box__headers .ce-header.ce-subheader .h3 + h4, .green-box__headers .ce-header.ce-subheader .h3 + .h4 {
  margin-bottom: 0;
  font-size: 1.375rem;
}
@media (min-width: 992px) {
  .green-box__headers .ce-header.ce-subheader h1 + h2, .green-box__headers .ce-header.ce-subheader h1 + .h2, .green-box__headers .ce-header.ce-subheader h1 + h3, .green-box__headers .ce-header.ce-subheader h1 + .h3, .green-box__headers .ce-header.ce-subheader h1 + h4, .green-box__headers .ce-header.ce-subheader h1 + .h4, .green-box__headers .ce-header.ce-subheader .h1 + h2, .green-box__headers .ce-header.ce-subheader .h1 + .h2, .green-box__headers .ce-header.ce-subheader .h1 + h3, .green-box__headers .ce-header.ce-subheader .h1 + .h3, .green-box__headers .ce-header.ce-subheader .h1 + h4, .green-box__headers .ce-header.ce-subheader .h1 + .h4, .green-box__headers .ce-header.ce-subheader h2 + h2, .green-box__headers .ce-header.ce-subheader h2 + .h2, .green-box__headers .ce-header.ce-subheader h2 + h3, .green-box__headers .ce-header.ce-subheader h2 + .h3, .green-box__headers .ce-header.ce-subheader h2 + h4, .green-box__headers .ce-header.ce-subheader h2 + .h4, .green-box__headers .ce-header.ce-subheader .h2 + h2, .green-box__headers .ce-header.ce-subheader .h2 + .h2, .green-box__headers .ce-header.ce-subheader .h2 + h3, .green-box__headers .ce-header.ce-subheader .h2 + .h3, .green-box__headers .ce-header.ce-subheader .h2 + h4, .green-box__headers .ce-header.ce-subheader .h2 + .h4, .green-box__headers .ce-header.ce-subheader h3 + h2, .green-box__headers .ce-header.ce-subheader h3 + .h2, .green-box__headers .ce-header.ce-subheader h3 + h3, .green-box__headers .ce-header.ce-subheader h3 + .h3, .green-box__headers .ce-header.ce-subheader h3 + h4, .green-box__headers .ce-header.ce-subheader h3 + .h4, .green-box__headers .ce-header.ce-subheader .h3 + h2, .green-box__headers .ce-header.ce-subheader .h3 + .h2, .green-box__headers .ce-header.ce-subheader .h3 + h3, .green-box__headers .ce-header.ce-subheader .h3 + .h3, .green-box__headers .ce-header.ce-subheader .h3 + h4, .green-box__headers .ce-header.ce-subheader .h3 + .h4 {
    font-size: 1.6875rem;
  }
}
.green-box__person {
  display: flex;
  align-items: center;
}
.green-box__person-image-wrap {
  flex: 1 0 126px;
  max-width: 126px;
  width: 126px;
  height: 126px;
  padding: 10px;
  background: white;
  border-radius: 50%;
  margin-right: 20px;
}
.green-box__person-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.green-box__person-text-wrap {
  flex: 1 0;
}
.green-box__person-field {
  font-size: 1.125rem;
}

.gray-box {
  background: #F8F8F8;
  border-radius: 20px;
  padding: 25px 20px 40px;
  position: relative;
}
@media (min-width: 576px) {
  .gray-box {
    padding: 50px 40px 80px;
  }
}
@media (min-width: 768px) {
  .gray-box {
    border-radius: 40px;
  }
}
.gray-box__headers .ce-header {
  margin-bottom: 1.875rem;
}
.gray-box__headers .ce-header h1, .gray-box__headers .ce-header .h1, .gray-box__headers .ce-header h2, .gray-box__headers .ce-header .h2, .gray-box__headers .ce-header h3, .gray-box__headers .ce-header .h3 {
  margin-bottom: 0;
  font-size: 1.75rem;
}
@media (min-width: 992px) {
  .gray-box__headers .ce-header h1, .gray-box__headers .ce-header .h1, .gray-box__headers .ce-header h2, .gray-box__headers .ce-header .h2, .gray-box__headers .ce-header h3, .gray-box__headers .ce-header .h3 {
    font-size: 2.5rem;
  }
}
.gray-box__content {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .gray-box__content {
    padding: 0 35px;
  }
}
@media (min-width: 992px) {
  .gray-box__content {
    padding: 0 70px;
  }
}
@media (min-width: 768px) {
  .gray-box--two-column .gray-box__text {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

@media (min-width: 992px) {
  .contact {
    display: flex;
    justify-content: space-between;
  }
}
.contact__person {
  --p-margin: 20px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .contact__person {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .contact__person {
    margin-top: 0;
  }
}
.contact__person-content {
  padding-top: 20px;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .contact__person-content {
    padding-top: 40px;
  }
}
@media (min-width: 768px) {
  .contact__person-image-wrap {
    margin-right: 40px;
  }
}
.contact__description strong {
  color: var(--contrast-black, #13357A);
}
.contact__contact {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.contact__contact-icon {
  font-size: 30px;
  margin-right: 10px;
  color: var(--contrast-black, #13357A);
}

:root {
  --icon-section-delay: 0s;
}

@keyframes icon-move-in {
  0% {
    opacity: 0;
    transform: translate(50%, -50%) rotateZ(45deg) translateZ(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotateZ(0) translateZ(0);
  }
}
.icon-section {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -50px;
}
.icon-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .icon-section__item {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
@media (min-width: 1440px) {
  .icon-section__item {
    flex: 1 0 25%;
    max-width: 25%;
    width: 25%;
  }
}
.icon-section__icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: var(--contrast-black, #13357A);
  transform: translateZ(0);
  font-size: 185px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin-bottom: 30px;
  opacity: 0;
}
.icon-section__icon-wrap.octimate {
  animation: icon-move-in;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
  animation-delay: var(--icon-section-delay);
}
@media (min-width: 768px) {
  .icon-section__item:nth-child(2n+1) {
    --icon-section-delay: 0s;
  }
  .icon-section__item:nth-child(2n+2) {
    --icon-section-delay: 0.3s;
  }
}
@media (min-width: 1440px) {
  .icon-section__item:nth-child(4n+1) {
    --icon-section-delay: 0s;
  }
  .icon-section__item:nth-child(4n+2) {
    --icon-section-delay: 0.3s;
  }
  .icon-section__item:nth-child(4n+3) {
    --icon-section-delay: 0.6s;
  }
  .icon-section__item:nth-child(4n+4) {
    --icon-section-delay: 0.9s;
  }
}
.icon-section__icon {
  display: block;
  width: 0.4054054em;
  height: auto;
}
.icon-section__header {
  margin-bottom: 10px;
}
.icon-text {
  display: flex;
  align-items: flex-start;
}
.icon-text__icon-wrap {
  flex: 1 0 60px;
  max-width: 60px;
  width: 60px;
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
}
@media (min-width: 992px) {
  .icon-text__icon-wrap {
    margin-right: 40px;
    flex: 1 0 90px;
    max-width: 90px;
    width: 90px;
  }
}
.icon-text__icon {
  display: block;
  max-width: 100%;
  height: auto;
  color: var(--contrast-black, #95C23D);
}
.icon-text__text-wrap {
  flex: 1 0;
}
.icon-text__header {
  margin-bottom: 30px;
}

/* Grid Container */
:root {
  --grid-shape-size: 2600px;
}

.container .container:not(.container-standalone), .container .container-fluid:not(.container-standalone), .container .container-sm:not(.container-standalone), .container .container-md:not(.container-standalone), .container .container-lg:not(.container-standalone), .container .container-xl:not(.container-standalone), .container .container-xxl:not(.container-standalone), .container-fluid .container:not(.container-standalone), .container-sm .container:not(.container-standalone), .container-md .container:not(.container-standalone), .container-lg .container:not(.container-standalone), .container-xl .container:not(.container-standalone), .container-xxl .container:not(.container-standalone), .container-fluid .container-fluid:not(.container-standalone), .container-sm .container-fluid:not(.container-standalone), .container-md .container-fluid:not(.container-standalone), .container-lg .container-fluid:not(.container-standalone), .container-xl .container-fluid:not(.container-standalone), .container-xxl .container-fluid:not(.container-standalone), .container-fluid .container-sm:not(.container-standalone), .container-sm .container-sm:not(.container-standalone), .container-md .container-sm:not(.container-standalone), .container-lg .container-sm:not(.container-standalone), .container-xl .container-sm:not(.container-standalone), .container-xxl .container-sm:not(.container-standalone), .container-fluid .container-md:not(.container-standalone), .container-sm .container-md:not(.container-standalone), .container-md .container-md:not(.container-standalone), .container-lg .container-md:not(.container-standalone), .container-xl .container-md:not(.container-standalone), .container-xxl .container-md:not(.container-standalone), .container-fluid .container-lg:not(.container-standalone), .container-sm .container-lg:not(.container-standalone), .container-md .container-lg:not(.container-standalone), .container-lg .container-lg:not(.container-standalone), .container-xl .container-lg:not(.container-standalone), .container-xxl .container-lg:not(.container-standalone), .container-fluid .container-xl:not(.container-standalone), .container-sm .container-xl:not(.container-standalone), .container-md .container-xl:not(.container-standalone), .container-lg .container-xl:not(.container-standalone), .container-xl .container-xl:not(.container-standalone), .container-xxl .container-xl:not(.container-standalone), .container-fluid .container-xxl:not(.container-standalone), .container-sm .container-xxl:not(.container-standalone), .container-md .container-xxl:not(.container-standalone), .container-lg .container-xxl:not(.container-standalone), .container-xl .container-xxl:not(.container-standalone), .container-xxl .container-xxl:not(.container-standalone) {
  padding-left: 0;
  padding-right: 0;
}

.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: 60px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-extra-small {
    padding-bottom: 60px;
  }
}
.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: 90px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-small {
    padding-bottom: 90px;
  }
}
.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: 120px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-medium {
    padding-bottom: 120px;
  }
}
.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: 150px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-large {
    padding-bottom: 150px;
  }
}
.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: 180px;
  }
}
@media (min-width: 768px) {
  .grid-container--padding-after-extra-large {
    padding-bottom: 180px;
  }
}
.grid-container--background-white {
  --container-bg: $color;
  background-color: white;
  display: flow-root;
}
.grid-container--background-light {
  --container-bg: $color;
  background-color: #F8F8F8;
  display: flow-root;
}
.grid-container--background-shape, .grid-container--background-shape-small {
  position: relative;
}
.grid-container--background-shape:before, .grid-container--background-shape-small:before {
  content: "";
  position: absolute;
  width: var(--grid-shape-size);
  height: var(--grid-shape-size);
  background-color: var(--contrast-white, #F8F8F8);
  z-index: -1;
  clip-path: url(#octagon);
  top: -140px;
  left: -2290px;
  visibility: hidden;
}
@media (min-width: 992px) {
  .grid-container--background-shape:before, .grid-container--background-shape-small:before {
    top: -80px;
    left: -1500px;
  }
}
.grid-container--background-shape.octimate:before, .grid-container--background-shape-small.octimate:before {
  --tx: 20vw;
  --ty: 10vh;
  --rot: 20deg;
  visibility: visible;
  animation: overlay-move-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
.grid-container--background-shape-small {
  --grid-shape-size: 1450px;
}
.grid-container--background-shape-small:before {
  left: 0;
  transform: translateX(-30%);
}
@media (min-width: 1440px) {
  .grid-container--background-shape-small:before {
    transform: none;
    top: -120px;
    left: min(100vw - 1920px, 100px);
  }
}

/* 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-list-view {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .news-list-view {
    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__date {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 0.9em;
}
.list-article__image {
  margin-bottom: 20px;
}
.list-article__link {
  margin-top: 20px;
}

.article__header {
  margin-bottom: 20px;
}
.article__date {
  font-size: 1.125em;
  margin-bottom: 5px;
}
.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;
  }
}

.kesearch__input-group {
  display: flex;
  margin-bottom: 30px;
}
.kesearch__submit {
  margin-left: 10px;
}
.kesearch__num-results {
  font-weight: 700;
  margin-bottom: 20px;
}
.kesearch__page-browser--top {
  margin-bottom: 20px;
}
.kesearch__page-browser--bottom {
  margin-top: 20px;
}

.tx-kesearch-pi1 .result-list-item {
  margin-bottom: 20px;
}
.tx-kesearch-pi1 .result-list-item .hit {
  font-weight: 600;
  color: var(--contrast-black, #13357A);
}

.result_txt {
  font-weight: 600;
}

.joboffers {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .joboffers {
    margin: 0 -10px;
  }
}
.joboffers__title {
  margin-bottom: 20px;
}
.joboffers__item-wrap {
  max-width: 100%;
  flex-basis: 100%;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .joboffers__item-wrap {
    max-width: 50%;
    flex-basis: 50%;
    padding: 0 10px;
  }
}
.joboffers__item {
  padding: 40px 20px 30px;
  background-color: #F8F8F8;
  border-radius: 20px;
  height: 100%;
}
@media (min-width: 768px) {
  .joboffers__item {
    padding: 60px 30px 50px;
    border-radius: 40px;
  }
}

.joboffer__teaser-titles {
  max-width: 660px;
}
.joboffer__back-wrap {
  text-align: center;
}

.quote {
  background-color: #F8F8F8;
  padding: 40px 0 40px;
}
@media (min-width: 768px) {
  .quote {
    padding: 80px 0 60px;
  }
}
.quote__head {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .quote__head {
    min-height: 100px;
    margin-bottom: 60px;
  }
}
.quote__head:before {
  content: "";
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Icons/quote.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 81px;
  height: 50px;
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .quote__head:before {
    width: 137px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.quote__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1440px) {
  .quote__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.quote__quote {
  max-width: 890px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.375rem;
  line-height: 1.875rem;
}
@media (min-width: 768px) {
  .quote__quote {
    -webkit-line-clamp: 5;
  }
}
@media (min-width: 992px) {
  .quote__quote {
    font-size: 1.6875rem;
    line-height: 2.375rem;
  }
}
.quote__more--hidden {
  display: none;
}
.quote__image-wrap {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .quote__image-wrap {
    display: flex;
    align-items: center;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .quote__image-wrap {
    margin-bottom: 0;
  }
}
.quote__image {
  border-radius: 50%;
  padding: 10px;
  background-color: white;
  max-width: 144px;
  margin-bottom: 20px;
  height: auto;
}
@media (min-width: 768px) {
  .quote__image {
    padding: 20px;
    max-width: none;
    margin-right: 25px;
    margin-bottom: 0;
  }
}
.quote__content-head {
  font-size: 1.375rem;
}
.quote__extra {
  font-weight: 300;
}

.quotes-slider {
  overflow: hidden;
}
.quotes-slider__header {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .quotes-slider__header {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .quotes-slider__header {
    margin-bottom: 70px;
    padding-top: 110px;
  }
}
@media (min-width: 1620px) {
  .quotes-slider__header {
    padding: 110px 240px 0;
  }
}
.quotes-slider__header:before {
  background-image: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Icons/quote.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 46px;
}
@media (min-width: 768px) {
  .quotes-slider__header:before {
    content: "";
  }
}
@media (min-width: 992px) {
  .quotes-slider__header:before {
    width: 137px;
    height: 80px;
  }
}
@media (min-width: 1620px) {
  .quotes-slider__header:before {
    left: 120px;
  }
}
@media (min-width: 1440px) {
  .quotes-slider__items {
    margin: 0 -80px;
  }
}
.quotes-slider__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  transition: 0.3s ease-in-out;
}
.quotes-slider__item.swiper-slide-active {
  padding-top: 0;
}
.quotes-slider__item.swiper-slide-active .quotes-slider__content {
  background-color: #F8F8F8;
}
@media (min-width: 1440px) {
  .quotes-slider__item.swiper-slide-active .quotes-slider__content {
    margin: 0 -65px;
  }
}
.quotes-slider__item:not(.swiper-slide-active) .quotes-slider__content {
  padding: 165px 80px 70px;
}
.quotes-slider__item:not(.swiper-slide-active) .quotes-slider__quote {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.quotes-slider__item:not(.swiper-slide-active) .quotes-slider__more {
  display: none;
}
.quotes-slider__quote {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.quotes-slider__content {
  padding: 165px 60px 70px;
  text-align: center;
  transition: 0.3s ease-in-out;
  border-radius: 40px;
}
.quotes-slider__image {
  border: 18px solid white;
  margin-bottom: -117px;
  border-radius: 50%;
  z-index: 5;
}
.quotes-slider__name {
  font-size: 1.375rem;
  line-height: 1.9375rem;
  color: var(--contrast-black, #13357A);
  margin-top: 40px;
}

.quote-content--expanded {
  display: block;
}

.quote-more--hidden {
  display: none;
}

.person-map {
  position: relative;
}
.person-map__icons-wrap {
  position: absolute;
  pointer-events: none;
  bottom: calc(100% - 80px);
  left: max(50% - 50vw, -240px);
  z-index: 0;
  --size: 362px;
  width: var(--size);
  height: var(--size);
}
.person-map__icons {
  position: absolute;
  height: 59.3922651934%;
  width: auto;
  visibility: hidden;
}
.person-map__icons--green {
  top: 0;
  right: 0;
}
.person-map__icons--green.octimate {
  --tx: 3vw;
  --ty: -3vw;
  visibility: visible;
  animation: overlay-move-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
.person-map__icons--blue {
  bottom: 0;
  left: 0;
}
.person-map__icons--blue.octimate {
  --tx: -3vw;
  --ty: 3vw;
  visibility: visible;
  animation: overlay-move-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 1s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}
.person-map__subjects, .person-map__postal-code, .person-map > .row {
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .person-map__subjects {
    border-radius: 30px;
    background: white;
    border: 1px solid var(--contrast-black, #C9C9C9);
    padding: 0 30px;
    margin-bottom: 30px;
  }
  .person-map__subjects__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
  }
  .person-map__subjects__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -30px 0 0;
    padding: 0;
    width: 55px;
    height: 55px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    background: #95C23D;
    color: white;
    transform-origin: center center;
    transition: transform 0.2s ease-in-out;
  }
  .person-map__subjects__check:checked ~ .person-map__subjects__title .person-map__subjects__toggle {
    transform: rotateZ(180deg);
  }
  .person-map__subjects__items {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    margin-top: 0;
    transition: all 0.2s ease-in-out, max-height 0.2s cubic-bezier(0, 1, 0, 1);
  }
  .person-map__subjects__check:checked ~ .person-map__subjects__items {
    max-height: 10000px;
    padding-bottom: 35px;
    margin-top: 23px;
    transition: all 0.2s ease-in-out, max-height 0.2s cubic-bezier(1, 0, 1, 0);
  }
  .person-map__subjects__item.button {
    display: flex;
    align-items: center;
    background: none transparent;
    padding: 0;
    margin-bottom: 15px;
    border-radius: 0;
    border: none;
    color: var(--contrast-black, #2C2C2C);
    font-weight: 300;
  }
  .person-map__subjects__item.button, .person-map__subjects__item.button:focus, .person-map__subjects__item.button:focus-visible {
    box-shadow: none;
    outline: 5px solid transparent;
  }
  .person-map__subjects__item.button svg {
    display: none;
  }
  .person-map__subjects__item.button--primary {
    color: var(--contrast-black, #95C23D);
    font-weight: 600;
  }
  .person-map__subjects__item-icon {
    content: "";
    display: block;
    width: 27px;
    height: 27px;
    border: 1px solid #c9c9c9;
    background: #eee;
    padding: 4px;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 3px;
  }
  .person-map__subjects__item-icon:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
  }
  .person-map__subjects__item.button--primary .person-map__subjects__item-icon:before {
    background: #95C23D;
  }
}
@media (min-width: 768px) {
  .person-map__subjects {
    margin-bottom: 50px;
  }
  .person-map__subjects__title, .person-map__subjects__item-icon {
    display: none;
  }
  .person-map__subjects__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.person-map__postal-code {
  margin: 0 auto 40px;
  max-width: 340px;
  text-align: center;
}
.person-map__results {
  text-align: center;
}
@media (min-width: 576px) {
  .person-map__results {
    margin-bottom: 50px;
  }
}
.person-map__map g {
  cursor: pointer;
  fill: #d0d0d0;
  transition: fill 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform-origin: top left;
}
.person-map__map g:focus, .person-map__map g:focus-visible {
  outline: none;
}
.person-map__map g:not(.active):hover {
  fill: var(--contrast-black, #bfda8b);
  transform: translate(2px, 2px);
}
.person-map__map g.active {
  fill: var(--contrast-black, #95C23D);
}
.person-map g:focus, .person-map g:focus-visible, .person-map path:focus, .person-map path:focus-visible {
  outline: none;
}
.person-map__person-list-wrap {
  display: flow-root;
}
.person-map__person-list {
  margin-top: -20px;
}
.person-map__person-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  background: white;
  border-radius: 20px;
  margin-top: 83px;
}
@media (min-width: 576px) {
  .person-map__person-item {
    padding: 18px 0 18px 48px;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 0;
    margin-right: 22px;
  }
}
.person-map__person-item__image-wrap {
  flex: 1 0 82px;
  max-width: 82px;
  width: 82px;
  margin-top: -41px;
  border-radius: 50%;
  padding: 6px;
  background: var(--container-bg);
}
@media (min-width: 576px) {
  .person-map__person-item__image-wrap {
    flex: 1 0 86px;
    max-width: 86px;
    width: 86px;
    margin-top: 0;
    padding: 0;
    margin-right: 28px;
    background: none;
  }
}
.person-map__person-item__image {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: auto;
}
.person-map__person-item__name {
  flex: 1 0;
}
.person-map__person-item__link {
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: -22px;
}
@media (min-width: 576px) {
  .person-map__person-item__link {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: -22px;
  }
}
.person-map__person-item__link-icon {
  flex: 1 0 45px;
  max-width: 45px;
  width: 45px;
  height: 45px;
  font-size: 1.25rem;
  line-height: 1;
  background: var(--contrast-black, #95C23D);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .person-map__person-item__link-icon {
    margin-left: 10px;
  }
}
.person-map__swiper-arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.person-detail {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border-radius: 40px;
  padding: 90px 50px 30px;
  position: relative;
  font-size: 18px;
}
.person-detail__image-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -82px;
  margin-top: -82px;
  padding: 12px;
  border-radius: 50%;
  background: white;
}
.person-detail__image {
  width: 140px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.person-detail__header {
  margin-bottom: 30px;
}
.person-detail__contacts {
  display: flex;
  flex-wrap: wrap;
  margin-left: -50px;
  margin-right: -50px;
}
.person-detail__contact {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
  --link-color: white;
  --link-hover-color: white;
  --link-decoration: none;
  --link-hover-decoration: none;
  height: 80px;
  display: flex;
  background: var(--contrast-black, #13357A);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid white;
}
@media (min-width: 768px) {
  .person-detail__contact {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
  }
  .person-detail__contact:nth-child(2n+1) {
    border-right: 1px solid white;
  }
}
.person-detail__contact-icon {
  font-size: 1.8em;
  margin-right: 10px;
}
.person-detail__subjects {
  margin-top: 30px;
}
.person-detail__subject {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.person-detail__subject-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 55px;
  max-width: 55px;
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: var(--contrast-black, #95C23D);
  color: white;
  font-size: 34px;
  border-radius: 50%;
}
.person-detail__subject-icon {
  display: block;
  height: 1em;
  width: auto;
}
.person-detail__subject-name {
  color: var(--contrast-black, #13357A);
  font-weight: 600;
}

:root {
  --author-header-image-size: 240px;
}

.author-detail {
  max-width: 1020px;
  margin: 0 auto;
}
.author-header {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .author-header {
    flex-direction: row;
  }
}
.author-header__image-wrap {
  flex: 1 0 var(--author-header-image-size);
  max-width: var(--author-header-image-size);
  width: var(--author-header-image-size);
  height: var(--author-header-image-size);
  border-radius: 50%;
  padding: 20px;
  background: #F8F8F8;
  margin-right: 20px;
}
.author-header__image {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-header__text-wrap {
  margin-top: 20px;
}
.author-header__name {
  color: var(--contrast-black, #13357A);
}
.author-header__name:hover {
  color: var(--contrast-black, #13357A);
}
.author-header__field {
  margin-bottom: 15px;
}

.magazine__times {
  display: flex;
  align-items: center;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1;
}
.magazine__times-item {
  padding-top: 2px;
}
.magazine__times-item:not(:last-child) {
  border-right: 1px solid currentColor;
  padding-right: 10px;
  margin-right: 10px;
}
.magazine__teaser {
  max-width: 600px;
}

.magazine-content__sidebar {
  height: 100%;
}
@media (min-width: 1620px) {
  .magazine-content__sidebar {
    display: flex;
    align-items: flex-start;
    padding-right: 60px;
  }
}
.magazine-content__sidebar-menu-header {
  margin-bottom: 25px;
}
.magazine-content__sidebar-menu {
  display: block;
  padding: 40px 30px;
  border-radius: 40px;
  background: #F8F8F8;
  max-width: 550px;
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .magazine-content__sidebar-menu {
    margin: 0;
  }
}
.magazine-content__main {
  position: relative;
}
.magazine-content__main:before {
  content: "";
  display: block;
  background: var(--small-octagon-contrast-img, url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/small_octagon_cut_green.svg")) no-repeat center center;
  background-size: contain;
  width: 310px;
  height: 310px;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -155px;
  opacity: 0.3;
  visibility: hidden;
}
@media (min-width: 1870px) {
  .magazine-content__main:before {
    right: unset;
    left: 100%;
  }
}
.magazine-content__main.octimate:before {
  --tx: 5vw;
  --ty: -15vh;
  visibility: visible;
  animation: overlay-move-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards, overlay-fade-in 2.5s cubic-bezier(0.6, 1, 0.9, 1) forwards;
}

.magazine-menu {
  --link-color: var(--contrast-black, #2C2C2C);
  --link-hover-color: #95C23D;
  list-style: none;
  padding: 0;
}
.magazine-menu__item {
  display: flex;
  margin-top: 15px;
}
.magazine-menu__number {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 44px;
  max-width: 44px;
  width: 44px;
  height: 44px;
  margin-right: 10px;
  background: var(--small-octagon-contrast-img, url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/small_octagon_cut_green.svg")) no-repeat center center;
  background-size: contain;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  padding-top: 2px;
}
.magazine-menu__link {
  flex: 1 0;
  display: inline-flex;
  align-items: flex-start;
}
.magazine-menu__label {
  flex: 1 0;
  font-weight: 600;
}
.magazine-menu__icon {
  font-size: 24px;
  margin-left: 20px;
  position: relative;
  top: 3px;
  transform-origin: center center;
  transform: rotateZ(0deg);
  transition: transform 0.2s ease-in-out;
}
.magazine-menu__item.rotated-180 {
  opacity: 0.5;
}
.magazine-menu__item.rotated-180 .magazine-menu__icon {
  transform: rotateZ(180deg);
}
.magazine-menu__item.current {
  opacity: 1;
}
.magazine-menu__item.current .magazine-menu__icon, .magazine-menu__item.current .magazine-menu__link {
  color: var(--contrast-black, #95C23D);
}

.magazine-sources {
  padding: 40px 40px;
  border-radius: 20px;
  background: #F8F8F8;
}
@media (min-width: 768px) {
  .magazine-sources {
    border-radius: 40px;
  }
}
.magazine-sources__header {
  margin-bottom: 20px;
}
.magazine-sources__item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.9375rem;
}
.magazine-sources__item a {
  word-break: break-all;
}
.magazine-sources__icon {
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex: 1 0 47px;
  max-width: 47px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: var(--contrast-black, #95C23D);
  color: white;
  margin-right: 15px;
}
.magazine-sources__label {
  flex: 1 0;
}

:root {
  --magazine-filter-gutter: 10px;
}
@media (min-width: 768px) {
  :root {
    --magazine-filter-gutter: 30px;
  }
}

.magazine-filter {
  display: flow-root;
  max-width: 1100px;
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .magazine-filter {
    margin-bottom: 90px;
  }
}
.magazine-filter .magazine-filter__list {
  margin-left: calc(var(--magazine-filter-gutter) * -0.5);
  margin-right: calc(var(--magazine-filter-gutter) * -0.5);
  margin-top: calc(var(--magazine-filter-gutter) * -1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.magazine-filter__item {
  padding-left: calc(var(--magazine-filter-gutter) * 0.5);
  padding-right: calc(var(--magazine-filter-gutter) * 0.5);
  margin-top: var(--magazine-filter-gutter);
}
.magazine-filter__check {
  display: none;
}
.magazine-filter__check:not(:checked) ~ .magazine-filter__button {
  background: var(--contrast-white, transparent);
  border-color: var(--contrast-black, #95C23D);
  color: var(--contrast-black, #95C23D);
}
@media (max-width: 767.98px) {
  .magazine-filter__button {
    padding: 6px 20px 4px;
    border-radius: 30px;
    font-weight: 500;
  }
}

.experience-report {
  max-width: 1020px;
  margin: 0 auto;
}
.experience-report__intro-title {
  margin-bottom: 30px;
}
.experience-report__intro-subtitle {
  font-size: 1.375rem;
}
@media (min-width: 992px) {
  .experience-report__intro-subtitle {
    font-size: 1.6875rem;
  }
}
.experience-report__intro-image-wrap {
  margin-bottom: 70px;
}
.experience-report__intro-image {
  border-radius: 40px;
}

.prescription-form .row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 20px;
}
.prescription-form .form-control {
  border-radius: 20px;
}

/* Overrides */
button.mfp-close {
  width: 62px;
  height: 62px;
  line-height: 62px;
  opacity: 1;
  color: white;
  background-color: var(--contrast-black, #95C23D);
  transition: background-color 0.3s ease-in-out;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
}
button.mfp-close, button.mfp-close:active {
  top: 18px;
  right: 18px;
}
button.mfp-close:hover {
  background: var(--contrast-black, #13357A);
}

.mfp-close-btn-in .mfp-close {
  color: white;
}

.mfp-bg {
  background-color: rgba(227, 224, 224, 0.75);
}
.mfp-bg ~ .page {
  filter: blur(5px);
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.5rem 0.75rem 0.25rem;
  color: var(--contrast-black, #2C2C2C);
  text-align: center;
  background-color: white;
  border-radius: 35px;
  border: 1px solid #ced4da;
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  filter: drop-shadow(0px 1px 0px #ced4da);
}

.popover {
  --p-margin: 10px;
  max-width: 340px;
  border-radius: 35px;
  background-color: white;
  font-size: 15px;
  line-height: 1.3;
  border: none;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}
.popover .link-arrow {
  line-height: 15px;
}

.popover-body {
  padding: 30px;
  color: var(--contrast-black, #2C2C2C);
}

.bs-popover-bottom > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  border-bottom-color: transparent;
}

body.contrast-mode {
  --contrast-light: #F8F8F8;
  --contrast-transparent-black: rgba(0, 0, 0, 0.5);
  --octagon-contrast-img: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/octagon_cut_contrast.svg");
  --small-octagon-contrast-img: url("/_assets/c1dda3cd8b878b3d2d1341386e1ea699/Images/small_octagon_cut_contrast.svg");
}
body.contrast-mode a:hover, body.contrast-mode a:focus-visible, body.contrast-mode button:hover, body.contrast-mode button:focus-visible {
  text-decoration: underline !important;
}
body.contrast-mode .quotes-slider__header::before,
body.contrast-mode .person-map__icons-wrap,
body.contrast-mode .header-image__octagon-overlay {
  filter: brightness(0);
}
body.contrast-mode .frame-type-form_formframework input[type=checkbox]:focus ~ .form-check-label::before,
body.contrast-mode .frame-type-form_formframework input[type=radio]:focus ~ .form-check-label::before,
body.contrast-mode .form-control:focus {
  box-shadow: 0 0 0 0.25rem var(--contrast-transparent-black);
  border-color: black;
}
body.contrast-mode .swiper-pagination-bullet,
body.contrast-mode .two-click {
  border: 1px solid var(--contrast-black);
}