@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: 'Letter Gothic Std';
  src: url("../fonts/LetterGothicStd/LetterGothicStd.woff2") format("woff2"), url("../fonts/LetterGothicStd/LetterGothicStd.woff") format("woff");
  font-weight: 500;
  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: calc(3 / 4 * 100%); }

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%); }

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%); }

.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: "Lato", -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: .3em solid; } }

.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-form .hwx-search-limit {
    display: none; }
#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-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 !important;
  background-color: #001624d1 !important; }
  div.cc-window h3 {
    color: #ffffff; }
  div.cc-window.cc-floating {
    max-width: 45em !important; }
  div.cc-window.cc-allowall-button {
    margin: auto;
    left: 0;
    right: 0; }
  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: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype"), url("../fonts/Lato/Lato-Regular.woff") format("woff"), url("../fonts/Lato/Lato-Regular.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: #0d6efd;
  color: #6c757d;
  border-color: #ffffff; }

.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-filter .hwx-filter-button.active, .hwx-category-filter .btn .hwx-filter-button.active, .hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a .hwx-category-filter .hwx-filter-button.active, .hwx-category-filter .hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a .hwx-filter-button.active, .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: 0 0 0 0;
  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: 0;
    padding-bottom: 0; }
    @media (min-width: 576px) {
      main#content #content-banner-top {
        margin-bottom: 0;
        padding-bottom: 0; } }
    @media (min-width: 992px) {
      main#content #content-banner-top {
        margin-bottom: 0;
        padding-bottom: 0; } }
  main#content .content-top-background {
    margin: calc(1.28125rem + 0.375vw) 0 calc(1.28125rem + 0.375vw) 0;
    padding: 0 0 0 0; }
    @media (min-width: 1200px) {
      main#content .content-top-background {
        margin: 1.5625rem 0 1.5625rem 0; } }
    @media (min-width: 576px) {
      main#content .content-top-background {
        margin: calc(1.4375rem + 2.25vw) 0 calc(1.4375rem + 2.25vw) 0;
        padding: 0 0 0 0; } }
  @media (min-width: 576px) and (min-width: 1200px) {
    main#content .content-top-background {
      margin: 3.125rem 0 3.125rem 0; } }

    @media (min-width: 992px) {
      main#content .content-top-background {
        margin: calc(1.75rem + 6vw) 0 calc(1.75rem + 6vw) 0;
        padding: 0 0 0 0; } }
  @media (min-width: 992px) and (min-width: 1200px) {
    main#content .content-top-background {
      margin: 6.25rem 0 6.25rem 0; } }

  main#content .content-main-background {
    margin: calc(1.28125rem + 0.375vw) 0 calc(1.28125rem + 0.375vw) 0;
    padding: 0 0 0 0; }
    @media (min-width: 1200px) {
      main#content .content-main-background {
        margin: 1.5625rem 0 1.5625rem 0; } }
    @media (min-width: 576px) {
      main#content .content-main-background {
        margin: calc(1.4375rem + 2.25vw) 0 calc(1.4375rem + 2.25vw) 0;
        padding: 0 0 0 0; } }
  @media (min-width: 576px) and (min-width: 1200px) {
    main#content .content-main-background {
      margin: 3.125rem 0 3.125rem 0; } }

    @media (min-width: 992px) {
      main#content .content-main-background {
        margin: calc(1.75rem + 6vw) 0 calc(1.75rem + 6vw) 0;
        padding: 0 0 0 0; } }
  @media (min-width: 992px) and (min-width: 1200px) {
    main#content .content-main-background {
      margin: 6.25rem 0 6.25rem 0; } }

    @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) 0 calc(1.28125rem + 0.375vw) 0;
    padding: 0 0 0 0; }
    @media (min-width: 1200px) {
      main#content .content-bottom-background {
        margin: 1.5625rem 0 1.5625rem 0; } }
    @media (min-width: 576px) {
      main#content .content-bottom-background {
        margin: calc(1.4375rem + 2.25vw) 0 calc(1.4375rem + 2.25vw) 0;
        padding: 0 0 0 0; } }
  @media (min-width: 576px) and (min-width: 1200px) {
    main#content .content-bottom-background {
      margin: 3.125rem 0 3.125rem 0; } }

    @media (min-width: 992px) {
      main#content .content-bottom-background {
        margin: calc(1.75rem + 6vw) 0 calc(1.75rem + 6vw) 0;
        padding: 0 0 0 0; } }
  @media (min-width: 992px) and (min-width: 1200px) {
    main#content .content-bottom-background {
      margin: 6.25rem 0 6.25rem 0; } }

  main#content #content-banner-bottom {
    margin-top: calc(1.28125rem + 0.375vw);
    padding-top: 0; }
    @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: 0; } }
  @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: 0; } }
  @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; }

