@charset "UTF-8";
/**
Beispiel:
in dem templates/hwxtemplate/fonts Ordner liegt
WorkSans/WorkSans-Black
WorkSans/WorkSans-BlackItalic
WorkSans/WorkSans-Bold
WorkSans/WorkSans-BoldItalic
WorkSans/WorkSans-Light

und

Roboto/Roboto-Regular
Roboto/Roboto-Black
Roboto/Roboto-Light

dann:
(Achtung, WorkSans am Ende des Pfades markiert den Namen der Schrift ohne Schnitte)
"WorkSans" : (
font-path: "../fonts/WorkSans/WorkSans",
font-extensions: (ttf),
font-weights: ("ExtraLight", "Light", "Regular", "SemiBold", "Bold", "Black"),
font-italic-weights: null,
),
"Roboto" : (
                font-path: "../fonts/Roboto/Roboto",
                font-extensions: (ttf, woff, woff2),
                font-weights: ("Regular", "Bold"),
                font-italic-weights: ("Light", "Regular", "SemiBold"),
)

Weiterer Hinweis:
$template-font-family: "Work Sans" gibt die Hauptschriftart an.

weitere Schriftarten können als Variable gespeichert werden, z.B.
$font-family-second : "Roboto";
Es geht aber auch auf dem herkömmlichen Wege via css style font-family: "Roboto"

Achtung:
Wenn man Schriftarten herunterlädt kommt es häufig vor, dass z.B. nur Roboto-Italic da steht. Das ist dann
Roboto-RegularItalic
*/
@font-face {
  font-family: "Neris Regular Bold";
  src: url("../fonts/neris/Neris-Light.eot");
  src: url("../fonts/neris/Neris-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/neris/Neris-Light.woff") format("woff"), url("../fonts/neris/Neris-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Regular Semibold";
  src: url("../fonts/Open_Sans/OpenSans-SemiBold.eot");
  src: url("../fonts/Open_Sans/OpenSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Open_Sans/OpenSans-SemiBold.woff") format("woff"), url("../fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Regular";
  src: url("../fonts/Open_Sans/OpenSans-Regular.eot");
  src: url("../fonts/Open_Sans/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Open_Sans/OpenSans-Regular.woff") format("woff"), url("../fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*!
 * Bootstrap Utilities v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

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

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.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: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .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 #dee2e6 !important;
}

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

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

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

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

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

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

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

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

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

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

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-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 {
  user-select: all !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .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;
  }
  .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-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.8125rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/* https://gist.github.com/jonathantneal/d0460e5c2d5d7f9bc5e6 */
.make-background-black {
  background-color: #000000 !important;
}

.make-foreground-black {
  color: #000000 !important;
}

.make-border-gray {
  border-color: #adb5bd !important;
}

.make-border-black {
  border-color: #000000 !important;
}

.make-background-blue {
  background-color: #0d6efd !important;
}

.make-foreground-blue {
  color: #0d6efd !important;
}

.make-border-blue {
  border-color: #0d6efd !important;
}

.make-background-indigo {
  background-color: #6610f2 !important;
}

.make-foreground-indigo {
  color: #6610f2 !important;
}

.make-border-indigo {
  border-color: #6610f2 !important;
}

.make-background-purple {
  background-color: #6f42c1 !important;
}

.make-foreground-purple {
  color: #6f42c1 !important;
}

.make-border-purple {
  border-color: #6f42c1 !important;
}

.make-background-pink {
  background-color: #d63384 !important;
}

.make-foreground-pink {
  color: #d63384 !important;
}

.make-border-pink {
  border-color: #d63384 !important;
}

.make-background-red {
  background-color: #dc3545 !important;
}

.make-foreground-red {
  color: #dc3545 !important;
}

.make-border-red {
  border-color: #dc3545 !important;
}

.make-background-orange {
  background-color: #fd7e14 !important;
}

.make-foreground-orange {
  color: #fd7e14 !important;
}

.make-border-orange {
  border-color: #fd7e14 !important;
}

.make-background-yellow {
  background-color: #ffc107 !important;
}

.make-foreground-yellow {
  color: #ffc107 !important;
}

.make-border-yellow {
  border-color: #ffc107 !important;
}

.make-background-green {
  background-color: #198754 !important;
}

.make-foreground-green {
  color: #198754 !important;
}

.make-border-green {
  border-color: #198754 !important;
}

.make-background-teal {
  background-color: #20c997 !important;
}

.make-foreground-teal {
  color: #20c997 !important;
}

.make-border-teal {
  border-color: #20c997 !important;
}

.make-background-cyan {
  background-color: #0dcaf0 !important;
}

.make-foreground-cyan {
  color: #0dcaf0 !important;
}

.make-border-cyan {
  border-color: #0dcaf0 !important;
}

.make-background-white {
  background-color: #ffffff !important;
}

.make-foreground-white {
  color: #ffffff !important;
}

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

.make-background-gray {
  background-color: #6c757d !important;
}

.make-foreground-gray {
  color: #6c757d !important;
}

.make-border-gray {
  border-color: #6c757d !important;
}

.make-background-gray-dark {
  background-color: #343a40 !important;
}

.make-foreground-gray-dark {
  color: #343a40 !important;
}

.make-border-gray-dark {
  border-color: #343a40 !important;
}

.make-background-gray-100 {
  background-color: #f8f9fa !important;
}

.make-foreground-gray-100 {
  color: #f8f9fa !important;
}

.make-border-100 {
  border-color: #f8f9fa !important;
}

.make-background-gray-200 {
  background-color: #e9ecef !important;
}

.make-foreground-gray-200 {
  color: #e9ecef !important;
}

.make-border-200 {
  border-color: #e9ecef !important;
}

.make-background-gray-300 {
  background-color: #dee2e6 !important;
}

.make-foreground-gray-300 {
  color: #dee2e6 !important;
}

.make-border-300 {
  border-color: #dee2e6 !important;
}

.make-background-gray-400 {
  background-color: #ced4da !important;
}

.make-foreground-gray-400 {
  color: #ced4da !important;
}

.make-border-400 {
  border-color: #ced4da !important;
}

.make-background-gray-500 {
  background-color: #adb5bd !important;
}

.make-foreground-gray-500 {
  color: #adb5bd !important;
}

.make-border-500 {
  border-color: #adb5bd !important;
}

.make-background-gray-600 {
  background-color: #6c757d !important;
}

.make-foreground-gray-600 {
  color: #6c757d !important;
}

.make-border-600 {
  border-color: #6c757d !important;
}

.make-background-gray-700 {
  background-color: #495057 !important;
}

.make-foreground-gray-700 {
  color: #495057 !important;
}

.make-border-700 {
  border-color: #495057 !important;
}

.make-background-gray-800 {
  background-color: #343a40 !important;
}

.make-foreground-gray-800 {
  color: #343a40 !important;
}

.make-border-800 {
  border-color: #343a40 !important;
}

.make-background-gray-900 {
  background-color: #212529 !important;
}

.make-foreground-gray-900 {
  color: #212529 !important;
}

.make-border-900 {
  border-color: #212529 !important;
}

.make-lis-eq-width ul {
  flex-grow: 1;
}
.make-lis-eq-width li {
  flex: 1 1 100%;
}

ul[class^=make-nav-cols-],
ul[class*=" make-nav-cols-"] {
  flex-wrap: wrap;
}

.make-nav-cols-1 > li {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.make-nav-cols-2 > li {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.make-nav-cols-3 > li {
  flex: 0 0 25%;
  max-width: 25%;
}

.make-nav-cols-4 > li {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.make-nav-cols-5 > li {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.make-nav-cols-6 > li {
  flex: 0 0 50%;
  max-width: 50%;
}

.make-nav-cols-7 > li {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.make-nav-cols-8 > li {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.make-nav-cols-9 > li {
  flex: 0 0 75%;
  max-width: 75%;
}

.make-nav-cols-10 > li {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.make-nav-cols-11 > li {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.make-nav-cols-12 > li {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .make-nav-cols-sm-1 > li {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .make-nav-cols-sm-2 > li {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .make-nav-cols-sm-3 > li {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .make-nav-cols-sm-4 > li {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .make-nav-cols-sm-5 > li {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .make-nav-cols-sm-6 > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .make-nav-cols-sm-7 > li {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .make-nav-cols-sm-8 > li {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .make-nav-cols-sm-9 > li {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .make-nav-cols-sm-10 > li {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .make-nav-cols-sm-11 > li {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .make-nav-cols-sm-12 > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .make-nav-cols-md-1 > li {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .make-nav-cols-md-2 > li {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .make-nav-cols-md-3 > li {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .make-nav-cols-md-4 > li {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .make-nav-cols-md-5 > li {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .make-nav-cols-md-6 > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .make-nav-cols-md-7 > li {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .make-nav-cols-md-8 > li {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .make-nav-cols-md-9 > li {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .make-nav-cols-md-10 > li {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .make-nav-cols-md-11 > li {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .make-nav-cols-md-12 > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .make-nav-cols-lg-1 > li {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .make-nav-cols-lg-2 > li {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .make-nav-cols-lg-3 > li {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .make-nav-cols-lg-4 > li {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .make-nav-cols-lg-5 > li {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .make-nav-cols-lg-6 > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .make-nav-cols-lg-7 > li {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .make-nav-cols-lg-8 > li {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .make-nav-cols-lg-9 > li {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .make-nav-cols-lg-10 > li {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .make-nav-cols-lg-11 > li {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .make-nav-cols-lg-12 > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .make-nav-cols-xl-1 > li {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .make-nav-cols-xl-2 > li {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .make-nav-cols-xl-3 > li {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .make-nav-cols-xl-4 > li {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .make-nav-cols-xl-5 > li {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .make-nav-cols-xl-6 > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .make-nav-cols-xl-7 > li {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .make-nav-cols-xl-8 > li {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .make-nav-cols-xl-9 > li {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .make-nav-cols-xl-10 > li {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .make-nav-cols-xl-11 > li {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .make-nav-cols-xl-12 > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .make-nav-cols-xxl-1 > li {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .make-nav-cols-xxl-2 > li {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .make-nav-cols-xxl-3 > li {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .make-nav-cols-xxl-4 > li {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .make-nav-cols-xxl-5 > li {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .make-nav-cols-xxl-6 > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .make-nav-cols-xxl-7 > li {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .make-nav-cols-xxl-8 > li {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .make-nav-cols-xxl-9 > li {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .make-nav-cols-xxl-10 > li {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .make-nav-cols-xxl-11 > li {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .make-nav-cols-xxl-12 > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
div.rsform form div#rsform-formtitle h2 {
  padding: 10px 0px;
  padding: 0.625rem 0rem;
  margin-bottom: 0;
}
div.rsform form div#rsform-error {
  padding: 10px 0px;
  padding: 0.625rem 0rem;
  margin-bottom: 0;
}
div.rsform form div#rsform-error p {
  margin-bottom: 0;
}
div.rsform form fieldset div.row {
  padding: 10px 0px;
  padding: 0.625rem 0rem;
}
div.rsform input.rsform-submit-button,
div.rsform button#Send {
  font-size: 1rem;
  font-family: "Neris Regular Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #0d6efd;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  background-image: none;
  border: none;
  text-shadow: none;
}

div#hwx-sigpro > .row > div {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

nav.navbar a.navbar-brand {
  padding: 0;
}
nav.navbar div.navbar-container {
  position: relative;
}
nav.navbar div.navbar-container a.nav-link {
  font-size: 1rem;
  text-decoration: none;
}
nav.navbar div.navbar-container a.nav-link.home-icon {
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  nav.navbar div.navbar-container a.nav-link.home-icon {
    font-size: 1.875rem;
  }
}
nav.navbar div.navbar-container ul.navbar-nav {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  flex-wrap: nowrap;
}
nav.navbar div.navbar-container ul.navbar-nav.sm-collapsible a.nav-link {
  padding-right: calc(1.4375rem + 2.25vw);
  padding-left: calc(1.4375rem + 2.25vw);
}
@media (min-width: 1200px) {
  nav.navbar div.navbar-container ul.navbar-nav.sm-collapsible a.nav-link {
    padding-right: 3.125rem;
  }
}
@media (min-width: 1200px) {
  nav.navbar div.navbar-container ul.navbar-nav.sm-collapsible a.nav-link {
    padding-left: 3.125rem;
  }
}
nav.navbar div.navbar-container ul.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
  vertical-align: middle;
}
nav.navbar div.navbar-container ul.navbar-nav ul {
  border: none;
  border-radius: 0;
}
nav.navbar div.navbar-container ul.navbar-nav ul[class^=make-nav-cols-], nav.navbar div.navbar-container ul.navbar-nav ul[class*=" make-nav-cols-"] {
  width: 800px;
  width: 50rem;
}
nav.navbar div.navbar-container ul.navbar-nav ul[class^=make-nav-cols-] .dropdown-item, nav.navbar div.navbar-container ul.navbar-nav ul[class*=" make-nav-cols-"] .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.navbar div.navbar-container ul.navbar-nav li a.nav-link.hwx-link-border-top {
  border-top: 2px solid #ffffff;
}
nav.navbar div.navbar-container ul.navbar-nav li a.nav-link.hwx-link-border-right {
  border-right: 2px solid #ffffff;
}
nav.navbar div.navbar-container ul.navbar-nav li a.nav-link.hwx-link-border-bottom {
  border-bottom: 2px solid #ffffff;
}
nav.navbar div.navbar-container ul.navbar-nav li a.nav-link.hwx-link-border-left {
  border-left: 2px solid #ffffff;
}
nav.navbar div.navbar-container ul.navbar-nav .dropdown ul.dropdown-menu {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
}
nav.navbar div.navbar-container ul.navbar-nav .dropup .scroll-up,
nav.navbar div.navbar-container ul.navbar-nav .dropup .scroll-down {
  display: none !important;
}
nav.navbar div.navbar-container ul.navbar-nav .dropup ul.dropdown-menu {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  nav.navbar div.navbar-container ul.navbar-nav > .dropup > a.nav-link .sub-arrow {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}

.hwx-custom-module .hwx-custom-module-container {
  padding: 1.25rem;
}
.hwx-custom-module .hwx-custom-module-container .hwx-custom-module-title {
  margin-bottom: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .hwx-custom-module .hwx-custom-module-container .hwx-custom-module-title {
    margin-bottom: 1.875rem;
  }
}
.hwx-custom-module .hwx-custom-module-container .hwx-custom-module-title .hwx-custom-module-title-text {
  font-weight: 700;
}
.hwx-banner {
  position: relative;
}
.hwx-banner .hwx-carousel-caption {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .hwx-banner .hwx-carousel-caption {
    padding-left: calc(1.3125rem + 0.75vw);
    padding-right: calc(1.3125rem + 0.75vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .hwx-banner .hwx-carousel-caption {
    padding-left: 1.875rem;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .hwx-banner .hwx-carousel-caption {
    padding-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .hwx-banner .hwx-carousel-caption {
    padding-left: calc(1.5rem + 3vw);
    padding-right: calc(1.5rem + 3vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .hwx-banner .hwx-carousel-caption {
    padding-left: 3.75rem;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .hwx-banner .hwx-carousel-caption {
    padding-right: 3.75rem;
  }
}

.hwx-social-buttons .hwx-social-buttons-container {
  margin-left: -5px;
  margin-left: -0.3125rem;
  margin-right: -5px;
  margin-right: -0.3125rem;
  display: flex;
  flex-wrap: wrap;
}
.hwx-social-buttons .hwx-social-buttons-container > div {
  padding-left: 5px;
  padding-left: 0.3125rem;
  padding-right: 5px;
  padding-right: 0.3125rem;
}
.hwx-social-buttons .hwx-social-buttons-container > div {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .hwx-social-buttons .hwx-social-buttons-container > div {
    font-size: 1.5rem;
  }
}

.hwx-parallaxcontent {
  padding-top: calc(1.59375rem + 4.125vw);
  padding-bottom: calc(1.59375rem + 4.125vw);
  position: relative;
}
@media (min-width: 1200px) {
  .hwx-parallaxcontent {
    padding-top: 4.6875rem;
  }
}
@media (min-width: 1200px) {
  .hwx-parallaxcontent {
    padding-bottom: 4.6875rem;
  }
}
.hwx-parallaxcontent > a {
  text-decoration: none;
  color: #000000;
}
.hwx-parallaxcontent.hwx-parallaxcontent-image-right .hwx-parallaxcontent-image {
  order: 1;
}
.hwx-parallaxcontent .hwx-parallax-item {
  will-change: transform;
}
.hwx-parallaxcontent .hwx-parallaxcontent-background-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.hwx-parallaxcontent .hwx-parallaxcontent-background-container .hwx-parallaxcontent-background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
.hwx-parallaxcontent .hwx-parallaxcontent-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 575.98px) {
  .hwx-parallaxcontent .hwx-parallaxcontent-container {
    margin-top: -15px;
    margin-top: -0.9375rem;
    margin-bottom: -15px;
    margin-bottom: -0.9375rem;
  }
  .hwx-parallaxcontent .hwx-parallaxcontent-container > div {
    padding-top: 15px;
    padding-top: 0.9375rem;
    padding-bottom: 15px;
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 768px) {
  .hwx-parallaxcontent .hwx-parallaxcontent-container {
    margin-left: -15px;
    margin-left: -0.9375rem;
    margin-right: -15px;
    margin-right: -0.9375rem;
    flex-direction: row;
  }
  .hwx-parallaxcontent .hwx-parallaxcontent-container > div {
    padding-left: 15px;
    padding-left: 0.9375rem;
    padding-right: 15px;
    padding-right: 0.9375rem;
  }
}
@media (min-width: 768px) {
  .hwx-parallaxcontent .hwx-parallaxcontent-container .hwx-parallaxcontent-image,
  .hwx-parallaxcontent .hwx-parallaxcontent-container .hwx-parallaxcontent-content {
    flex: 1 0 50%;
  }
}
@media (max-width: 575.98px) {
  .hwx-parallaxcontent .hwx-parallaxcontent-container .hwx-parallaxcontent-image {
    order: 0;
  }
}
@media (max-width: 575.98px) {
  .hwx-parallaxcontent .hwx-parallaxcontent-container .hwx-parallaxcontent-image img {
    width: 100%;
  }
}
.hwx-parallaxcontent .hwx-parallaxcontent-container .hwx-parallaxcontent-content {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .hwx-parallaxcontent .hwx-parallaxcontent-container .hwx-parallaxcontent-content {
    order: 1;
  }
}
.hwx-parallaxcontent .hwx-parallaxcontent-container .hwx-parallaxcontent-content p:last-of-type {
  margin-bottom: 0;
}

.hwx-footer {
  padding-top: calc(1.4375rem + 2.25vw);
  padding-bottom: calc(1.4375rem + 2.25vw);
}
@media (min-width: 1200px) {
  .hwx-footer {
    padding-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .hwx-footer {
    padding-bottom: 3.125rem;
  }
}
.hwx-footer p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .hwx-footer .row {
    margin-top: -15px;
    margin-top: -0.9375rem;
    margin-bottom: -15px;
    margin-bottom: -0.9375rem;
  }
  .hwx-footer .row > div {
    padding-top: 15px;
    padding-top: 0.9375rem;
    padding-bottom: 15px;
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 576px) {
  .hwx-footer .row {
    margin-top: -30px;
    margin-top: -1.875rem;
    margin-bottom: -30px;
    margin-bottom: -1.875rem;
  }
  .hwx-footer .row > div {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }
}

.hwx-search button.do-search {
  padding: 0px 0px 0px 0px;
  padding: 0rem 0rem 0rem 0rem;
  margin: 0px 0px 0px 0px;
  margin: 0rem 0rem 0rem 0rem;
}
.hwx-search button.do-search i {
  font-size: calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  .hwx-search button.do-search i {
    font-size: 1.5625rem;
  }
}

#hwx-search #hwx-search-form {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
#hwx-search #hwx-search-form label {
  font-weight: 700;
}
#hwx-search #hwx-search-form .hwx-search-searchwords .hwx-search-searchwords-send {
  display: flex;
  align-items: flex-end;
}
#hwx-search #hwx-search-results .hwx-search-result {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.hwx-category-filter {
  margin-top: -5px;
  margin-top: -0.3125rem;
  margin-bottom: -5px;
  margin-bottom: -0.3125rem;
  margin-left: -5px;
  margin-left: -0.3125rem;
  margin-right: -5px;
  margin-right: -0.3125rem;
}
.hwx-category-filter > button {
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
.hwx-category-filter > button {
  margin-left: 5px;
  margin-left: 0.3125rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
.hwx-category-container .hwx-categoryblock,
.hwx-category-container .hwx-subcategoryblock {
  margin-bottom: calc(1.4375rem + 2.25vw);
}
@media (min-width: 1200px) {
  .hwx-category-container .hwx-categoryblock,
  .hwx-category-container .hwx-subcategoryblock {
    margin-bottom: 3.125rem;
  }
}
.hwx-category-container .hwx-categoryblock .hwx-itemlist-category-header,
.hwx-category-container .hwx-categoryblock .hwx-itemlist-image {
  margin-bottom: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .hwx-category-container .hwx-categoryblock .hwx-itemlist-category-header,
  .hwx-category-container .hwx-categoryblock .hwx-itemlist-image {
    margin-bottom: 1.875rem;
  }
}
.hwx-category-container .hwx-categoryblock .hwx-itemlist-category-header {
  margin-top: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .hwx-category-container .hwx-categoryblock .hwx-itemlist-category-header {
    margin-top: 1.875rem;
  }
}
.hwx-category-container .hwx-subcategoryblock > hr {
  margin-top: calc(1.4375rem + 2.25vw);
  margin-bottom: calc(1.4375rem + 2.25vw);
  width: 66%;
}
@media (min-width: 1200px) {
  .hwx-category-container .hwx-subcategoryblock > hr {
    margin-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .hwx-category-container .hwx-subcategoryblock > hr {
    margin-bottom: 3.125rem;
  }
}
.hwx-category-container .hwx-category-body > .row {
  margin-top: -15px;
  margin-top: -0.9375rem;
  margin-bottom: -15px;
  margin-bottom: -0.9375rem;
}
.hwx-category-container .hwx-category-body > .row > div {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
.hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-category-item-body .hwx-itemlist-created {
  margin-bottom: 0.3125rem;
  font-size: 0.75rem;
}
.hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-category-item-body .hwx-itemlist-imageblock {
  margin-bottom: 0.9375rem;
  text-align: right;
}
.hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-category-item-body .hwx-itemlist-introtext {
  margin-bottom: 0.9375rem;
}
.hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore {
  margin-top: 0.9375rem;
  text-align: right;
}
.hwx-category-container .hwx-itemlist-pagination {
  margin-top: calc(1.4375rem + 2.25vw);
}
@media (min-width: 1200px) {
  .hwx-category-container .hwx-itemlist-pagination {
    margin-top: 3.125rem;
  }
}
@media (max-width: 991.98px) {
  .hwx-category-container .hwx-itemlist-pagination {
    margin-top: calc(1.3125rem + 0.75vw);
  }
}
@media (max-width: 991.98px) and (min-width: 1200px) {
  .hwx-category-container .hwx-itemlist-pagination {
    margin-top: 1.875rem;
  }
}

.hwx-item-container .hwx-item-introtext :is(h1, h2, h3, h4, h5, h6) {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.hwx-item-container .hwx-item-introtext :is(h1, h2, h3, h4, h5, h6) img {
  max-height: 28px;
  width: max-content;
}
.hwx-item-container.hwx-image-float .hwx-item-body {
  display: block;
}
.hwx-item-container.hwx-image-float .hwx-item-body::after {
  display: block;
  clear: both;
  content: "";
}
.hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-imageblock {
  margin-bottom: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-imageblock {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 992px) {
  .hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-imageblock {
    margin-left: calc(1.3125rem + 0.75vw);
    float: right;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-imageblock {
    margin-left: 1.875rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-imageblock {
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-imageblock {
    max-width: 40%;
  }
}
.hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-introtext {
  max-width: none;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-introtext {
    padding-right: calc(1.375rem + 1.5vw);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) and (min-width: 1200px) {
  .hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-introtext {
    padding-right: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-introtext {
    padding-right: calc(1.5rem + 3vw);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .hwx-item-container.hwx-image-float .hwx-item-body .hwx-item-introtext {
    padding-right: 3.75rem;
  }
}
.hwx-item-container.has-introtext.has-image .hwx-item-body {
  margin-top: -15px;
  margin-top: -0.9375rem;
  margin-bottom: -15px;
  margin-bottom: -0.9375rem;
  margin-left: -15px;
  margin-left: -0.9375rem;
  margin-right: -15px;
  margin-right: -0.9375rem;
  display: flex;
  flex-wrap: wrap;
}
.hwx-item-container.has-introtext.has-image .hwx-item-body > div {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
.hwx-item-container.has-introtext.has-image .hwx-item-body > div {
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}
@media (max-width: 991.98px) {
  .hwx-item-container.has-introtext.has-image .hwx-item-body {
    flex-direction: column;
  }
}
.hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-imageblock,
.hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-introtext {
  flex: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-imageblock,
  .hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-introtext {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-fields {
  flex: 1;
  order: 2;
}
.hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-imageblock {
  text-align: right;
}
@media (min-width: 992px) {
  .hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-imageblock {
    order: 1;
  }
}
@media (min-width: 1200px) {
  .hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-imageblock {
    flex-basis: 40%;
    max-width: 40%;
  }
}
@media (min-width: 992px) {
  .hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-introtext {
    order: 0;
  }
}
@media (min-width: 1200px) {
  .hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-introtext {
    flex-basis: 60%;
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .hwx-item-container.has-introtext.has-image .hwx-item-body .hwx-item-imageblock .hwx-item-image {
    top: 5px;
    top: 0.3125rem;
    position: sticky;
  }
}
.hwx-item-container .hwx-item-body .hwx-item-introtext > p:last-child {
  margin-bottom: 0;
}
.hwx-item-container .hwx-item-body .hwx-item-introtext img {
  max-width: 100%;
  height: auto;
}
.hwx-item-container .hwx-item-gallery {
  margin-top: calc(1.4375rem + 2.25vw);
}
@media (min-width: 1200px) {
  .hwx-item-container .hwx-item-gallery {
    margin-top: 3.125rem;
  }
}

@media (min-width: 768px) {
  #hwx-defBildwechsel-category .hwx-category-body:nth-child(2n-1) .hwx-category-item-imagetext-container .hwx-itemlist-imageblock {
    order: 1;
  }
}
#hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container {
    margin-left: -20px;
    margin-left: -1.25rem;
    margin-right: -20px;
    margin-right: -1.25rem;
  }
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container > div {
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
  }
}
@media (min-width: 768px) {
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container {
    flex-direction: row;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container {
    margin-left: -30px;
    margin-left: -1.875rem;
    margin-right: -30px;
    margin-right: -1.875rem;
  }
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container > div {
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container {
    margin-left: -40px;
    margin-left: -2.5rem;
    margin-right: -40px;
    margin-right: -2.5rem;
  }
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container > div {
    padding-left: 40px;
    padding-left: 2.5rem;
    padding-right: 40px;
    padding-right: 2.5rem;
  }
}
#hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container .hwx-itemlist-imageblock,
#hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container .hwx-itemlist-introtext {
  flex: 1 0 100%;
  max-width: none;
}
@media (min-width: 768px) {
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container .hwx-itemlist-imageblock,
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container .hwx-itemlist-introtext {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  #hwx-defBildwechsel-category .hwx-category-body .hwx-category-item-imagetext-container .hwx-itemlist-imageblock .hwx-imageset {
    top: 15px;
    top: 0.9375rem;
    position: sticky;
  }
}

div.cc-window {
  border: 12px solid #f3f0f0;
  background-color: rgba(0, 22, 36, 0.8196078431);
}
div.cc-window h3 {
  color: #ffffff;
}
div.cc-window .cc-message {
  line-height: 1.3;
}
div.cc-window .cc-message a {
  color: #ffffff;
}
div.cc-window div.cc-compliance a.cc-btn.cc-deny {
  display: none;
}
div.cc-window div.cc-compliance a.cc-btn.cc-allow {
  border: 1px solid #ffffff;
  background-color: transparent;
}

.cc-revoke.cc-center.cc-revoke-bottom {
  left: 50px;
  left: 3.125rem;
  margin-left: auto;
}
.cc-revoke.cc-center.cc-revoke-bottom i,
.cc-revoke.cc-center.cc-revoke-bottom svg {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .cc-revoke.cc-center.cc-revoke-bottom i,
  .cc-revoke.cc-center.cc-revoke-bottom svg {
    font-size: 1.5rem;
  }
}

.hwx-item-imagetitleblock,
.hwx-itemlist-imagetitleblock {
  position: relative;
}
.hwx-item-imagetitleblock .hwx-item-image.hwx-as-background,
.hwx-itemlist-imagetitleblock .hwx-item-image.hwx-as-background {
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hwx-item-imagetitleblock .hwx-item-image img,
.hwx-itemlist-imagetitleblock .hwx-item-image img {
  width: 100%;
}
.hwx-item-imagetitleblock .hwx-item-title,
.hwx-itemlist-imagetitleblock .hwx-item-title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hwx-item-imagetitleblock .hwx-item-image-text,
.hwx-itemlist-imagetitleblock .hwx-item-image-text {
  padding: 15px;
  padding: 0.9375rem;
  margin: 0;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
}

.hwx-imageset figure {
  margin-bottom: 0;
}

@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/WorkSans/WorkSans-Black.ttf") format("truetype"), url("../fonts/WorkSans/WorkSans-Black.woff") format("woff"), url("../fonts/WorkSans/WorkSans-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/WorkSans/WorkSans-Bold.ttf") format("truetype"), url("../fonts/WorkSans/WorkSans-Bold.woff") format("woff"), url("../fonts/WorkSans/WorkSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/WorkSans/WorkSans-ExtraBold.ttf") format("truetype"), url("../fonts/WorkSans/WorkSans-ExtraBold.woff") format("woff"), url("../fonts/WorkSans/WorkSans-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/WorkSans/WorkSans-ExtraLight.ttf") format("truetype"), url("../fonts/WorkSans/WorkSans-ExtraLight.woff") format("woff"), url("../fonts/WorkSans/WorkSans-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/WorkSans/WorkSans-Light.ttf") format("truetype"), url("../fonts/WorkSans/WorkSans-Light.woff") format("woff"), url("../fonts/WorkSans/WorkSans-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/WorkSans/WorkSans-Medium.ttf") format("truetype"), url("../fonts/WorkSans/WorkSans-Medium.woff") format("woff"), url("../fonts/WorkSans/WorkSans-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/WorkSans/WorkSans-Regular.ttf") format("truetype"), url("../fonts/WorkSans/WorkSans-Regular.woff") format("woff"), url("../fonts/WorkSans/WorkSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/WorkSans/WorkSans-SemiBold.ttf") format("truetype"), url("../fonts/WorkSans/WorkSans-SemiBold.woff") format("woff"), url("../fonts/WorkSans/WorkSans-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/WorkSans/WorkSans-Thin.ttf") format("truetype"), url("../fonts/WorkSans/WorkSans-Thin.woff") format("woff"), url("../fonts/WorkSans/WorkSans-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-Black.ttf") format("truetype"), url("../fonts/Roboto/Roboto-Black.woff") format("woff"), url("../fonts/Roboto/Roboto-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-BlackItalic.ttf") format("truetype"), url("../fonts/Roboto/Roboto-BlackItalic.woff") format("woff"), url("../fonts/Roboto/Roboto-BlackItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto/Roboto-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-BoldItalic.ttf") format("truetype"), url("../fonts/Roboto/Roboto-BoldItalic.woff") format("woff"), url("../fonts/Roboto/Roboto-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-Light.ttf") format("truetype"), url("../fonts/Roboto/Roboto-Light.woff") format("woff"), url("../fonts/Roboto/Roboto-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-LightItalic.ttf") format("truetype"), url("../fonts/Roboto/Roboto-LightItalic.woff") format("woff"), url("../fonts/Roboto/Roboto-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype"), url("../fonts/Roboto/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto/Roboto-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-MediumItalic.ttf") format("truetype"), url("../fonts/Roboto/Roboto-MediumItalic.woff") format("woff"), url("../fonts/Roboto/Roboto-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-RegularItalic.ttf") format("truetype"), url("../fonts/Roboto/Roboto-RegularItalic.woff") format("woff"), url("../fonts/Roboto/Roboto-RegularItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-Thin.ttf") format("truetype"), url("../fonts/Roboto/Roboto-Thin.woff") format("woff"), url("../fonts/Roboto/Roboto-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Roboto/Roboto-ThinItalic.ttf") format("truetype"), url("../fonts/Roboto/Roboto-ThinItalic.woff") format("woff"), url("../fonts/Roboto/Roboto-ThinItalic.woff2") format("woff2");
}
#back-to-top {
  z-index: 9000;
  top: auto;
  right: 20px;
  right: 1.25rem;
  bottom: 100px;
  bottom: 6.25rem;
  left: auto;
  cursor: pointer;
  position: fixed;
  background-color: #1D4565;
  border-color: #ffffff;
  border-radius: 25px;
  color: #ffffff;
}

body.einblicke #back-to-top {
  background-color: #BCCF01;
}

body.einblicke div.rsform button#Send.rsform-submit-button {
  background-color: #007ac3;
}

.content-floating {
  z-index: 9000;
  position: absolute;
  top: 0;
  left: 0;
}

:root {
  --bs-black: #000000;
  --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;
}

html {
  position: relative;
  height: 100%;
  font-size: 16px;
}
html body {
  letter-spacing: normal;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
html body main {
  flex: 1 0 auto;
}

h1 {
  font-weight: 700;
  margin-bottom: calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  h1 {
    margin-bottom: 1.5625rem;
  }
}

h2 {
  margin-bottom: 1.25rem;
}

h3 {
  margin-bottom: 0.9375rem;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
}

.btn .btn-primary, .hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a .btn-primary, .btn .hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a, .hwx-category-container .hwx-category-body .hwx-category-item-container .btn .hwx-itemlist-readmore > a, .hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a .hwx-itemlist-readmore > a,
.btn .btn-secondary,
.hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a .btn-secondary,
.btn .hwx-category-filter .hwx-filter-button,
.hwx-category-filter .btn .hwx-filter-button,
.hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a .hwx-category-filter .hwx-filter-button,
.hwx-category-filter .hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a .hwx-filter-button {
  text-decoration: none;
}

.hwx-spacer {
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  width: 25%;
  margin-left: auto;
  margin-right: auto;
}
.hwx-spacer:last-of-type {
  display: none;
}

.hwx-dont-break {
  white-space: nowrap;
}

.hwx-title-split {
  display: block;
}

.hwx-hyphens {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

.grecaptcha-badge {
  z-index: 9999;
}

#hwx-noscript {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
#hwx-noscript .hwx-noscript-body {
  padding: 1.25rem;
  font-size: 1.25rem;
  background-color: #ffffff;
  color: #dc3545;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
}

header#header {
  z-index: 200;
  margin: 0px 0px 0px 0px;
  margin: 0rem 0rem 0rem 0rem;
  padding: 0px 0px 0px 0px;
  padding: 0rem 0rem 0rem 0rem;
  background-color: transparent;
}
header#header.hwx-fixed-top, header#header.hwx-fixed-bottom, header#header.hwx-sticky-top, header#header.hwx-sticky-bottom {
  left: 0;
  right: 0;
}
header#header.hwx-sticky-top, header#header.hwx-sticky-bottom {
  position: absolute;
}
header#header.hwx-fixed-top, header#header.hwx-fixed-bottom {
  position: fixed;
}
header#header.hwx-fixed-top, header#header.hwx-sticky-top {
  top: 0;
}
header#header.hwx-fixed-bottom, header#header.hwx-sticky-bottom {
  bottom: 0;
}

#system-message-container #system-message .alert .close {
  text-decoration: none;
}
#system-message-container #system-message .alert.alert-error {
  background-color: #dc3545;
}

div#background-container {
  z-index: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

main#content {
  margin: 0rem 0rem 0rem 0rem;
  z-index: 10;
  background-color: transparent;
  position: relative;
}
main#content #content-banner-top img,
main#content #content-banner-bottom img {
  width: 100%;
}
main#content #content-banner-top p:last-child,
main#content #content-banner-bottom p:last-child {
  margin-bottom: 0;
}
main#content #content-banner-top {
  margin-bottom: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 576px) {
  main#content #content-banner-top {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  main#content #content-banner-top {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }
}
main#content .content-top-background {
  margin: calc(1.28125rem + 0.375vw) 0rem calc(1.28125rem + 0.375vw) 0rem;
  padding: 0rem 0rem 0rem 0rem;
}
@media (min-width: 1200px) {
  main#content .content-top-background {
    margin: 1.5625rem 0rem 1.5625rem 0rem;
  }
}
@media (min-width: 576px) {
  main#content .content-top-background {
    margin: calc(1.4375rem + 2.25vw) 0rem calc(1.4375rem + 2.25vw) 0rem;
    padding: 0rem 0rem 0rem 0rem;
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  main#content .content-top-background {
    margin: 3.125rem 0rem 3.125rem 0rem;
  }
}
@media (min-width: 992px) {
  main#content .content-top-background {
    margin: calc(1.75rem + 6vw) 0rem calc(1.75rem + 6vw) 0rem;
    padding: 0rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  main#content .content-top-background {
    margin: 6.25rem 0rem 6.25rem 0rem;
  }
}
main#content .content-main-background {
  margin: calc(1.28125rem + 0.375vw) 0rem calc(1.28125rem + 0.375vw) 0rem;
  padding: 0rem 0rem 0rem 0rem;
}
@media (min-width: 1200px) {
  main#content .content-main-background {
    margin: 1.5625rem 0rem 1.5625rem 0rem;
  }
}
@media (min-width: 576px) {
  main#content .content-main-background {
    margin: calc(1.4375rem + 2.25vw) 0rem calc(1.4375rem + 2.25vw) 0rem;
    padding: 0rem 0rem 0rem 0rem;
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  main#content .content-main-background {
    margin: 3.125rem 0rem 3.125rem 0rem;
  }
}
@media (min-width: 992px) {
  main#content .content-main-background {
    margin: calc(1.75rem + 6vw) 0rem calc(1.75rem + 6vw) 0rem;
    padding: 0rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  main#content .content-main-background {
    margin: 6.25rem 0rem 6.25rem 0rem;
  }
}
@media (max-width: 575.98px) {
  main#content .content-main-background #content-right {
    margin-top: calc(1.4375rem + 2.25vw);
  }
}
@media (max-width: 575.98px) and (min-width: 1200px) {
  main#content .content-main-background #content-right {
    margin-top: 3.125rem;
  }
}
main#content .content-bottom-background {
  margin: calc(1.28125rem + 0.375vw) 0rem calc(1.28125rem + 0.375vw) 0rem;
  padding: 0rem 0rem 0rem 0rem;
}
@media (min-width: 1200px) {
  main#content .content-bottom-background {
    margin: 1.5625rem 0rem 1.5625rem 0rem;
  }
}
@media (min-width: 576px) {
  main#content .content-bottom-background {
    margin: calc(1.4375rem + 2.25vw) 0rem calc(1.4375rem + 2.25vw) 0rem;
    padding: 0rem 0rem 0rem 0rem;
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  main#content .content-bottom-background {
    margin: 3.125rem 0rem 3.125rem 0rem;
  }
}
@media (min-width: 992px) {
  main#content .content-bottom-background {
    margin: calc(1.75rem + 6vw) 0rem calc(1.75rem + 6vw) 0rem;
    padding: 0rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  main#content .content-bottom-background {
    margin: 6.25rem 0rem 6.25rem 0rem;
  }
}
main#content #content-banner-bottom {
  margin-top: calc(1.28125rem + 0.375vw);
  padding-top: 0rem;
}
@media (min-width: 1200px) {
  main#content #content-banner-bottom {
    margin-top: 1.5625rem;
  }
}
@media (min-width: 576px) {
  main#content #content-banner-bottom {
    margin-top: calc(1.4375rem + 2.25vw);
    padding-top: 0rem;
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  main#content #content-banner-bottom {
    margin-top: 3.125rem;
  }
}
@media (min-width: 992px) {
  main#content #content-banner-bottom {
    margin-top: calc(1.75rem + 6vw);
    padding-top: 0rem;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  main#content #content-banner-bottom {
    margin-top: 6.25rem;
  }
}

footer#footer {
  z-index: 100;
  margin: 0px 0px 0px 0px;
  margin: 0rem 0rem 0rem 0rem;
  padding: 0px 0px 0px 0px;
  padding: 0rem 0rem 0rem 0rem;
  background-color: transparent;
}
footer#footer.hwx-fixed-top, footer#footer.hwx-fixed-bottom, footer#footer.hwx-sticky-top, footer#footer.hwx-sticky-bottom {
  left: 0;
  right: 0;
}
footer#footer.hwx-sticky-top, footer#footer.hwx-sticky-bottom {
  position: absolute;
}
footer#footer.hwx-fixed-top, footer#footer.hwx-fixed-bottom {
  position: fixed;
}
footer#footer.hwx-fixed-top, footer#footer.hwx-sticky-top {
  top: 0;
}
footer#footer.hwx-fixed-bottom, footer#footer.hwx-sticky-bottom {
  bottom: 0;
}

div.gutschein .required label:after {
  content: "*";
  color: red;
}

.bg-green, .bg-green a.button {
  background-color: #BCCF01;
}

.bg-green a {
  color: #000000;
}

.bg-blue, .bg-blue button {
  background-color: #007AC3 !important;
  color: #ffffff;
}

.bg-blue a {
  color: #ffffff !important;
}

.bg-grey {
  background-color: #f9f9f9;
}

a.button {
  background-color: #BCCF01;
  color: white;
  padding: 12px 32px;
  border-radius: 12px;
}

a.button:hover {
  background-color: #b3c502;
}

:is(a, button) {
  animation: button-animation 0.1ms 0.15s ease-out forwards;
  background-image: linear-gradient(60deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.0705882353) 50%);
  background-size: 300%;
  background-repeat: repeat;
  background-position: top right;
  background-color: rgba(255, 255, 255, 0);
  display: table;
  text-decoration: none;
  cursor: pointer;
  padding: 0 12px;
  z-index: 1111;
}

:is(a, button):hover {
  animation: button-animation-rev 0.65s ease-out forwards;
}

@keyframes button-animation {
  0% {
    background-position: top right;
  }
  100% {
    background-position: top left;
  }
}
@keyframes button-animation-rev {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
}

a {
  text-decoration: unset !important;
}

p, span, a {
  font-size: calc(14.5px + 0.5 * (100vw - 320px) / 1280);
  font-family: "Open Sans Regular";
  color: #1D4565;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans Regular";
  word-break: break-word;
  font-weight: 700 !important;
  color: #1D4565;
}

h1 p, h1 span, h1 div, h1 a, h2 p, h2 span, h2 div, h2 a, h3 p, h3 span, h3 div, h3 a, h4 p, h4 span, h4 div, h4 a, h5 p, h5 span, h5 div, h5 a, h6 p, h6 span, h6 div, h6 a {
  font-size: unset !important;
}

h1 {
  font-size: calc(27px + 5 * (100vw - 320px) / 1280) !important;
  margin: 0 0 calc(25px + 25 * (100vw - 320px) / 1280) !important;
}

h2 {
  font-size: calc(20px + 4 * (100vw - 320px) / 1280) !important;
  margin: 0 0 calc(14px + 6 * (100vw - 320px) / 1280) !important;
}

h3 {
  font-size: calc(16px + 2.72 * (100vw - 320px) / 1280) !important;
  margin: 0 0 calc(10px + 5 * (100vw - 320px) / 1280) !important;
}

h4 {
  font-size: calc(14px + 2 * (100vw - 320px) / 1280) !important;
  margin: 0 0 calc(7px + 1 * (100vw - 320px) / 1280) !important;
}

h5 {
  font-size: calc(12px + 1.28 * (100vw - 320px) / 1280) !important;
  margin: 0 0 calc(7px + 1 * (100vw - 320px) / 1280) !important;
}

h6 {
  font-size: calc(10px + 0.72 * (100vw - 320px) / 1280) !important;
  margin: 0 0 calc(7px + 1 * (100vw - 320px) / 1280) !important;
}

::-webkit-scrollbar {
  width: 5px;
  height: 1px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(13deg, #ffffff 35%, #007AC3 50%, #ffffff 65%);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(13deg, #ffffff 35%, #007AC3 50%, #ffffff 65%);
}

::-webkit-scrollbar-track {
  background: #ffffff;
  box-shadow: inset 7px 10px 12px #ffffff;
}

main {
  animation: fadeIn 3s;
  -webkit-animation: fadeIn 3s;
  -moz-animation: fadeIn 3s;
  -o-animation: fadeIn 3s;
  -ms-animation: fadeIn 3s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

header#header nav .navbar-menu {
  max-width: unset !important;
  padding: unset !important;
  align-items: center !important;
}
header#header nav .navbar-menu ul .link {
  justify-content: center !important;
}
header#header nav .navbar-menu ul .link a {
  font-size: calc(18px + 37 * (100vw - 320px) / 1280);
  color: #ffffff !important;
  text-transform: uppercase;
  font-weight: 600;
  width: 65%;
  line-height: calc(25px + 35 * (100vw - 320px) / 1280);
  text-align: right;
  opacity: 1 !important;
}
header#header nav .navbar-menu img {
  height: calc(65px + 234 * (100vw - 320px) / 1280);
}
main#content {
  background-image: url(../../../images/grafiken/hkw_grafik.jpg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: calc(200px + 300 * (100vw - 320px) / 1280);
  padding-bottom: calc(55px + 74 * (100vw - 320px) / 1280);
  margin-bottom: calc(20px + 36 * (100vw - 320px) / 1280);
  border-bottom: 12px solid #33ff2e;
}
main#content a {
  color: #000000;
  padding: unset;
}
main#content #content-middle {
  padding-right: calc(0px + 55 * (100vw - 320px) / 1280);
}
main#content #content-right p, main#content #content-right span, main#content #content-right a {
  font-size: calc(12.5px + 0.5 * (100vw - 320px) / 1280);
  font-family: "Open Sans Regular";
}
main#content .blue-bayou {
  color: #0079c1;
  font-weight: 900;
}
main#content video {
  width: 100%;
  height: auto;
  margin: auto;
  border-radius: 12px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5411764706);
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5411764706);
  padding: 1px;
}
main#content table {
  width: 100% !important;
}
main#content form {
  max-width: 450px;
  margin: auto;
}
main#content form option[value="disabled "] {
  display: none !important;
}
main#content form .rsform-block:not(.rsform-block-teilnahme, .rsform-block-menuewunsch) label {
  display: none;
}
main#content form .rsform-block .formControls .form-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
main#content form .rsform-block input, main#content form .rsform-block textarea {
  background-color: rgba(223, 179, 123, 0.0784313725) !important;
  border: unset;
}
main#content form .rsform-block input[type=radio] {
  background: #fff !important;
  border: 1px solid black !important;
  padding: 0px !important;
}
main#content form .rsform-block input[type=radio]:checked {
  background-color: #1d4565 !important;
}
main#content form .rsform-block .btn, main#content form .rsform-block .hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a, .hwx-category-container .hwx-category-body .hwx-category-item-container main#content form .rsform-block .hwx-itemlist-readmore > a {
  background-color: #DFB37B;
}
main#content form .rsform-block {
  margin: 0 !important;
  width: 100% !important;
  padding: 4px 0 !important;
}
main#content form .rsform-block h2 {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
}
main#content form .rsform-block h2 img {
  width: unset;
  border: unset;
  border-radius: 6px;
  padding: unset;
}
main#content form .rsform-block .formControls {
  padding: 0;
  width: 100%;
}
main#content form .rsform-block .formControls select {
  border: 1px solid #e1e1e1;
  margin: 0 !important;
}
main#content form .rsform-block .formControls input {
  background: #f7f7f7;
  border: unset;
  padding: 12px;
}
main#content form .rsform-block .formControls button, main#content form .rsform-block .formControls select {
  width: 100%;
  border-radius: 6px;
  margin: 16px 0;
  outline: none;
  box-shadow: none;
}
main#content form .rsform-block .formControls button:focus {
  outline: none;
  box-shadow: none;
}
main#content form .rsform-block img {
  width: 45%;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 6px;
}
main#content form .rsform-block-dsgvo {
  font-size: 14px;
}
main#content form .rsform-block-dsgvo a {
  font-size: 14px;
  padding: 0;
  color: #000000;
}
main#content .content-main-background .main-content-container div#hwx-socialconnect-socialmediaposts-list div.hwx-socialconnect-list-title {
  margin-bottom: 55px;
}
main#content .content-main-background .main-content-container div#hwx-socialconnect-socialmediaposts-list div.hwx-socialconnect-list-items div.hwx-socialconnect-list-item div.hwx-socialconnect-list-item-col div.hwx-socialconnect-list-item-title {
  margin-bottom: 30px;
}
main#content .content-main-background .main-content-container div#hwx-socialconnect-socialmediaposts-list div.hwx-socialconnect-list-items div.hwx-socialconnect-list-item div.hwx-socialconnect-list-item-content div.hwx-socialconnect-list-item-details div.hwx-socialconnect-list-item-created {
  padding-bottom: 8px;
}
main#content .content-main-background .main-content-container div#hwx-socialconnect-socialmediaposts-list div.hwx-socialconnect-list-items div.hwx-socialconnect-list-item div.hwx-socialconnect-list-item-content div.hwx-socialconnect-list-item-media a img {
  height: 275px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: center center;
}
main#content .content-main-background div.content-right-container div.hwx-hwxsocialconnect-posts-module {
  padding-top: 17px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 57px;
  background: rgba(0, 0, 0, 0.0392156863);
}
main#content .content-main-background div.content-right-container div.hwx-hwxsocialconnect-posts-module div.hwx-socialconnect-posts-item {
  margin-bottom: 40px;
}
main#content .content-main-background div.content-right-container div.hwx-hwxsocialconnect-posts-module div.hwx-socialconnect-posts-item div.hwx-socialconnect-posts-item-content .hwx-socialconnect-posts-item-media a img {
  height: 231px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: center center;
}
main#content .content-main-background div.content-right-container div.hwx-hwxsocialconnect-posts-module div.hwx-socialconnect-posts-item div.hwx-socialconnect-posts-item-content div.hwx-socialconnect-posts-item-readmore-button {
  margin-top: 16px;
}
main#content .content-main-background div.content-right-container div.hwx-hwxsocialconnect-posts-module div.hwx-socialconnect-posts-item div.hwx-socialconnect-posts-item-content div.hwx-socialconnect-posts-item-message {
  font-size: 14px;
}
main#content .content-main-background div.content-right-container div.hwx-hwxsocialconnect-posts-module div.hwx-socialconnect-posts-item div.hwx-socialconnect-posts-item-content div.hwx-socialconnect-posts-item-title .hwx-socialconnect-posts-item-title-text {
  font-size: 1.5rem;
}
footer#footer .hwx-footer {
  padding: 0;
}
footer#footer .hwx-footer .hwx-footer-col {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 576px) {
  footer#footer .hwx-footer .hwx-footer-col {
    justify-content: center;
  }
}
footer#footer .hwx-footer .hwx-footer-col:last-child {
  justify-content: flex-start !important;
}

button#Send {
	background-color: #33fe2e !important;
	color: #000000 !important;
}

/*# sourceMappingURL=template.css.map */