body.ansprechpartner main#content .hwx-category-container .hwx-category-contact-person .item img {
  max-height: 250px; }

body.ansprechpartner main#content .hwx-category-container .hwx-category-contact-person:is(.w-80,.w-60) {
  max-width: unset !important;
  width: 100% !important; }

body.ansprechpartner main#content .hwx-category-container .hwx-category-contact-person table {
  width: unset !important;
  height: unset !important; }

body.ansprechpartner main#content .hwx-category-container .hwx-category-contact-person table tr {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important; }

body.ansprechpartner main#content .hwx-category-container .hwx-category-contact-person table tr td:first-child h2 {
  padding: 0 6px 0 0; }

body.ansprechpartner main#content .hwx-category-container .hwx-category-contact-person .item h2 {
  margin-bottom: 6px !important; }

.reference-items .item {
  display: grid;
  grid-template: auto / 1fr;
  gap: 0.5rem;
  margin: calc(40px + (45 - 40) * ((100vw - 320px) / (1600 - 320))) 0;
  padding: 0 15px; }

.reference-items .item .sigProPseudoCaption {
  display: none !important; }

.reference-items .item:nth-child(odd) {
  grid-template-areas: 'title' 'introtext'; }

.reference-items .item:nth-child(even) {
  grid-template-areas: 'title' 'introtext'; }

.reference-items .item > .title {
  text-align: left;
  grid-area: title;
  max-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-end; }

.reference-items .item > .introtext {
  grid-area: introtext; }

.reference-items .item ul {
  margin: unset !important;
  padding: unset !important; }

.reference-items .item a {
  background-color: unset !important;
  color: unset !important;
  border: unset !important; }

body.front #hwx-default-item {
  width: 100% !important;
  padding: unset !important; }
  body.front #hwx-default-item .hwx-item-header-text {
    margin-bottom: 0 !important;
    background: rgba(255, 255, 255, 0.77);
    font-size: calc(20px + (25 - 20) * ((100vw - 320px) / (1600 - 320))) !important;
    padding: 15px 25px 3px !important;
    text-align: center; }
  @media (min-width: 992px) {
    body.front #hwx-default-item .hwx-item-header-text {
      padding: 30px 55px 5px !important; } }
  body.front #hwx-default-item img {
    width: 100%; }

@media (min-width: 992px) {
  .reference-items .item {
    grid-template: auto/repeat(7, 1fr);
    gap: 4rem;
    padding: 0; }

  .reference-items .item:nth-child(odd) {
    grid-template-areas: '. title title introtext introtext introtext introtext'; }

  .reference-items .item:nth-child(even) {
    grid-template-areas: 'title title introtext introtext introtext introtext .'; }

  .reference-items .item > .title {
    text-align: right;
    align-items: flex-end; } }
button:focus {
  outline: none !important;
  box-shadow: none !important; }

.bg-gradient {
  background: #f2f3f4;
  background: linear-gradient(180deg, #f2f3f4 0%, #f2f3f4 50%, #e4e4e4 100%); }

button.navbar-toggler {
  border: unset !important; }
  button.navbar-toggler .fa-bars::before {
    color: #347723b0 !important; }
  button.navbar-toggler i {
    font-size: 28px; }

@media (min-width: 1096px) {
  body.site nav#module-nav-118, nav#module-nav-121 {
    display: grid;
    grid-template: auto / 1fr 1096px 1fr;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%; } }
@media (min-width: 1096px) {
  body.site nav#module-nav-118 > .bg, nav#module-nav-121 > .bg {
    width: 100%;
    height: 100%;
    background: #b6bac5; } }

nav#module-nav-118 {
  min-height: 60px; }
  @media (min-width: 1096px) {
    nav#module-nav-118 {
      min-height: 80px; } }
  nav#module-nav-118 > .container {
    position: relative;
    height: 100%; }
    nav#module-nav-118 > .container > a {
      font-size: calc(22px + (31 - 22) * ((100vw - 320px) / (1600 - 320)));
      color: #000000;
      z-index: 1111111; }
      @media (min-width: 1096px) {
        nav#module-nav-118 > .container > a {
          position: absolute;
          bottom: 5px;
          left: 30px; } }

@media (min-width: 1096px) {
  nav#module-nav-118, nav#module-nav-121 {
    display: grid;
    grid-template: auto / 1fr 1096px 1fr;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%; } }
@media (min-width: 1096px) {
  nav#module-nav-118 > .bg, nav#module-nav-121 > .bg {
    width: 100%;
    height: 100%;
    background: #b6bac5; } }
nav#module-nav-118 > .container, nav#module-nav-121 > .container {
  padding: 12px !important;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  max-width: 1096px !important; }

@media (min-width: 1096px) {
  nav#module-nav-118 {
    top: 0; } }
@media (max-width: 991.98px) {
  nav#module-nav-118 .nav-d-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-content: center; } }
@media (max-width: 991.98px) {
  nav#module-nav-118 #navbar-118 {
    height: 100vh; } }
@media (max-width: 991.98px) {
  nav#module-nav-118 #navbar-118 ul {
    width: max-content;
    margin: 0 auto;
    min-height: 65vh; } }
@media (max-width: 991.98px) {
  nav#module-nav-118 #navbar-118 ul a {
    text-align: left; } }
@media (max-width: 991.98px) {
  nav#module-nav-118 ul {
    padding: 150px 0; } }

nav.hwx-menu :is(span,p,a,div) {
  text-shadow: 0.1px 0.1px 0.1px #202020, 0 0.1px 0 #202020, 0.1px -0.1px 0 #202020, 0.1px 0 0 #202020, 0.1px 0.1px 0 #202020, 0 0.1px 0 #202020, -0.1px 0.1px 0 #202020, -0.1px 0 0 #202020; }
nav.hwx-menu .container > a {
  font-family: "Lato" !important;
  font-weight: 200 !important;
  text-shadow: unset !important; }
nav.hwx-menu > div.container {
  text-shadow: unset !important; }
nav.hwx-menu .navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 37px;
  align-items: center; }
  nav.hwx-menu .navbar-brand span:first-child {
    position: relative;
    text-shadow: 0.1px 0.1px 0.1px #202020, 0 0.1px 0 #202020, 0.1px -0.1px 0 #202020, 0.1px 0 0 #202020, 0.1px 0.1px 0 #202020, 0 0.1px 0 #202020, -0.1px 0.1px 0 #202020, -0.1px 0 0 #202020; }
  nav.hwx-menu .navbar-brand span:last-child {
    font-weight: 100 !important;
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1600 - 320)));
    text-shadow: unset !important;
    line-height: calc(22px + (30 - 22) * ((100vw - 320px) / (1600 - 320))); }
  nav.hwx-menu .navbar-brand span:first-child::after {
    content: " ";
    position: absolute;
    bottom: calc(0px + (-3 - 0) * ((100vw - 320px) / (1600 - 320)));
    left: -5%;
    width: 110%;
    height: 1px;
    background: #979797; }
  nav.hwx-menu .navbar-brand img {
    height: 72px;
    width: 156px; }
nav.hwx-menu ul {
  padding: 0 50px; }
  nav.hwx-menu ul li a {
    padding: 8px 16px !important;
    font-size: calc(25px + (22 - 25) * ((100vw - 320px) / (1600 - 320))) !important;
    color: #3b3b3b !important;
    text-shadow: 0 0 1px #00000038; }
    @media (min-width: 992px) {
      nav.hwx-menu ul li a {
        padding: 8px 16px 0 !important; } }

@media (min-width: 1096px) {
  nav#module-nav-121 {
    bottom: 0; } }
nav#module-nav-121 > .container {
  height: unset;
  padding: 6px 12px !important; }
  @media (min-width: 992px) {
    nav#module-nav-121 > .container {
      height: 70px;
      padding: 12px !important; } }
@media (max-width: 991.98px) {
  nav#module-nav-121 #navbar-121 {
    justify-content: center !important; } }
nav#module-nav-121 ul li a {
  padding: 0 8px 0 !important;
  font-weight: 500 !important;
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1600 - 320))) !important; }

body.front nav:is(#module-nav-118) > .container {
  background: white; }
  @media (min-width: 992px) {
    body.front nav:is(#module-nav-118) > .container {
      background: rgba(255, 255, 255, 0.88); } }

body.site nav:is(#module-nav-118) > .container {
  background: white; }
  @media (min-width: 992px) {
    body.site nav:is(#module-nav-118) > .container {
      background: rgba(255, 255, 255, 0.46); } }

body {
  background: #c6c9d0; }

html {
  scroll-behavior: smooth; }

:is(span,p,a,div,h1,h2,h3,h4,h5,h6) {
  font-family: "Lato" !important; }

a {
  text-decoration: unset !important; }

main#content a > span, body.ansprechpartner main#content a {
  text-decoration: underline !important;
  color: #6386a5 !important; }

body.ansprechpartner main#content i {
  color: #6386a5  !important; }

body.ansprechpartner main#content blockquote > address > strong {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem; }

main#content a, main#content a > span {
  color: #212529; }

body:is(.leistungsangebot,.ansprechpartner) :is(p) {
  text-shadow: 0.3px 0.3px 0.3px #202020;
  font-size: calc(25px + (22 - 25) * ((100vw - 320px) / (1600 - 320))) !important; }

body.ansprechpartner .hwx-categoryblock {
  max-width: 870px;
  margin: auto; }

.cc-window {
  border: 12px solid #f3f0f0 !important;
  background-color: #001624d1 !important; }

.container {
  max-width: 1096px !important; }

.sigProModulePosition {
  background: unset !important;
  border: unset !important; }

#back-to-top {
  border-radius: 50%;
  background: #6386a5db !important;
  color: #ffffff !important; }

.cc-revoke {
  left: 0 !important;
  border-radius: unset !important;
  padding: 7px !important; }

.text-green {
  color: #7ad163b0 !important;
  font-weight: 500;
  text-shadow: 0.5px 0.5px 0.1px #202020, 0 0.5px 0 #202020, 0.5px -0.5px 0 #202020, 0.5px 0 0 #202020, 0.5px 0.5px 0 #202020, 0 0.5px 0 #202020, -0.5px 0.5px 0 #202020, -0.5px 0 0 #202020;
  font-size: calc(18.5px + (23 - 18.5) * ((100vw - 320px) / (1600 - 320))) !important;
  letter-spacing: 2px; }

.text-blue {
  color: #a3add1d1 !important;
  font-weight: 500;
  text-shadow: 0.5px 0.5px 0.1px #202020, 0 0.5px 0 #202020, 0.5px -0.5px 0 #202020, 0.5px 0 0 #202020, 0.5px 0.5px 0 #202020, 0 0.5px 0 #202020, -0.5px 0.5px 0 #202020, -0.5px 0 0 #202020;
  font-size: calc(18.5px + (23 - 18.5) * ((100vw - 320px) / (1600 - 320))) !important;
  letter-spacing: 2px; }

main#content :is(p, span, a) {
  font-size: calc(15.5px + (16 - 15.5) * ((100vw - 320px) / (1600 - 320)));
  line-height: 28px; }

nav li a {
  font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1600 - 320))) !important; }

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  font-weight: unset !important;
  text-shadow: 0.5px 0.5px 0.5px #202020; }

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;
  color: #3b3b3b !important;
  font-family: Arial, Helvetica, sans-serif; }

h1 {
  font-size: calc(24px + (32 - 24) * ((100vw - 320px) / (1600 - 320))) !important;
  margin: 0 0 calc(25px + (50 - 25) * ((100vw - 320px) / (1600 - 320))) !important; }

h2 {
  font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1600 - 320))) !important;
  margin: 0 0 calc(14px + (20 - 14) * ((100vw - 320px) / (1600 - 320))) !important; }

h3 {
  font-size: calc(16px + (18.72 - 16) * ((100vw - 320px) / (1600 - 320))) !important;
  margin: 0 0 calc(10px + (15 - 10) * ((100vw - 320px) / (1600 - 320))) !important; }

h4 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1600 - 320))) !important;
  margin: 0 0 calc(7px + (8 - 7) * ((100vw - 320px) / (1600 - 320))) !important; }

h5 {
  font-size: calc(12px + (13.28 - 12) * ((100vw - 320px) / (1600 - 320))) !important;
  margin: 0 0 calc(7px + (8 - 7) * ((100vw - 320px) / (1600 - 320))) !important; }

h6 {
  font-size: calc(10px + (10.72 - 10) * ((100vw - 320px) / (1600 - 320))) !important;
  margin: 0 0 calc(7px + (8 - 7) * ((100vw - 320px) / (1600 - 320))) !important; }

.container {
  padding: unset !important; }

::-webkit-scrollbar {
  width: 6px;
  height: 1px; }

::-webkit-scrollbar-thumb {
  background: linear-gradient(13deg, #b6bac5 32%, #ffffff 50%, #b6bac5 68%);
  border-radius: 8px; }

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(13deg, #b6bac5 32%, #ffffff 50%, #b6bac5 68%); }

::-webkit-scrollbar-track {
  background: #b6bac5;
  border-radius: 8px;
  box-shadow: inset 7px 10px 12px #b6bac5; }

body.site header#header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%; }

body .content-main-background:is(.ansprechpartner)::after {
  background: #ffffffde !important; }

body.front main#content #content-banner-top {
  position: absolute;
  top: 5vh;
  width: 90%;
  left: 15px;
  background: rgba(69, 74, 84, 0.52);
  padding: 6px;
  border-radius: 6px;
  text-shadow: 0.1px 0.1px 0.1px #202020, 0 0.1px 0 #202020, 0.1px -0.1px 0 #202020, 0.1px 0 0 #202020, 0.1px 0.1px 0 #202020, 0 0.1px 0 #202020, -0.1px 0.1px 0 #202020, -0.1px 0 0 #202020;
  color: #3b3b3b; }
  @media (min-width: 768px) {
    body.front main#content #content-banner-top {
      top: 10vh;
      width: 45%;
      padding: 12px; } }
  @media (min-width: 992px) {
    body.front main#content #content-banner-top {
      top: 16vh;
      width: 40%;
      padding: 16px; } }
  body.front main#content #content-banner-top > .custom {
    padding: 28px 20px;
    background: #ffffffb5;
    border-radius: 6px; }
  body.front main#content #content-banner-top a > span {
    color: #0d6efd;
    text-decoration: underline !important; }

body .content-main-background {
  position: relative;
  align-items: center;
  animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s; }
@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; } }
body.site.hwx-view-itemlist.referenzen .content-main-background {
  align-items: flex-end; }
  body.site.hwx-view-itemlist.referenzen .content-main-background .main-content-container {
    padding-bottom: 5vh; }

main#content .content-main-background {
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  margin: 0 auto !important;
  margin: 0 auto;
  max-width: 1096px;
  padding: 12px; }
  main#content .content-main-background :is(h1,h2,h3,h4,h5,h6,p,span) {
    color: #000000; }
  main#content .content-main-background > div {
    width: 100%;
    z-index: 1111; }
  main#content .content-main-background .w-80 {
    width: 95%; }
    @media (min-width: 768px) {
      main#content .content-main-background .w-80 {
        width: 80%; } }
  main#content .content-main-background .w-60 {
    width: 95%; }
    @media (min-width: 768px) {
      main#content .content-main-background .w-60 {
        width: 80%; } }
    @media (min-width: 992px) {
      main#content .content-main-background .w-60 {
        width: 60%; } }
  main#content .content-main-background :is(.w-60,.w-80) {
    margin: 0 auto;
    max-width: 1096px;
    padding: 12px 12px; }
  main#content .content-main-background .main-content-container {
    height: max-content; }
    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: #0000000a; }
    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; }

@media (max-width: 1096px) {
  body.site main#content {
    padding: 150px 0 100px; } }

@media (min-width: 1096px) {
  body:is(.informationen,.datenschutz,.impressum) main#content {
    padding: 150px 0; } }
body:is(.informationen,.datenschutz,.impressum) main#content > div {
  margin: 0 auto !important; }
body:is(.informationen,.datenschutz,.impressum) main#content .btn, body:is(.informationen,.datenschutz,.impressum) main#content .hwx-category-container .hwx-category-body .hwx-category-item-container .hwx-itemlist-readmore > a, .hwx-category-container .hwx-category-body .hwx-category-item-container body:is(.informationen,.datenschutz,.impressum) main#content .hwx-itemlist-readmore > a {
  color: white !important; }
body:is(.informationen,.datenschutz,.impressum) main#content #hwx-default-item {
  max-width: unset;
  width: 100%; }
body:is(.informationen,.datenschutz,.impressum) main#content nav.hwx-menu .navbar-container {
  padding-left: 24px; }
  body:is(.informationen,.datenschutz,.impressum) main#content nav.hwx-menu .navbar-container ul {
    padding: 0 0 0 22px; }
    body:is(.informationen,.datenschutz,.impressum) main#content nav.hwx-menu .navbar-container ul li a span {
      position: relative; }
    body:is(.informationen,.datenschutz,.impressum) main#content nav.hwx-menu .navbar-container ul li a span::before {
      content: '-';
      position: absolute;
      top: -2px;
      margin: auto;
      height: 0;
      left: -16px; }
body:is(.informationen,.datenschutz,.impressum) main#content .module-title {
  font-size: 20px;
  padding-left: 24px;
  text-shadow: 0.5px 0.5px 0.1px #202020, 0 0.5px 0 #202020, 0.5px -0.5px 0 #202020, 0.5px 0 0 #202020, 0.5px 0.5px 0 #202020, 0 0.5px 0 #202020, -0.5px 0.5px 0 #202020, -0.5px 0 0 #202020; }

body.front main#content {
  padding: 0 0 70px; }
  @media (min-width: 1096px) {
    body.front main#content {
      max-width: 1096px;
      margin: 0 auto; } }
  body.front main#content img.background-image {
    display: none !important;
    width: 100%; }
    @media (min-width: 1096px) {
      body.front main#content img.background-image {
        display: block !important; } }
  @media (min-width: 1096px) {
    body.front main#content .content-main-background::before {
      background-image: unset;
      content: unset; } }
  body.front main#content .content-main-background {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto !important;
    bottom: 0;
    height: unset;
    padding: unset; }
    @media (min-width: 1096px) {
      body.front main#content .content-main-background {
        bottom: 70px; } }
    @media only screen and (min-width: 1096px) and (max-height: 992px) {
      body.front main#content .content-main-background {
        padding-left: 0 !important;
        padding-right: 0 !important; } }
  body.front main#content .content-main-background > div {
    top: unset;
    bottom: 0; }
    @media (min-width: 992px) {
      body.front main#content .content-main-background > div {
        bottom: 80px; } }
    body.front main#content .content-main-background > div #hwx-default-item {
      overflow: hidden;
      display: none; }
      body.front main#content .content-main-background > div #hwx-default-item img {
        width: 100%;
        max-width: unset !important; }

@media (max-width: 1096px) {
  body.site main#content .content-main-background {
    height: unset; } }

@media (min-width: 1096px) {
  body:is(.informationen,.datenschutz,.impressum) .content-main-background {
    height: unset !important; } }

footer#footer {
  background: white; }
  @media (min-width: 992px) {
    footer#footer {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      z-index: 11111;
      background: unset; } }
  footer#footer > .footer-navigation > .footer-text > .custom > p {
    letter-spacing: 2px; }
    @media (min-width: 992px) {
      footer#footer > .footer-navigation > .footer-text > .custom > p {
        position: relative;
        top: 12px;
        width: max-content; } }
  footer#footer .footer-text.position-absolute {
    max-width: 1096px;
    bottom: 35px;
    right: 0;
    left: 35px;
    z-index: 1111111;
    margin: 0 auto;
    position: unset !important; }
    @media (min-width: 992px) {
      footer#footer .footer-text.position-absolute {
        position: absolute !important; } }
    footer#footer .footer-text.position-absolute p {
      color: #3b3b3b;
      font-size: 12px;
      font-weight: 500;
      margin: 0;
      text-align: center;
      text-shadow: 0.3px 0.3px 0.1px #202020, 0 0.3px 0 #202020, 0.3px -0.3px 0 #202020, 0.3px 0 0 #202020, 0.3px 0.3px 0 #202020, 0 0.3px 0 #202020, -0.3px 0.3px 0 #202020, -0.3px 0 0 #202020; }
      @media (min-width: 992px) {
        footer#footer .footer-text.position-absolute p {
          font-size: 22px;
          background: unset;
          text-align: left; } }
  @media (min-width: 992px) {
    footer#footer nav#module-nav-121 > .container {
      background: rgba(255, 255, 255, 0.88) !important; } }

/*# sourceMappingURL=template.css.map */
