@charset "UTF-8";
.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;
  }
}
.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;
}

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

.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: #fff !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fw-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 {
  color: #0d6efd !important;
}

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

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

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

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

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

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

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

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

.text-body {
  color: #212529 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bg-body {
  background-color: #fff !important;
}

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

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

.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.5rem !important;
  }

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

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

  .d-print-none {
    display: none !important;
  }
}
@font-face {
  font-family: "Botera TFE";
  src: local("Botera TFE Regular Stencil"), local("BoteraTFE-RegularStencil"), url("../Fonts/BoteraTFE-RegularStencil.woff2") format("woff2"), url("../Fonts/BoteraTFE-RegularStencil.woff") format("woff"), url("../Fonts/BoteraTFE-RegularStencil.ttf") format("truetype"), url("../Fonts/BoteraTFE-RegularStencil.svg#BoteraTFE-RegularStencil") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*
@font-face {
  font-family: 'Founders Grotesk Text';
  src: local('Founders Grotesk Text Regular'), local('FoundersGroteskText-Regular'),
  url('../Fonts/FoundersGrotesk/FoundersGroteskText-Regular.woff2') format('woff2'),
  url('../Fonts/FoundersGrotesk/FoundersGroteskText-Regular.woff') format('woff'),
  url('../Fonts/FoundersGrotesk/FoundersGroteskText-Regular.ttf') format('truetype'),
  url('../Fonts/FoundersGrotesk/FoundersGroteskText-Regular.svg#FoundersGroteskText-Regular') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Founders Grotesk Mono';
  src: local('Founders Grotesk Mono Light'), local('FoundersGroteskMono-Light'),
  url('../Fonts/FoundersGrotesk/FoundersGroteskMono-Light.woff2') format('woff2'),
  url('../Fonts/FoundersGrotesk/FoundersGroteskMono-Light.woff') format('woff'),
  url('../Fonts/FoundersGrotesk/FoundersGroteskMono-Light.ttf') format('truetype'),
  url('../Fonts/FoundersGrotesk/FoundersGroteskMono-Light.svg#FoundersGroteskMono-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

*/
@font-face {
  font-family: "FoundersGroteskText";
  src: url("../Fonts/FGText/founders-grotesk-text-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FoundersGroteskText";
  src: url("../Fonts/FGText/founders-grotesk-text-regular-italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "FoundersGroteskText";
  src: url("../Fonts/FGText/founders-grotesk-text-medium.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FoundersGroteskText";
  src: url("../Fonts/FGText/founders-grotesk-text-medium-italic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "FoundersGroteskText";
  src: url("../Fonts/FGText/founders-grotesk-text-light.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FoundersGroteskText";
  src: url("../Fonts/FGText/founders-grotesk-text-light-italic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "FoundersGroteskMono";
  src: url("../Fonts/FGMono/founders-grotesk-mono-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FoundersGroteskMono";
  src: url("../Fonts/FGMono/founders-grotesk-mono-medium.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FoundersGroteskMono";
  src: url("../Fonts/FGMono/founders-grotesk-mono-light.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BerryScript";
  src: url("../Fonts/BerryScript/Bery-Script.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*!
TYPEPLATE
URL ........... http://typeplate.com
VERSION ....... 1.1.4
Github ........ https://github.com/typeplate/bower
AUTHORS ....... Dennis Gaebel (@gryghostvisuals) & Zachary Kain (@zakkain)
LICENSE ....... Creative Commmons Attribution 3.0 (http://creativecommons.org/licenses/by/3.0)
LICENSE URL ... https://github.com/typeplate/bower/blob/master/license.txt
*/
@font-face {
  font-family: "Ampersand";
  src: local("Georgia"), local("Garamond"), local("Palatino"), local("Book Antiqua");
  unicode-range: U+0026;
}
@font-face {
  font-family: "Ampersand";
  src: local("Georgia");
  unicode-range: U+270C;
}
body {
  word-wrap: break-word;
}

pre code {
  word-wrap: normal;
}

/**
 * Dropcap Sass @include
 * Use the following Sass @include with any selector you feel necessary.
 *
	@include dropcap($dropcap-float-position, $dropcap-font-size, $dropcap-font-family, $dropcap-txt-indent, $dropcap-margin, $dropcap-padding, $dropcap-color, $dropcap-line-height, $dropcap-bg);
 *
 * Extend this object into your custom stylesheet. Let the variables do the work.
 *
 */
html {
  font: normal 100%/1.65 serif;
  scroll-behavior: smooth;
}

body {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  hyphens: auto;
  color: #000;
}

small {
  font-size: 65%;
}

h6, h5, h4, h3, h2, h1 {
  text-rendering: optimizeLegibility;
  line-height: 1;
  margin-top: 0;
}

.tera {
  font-size: 117 px;
  font-size: 7.3125rem;
  margin-bottom: 3.6102564103 px;
  margin-bottom: 0.2256410256 rem;
}

.giga {
  font-size: 90 px;
  font-size: 5.625rem;
  margin-bottom: 4.6933333333 px;
  margin-bottom: 0.2933333333 rem;
}

.mega {
  font-size: 72 px;
  font-size: 4.5rem;
  margin-bottom: 5.8666666667 px;
  margin-bottom: 0.3666666667 rem;
}

.alpha, h1 {
  font-size: 60 px;
  font-size: 3.75rem;
  margin-bottom: 7.04 px;
  margin-bottom: 0.44 rem;
}

.beta, h2 {
  font-size: 48 px;
  font-size: 3rem;
  margin-bottom: 8.8 px;
  margin-bottom: 0.55 rem;
}

.gamma, h3 {
  font-size: 36 px;
  font-size: 2.25rem;
  margin-bottom: 11.7333333333 px;
  margin-bottom: 0.7333333333 rem;
}

.delta, h4 {
  font-size: 24 px;
  font-size: 1.5rem;
  margin-bottom: 17.6 px;
  margin-bottom: 1.1 rem;
}

.epsilon, h5 {
  font-size: 21 px;
  font-size: 1.3125rem;
  margin-bottom: 20.1142857143 px;
  margin-bottom: 1.2571428571 rem;
}

.zeta, h6 {
  font-size: 18 px;
  font-size: 1.125rem;
  margin-bottom: 23.4666666667 px;
  margin-bottom: 1.4666666667 rem;
}

p {
  margin: auto auto 1rem;
}

abbr,
acronym,
blockquote,
code,
dir,
kbd,
listing,
plaintext,
q,
samp,
tt,
var,
xmp {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -o-hyphens: none;
  hyphens: none;
}

pre code {
  white-space: -moz- pre-wrap;
  white-space: pre-wrap;
}

pre {
  white-space: pre;
}

code {
  white-space: pre;
  font-family: monospace;
}

/**
 * Abbreviations Markup
 *
	<abbr title="hyper text markup language">HMTL</abbr>
 *
 * Extend this object into your markup.
 *
 */
abbr {
  font-variant: small-caps;
  font-weight: 600;
  text-transform: lowercase;
  color: gray;
}
abbr[title]:hover {
  cursor: help;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

p + .drop-cap {
  text-indent: 0;
  margin-top: 0;
}

.drop-cap:first-letter {
  float: left;
  margin: inherit;
  padding: inherit;
  font-size: 4em;
  font-family: inherit;
  line-height: 1;
  text-indent: 0;
  background: transparent;
  color: inherit;
}

/**
 * Lining Definition Style Markup
 *
	<dl class="lining">
		<dt><b></b></dt>
		<dd></dd>
	</dl>
 *
 * Extend this object into your markup.
 *
 */
.lining dt,
.lining dd {
  display: inline;
  margin: 0;
}
.lining dt + dt:before,
.lining dd + dt:before {
  content: "\a";
  white-space: pre;
}
.lining dd + dd:before {
  content: ", ";
}
.lining dd:before {
  content: ": ";
  margin-left: -0.2rem;
}

/**
 * Dictionary Definition Style Markup
 *
	<dl class="dictionary-style">
		<dt><b></b></dt>
			<dd></dd>
	</dl>
 *
 * Extend this object into your markup.
 *
 */
.dictionary-style dt {
  display: inline;
  counter-reset: definitions;
}
.dictionary-style dt + dt:before {
  content: ", ";
  margin-left: -0.2rem;
}
.dictionary-style dd {
  display: block;
  counter-increment: definitions;
}
.dictionary-style dd:before {
  content: counter(definitions, decimal) ". ";
}

/**
 * Blockquote Markup
 *
		<figure>
			<blockquote cite="">
				<p></p>
			</blockquote>
			<figcaption>
				<cite>
					<small><a href=""></a></small>
				</cite>
			</figcaption>
		</figure>
 *
 * Extend this object into your markup.
 *
 */
/**
 * Pull Quotes Markup
 *
	<aside class="pull-quote">
		<blockquote>
			<p></p>
		</blockquote>
	</aside>
 *
 * Extend this object into your custom stylesheet.
 *
 */
.pull-quote {
  position: relative;
  padding: 1em;
}
.pull-quote:before, .pull-quote:after {
  height: 1em;
  opacity: 0.5;
  position: absolute;
  font-size: 4em;
  color: #dc976e;
}
.pull-quote:before {
  content: "“";
  top: 0;
  left: 0;
}
.pull-quote:after {
  content: "”";
  bottom: 0;
  right: 0;
}

/**
 * Figures Markup
 *
	<figure>
		<figcaption>
			<strong>Fig. 4.2 | </strong>Type Anatomy, an excerpt from Mark Boulton's book<cite title="http://designingfortheweb.co.uk/book/part3/part3_chapter11.php">"Designing for the Web"</cite>
		</figcaption>
	</figure>
 *
 * Extend this object into your markup.
 *
 */
/**
 * Footnote Markup : Replace 'X' with your unique number for each footnote
 *
	<article>
		<p><sup><a href="#fn-itemX" id="fn-returnX"></a></sup></p>
		<footer>
			<ol class="foot-notes">
				<li id="fn-itemX"><a href="#fn-returnX">↩</a></li>
			</ol>
		</footer>
	</article>
 *
 * Extend this object into your markup.
 *
 */
body {
  font-family: "Botera TFE", serif, system-ui;
  font-weight: 400;
  background-color: #fffdee;
}
@media only screen and (max-width: 767.98px) {
  body {
    padding-top: 0px !important;
  }
}

section > .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

footer .panel {
  margin-bottom: 0;
}
footer .panel .panel-footer {
  padding-top: 30px;
}
@media only screen and (max-width: 767.98px) {
  footer .panel .panel-body,
footer .panel .panel-footer {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) {
  .w-33 {
    width: 33% !important;
  }

  .w-66, .w-67 {
    width: 66% !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Botera TFE", serif, system-ui;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-family: "Botera TFE", serif, system-ui;
  font-weight: 400;
}

a {
  color: #000;
  text-decoration: none;
  transition: color, background-color 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  a {
    transition: none;
  }
}
a:hover {
  color: #000;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.row {
  margin-bottom: calc(3.125rem / 2);
}
.row > div.alignContentBottom .neos-contentcollection {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

#main {
  padding-top: 0;
}
#main.container.ptop {
  padding-top: 8rem;
}
#main .row:last-child {
  margin-bottom: 0;
}
#main .neos-contentcollection section:first-child {
  margin-top: 0;
}

.teaser + #main {
  padding-top: calc(3.125rem / 2);
}

.col.bglightblue > .neos-contentcollection {
  background-color: #b5d4d4;
}
.col.bgred > .neos-contentcollection {
  background-color: #c3505a;
}
.col.bgblack > .neos-contentcollection {
  background-color: #0d0d0d;
}
.col.bgpink > .neos-contentcollection {
  background-color: #f3d0cb;
}
.col.bglightyellow > .neos-contentcollection {
  background-color: #fffdee;
}

.main-header {
  background-color: #141414;
  overflow: hidden;
  height: 100%;
  padding-top: 85px;
  padding-bottom: 115px;
  margin-bottom: 115px;
}
.main-header,
.main-header h1 {
  color: #fff;
}
.main-header.image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 85px 0 0;
  background-position: 50% 50%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  margin-bottom: 0;
}
.main-header.image .container {
  margin-top: calc(33vh + 85px);
  text-align: center;
}
.main-header.image h1 {
  text-shadow: 1px 0 0 rgba(0, 0, 0, 0.5);
  letter-spacing: 0;
}
.main-header a {
  color: #fff;
  text-decoration: underline;
}
.main-header a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  .main-header h1 {
    font-size: 1.8rem;
  }
}

.main-header.image + .container {
  margin-top: 100vh;
}

.neos-alignment-right {
  float: right;
  margin-left: 2em;
  margin-bottom: 1em;
}

.neos-alignment-left {
  float: left;
  margin-right: 2em;
  margin-bottom: 1em;
}

section {
  margin-bottom: calc(3.125rem / 2);
}
section.gy-5 {
  margin-bottom: 3.125rem;
}
section.bgprimary {
  background-color: #000;
}
section.bgsecondary {
  background-color: #f3d0cb;
}
section.bglightgray {
  background-color: #eeede0;
}
section.bglightcyan {
  background-color: #e7fafc;
}
section.cchv {
  display: flex;
  align-items: center;
  justify-content: center;
}
section .container {
  padding-left: 0;
  padding-right: 0;
}
section.borderTop {
  margin-top: 3rem;
}
section.borderTop .container {
  border-top: 1px double #000000;
  position: relative;
  padding-top: 3rem;
}
section.borderTop .container:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  height: 1px;
  width: 100%;
  background-color: #000000;
}
section.borderBottom {
  margin-bottom: 3.125rem;
}
section.borderBottom.pb-2 {
  padding-bottom: 0 !important;
}
section.borderBottom.pb-2 .container {
  padding-bottom: calc(3.125rem / 2) !important;
}
section.borderBottom.pb-0 {
  padding-bottom: 0 !important;
}
section.borderBottom.pb-0 .container {
  padding-bottom: 0 !important;
}
section.borderBottom > .container {
  border-bottom: 1px double #000000;
  position: relative;
  padding-bottom: 3.125rem;
}
section.borderBottom > .container:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 100%;
  background-color: #000000;
}
@media (max-width: 991.98px) {
  section .container .neos-contentcollection > .row {
    --bs-gutter-y: 1.5rem;
  }
}
section .container .neos-contentcollection > .row > div .neos-contentcollection {
  height: 100%;
}

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

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gy-6 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

@media only screen and (max-width: 767.98px) {
  .page-archive #main, .page-archiveyear #main {
    padding-top: 7rem;
  }
}
@media (min-width: 768px) {
  .col-md-6.vBorderCol1 {
    position: relative;
    padding-right: 1.5rem;
  }
  .col-md-6.vBorderCol1:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 1px;
    width: 1px;
    border-right: 1px solid #000000;
  }
  .col-md-6.vBorderCol2 {
    position: relative;
    padding-left: 1.5rem;
  }
  .col-md-6.vBorderCol2:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 1px;
    border-left: 1px solid #000000;
  }

  .col-lg-4.vBorderCol1 {
    position: relative;
    padding: 0 0.75rem;
  }
  .col-lg-4.vBorderCol1:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 1px;
    width: 1px;
    border-right: 1px solid #000000;
  }
  .col-lg-4.vBorderCol2 {
    position: relative;
    padding: 0 0.75rem;
  }
  .col-lg-4.vBorderCol2:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 1px;
    border-left: 1px solid #000000;
  }
  .col-lg-4.vBorderCol2:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 1px;
    width: 1px;
    border-right: 1px solid #000000;
  }
  .col-lg-4.vBorderCol3 {
    position: relative;
    padding: 0 0.75rem;
  }
  .col-lg-4.vBorderCol3:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 1px;
    border-left: 1px solid #000000;
  }

  .col-lg-3.vBorderCol1 {
    position: relative;
    padding: 0 0.75rem;
  }
  .col-lg-3.vBorderCol1:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 1px;
    width: 1px;
    border-right: 1px solid #000000;
  }
  .col-lg-3.vBorderCol2 {
    position: relative;
    padding: 0 0.75rem;
  }
  .col-lg-3.vBorderCol2:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 1px;
    border-left: 1px solid #000000;
  }
  .col-lg-3.vBorderCol2:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 1px;
    width: 1px;
    border-right: 1px solid #000000;
  }
  .col-lg-3.vBorderCol3 {
    position: relative;
    padding: 0 0.75rem;
  }
  .col-lg-3.vBorderCol3:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 1px;
    border-left: 1px solid #000000;
  }
  .col-lg-3.vBorderCol3:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 1px;
    width: 1px;
    border-right: 1px solid #000000;
  }
  .col-lg-3.vBorderCol4 {
    position: relative;
    padding: 0 0.75rem;
  }
  .col-lg-3.vBorderCol4:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 1px;
    border-left: 1px solid #000000;
  }
}
.neos-contentcollection figure:last-child {
  margin-bottom: 0;
}

.mb-0, .nomargin {
  margin-bottom: 0 !important;
}
.mb-0 > h1, .mb-0 > h2, .mb-0 > h3, .mb-0 > h4, .mb-0 > h5, .mb-0 > h6, .mb-0 p, .mb-0 span, .mb-0 a, .nomargin > h1, .nomargin > h2, .nomargin > h3, .nomargin > h4, .nomargin > h5, .nomargin > h6, .nomargin p, .nomargin span, .nomargin a {
  margin-bottom: 0 !important;
}

.mb-1 h1, .mb-1 h2, .mb-1 h3, .mb-1 h4, .mb-1 h5, .mb-1 h6, .mb-1 p, .mb-1 span, .mb-1 a {
  margin-bottom: 0;
}

.mb-standard {
  margin-bottom: 1.5625rem !important;
}

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

@media (max-width: 767.98px) {
  #s3 .row div:first-child {
    margin-bottom: 1.5rem !important;
  }
}
.cc_overlay_lock {
  background: rgba(0, 0, 0, 0.33) !important;
}

.cc_dialog.interstitial {
  top: 10rem !important;
  max-width: 66.67% !important;
  background-color: #f7f6ec !important;
  letter-spacing: normal !important;
  font-family: "FoundersGroteskText", sans-serif, system-ui !important;
  left: 50% !important;
  right: unset !important;
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 767.98px) {
  .cc_dialog.interstitial {
    top: 1rem !important;
    max-width: 100% !important;
    left: 0 !important;
    transform: none !important;
  }
  .cc_dialog.interstitial button + button {
    margin-left: 0 !important;
  }
}
.cc_dialog.interstitial button.cc_b_ok {
  background-color: #f3d0cb !important;
}

.freeprivacypolicy-com---nb-interstitial {
  top: auto !important;
  bottom: 3vw !important;
  max-width: 66.67% !important;
  background-color: #f7f6ec !important;
  letter-spacing: normal !important;
  font-family: "FoundersGroteskText", sans-serif, system-ui !important;
  left: 50% !important;
  right: unset !important;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767.99px) {
  .freeprivacypolicy-com---nb-interstitial {
    max-width: 100% !important;
    left: 1rem !important;
    right: 1rem !important;
    transform: none !important;
  }
}
@media screen and (max-width: 991.99px) {
  .freeprivacypolicy-com---nb-interstitial {
    max-width: 100% !important;
    left: 2rem !important;
    right: 2rem !important;
    transform: none !important;
  }
}
.freeprivacypolicy-com---nb-interstitial-overlay {
  background: rgba(0, 0, 0, 0.66) !important;
}
.freeprivacypolicy-com---pc-dialog {
  letter-spacing: normal !important;
  font-family: "FoundersGroteskText", sans-serif, system-ui !important;
}
.freeprivacypolicy-com---palette-light .cc-cp-foot-save, .freeprivacypolicy-com---palette-light .cc-nb-okagree {
  background: #000000 !important;
  color: #fff !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-reject {
  background-color: #b5d4d4 !important;
  color: #000000 !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-changep {
  background-color: #f3d0cb !important;
  color: #000000 !important;
}

.carousel {
  margin-bottom: 1.5em;
}

.carousel-indicators {
  bottom: 0;
}
.carousel-indicators li {
  width: 16px;
  height: 16px;
  margin: 0;
  border-color: #ccc;
  background-color: #888;
  transition: box-shadow 0.1s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  width: 16px;
  height: 16px;
  background-color: #000;
}
@media only screen and (max-width: 767.98px) {
  .carousel-indicators {
    display: none;
  }
}

.carousel-control.right, .carousel-control.left {
  background: none;
}
.carousel-control-next {
  justify-content: right;
}
.carousel-control-next .carousel-control-next-icon {
  background-color: #000000;
}
.carousel-control-prev {
  justify-content: left;
}
.carousel-control-prev .carousel-control-prev-icon {
  background-color: #000000;
}
.neos-backend .carousel-control {
  display: none;
}

@media only screen and (max-width: 767.98px) {
  .carousel-caption {
    font-size: 15px;
    padding-bottom: 0;
  }
}

/* Button */
.btn {
  border-radius: 0;
  padding: 0.375rem 1.75rem;
  margin-bottom: 1rem;
  border: 1px solid #000000;
  letter-spacing: 1px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 767.98px) {
  .btn {
    padding-left: 1.375rem;
    padding-right: 1.375rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
@media only screen and (max-width: 991px) {
  .btn {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
.btn.btn-primary {
  background-color: #000;
  border-color: #000;
}
.btn.btn-primary:hover {
  border-color: #f3d0cb;
  background-color: #f3d0cb;
}
.btn.btn-secondary {
  border-color: #f3d0cb;
  background-color: #f3d0cb;
}
.btn.btn-secondary:hover {
  background-color: #000;
  border-color: #000;
}
.btn.btn-light:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NzYuMiAxNzkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3Ni4yIDE3OTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzAwMDAwMDt9DQo8L3N0eWxlPg0KPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSI0MDUuNiwxNy41IDM4NC40LDM4LjcgNDE4LjgsNzMuMSAwLDczLjEgMCwxMDMuMSA0MTguOCwxMDMuMSAzODQuNCwxMzcuNSA0MDUuNiwxNTguNyA0NzYuMiw4OC4xICIvPg0KPC9zdmc+DQo=");
}
.btn.btn-light:hover {
  border-color: #f3d0cb;
  background-color: #f3d0cb;
}
.btn.btn-light:hover:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NzYuMiAxNzkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3Ni4yIDE3OTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9DQo8L3N0eWxlPg0KPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSI0MDUuNiwxNy41IDM4NC40LDM4LjcgNDE4LjgsNzMuMSAwLDczLjEgMCwxMDMuMSA0MTguOCwxMDMuMSAzODQuNCwxMzcuNSA0MDUuNiwxNTguNyA0NzYuMiw4OC4xICIvPg0KPC9zdmc+DQo=");
}
.btn.btn-dark:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NzYuMiAxNzkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3Ni4yIDE3OTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9DQo8L3N0eWxlPg0KPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSI0MDUuNiwxNy41IDM4NC40LDM4LjcgNDE4LjgsNzMuMSAwLDczLjEgMCwxMDMuMSA0MTguOCwxMDMuMSAzODQuNCwxMzcuNSA0MDUuNiwxNTguNyA0NzYuMiw4OC4xICIvPg0KPC9zdmc+DQo=");
}
.btn.btn-dark:hover {
  border-color: #f3d0cb;
  background-color: #f3d0cb;
}
.btn.btn-dark:hover:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NzYuMiAxNzkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3Ni4yIDE3OTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzAwMDAwMDt9DQo8L3N0eWxlPg0KPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSI0MDUuNiwxNy41IDM4NC40LDM4LjcgNDE4LjgsNzMuMSAwLDczLjEgMCwxMDMuMSA0MTguOCwxMDMuMSAzODQuNCwxMzcuNSA0MDUuNiwxNTguNyA0NzYuMiw4OC4xICIvPg0KPC9zdmc+DQo=");
}
.btn.btn-outline-dark:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NzYuMiAxNzkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3Ni4yIDE3OTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzAwMDAwMDt9DQo8L3N0eWxlPg0KPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSI0MDUuNiwxNy41IDM4NC40LDM4LjcgNDE4LjgsNzMuMSAwLDczLjEgMCwxMDMuMSA0MTguOCwxMDMuMSAzODQuNCwxMzcuNSA0MDUuNiwxNTguNyA0NzYuMiw4OC4xICIvPg0KPC9zdmc+DQo=");
}
.btn.btn-outline-dark:hover:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NzYuMiAxNzkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3Ni4yIDE3OTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9DQo8L3N0eWxlPg0KPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSI0MDUuNiwxNy41IDM4NC40LDM4LjcgNDE4LjgsNzMuMSAwLDczLjEgMCwxMDMuMSA0MTguOCwxMDMuMSAzODQuNCwxMzcuNSA0MDUuNiwxNTguNyA0NzYuMiw4OC4xICIvPg0KPC9zdmc+DQo=");
}
.btn.btn-outline-light:hover:after {
  ackground-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NzYuMiAxNzkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3Ni4yIDE3OTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzAwMDAwMDt9DQo8L3N0eWxlPg0KPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSI0MDUuNiwxNy41IDM4NC40LDM4LjcgNDE4LjgsNzMuMSAwLDczLjEgMCwxMDMuMSA0MTguOCwxMDMuMSAzODQuNCwxMzcuNSA0MDUuNiwxNTguNyA0NzYuMiw4OC4xICIvPg0KPC9zdmc+DQo=");
}
.btn + .btn {
  margin-left: 1rem;
}
@media (max-width: 1399.98px) {
  .btn + .btn {
    margin-left: 0.75rem;
  }
}

.navbar {
  display: block;
  padding-top: 0;
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  padding-bottom: 0;
}
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 0;
  }
}
.navbar > .container {
  align-items: flex-end;
  padding-left: 0;
}
.navbar .navbar-header {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 2.25rem;
}
@media (max-width: 991.98px) {
  .navbar .navbar-header {
    margin-top: 0;
    display: none;
  }
}
.navbar .navbar-header.mobileLogo {
  display: none;
}
@media (max-width: 991.98px) {
  .navbar .navbar-header.mobileLogo {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1rem;
  }
}
@media (min-width: 992px) {
  .navbar.sticky-top {
    padding-top: 4.78rem;
  }
  .navbar.sticky-top .menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }
}
@media (max-width: 991.98px) {
  .navbar.navbar-dark .navbar-toggler {
    float: right;
    text-align: right;
    display: inline-block;
    vertical-align: middle;
  }
}
.navbar.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar.navbar-dark.show .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar.show {
  background-color: #000000;
}
.navbar.show ul li a {
  color: #fff;
  text-transform: none;
  font-size: 1.25rem;
}
@media (max-width: 991.98px) {
  .navbar.show #headLogo {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNi4yLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAzMzEuOSAzNy4yIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMzEuOSAzNy4yOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojRkZGRkZGO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjA5LjcsMzQuOGMwLDEuMSwwLjcsMi4zLDIuMSwyLjNjMS40LDAsMi4yLTEuMywyLjItMi4zVjIzLjRsMy4zLTQuOWw3LjcsMTcuMmMwLjUsMS4xLDEuMywxLjQsMiwxLjQNCgljMS43LDAsMi44LTEuOCwxLjgtMy44bC04LjUtMTguNUwyMjcsMy45YzAuMy0wLjQsMC40LTAuOSwwLjQtMS41YzAtMS4yLTAuNy0yLjQtMi4xLTIuNGMtMC43LDAtMS4zLDAuMy0xLjgsMS4ybC05LjcsMTUuMnYtMTQNCgljMC0xLjEtMC43LTIuMy0yLjItMi4zYy0xLjMsMC0yLjEsMS4zLTIuMSwyLjN2MzIuNEMyMDkuNSwzNC44LDIwOS43LDM0LjgsMjA5LjcsMzQuOHogTTE4MC41LDE0LjhjMC40LTEuNSwwLjktNCwxLjMtNi40aDAuMg0KCWMwLjQsMi40LDAuOSw0LjksMS4zLDYuNGwyLjMsOS41aC03LjRMMTgwLjUsMTQuOHogTTE3Ny4yLDI4LjVoOS40bDEuNyw2LjhjMC40LDEuNSwxLjMsMS45LDIuMSwxLjljMS40LDAsMi41LTEuMywyLTMuMkwxODQsMg0KCWMtMC4zLTEuMi0xLjItMi0yLjItMmMtMC45LDAtMS44LDAuOC0yLjEsMmwtOC4zLDMxLjljLTAuNSwyLDAuNSwzLjIsMiwzLjJjMC45LDAsMS44LTAuNCwyLjEtMS45TDE3Ny4yLDI4LjV6IE0xNDksNC44aDkuMQ0KCWMxLjMsMCwyLTEuMSwyLTIuMnMtMC43LTIuMS0yLTIuMUgxNDdjLTEuNCwwLTIuMiwxLjItMi4yLDIuM3YzMmMwLDEuMSwwLjcsMi4zLDIuMSwyLjNjMS40LDAsMi4yLTEuMywyLjItMi4zVjIwLjVoNw0KCWMxLjMsMCwyLTEsMi0yLjFzLTAuNy0yLjItMi0yLjJoLTdWNC44SDE0OXogTTc1LjMsMTQuNGMwLDMuNCwwLjIsNy4yLDAuNCwxMS4yaC0wLjJsLTktMjMuMkM2NS45LDAuNyw2NS4xLDAsNjQuMSwwDQoJQzYyLjcsMCw2MiwxLjIsNjIsMy4xdjMxLjdjMCwxLjEsMC43LDIuMywyLjEsMi4zYzEuNCwwLDIuMi0xLjMsMi4yLTIuM3YtMTJjMC0zLjQtMC4yLTcuMy0wLjQtMTEuM0g2Nmw5LDIzLjQNCgljMC42LDEuNiwxLjQsMi4yLDIuNSwyLjJjMS40LDAsMi4xLTEuMiwyLjEtMy4xVjIuM2MwLTEuMS0wLjctMi4zLTIuMS0yLjNzLTIuMiwxLjMtMi4yLDIuM1YxNC40eiBNNDIsMi4zYzAtMS0wLjctMi4zLTIuMS0yLjMNCgljLTEuMywwLTIuMSwxLjMtMi4xLDIuM3YzMi41YzAsMS4xLDAuNywyLjMsMi4xLDIuM2MxLjQsMCwyLjItMS4zLDIuMi0yLjNWMi4zSDQyeiIvPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTQuMiwxLjlDMy45LDAuNSwzLDAsMi4xLDBjLTEuNCwwLTIuNSwxLjMtMiwzLjJsNy44LDMxLjljMC40LDEuMiwxLjIsMiwyLjEsMmMxLDAsMS44LTAuOCwyLjItMmw4LTMxLjkNCgljMC41LTEuOS0wLjUtMy4yLTItMy4yYy0wLjksMC0xLjgsMC41LTIuMSwxLjljMCwwLTUuNSwyNC44LTUuOSwyNy4zSDEwQzkuNywyNi44LDQuMiwxLjksNC4yLDEuOSIvPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTI0NS4yLDAuNmMtMS4zLDAtMiwxLTIsMi4yYzAsMS4xLDAuNywyLjEsMiwyLjFoNS4ydjMwYzAsMS4xLDAuNywyLjMsMi4xLDIuM2MxLjQsMCwyLjItMS4zLDIuMi0yLjN2LTMwaDUuMg0KCWMxLjMsMCwyLTEuMSwyLTIuMnMtMC43LTIuMS0yLTIuMUMyNTkuOSwwLjYsMjQ1LjIsMC42LDI0NS4yLDAuNnoiLz4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yOTQuNywyLjNjMC0xLjEtMC42LTIuMy0yLjEtMi4zYy0xLjMsMC0yLDEuMy0yLDIuM3YyNS4zYzAsMy42LTIsNS4yLTQuNCw1LjJzLTQuNC0xLjYtNC40LTUuMlYyLjMNCgljMC0xLjEtMC42LTIuMy0yLTIuM2MtMS4zLDAtMiwxLjMtMiwyLjN2MjUuNmMwLDUuMiwzLjIsOS4yLDguNCw5LjJzOC40LTQsOC40LTkuMlYyLjNIMjk0Ljd6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzE4LjMsMTdWNC44aDIuN2MyLjcsMCw1LjMsMS45LDUuMyw2djAuM2MwLDQuMS0yLjYsNS45LTUuMyw1LjlIMzE4LjN6IE0zMjgsMzUuOGMwLjQsMSwxLjEsMS40LDEuOSwxLjQNCgljMS40LDAsMi40LTEuOCwxLjctMy40bC02LjEtMTMuN2MzLTEuNyw0LjgtNSw0LjgtOXYtMC40YzAtNS44LTMuOS0xMC4yLTkuMy0xMC4yaC00LjdjLTEuNCwwLTIuMSwxLjItMi4xLDIuM3YzMg0KCWMwLDEuMSwwLjcsMi4zLDIsMi4zYzEuNCwwLDIuMS0xLjMsMi4xLTIuM1YyMS4yaDMuM0wzMjgsMzUuOHoiLz4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMjYuOCwxOC42YzAsOC4xLTYuNiwxNC42LTE0LjYsMTQuNmMtOC4xLDAtMTQuNi02LjYtMTQuNi0xNC42UzEwNCw0LDExMi4xLDRTMTI2LjgsMTAuNSwxMjYuOCwxOC42DQoJIE0xMzAuOCwxOC42YzAtMTAuMy04LjMtMTguNi0xOC42LTE4LjZTOTMuNiw4LjMsOTMuNiwxOC42czguMywxOC42LDE4LjYsMTguNkMxMjIuNCwzNy4yLDEzMC44LDI4LjksMTMwLjgsMTguNiIvPg0KPC9zdmc+DQo=);
  }
  .navbar.show #headLogo:after {
    content: " ";
    height: 4px;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .navbar.show .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar.show .navbar-collapse {
    padding-top: 1.5rem;
  }
}
.navbar .contactinfo {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0;
}
@media (max-width: 991.98px) {
  .navbar .contactinfo {
    display: none;
  }
}
.navbar .contactinfo div, .navbar .contactinfo a {
  color: #fff;
  font-family: "FoundersGroteskText", sans-serif, system-ui;
}
.navbar .contactinfo .location {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}
.navbar .contactinfo .location:before {
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxNS41IDIxLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE1LjUgMjEuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik03LjgsMjEuNUw3LjQsMjFDNy4xLDIwLjYsMCwxMS45LDAsNy44QzAsMy41LDMuNSwwLDcuOCwwczcuOCwzLjUsNy44LDcuOGMwLDQuMi03LjEsMTIuOS03LjQsMTMuMkw3LjgsMjEuNXoKCQkgTTcuOCwxQzQsMSwxLDQsMSw3LjhDMSwxMS4xLDYuMywxOCw3LjgsMTkuOWMxLjUtMS45LDYuOC04LjgsNi44LTEyLjFDMTQuNSw0LDExLjUsMSw3LjgsMXoiLz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik03LjgsMTAuN2MtMS43LDAtMy0xLjQtMy0zYzAtMS43LDEuNC0zLDMtM3MzLDEuNCwzLDNDMTAuOCw5LjMsOS40LDEwLjcsNy44LDEwLjd6IE03LjgsNS42Yy0xLjEsMC0yLDAuOS0yLDIKCQlzMC45LDIsMiwyYzEuMSwwLDItMC45LDItMlM4LjksNS42LDcuOCw1LjZ6Ii8+CjwvZz4KPC9zdmc+Cg==");
  position: relative;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: sub;
  margin-right: 0.75rem;
}
.navbar .contactinfo .phone {
  display: inline-block;
  vertical-align: baseline;
}
.navbar .contactinfo .phone a {
  font-size: 0.875rem;
}
.navbar .contactinfo .phone:before {
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxOS4zIDE5LjMiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE5LjMgMTkuMzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xNy4xLDE5LjNDNy43LDE5LjMsMCwxMS42LDAsMi4yQzAsMS42LDAuNCwxLDEuMSwwLjlMNC44LDBjMC42LTAuMSwxLjMsMC4yLDEuNiwwLjhsMS43LDQKCQlDOC4zLDUuNCw4LjEsNiw3LjYsNi40TDUuOCw3LjljMS4yLDIuNCwzLjIsNC4zLDUuNiw1LjZsMS41LTEuOWMwLjQtMC41LDEtMC42LDEuNi0wLjRsNCwxLjdjMC42LDAuMywwLjksMC45LDAuOCwxLjZsLTAuOSwzLjcKCQlDMTguMiwxOC44LDE3LjcsMTkuMywxNy4xLDE5LjN6IE01LjEsMUM1LDEsNSwxLDUuMSwxTDEuMywxLjlDMS4xLDEuOSwxLDIsMSwyLjJjMCw4LjksNy4yLDE2LjEsMTYuMSwxNi4xYzAuMiwwLDAuMy0wLjEsMC4zLTAuMwoJCXYwbDAuOS0zLjdjMC0wLjItMC4xLTAuMy0wLjItMC40bC00LTEuN2MtMC4xLTAuMS0wLjMsMC0wLjQsMC4xbC0yLDIuNWwtMC40LTAuMkM4LjQsMTMuMiw2LjEsMTAuOSw0LjcsOEw0LjUsNy43bDIuNS0yCgkJYzAuMS0wLjEsMC4yLTAuMywwLjEtMC40bC0xLjctNEM1LjMsMS4xLDUuMiwxLDUuMSwxeiIvPgo8L2c+Cjwvc3ZnPgo=");
  position: relative;
  margin-right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: sub;
}
.navbar .userinfo {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0;
}
@media (max-width: 991.98px) {
  .navbar .userinfo {
    display: none;
  }
}
.navbar .userinfo div, .navbar .userinfo a {
  color: #fff;
}
.navbar .userinfo .shoplogin {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
}
.navbar .userinfo .shoplogin:before {
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxNi44IDE5LjgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2LjggMTkuODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xNi44LDE5LjhIMGwwLTUuMkMwLjUsMTIsNCwxMC4yLDguNCwxMC4yYzQuNSwwLDgsMS45LDguNCw0LjRoMGwwLDAuM2MwLDAsMCwwLjEsMCwwLjFoMEwxNi44LDE5Ljh6IE0xLDE4LjgKCQloMTQuOGwwLTMuN2MwLTIuMS0zLjQtMy45LTcuNC0zLjlTMSwxMi45LDEsMTVWMTguOHoiLz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik04LjQsOC4zYy0yLjMsMC00LjItMS45LTQuMi00LjJTNi4xLDAsOC40LDBzNC4yLDEuOSw0LjIsNC4yUzEwLjcsOC4zLDguNCw4LjN6IE04LjQsMUM2LjcsMSw1LjIsMi40LDUuMiw0LjIKCQlzMS40LDMuMiwzLjIsMy4yczMuMi0xLjQsMy4yLTMuMlMxMC4yLDEsOC40LDF6Ii8+CjwvZz4KPC9zdmc+Cg==");
  position: relative;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: sub;
  margin-right: 0.75rem;
}
.navbar .userinfo .shoplogin a {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.navbar .userinfo .searchicon {
  display: inline-block;
  vertical-align: baseline;
}
.navbar .userinfo .searchicon:before {
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyMC41IDE5LjgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDIwLjUgMTkuODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjAuNSwxOS4xbC02LjMtNi4zYzEtMS4zLDEuNy0zLDEuNy00LjhjMC00LjQtMy42LTcuOS03LjktNy45UzAsMy42LDAsNy45YzAsNC40LDMuNiw3LjksNy45LDcuOQoJYzIuMiwwLDQuMi0wLjksNS42LTIuM2w2LjIsNi4yTDIwLjUsMTkuMXogTTcuOSwxNC45QzQuMSwxNC45LDEsMTEuOCwxLDcuOVM0LjEsMSw3LjksMXM2LjksMy4xLDYuOSw2LjlTMTEuOCwxNC45LDcuOSwxNC45eiIvPgo8L3N2Zz4K");
  position: relative;
  margin-right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: sub;
}
.navbar .main-menu {
  padding-bottom: 0.78125rem;
}
.navbar .meta-menu {
  display: block;
  background-color: #b5d4d4;
  width: 100%;
}
@media (max-width: 991.98px) {
  .navbar .meta-menu {
    padding: 0.75rem 0;
  }
}
.navbar .meta-menu .container {
  text-align: center;
}
.navbar .meta-menu ul {
  padding: 1px 0;
  min-height: 25px;
  margin-bottom: 0;
}
.navbar .meta-menu ul li {
  list-style: none;
  font-size: 0.9375rem;
  display: inline-block;
  margin-right: 1rem;
}
@media (max-width: 991.98px) {
  .navbar .meta-menu ul li {
    display: block;
    text-align: left;
  }
}
.navbar .meta-menu ul li a {
  letter-spacing: 2px;
  color: #000000;
}
.navbar .meta-menu ul li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 992px) {
  .navbar.navbar-expand-lg .navbar-collapse {
    position: relative;
    background-color: #000000;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 0 0 0;
    flex-direction: column;
  }
  .navbar.navbar-expand-lg .navbar-collapse ul {
    justify-content: center;
  }
  .navbar.navbar-expand-lg .navbar-collapse ul li a {
    color: #fff;
    font-family: "FoundersGroteskMono", sans-serif, system-ui;
    text-transform: none;
    letter-spacing: 2px;
    font-weight: 100;
  }
  .navbar.navbar-expand-lg .navbar-collapse ul li:after {
    content: "·";
    padding: 0 0.5rem;
    color: #fff;
  }
  .navbar.navbar-expand-lg .navbar-collapse ul li:last-child {
    margin-right: 0 !important;
  }
  .navbar.navbar-expand-lg .navbar-collapse ul li:last-child:after {
    content: "";
  }
  .navbar.navbar-expand-lg .navbar-collapse ul li:hover a {
    font-weight: normal;
  }
  .navbar.navbar-expand-lg .navbar-collapse .meta-menu ul {
    margin-bottom: 0;
  }
  .navbar.navbar-expand-lg .navbar-collapse .meta-menu ul li {
    margin-right: 1.75rem;
  }
  .navbar.navbar-expand-lg .navbar-collapse .meta-menu ul li a {
    color: #000000;
    font-size: 0.9375rem;
  }
  .navbar.navbar-expand-lg .navbar-collapse .meta-menu ul li:after {
    display: none;
    color: #000000;
  }
  .navbar.navbar-expand-lg .navbar-collapse .meta-menu ul li:last-child {
    margin-right: 0;
  }
}
.navbar ul li {
  line-height: 1.5;
}
.navbar ul li a {
  font-weight: normal;
  font-size: 1.125rem;
  border-bottom: 2px solid transparent;
}
@media only screen and (max-width: 1399.98px) {
  .navbar ul li a {
    font-size: 0.9375rem;
  }
}
.navbar ul.level1 > li.active a, .navbar ul.level1 > li.current a {
  color: #fff;
  border-bottom-color: #fff;
  margin-bottom: 10px;
  font-weight: normal;
}
.navbar ul.level1 > li.active ul li a, .navbar ul.level1 > li.current ul li a {
  color: #000;
  border-bottom: 2px solid transparent;
}
.navbar ul.level1 > li.active ul.level2 > li.active a, .navbar ul.level1 > li.active ul.level2 > li.current a, .navbar ul.level1 > li.current ul.level2 > li.active a, .navbar ul.level1 > li.current ul.level2 > li.current a {
  color: #f3d0cb;
}
.navbar ul.level1 > li.active ul.level2 > li.active ul li a, .navbar ul.level1 > li.active ul.level2 > li.current ul li a, .navbar ul.level1 > li.current ul.level2 > li.active ul li a, .navbar ul.level1 > li.current ul.level2 > li.current ul li a {
  color: #000;
}
.navbar ul.level1 > li.active ul.level2 > li.active ul.level3 > li.active a, .navbar ul.level1 > li.active ul.level2 > li.active ul.level3 > li.current a, .navbar ul.level1 > li.active ul.level2 > li.current ul.level3 > li.active a, .navbar ul.level1 > li.active ul.level2 > li.current ul.level3 > li.current a, .navbar ul.level1 > li.current ul.level2 > li.active ul.level3 > li.active a, .navbar ul.level1 > li.current ul.level2 > li.active ul.level3 > li.current a, .navbar ul.level1 > li.current ul.level2 > li.current ul.level3 > li.active a, .navbar ul.level1 > li.current ul.level2 > li.current ul.level3 > li.current a {
  color: #f3d0cb;
}
.navbar ul.level2, .navbar ul.level3 {
  display: none;
  padding: 0.21429rem 1.07143rem;
}
.navbar ul.level2 a, .navbar ul.level3 a {
  font-size: 0.875rem;
}
.navbar ul.level2.current a, .navbar ul.level2.active a, .navbar ul.level3.current a, .navbar ul.level3.active a {
  color: #f3d0cb;
}
.navbar ul.level2 {
  top: 12px;
}
.navbar ul.level3 {
  margin-top: -5px !important;
  margin-left: 1.07143rem;
}

.subpages-menu {
  padding-top: 1rem;
  list-style: none;
  padding-left: 0;
}

header.g-py-15 {
  padding-bottom: 0 !important;
}
header .container {
  position: relative;
}
header.ptop {
  padding-top: 6rem;
}
header #headLogo {
  position: relative;
  vertical-align: middle;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAzMzEuOSA3MC44IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMzEuOSA3MC44OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPHBhdGggZD0iTTI3My40LDY3LjFoLTIuOXYtOC44aC0zLjh2MWgyLjZ2Ny44aC0yLjl2MWg3VjY3LjF6IE0yNTQuNiw2NS4zYzAsMC41LTAuMiwwLjktMC43LDEuM2MtMC40LDAuNC0xLDAuNi0xLjYsMC42CgkJYy0wLjcsMC0xLjItMC40LTEuMi0xLjFjMC0wLjcsMC41LTEsMS43LTEuM2wxLjgtMC40VjY1LjN6IE0yNTEuMyw2My40YzAuMi0wLjcsMS0xLjMsMi0xLjNjMC45LDAsMS4zLDAuNCwxLjMsMXYwLjZsLTIuMSwwLjUKCQljLTEuNywwLjQtMi42LDAuOS0yLjYsMi4xYzAsMS4yLDAuOSwxLjksMi4xLDEuOWMxLjIsMCwyLjItMC42LDIuNi0xLjVjMC4xLDAuOCwwLjgsMS41LDEuNywxLjVjMC40LDAsMC44LTAuMSwxLjEtMC40bC0wLjEtMQoJCWMtMC4yLDAuMi0wLjUsMC4zLTAuOCwwLjNjLTAuNCwwLTAuNy0wLjMtMC43LTAuOHYtMy4zYzAtMS4zLTAuOS0yLTIuNS0yYy0xLjUsMC0yLjcsMC44LTMuMiwxLjlMMjUxLjMsNjMuNHogTTIzNC44LDY4LjcKCQljMC0wLjYsMC43LTEsMS41LTFoMi4zYzEsMCwxLjUsMC4zLDEuNSwwLjljMCwwLjktMS4yLDEuMy0yLjgsMS4zQzIzNS44LDcwLDIzNC44LDY5LjYsMjM0LjgsNjguNyBNMjQxLjMsNjguNQoJCWMwLTEuMS0wLjktMS44LTIuNS0xLjhoLTIuOGMtMC42LDAtMC45LTAuMi0wLjktMC42YzAtMC4zLDAuMi0wLjUsMC41LTAuN2MwLjQsMC4yLDAuOSwwLjMsMS41LDAuM2MxLjcsMCwyLjktMC45LDIuOS0yLjMKCQljMC0wLjQtMC4xLTAuOC0wLjMtMS4xYzAuNC0wLjQsMS4zLTAuNywxLjktMC42bC0wLjEtMS4xYy0wLjktMC4xLTEuOCwwLjQtMi4yLDEuMWMtMC42LTAuNC0xLjMtMC42LTIuMS0wLjYKCQljLTEuNywwLTIuOSwwLjktMi45LDIuM2MwLDAuNywwLjMsMS4zLDAuOCwxLjdjLTAuNywwLjMtMSwwLjctMSwxLjNjMCwwLjYsMC40LDEsMSwxLjJjLTAuOSwwLjEtMS42LDAuNy0xLjYsMS40CgkJYzAsMC42LDAuNCwxLjEsMS4xLDEuNGMwLjcsMC4zLDEuNiwwLjUsMi43LDAuNWMxLjQsMCwyLjYtMC4zLDMuNC0xQzI0MS4xLDY5LjUsMjQxLjMsNjksMjQxLjMsNjguNSBNMjM4LjgsNjMuNAoJCWMwLDAuOS0wLjcsMS41LTEuNiwxLjVjLTAuOSwwLTEuNi0wLjYtMS42LTEuNWMwLTAuOSwwLjctMS40LDEuNi0xLjRDMjM4LjEsNjEuOSwyMzguOCw2Mi41LDIzOC44LDYzLjQgTTIxOS4zLDY0CgkJYzAuMi0xLjEsMS0xLjksMi4yLTEuOWMxLjIsMCwyLDAuOCwyLDEuOUgyMTkuM3ogTTIyMy43LDY1LjhjLTAuNCwxLTEuMSwxLjUtMi4xLDEuNWMtMC43LDAtMS4yLTAuMi0xLjYtMC43CgkJYy0wLjQtMC40LTAuNy0xLTAuNy0xLjdoNS41di0wLjRjMC0wLjktMC4zLTEuNy0wLjgtMi40Yy0wLjYtMC42LTEuNC0xLTIuNC0xYy0xLDAtMS44LDAuMy0yLjUsMWMtMC43LDAuNy0xLDEuNi0xLDIuNgoJCWMwLDEsMC4zLDEuOSwxLDIuNWMwLjcsMC42LDEuNSwxLDIuNSwxYzEuNiwwLDIuNi0wLjYsMy4yLTEuOUwyMjMuNyw2NS44eiBNMjA2LjEsNjIuMmMxLjEsMCwxLjYsMC42LDEuNiwxLjVjMCwwLjMsMCwwLjUtMC4xLDAuNgoJCWwxLjItMC4zYzAtMC4xLDAuMS0wLjMsMC4xLTAuNmMwLTAuNi0wLjItMS4yLTAuNi0xLjdjLTAuNC0wLjUtMS0wLjctMS43LTAuN2MtMS40LDAtMi40LDAuOS0yLjcsMi4xdi0xLjloLTEuM1Y2OGgxLjN2LTIuOQoJCWMwLTAuOCwwLjItMS41LDAuNy0yLjFDMjA0LjksNjIuNSwyMDUuNCw2Mi4yLDIwNi4xLDYyLjIgTTE4Ni4zLDY2LjdjMC42LDAuOSwyLDEuNSwzLjUsMS41YzAuOSwwLDEuNi0wLjIsMi4yLTAuNgoJCWMwLjYtMC40LDAuOC0wLjksMC44LTEuNWMwLTEtMC42LTEuNi0xLjktMS44bC0xLjktMC40Yy0wLjgtMC4yLTEuMS0wLjQtMS4xLTAuOWMwLTAuNSwwLjctMC45LDEuNS0wLjljMSwwLDEuOCwwLjQsMi4yLDEuMQoJCWwwLjktMC43Yy0wLjYtMC45LTEuNi0xLjQtMy0xLjRjLTAuOCwwLTEuNSwwLjItMiwwLjZjLTAuNSwwLjQtMC44LDAuOC0wLjgsMS40YzAsMSwwLjcsMS42LDIsMS45bDEuNywwLjQKCQljMC44LDAuMiwxLjEsMC40LDEuMSwwLjljMCwwLjYtMC42LDEtMS44LDFjLTEuMSwwLTIuMi0wLjUtMi43LTEuNEwxODYuMyw2Ni43eiBNMTcwLjQsNjYuN2MwLjYsMC45LDIsMS41LDMuNSwxLjUKCQljMC45LDAsMS42LTAuMiwyLjEtMC42YzAuNi0wLjQsMC44LTAuOSwwLjgtMS41YzAtMS0wLjYtMS42LTEuOS0xLjhsLTEuOS0wLjRjLTAuOC0wLjItMS4xLTAuNC0xLjEtMC45YzAtMC41LDAuNy0wLjksMS41LTAuOQoJCWMxLDAsMS44LDAuNCwyLjIsMS4xbDAuOS0wLjdjLTAuNi0wLjktMS42LTEuNC0zLTEuNGMtMC44LDAtMS41LDAuMi0yLDAuNmMtMC41LDAuNC0wLjgsMC44LTAuOCwxLjRjMCwxLDAuNywxLjYsMiwxLjlsMS43LDAuNAoJCWMwLjgsMC4yLDEuMSwwLjQsMS4xLDAuOWMwLDAuNi0wLjYsMS0xLjgsMWMtMS4xLDAtMi4yLTAuNS0yLjctMS40TDE3MC40LDY2Ljd6IE0xNTkuNyw2NC45YzAsMS4zLTAuOSwyLjItMiwyLjIKCQljLTEuMSwwLTEuNy0wLjctMS43LTEuOXYtNGgtMS4zdjQuMmMwLDEuNywwLjgsMi43LDIuNSwyLjdjMS4yLDAsMi4xLTAuNywyLjQtMS42VjY4aDEuM3YtNi44aC0xLjNWNjQuOXogTTE0MC4xLDY0LjQKCQljMC0xLjMsMC44LTIuMiwyLTIuMmMxLjEsMCwxLjcsMC43LDEuNywxLjh2NGgxLjN2LTQuMmMwLTEuNy0wLjgtMi44LTIuNi0yLjhjLTEuMiwwLTIuMSwwLjctMi40LDEuNnYtMS40aC0xLjNWNjhoMS4zVjY0LjR6CgkJIE0xMjMuOCw2NGMwLjItMS4xLDEtMS45LDIuMi0xLjljMS4yLDAsMiwwLjgsMiwxLjlIMTIzLjh6IE0xMjguMiw2NS44Yy0wLjQsMS0xLjEsMS41LTIuMiwxLjVjLTAuNywwLTEuMi0wLjItMS42LTAuNwoJCWMtMC40LTAuNC0wLjctMS0wLjctMS43aDUuNXYtMC40YzAtMC45LTAuMy0xLjctMC44LTIuNGMtMC42LTAuNi0xLjQtMS0yLjQtMWMtMSwwLTEuOCwwLjMtMi41LDFjLTAuNywwLjctMSwxLjYtMSwyLjYKCQljMCwxLDAuMywxLjksMSwyLjVjMC43LDAuNiwxLjUsMSwyLjUsMWMxLjYsMCwyLjYtMC42LDMuMi0xLjlMMTI4LjIsNjUuOHogTTEwOS44LDY4LjJjMS4zLDAsMi4zLTAuNywyLjYtMS45bDAuMiwxLjhoMC45di00LjgKCQloLTMuOHYxaDIuNmMtMC4xLDEuNy0xLDIuOC0yLjQsMi44Yy0wLjgsMC0xLjQtMC40LTEuOS0xLjFjLTAuNS0wLjctMC43LTEuNy0wLjctMi44YzAtMS4yLDAuMi0yLjEsMC44LTIuOAoJCWMwLjUtMC43LDEuMi0xLjEsMS45LTEuMWMxLjIsMCwyLDAuOCwyLjMsMi4xbDEuMi0wLjhjLTAuNi0xLjYtMS43LTIuNS0zLjQtMi41Yy0xLjIsMC0yLjIsMC41LTMsMS40Yy0wLjgsMC45LTEuMiwyLjItMS4yLDMuNgoJCWMwLDEuNSwwLjQsMi43LDEuMSwzLjZDMTA3LjgsNjcuOCwxMDguNyw2OC4yLDEwOS44LDY4LjJMMTA5LjgsNjguMnogTTc1LjksNjQuM2MwLTEuMywwLjQtMi4xLDEuMS0yLjFjMC42LDAsMC45LDAuNSwwLjksMS40VjY4CgkJaDEuMnYtMy44YzAtMS4zLDAuNC0yLjEsMS4xLTIuMWMwLjYsMCwwLjksMC41LDAuOSwxLjRWNjhoMS4ydi01YzAtMS4yLTAuNi0xLjktMS41LTEuOWMtMC45LDAtMS41LDAuNy0xLjgsMS41CgkJYy0wLjEtMC45LTAuNy0xLjUtMS41LTEuNWMtMC45LDAtMS41LDAuNy0xLjcsMS42di0xLjRoLTEuMlY2OGgxLjJWNjQuM3ogTTY2LDY3aC0yLjl2LTUuOGgtMy44djFoMi42VjY3SDU5djFoN1Y2N3ogTTYzLjMsNTgKCQloLTEuN3YxLjdoMS43VjU4eiIvPgoJPHBhdGggZD0iTTIwOS43LDM0LjhjMCwxLjEsMC43LDIuMywyLjEsMi4zYzEuNCwwLDIuMi0xLjMsMi4yLTIuM1YyMy40bDMuMy00LjlsNy43LDE3LjJjMC41LDEuMSwxLjMsMS40LDIsMS40CgkJYzEuNywwLDIuOC0xLjgsMS44LTMuOGwtOC41LTE4LjVMMjI3LDMuOWMwLjMtMC40LDAuNC0wLjksMC40LTEuNWMwLTEuMi0wLjctMi40LTIuMS0yLjRjLTAuNywwLTEuMywwLjMtMS44LDEuMmwtOS43LDE1LjJ2LTE0CgkJYzAtMS4xLTAuNy0yLjMtMi4yLTIuM2MtMS4zLDAtMi4xLDEuMy0yLjEsMi4zVjM0Ljh6IE0xODAuNSwxNC44YzAuNC0xLjUsMC45LTQsMS4zLTYuNGgwLjJjMC40LDIuNCwwLjksNC45LDEuMyw2LjRsMi4zLDkuNWgtNy40CgkJTDE4MC41LDE0Ljh6IE0xNzcuMiwyOC41aDkuNGwxLjcsNi44YzAuNCwxLjUsMS4zLDEuOSwyLjEsMS45YzEuNCwwLDIuNS0xLjMsMi0zLjJMMTg0LDJjLTAuMy0xLjItMS4yLTItMi4yLTIKCQljLTAuOSwwLTEuOCwwLjgtMi4xLDJsLTguMywzMS45Yy0wLjUsMiwwLjUsMy4yLDIsMy4yYzAuOSwwLDEuOC0wLjQsMi4xLTEuOUwxNzcuMiwyOC41eiBNMTQ5LDQuOGg5LjFjMS4zLDAsMi0xLjEsMi0yLjIKCQljMC0xLjEtMC43LTIuMS0yLTIuMWgtMTEuMWMtMS40LDAtMi4yLDEuMi0yLjIsMi4zdjMyYzAsMS4xLDAuNywyLjMsMi4xLDIuM2MxLjQsMCwyLjItMS4zLDIuMi0yLjNWMjAuNWg3YzEuMywwLDItMSwyLTIuMQoJCWMwLTEuMS0wLjctMi4yLTItMi4yaC03VjQuOHogTTc1LjMsMTQuNGMwLDMuNCwwLjIsNy4yLDAuNCwxMS4yaC0wLjJsLTktMjMuMkM2NS45LDAuNyw2NS4xLDAsNjQuMSwwQzYyLjcsMCw2MiwxLjIsNjIsMy4xdjMxLjcKCQljMCwxLjEsMC43LDIuMywyLjEsMi4zYzEuNCwwLDIuMi0xLjMsMi4yLTIuM3YtMTJjMC0zLjQtMC4yLTcuMy0wLjQtMTEuM0g2Nmw5LDIzLjRjMC42LDEuNiwxLjQsMi4yLDIuNSwyLjIKCQljMS40LDAsMi4xLTEuMiwyLjEtMy4xVjIuM2MwLTEuMS0wLjctMi4zLTIuMS0yLjNjLTEuNCwwLTIuMiwxLjMtMi4yLDIuM1YxNC40eiBNNDIsMi4zQzQyLDEuMyw0MS4zLDAsMzkuOSwwCgkJYy0xLjMsMC0yLjEsMS4zLTIuMSwyLjN2MzIuNWMwLDEuMSwwLjcsMi4zLDIuMSwyLjNjMS40LDAsMi4yLTEuMywyLjItMi4zVjIuM3oiLz4KCTxwYXRoIGQ9Ik00LjIsMS45QzMuOSwwLjUsMywwLDIuMSwwYy0xLjQsMC0yLjUsMS4zLTIsMy4ybDcuOCwzMS45YzAuNCwxLjIsMS4yLDIsMi4xLDJjMSwwLDEuOC0wLjgsMi4yLTJsOC0zMS45CgkJYzAuNS0xLjktMC41LTMuMi0yLTMuMmMtMC45LDAtMS44LDAuNS0yLjEsMS45YzAsMC01LjUsMjQuOC01LjksMjcuM0gxMEM5LjcsMjYuOCw0LjIsMS45LDQuMiwxLjkiLz4KCTxwYXRoIGQ9Ik0yNDUuMiwwLjZjLTEuMywwLTIsMS0yLDIuMmMwLDEuMSwwLjcsMi4xLDIsMi4xaDUuMnYzMGMwLDEuMSwwLjcsMi4zLDIuMSwyLjNjMS40LDAsMi4yLTEuMywyLjItMi4zdi0zMGg1LjIKCQljMS4zLDAsMi0xLjEsMi0yLjJjMC0xLjEtMC43LTIuMS0yLTIuMUgyNDUuMnoiLz4KCTxwYXRoIGQ9Ik0yOTQuNywyLjNjMC0xLjEtMC42LTIuMy0yLjEtMi4zYy0xLjMsMC0yLDEuMy0yLDIuM3YyNS4zYzAsMy42LTIsNS4yLTQuNCw1LjJjLTIuNCwwLTQuNC0xLjYtNC40LTUuMlYyLjMKCQljMC0xLjEtMC42LTIuMy0yLTIuM2MtMS4zLDAtMiwxLjMtMiwyLjN2MjUuNmMwLDUuMiwzLjIsOS4yLDguNCw5LjJzOC40LTQsOC40LTkuMlYyLjN6Ii8+Cgk8cGF0aCBkPSJNMzE4LjMsMTdWNC44aDIuN2MyLjcsMCw1LjMsMS45LDUuMyw2djAuM2MwLDQuMS0yLjYsNS45LTUuMyw1LjlIMzE4LjN6IE0zMjgsMzUuOGMwLjQsMSwxLjEsMS40LDEuOSwxLjQKCQljMS40LDAsMi40LTEuOCwxLjctMy40bC02LjEtMTMuN2MzLTEuNyw0LjgtNSw0LjgtOXYtMC40YzAtNS44LTMuOS0xMC4yLTkuMy0xMC4yaC00LjdjLTEuNCwwLTIuMSwxLjItMi4xLDIuM3YzMgoJCWMwLDEuMSwwLjcsMi4zLDIsMi4zYzEuNCwwLDIuMS0xLjMsMi4xLTIuM1YyMS4yaDMuM0wzMjgsMzUuOHoiLz4KCTxwYXRoIGQ9Ik0xMjYuOCwxOC42YzAsOC4xLTYuNiwxNC42LTE0LjYsMTQuNmMtOC4xLDAtMTQuNi02LjYtMTQuNi0xNC42UzEwNCw0LDExMi4xLDRDMTIwLjIsNCwxMjYuOCwxMC41LDEyNi44LDE4LjYgTTEzMC44LDE4LjYKCQljMC0xMC4zLTguMy0xOC42LTE4LjYtMTguNmMtMTAuMywwLTE4LjYsOC4zLTE4LjYsMTguNnM4LjMsMTguNiwxOC42LDE4LjZDMTIyLjQsMzcuMiwxMzAuOCwyOC45LDEzMC44LDE4LjYiLz4KPC9nPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 75px;
  display: block;
}
@media (max-width: 991.98px) {
  header #headLogo {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNi4yLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAzMzEuOSAzNy4yIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMzEuOSAzNy4yOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cGF0aCBkPSJNMjA5LjcsMzQuOGMwLDEuMSwwLjcsMi4zLDIuMSwyLjNjMS40LDAsMi4yLTEuMywyLjItMi4zVjIzLjRsMy4zLTQuOWw3LjcsMTcuMmMwLjUsMS4xLDEuMywxLjQsMiwxLjQNCgljMS43LDAsMi44LTEuOCwxLjgtMy44bC04LjUtMTguNUwyMjcsMy45YzAuMy0wLjQsMC40LTAuOSwwLjQtMS41YzAtMS4yLTAuNy0yLjQtMi4xLTIuNGMtMC43LDAtMS4zLDAuMy0xLjgsMS4ybC05LjcsMTUuMnYtMTQNCgljMC0xLjEtMC43LTIuMy0yLjItMi4zYy0xLjMsMC0yLjEsMS4zLTIuMSwyLjN2MzIuNEgyMDkuN3ogTTE4MC41LDE0LjhjMC40LTEuNSwwLjktNCwxLjMtNi40aDAuMmMwLjQsMi40LDAuOSw0LjksMS4zLDYuNGwyLjMsOS41DQoJaC03LjRMMTgwLjUsMTQuOHogTTE3Ny4yLDI4LjVoOS40bDEuNyw2LjhjMC40LDEuNSwxLjMsMS45LDIuMSwxLjljMS40LDAsMi41LTEuMywyLTMuMkwxODQsMmMtMC4zLTEuMi0xLjItMi0yLjItMg0KCWMtMC45LDAtMS44LDAuOC0yLjEsMmwtOC4zLDMxLjljLTAuNSwyLDAuNSwzLjIsMiwzLjJjMC45LDAsMS44LTAuNCwyLjEtMS45TDE3Ny4yLDI4LjV6IE0xNDksNC44aDkuMWMxLjMsMCwyLTEuMSwyLTIuMg0KCXMtMC43LTIuMS0yLTIuMUgxNDdjLTEuNCwwLTIuMiwxLjItMi4yLDIuM3YzMmMwLDEuMSwwLjcsMi4zLDIuMSwyLjNjMS40LDAsMi4yLTEuMywyLjItMi4zVjIwLjVoN2MxLjMsMCwyLTEsMi0yLjFzLTAuNy0yLjItMi0yLjINCgloLTdWNC44SDE0OXogTTc1LjMsMTQuNGMwLDMuNCwwLjIsNy4yLDAuNCwxMS4yaC0wLjJsLTktMjMuMkM2NS45LDAuNyw2NS4xLDAsNjQuMSwwQzYyLjcsMCw2MiwxLjIsNjIsMy4xdjMxLjcNCgljMCwxLjEsMC43LDIuMywyLjEsMi4zYzEuNCwwLDIuMi0xLjMsMi4yLTIuM3YtMTJjMC0zLjQtMC4yLTcuMy0wLjQtMTEuM0g2Nmw5LDIzLjRjMC42LDEuNiwxLjQsMi4yLDIuNSwyLjJjMS40LDAsMi4xLTEuMiwyLjEtMy4xDQoJVjIuM2MwLTEuMS0wLjctMi4zLTIuMS0yLjNzLTIuMiwxLjMtMi4yLDIuM1YxNC40eiBNNDIsMi4zYzAtMS0wLjctMi4zLTIuMS0yLjNjLTEuMywwLTIuMSwxLjMtMi4xLDIuM3YzMi41YzAsMS4xLDAuNywyLjMsMi4xLDIuMw0KCWMxLjQsMCwyLjItMS4zLDIuMi0yLjNWMi4zSDQyeiIvPg0KPHBhdGggZD0iTTQuMiwxLjlDMy45LDAuNSwzLDAsMi4xLDBjLTEuNCwwLTIuNSwxLjMtMiwzLjJsNy44LDMxLjljMC40LDEuMiwxLjIsMiwyLjEsMmMxLDAsMS44LTAuOCwyLjItMmw4LTMxLjkNCgljMC41LTEuOS0wLjUtMy4yLTItMy4yYy0wLjksMC0xLjgsMC41LTIuMSwxLjljMCwwLTUuNSwyNC44LTUuOSwyNy4zSDEwQzkuNywyNi44LDQuMiwxLjksNC4yLDEuOSIvPg0KPHBhdGggZD0iTTI0NS4yLDAuNmMtMS4zLDAtMiwxLTIsMi4yYzAsMS4xLDAuNywyLjEsMiwyLjFoNS4ydjMwYzAsMS4xLDAuNywyLjMsMi4xLDIuM2MxLjQsMCwyLjItMS4zLDIuMi0yLjN2LTMwaDUuMg0KCWMxLjMsMCwyLTEuMSwyLTIuMnMtMC43LTIuMS0yLTIuMUMyNTkuOSwwLjYsMjQ1LjIsMC42LDI0NS4yLDAuNnoiLz4NCjxwYXRoIGQ9Ik0yOTQuNywyLjNjMC0xLjEtMC42LTIuMy0yLjEtMi4zYy0xLjMsMC0yLDEuMy0yLDIuM3YyNS4zYzAsMy42LTIsNS4yLTQuNCw1LjJzLTQuNC0xLjYtNC40LTUuMlYyLjNjMC0xLjEtMC42LTIuMy0yLTIuMw0KCWMtMS4zLDAtMiwxLjMtMiwyLjN2MjUuNmMwLDUuMiwzLjIsOS4yLDguNCw5LjJzOC40LTQsOC40LTkuMlYyLjNIMjk0Ljd6Ii8+DQo8cGF0aCBkPSJNMzE4LjMsMTdWNC44aDIuN2MyLjcsMCw1LjMsMS45LDUuMyw2djAuM2MwLDQuMS0yLjYsNS45LTUuMyw1LjlIMzE4LjN6IE0zMjgsMzUuOGMwLjQsMSwxLjEsMS40LDEuOSwxLjQNCgljMS40LDAsMi40LTEuOCwxLjctMy40bC02LjEtMTMuN2MzLTEuNyw0LjgtNSw0LjgtOXYtMC40YzAtNS44LTMuOS0xMC4yLTkuMy0xMC4yaC00LjdjLTEuNCwwLTIuMSwxLjItMi4xLDIuM3YzMg0KCWMwLDEuMSwwLjcsMi4zLDIsMi4zYzEuNCwwLDIuMS0xLjMsMi4xLTIuM1YyMS4yaDMuM0wzMjgsMzUuOHoiLz4NCjxwYXRoIGQ9Ik0xMjYuOCwxOC42YzAsOC4xLTYuNiwxNC42LTE0LjYsMTQuNmMtOC4xLDAtMTQuNi02LjYtMTQuNi0xNC42UzEwNCw0LDExMi4xLDRTMTI2LjgsMTAuNSwxMjYuOCwxOC42IE0xMzAuOCwxOC42DQoJYzAtMTAuMy04LjMtMTguNi0xOC42LTE4LjZTOTMuNiw4LjMsOTMuNiwxOC42czguMywxOC42LDE4LjYsMTguNkMxMjIuNCwzNy4yLDEzMC44LDI4LjksMTMwLjgsMTguNiIvPg0KPC9zdmc+DQo=);
  }
}
@media only screen and (max-width: 1399.98px) {
  header #headLogo {
    width: 303px;
    height: 75px;
  }
}
@media only screen and (max-width: 1399.98px) and (max-width: 991.98px) {
  header #headLogo {
    height: 40px;
  }
}
header .topBorder {
  line-height: 1;
  position: absolute;
  z-index: 10000;
  width: calc(100% - 165px);
  margin-left: 165px;
  top: 1.75rem;
}
header .topBorder.white {
  border-bottom: 2px solid #fff;
}
header .topBorder.dark {
  border-bottom: 2px solid #000000;
}
header .topBorder.show {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  header .topBorder {
    display: none;
  }
}
header .language-menu {
  line-height: 1;
  position: absolute;
  z-index: 10000;
  width: auto;
  right: 0;
  top: 0;
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: inline-block;
  text-align: right;
  margin-top: -0.5rem;
}
header .language-menu .currentLang {
  display: none;
}
header .language-menu div {
  margin-right: 1.5rem;
  padding-right: var(--bs-gutter-x, 0.75rem);
}
header .language-menu div .language-menu-full {
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 767.98px) {
  header .language-menu div {
    display: none;
  }
}
header .language-menu.dark div .language-menu-full {
  color: #000000;
}
header .language-menu ul {
  display: flex;
  right: 1.5rem;
  top: 0;
  width: auto;
  background-color: transparent;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}
header .language-menu ul li {
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
}
header .language-menu ul li span {
  white-space: nowrap;
  font-family: "FoundersGroteskText", sans-serif, system-ui;
}
header .language-menu #languages-dropdown {
  width: 100%;
  background-color: #eeeeee !important;
  margin-top: 0.75rem !important;
  position: relative !important;
  padding: 0.5rem 0;
  display: none;
}
header .language-menu:hover #languages-dropdown {
  display: flex;
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  header .language-menu {
    display: none;
  }
  header .language-menu.show {
    display: block;
    position: absolute;
    top: 1.5rem;
  }
  header .language-menu.show ul {
    background: transparent;
    border: none;
    box-shadow: none;
    top: -1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: baseline;
  }
  header .language-menu.show ul:before, header .language-menu.show ul:after {
    display: none;
  }
  header .language-menu.show ul li {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  header .language-menu.show ul li a {
    color: #fff;
    font-family: "FoundersGroteskText", sans-serif, system-ui;
    font-size: 1rem;
  }
}

.withTeaser header {
  padding-top: 0;
}
.withTeaser header .whiteBorder {
  border-color: #f3d0cb;
}

#teaser {
  min-height: 730px;
  background-color: transparent;
  width: 100%;
  position: relative;
}
@media (max-width: 1399.98px) {
  #teaser {
    min-height: 630px;
  }
}
@media (max-width: 1199.98px) {
  #teaser {
    min-height: 531px;
  }
}
@media (max-width: 991.98px) {
  #teaser {
    min-height: 398px;
  }
}
@media (max-width: 767.98px) {
  #teaser {
    min-height: 299px;
  }
}
#teaser.teaser.withbgimage .neos-contentcollection {
  min-height: 730px;
}
@media only screen and (max-width: 767.98px) {
  #teaser.teaser.withbgimage .neos-contentcollection {
    min-height: 300px;
  }
}
@media only screen and (max-width: 539.98px) {
  #teaser.teaser.withbgimage .neos-contentcollection {
    min-height: 300px;
  }
}
#teaser.teaser.withbgimage.bgimagehpos-left {
  background-position-x: left;
}
#teaser.teaser.withbgimage.bgimagehpos-right {
  background-position-x: right;
}
#teaser.teaser.withbgimage.bgimagehpos-center {
  background-position-x: center;
}
#teaser.teaser.withbgimage.bgimagevpos-top {
  background-position-y: top;
}
#teaser.teaser.withbgimage.bgimagevpos-bottom {
  background-position-y: bottom;
}
#teaser.teaser.withbgimage.bgimagevpos-center {
  background-position-y: center;
}
#teaser.teaser.cchv .neos-contentcollection {
  min-height: 730px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 767.98px) {
  #teaser.teaser.cchv .neos-contentcollection {
    min-height: 300px;
  }
}
@media only screen and (max-width: 539.98px) {
  #teaser.teaser.cchv .neos-contentcollection {
    min-height: 300px;
  }
}
#teaser.teaser.withbgoverlay > .neos-contentcollection {
  z-index: 1000;
}
#teaser.withbgimage {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#teaser .bgoverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.slick-slider {
  margin-bottom: 1.5625rem;
}
.slick-slider.slick-dotted {
  margin-bottom: calc(3.125rem + 0.75rem) !important;
}
.slick-slider.slick-dotted.mb-0 {
  margin-bottom: 0 !important;
}
@media (max-width: 767.98px) {
  .slick-slider.slick-dotted.mb-0 {
    margin-bottom: 1.5rem !important;
  }
}
.slick-slider.full-width .slick-slide, .slick-slider.medium-height .slick-slide, .slick-slider.small-height .slick-slide {
  min-height: 730px;
  position: relative;
}
@media (max-width: 1399.98px) {
  .slick-slider.full-width .slick-slide, .slick-slider.medium-height .slick-slide, .slick-slider.small-height .slick-slide {
    min-height: 630px;
  }
}
@media (max-width: 1199.98px) {
  .slick-slider.full-width .slick-slide, .slick-slider.medium-height .slick-slide, .slick-slider.small-height .slick-slide {
    min-height: 531px;
  }
}
@media (max-width: 991.98px) {
  .slick-slider.full-width .slick-slide, .slick-slider.medium-height .slick-slide, .slick-slider.small-height .slick-slide {
    min-height: 398px;
  }
}
@media (max-width: 767.98px) {
  .slick-slider.full-width .slick-slide, .slick-slider.medium-height .slick-slide, .slick-slider.small-height .slick-slide {
    min-height: 299px;
  }
}
.slick-slider.full-width .slick-slide .slide__inner.sts2, .slick-slider.medium-height .slick-slide .slide__inner.sts2, .slick-slider.small-height .slick-slide .slide__inner.sts2 {
  height: 100%;
  width: 648px !important;
}
@media (max-width: 1399.98px) {
  .slick-slider.full-width .slick-slide .slide__inner.sts2, .slick-slider.medium-height .slick-slide .slide__inner.sts2, .slick-slider.small-height .slick-slide .slide__inner.sts2 {
    width: 558px !important;
  }
}
@media (max-width: 1199.98px) {
  .slick-slider.full-width .slick-slide .slide__inner.sts2, .slick-slider.medium-height .slick-slide .slide__inner.sts2, .slick-slider.small-height .slick-slide .slide__inner.sts2 {
    width: 468px !important;
  }
}
@media (max-width: 991.98px) {
  .slick-slider.full-width .slick-slide .slide__inner.sts2, .slick-slider.medium-height .slick-slide .slide__inner.sts2, .slick-slider.small-height .slick-slide .slide__inner.sts2 {
    width: 348px !important;
  }
}
@media (max-width: 767.98px) {
  .slick-slider.full-width .slick-slide .slide__inner.sts2, .slick-slider.medium-height .slick-slide .slide__inner.sts2, .slick-slider.small-height .slick-slide .slide__inner.sts2 {
    width: 100% !important;
  }
}
.slick-slider.full-width .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.sts2 .slide__inner__content {
  padding-top: 0;
  padding-bottom: 0;
  width: 648px !important;
}
@media (max-width: 1399.98px) {
  .slick-slider.full-width .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.sts2 .slide__inner__content {
    width: 558px !important;
  }
}
@media (max-width: 1199.98px) {
  .slick-slider.full-width .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.sts2 .slide__inner__content {
    width: 468px !important;
  }
}
@media (max-width: 991.98px) {
  .slick-slider.full-width .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.sts2 .slide__inner__content {
    width: 348px !important;
  }
}
@media (max-width: 767.98px) {
  .slick-slider.full-width .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.sts2 .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.sts2 .slide__inner__content {
    width: 100% !important;
  }
}
.slick-slider.full-width .slick-slide .slide__inner.sts2 .slide__inner__content .textelement, .slick-slider.medium-height .slick-slide .slide__inner.sts2 .slide__inner__content .textelement, .slick-slider.small-height .slick-slide .slide__inner.sts2 .slide__inner__content .textelement {
  padding: 1.5rem;
}
.slick-slider.full-width .slick-slide .slide__inner.sts2 .slide__inner__content .image, .slick-slider.medium-height .slick-slide .slide__inner.sts2 .slide__inner__content .image, .slick-slider.small-height .slick-slide .slide__inner.sts2 .slide__inner__content .image {
  height: 100%;
}
.slick-slider.full-width .slick-slide .slide__inner.sts2 .slide__inner__content .image figure, .slick-slider.medium-height .slick-slide .slide__inner.sts2 .slide__inner__content .image figure, .slick-slider.small-height .slick-slide .slide__inner.sts2 .slide__inner__content .image figure {
  height: 100%;
}
.slick-slider.full-width .slick-slide .slide__inner.sts2 .slide__inner__content .image figure img, .slick-slider.medium-height .slick-slide .slide__inner.sts2 .slide__inner__content .image figure img, .slick-slider.small-height .slick-slide .slide__inner.sts2 .slide__inner__content .image figure img {
  height: 100%;
  object-fit: cover;
}
.slick-slider.full-width .slick-slide .slide__inner.bglightblue > .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.bglightblue > .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.bglightblue > .slide__inner__content {
  background-color: #b5d4d4;
}
.slick-slider.full-width .slick-slide .slide__inner.bgred > .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.bgred > .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.bgred > .slide__inner__content {
  background-color: #c3505a;
}
.slick-slider.full-width .slick-slide .slide__inner.bgblack > .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.bgblack > .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.bgblack > .slide__inner__content {
  background-color: #0d0d0d;
}
.slick-slider.full-width .slick-slide .slide__inner.bgpink > .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.bgpink > .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.bgpink > .slide__inner__content {
  background-color: #f3d0cb;
}
.slick-slider.full-width .slick-slide .slide__inner.bglightyellow > .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.bglightyellow > .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.bglightyellow > .slide__inner__content {
  background-color: #fffdee;
}
.slick-slider.full-width .slick-slide .slide__inner__content.slide__inner__content__withBackground, .slick-slider.medium-height .slick-slide .slide__inner__content.slide__inner__content__withBackground, .slick-slider.small-height .slick-slide .slide__inner__content.slide__inner__content__withBackground {
  background-color: transparent;
}
.slick-slider.full-width .slick-slide .slide__inner__content h1, .slick-slider.full-width .slick-slide .slide__inner__content h2, .slick-slider.full-width .slick-slide .slide__inner__content h3, .slick-slider.full-width .slick-slide .slide__inner__content h4, .slick-slider.full-width .slick-slide .slide__inner__content h5, .slick-slider.full-width .slick-slide .slide__inner__content h6, .slick-slider.medium-height .slick-slide .slide__inner__content h1, .slick-slider.medium-height .slick-slide .slide__inner__content h2, .slick-slider.medium-height .slick-slide .slide__inner__content h3, .slick-slider.medium-height .slick-slide .slide__inner__content h4, .slick-slider.medium-height .slick-slide .slide__inner__content h5, .slick-slider.medium-height .slick-slide .slide__inner__content h6, .slick-slider.small-height .slick-slide .slide__inner__content h1, .slick-slider.small-height .slick-slide .slide__inner__content h2, .slick-slider.small-height .slick-slide .slide__inner__content h3, .slick-slider.small-height .slick-slide .slide__inner__content h4, .slick-slider.small-height .slick-slide .slide__inner__content h5, .slick-slider.small-height .slick-slide .slide__inner__content h6 {
  line-height: 1.2;
  color: #000000;
}
.slick-slider.full-width .slick-slide .slide__inner__content span, .slick-slider.full-width .slick-slide .slide__inner__content p, .slick-slider.full-width .slick-slide .slide__inner__content em, .slick-slider.full-width .slick-slide .slide__inner__content strong, .slick-slider.full-width .slick-slide .slide__inner__content sub, .slick-slider.full-width .slick-slide .slide__inner__content sup, .slick-slider.full-width .slick-slide .slide__inner__content li, .slick-slider.full-width .slick-slide .slide__inner__content a, .slick-slider.medium-height .slick-slide .slide__inner__content span, .slick-slider.medium-height .slick-slide .slide__inner__content p, .slick-slider.medium-height .slick-slide .slide__inner__content em, .slick-slider.medium-height .slick-slide .slide__inner__content strong, .slick-slider.medium-height .slick-slide .slide__inner__content sub, .slick-slider.medium-height .slick-slide .slide__inner__content sup, .slick-slider.medium-height .slick-slide .slide__inner__content li, .slick-slider.medium-height .slick-slide .slide__inner__content a, .slick-slider.small-height .slick-slide .slide__inner__content span, .slick-slider.small-height .slick-slide .slide__inner__content p, .slick-slider.small-height .slick-slide .slide__inner__content em, .slick-slider.small-height .slick-slide .slide__inner__content strong, .slick-slider.small-height .slick-slide .slide__inner__content sub, .slick-slider.small-height .slick-slide .slide__inner__content sup, .slick-slider.small-height .slick-slide .slide__inner__content li, .slick-slider.small-height .slick-slide .slide__inner__content a {
  color: #000000;
}
.slick-slider.full-width .slick-slide .slide__inner__content .headlineelement h1, .slick-slider.full-width .slick-slide .slide__inner__content .headlineelement h2, .slick-slider.full-width .slick-slide .slide__inner__content .headlineelement h3, .slick-slider.full-width .slick-slide .slide__inner__content .headlineelement h4, .slick-slider.full-width .slick-slide .slide__inner__content .headlineelement h5, .slick-slider.full-width .slick-slide .slide__inner__content .headlineelement h6, .slick-slider.medium-height .slick-slide .slide__inner__content .headlineelement h1, .slick-slider.medium-height .slick-slide .slide__inner__content .headlineelement h2, .slick-slider.medium-height .slick-slide .slide__inner__content .headlineelement h3, .slick-slider.medium-height .slick-slide .slide__inner__content .headlineelement h4, .slick-slider.medium-height .slick-slide .slide__inner__content .headlineelement h5, .slick-slider.medium-height .slick-slide .slide__inner__content .headlineelement h6, .slick-slider.small-height .slick-slide .slide__inner__content .headlineelement h1, .slick-slider.small-height .slick-slide .slide__inner__content .headlineelement h2, .slick-slider.small-height .slick-slide .slide__inner__content .headlineelement h3, .slick-slider.small-height .slick-slide .slide__inner__content .headlineelement h4, .slick-slider.small-height .slick-slide .slide__inner__content .headlineelement h5, .slick-slider.small-height .slick-slide .slide__inner__content .headlineelement h6 {
  line-height: 1;
}
.slick-slider.full-width .slick-slide .slide__inner__content .headlineelement + .btn, .slick-slider.medium-height .slick-slide .slide__inner__content .headlineelement + .btn, .slick-slider.small-height .slick-slide .slide__inner__content .headlineelement + .btn {
  margin-top: 1.5625rem;
}
.slick-slider.full-width .slick-slide .slide__inner__content .card.alignhorizontally .card-image, .slick-slider.medium-height .slick-slide .slide__inner__content .card.alignhorizontally .card-image, .slick-slider.small-height .slick-slide .slide__inner__content .card.alignhorizontally .card-image {
  padding-right: 1.5rem;
}
@media (max-width: 767.98px) {
  .slick-slider.full-width .slick-slide .slide__inner__content .card.alignhorizontally .card-image, .slick-slider.medium-height .slick-slide .slide__inner__content .card.alignhorizontally .card-image, .slick-slider.small-height .slick-slide .slide__inner__content .card.alignhorizontally .card-image {
    padding-right: 0;
  }
}
.slick-slider.full-width .slick-slide .slide__inner__content .card figure, .slick-slider.medium-height .slick-slide .slide__inner__content .card figure, .slick-slider.small-height .slick-slide .slide__inner__content .card figure {
  max-width: none;
}
@media (max-width: 767.98px) {
  .slick-slider.full-width .slick-slide .slide__inner__content .card.withBgImage figure, .slick-slider.medium-height .slick-slide .slide__inner__content .card.withBgImage figure, .slick-slider.small-height .slick-slide .slide__inner__content .card.withBgImage figure {
    text-align: center;
  }
  .slick-slider.full-width .slick-slide .slide__inner__content .card.withBgImage img, .slick-slider.medium-height .slick-slide .slide__inner__content .card.withBgImage img, .slick-slider.small-height .slick-slide .slide__inner__content .card.withBgImage img {
    max-width: 100%;
  }
}
.slick-slider.full-width .slick-slide .slide__inner__backgroudImage, .slick-slider.medium-height .slick-slide .slide__inner__backgroudImage, .slick-slider.small-height .slick-slide .slide__inner__backgroudImage {
  background-position: center;
}
.slick-slider.full-width .slick-slide .slide__inner.bgnone, .slick-slider.medium-height .slick-slide .slide__inner.bgnone, .slick-slider.small-height .slick-slide .slide__inner.bgnone {
  height: 100%;
}
.slick-slider.full-width .slick-slide .slide__inner.bgnone.sts1 .slide__inner__content, .slick-slider.medium-height .slick-slide .slide__inner.bgnone.sts1 .slide__inner__content, .slick-slider.small-height .slick-slide .slide__inner.bgnone.sts1 .slide__inner__content {
  padding: 0;
}
.slick-slider.full-width .slick-slide .slide__inner.bgnone.sts1 .slide__inner__content .card .card-body, .slick-slider.medium-height .slick-slide .slide__inner.bgnone.sts1 .slide__inner__content .card .card-body, .slick-slider.small-height .slick-slide .slide__inner.bgnone.sts1 .slide__inner__content .card .card-body {
  padding-top: 0;
}
.slick-slider.full-width .slick-slide .slide__inner.sts2.bgnone .slide__inner__content .textelement, .slick-slider.medium-height .slick-slide .slide__inner.sts2.bgnone .slide__inner__content .textelement, .slick-slider.small-height .slick-slide .slide__inner.sts2.bgnone .slide__inner__content .textelement {
  padding: 0;
}
@media (max-width: 767.98px) {
  .slick-slider.full-width .slick-slide .slide__inner.sts2.bgnone .slide__inner__content .textelement, .slick-slider.medium-height .slick-slide .slide__inner.sts2.bgnone .slide__inner__content .textelement, .slick-slider.small-height .slick-slide .slide__inner.sts2.bgnone .slide__inner__content .textelement {
    padding: 0 0.75rem;
  }
}
.slick-slider.full-width .slick-slide:nth-child(even) .slide__inner.sts2, .slick-slider.medium-height .slick-slide:nth-child(even) .slide__inner.sts2, .slick-slider.small-height .slick-slide:nth-child(even) .slide__inner.sts2 {
  padding-left: 0.75rem;
}
@media (max-width: 767.98px) {
  .slick-slider.full-width .slick-slide:nth-child(even) .slide__inner.sts2, .slick-slider.medium-height .slick-slide:nth-child(even) .slide__inner.sts2, .slick-slider.small-height .slick-slide:nth-child(even) .slide__inner.sts2 {
    padding-left: 0;
  }
}
.slick-slider.full-width .slick-slide:nth-child(even) .slide__inner.sts2 .slide__inner__content, .slick-slider.medium-height .slick-slide:nth-child(even) .slide__inner.sts2 .slide__inner__content, .slick-slider.small-height .slick-slide:nth-child(even) .slide__inner.sts2 .slide__inner__content {
  padding: 0;
}
.slick-slider.full-width .slick-slide:nth-child(even) .slide__inner.sts2 .slide__inner__content .textelement, .slick-slider.medium-height .slick-slide:nth-child(even) .slide__inner.sts2 .slide__inner__content .textelement, .slick-slider.small-height .slick-slide:nth-child(even) .slide__inner.sts2 .slide__inner__content .textelement {
  margin-right: 0.75rem;
}
@media (max-width: 767.98px) {
  .slick-slider.full-width .slick-slide:nth-child(even) .slide__inner.sts2 .slide__inner__content .textelement, .slick-slider.medium-height .slick-slide:nth-child(even) .slide__inner.sts2 .slide__inner__content .textelement, .slick-slider.small-height .slick-slide:nth-child(even) .slide__inner.sts2 .slide__inner__content .textelement {
    margin-right: 0;
  }
}
.slick-slider.full-width .slick-slide:nth-child(odd) .slide__inner.sts2 .slide__inner__content, .slick-slider.medium-height .slick-slide:nth-child(odd) .slide__inner.sts2 .slide__inner__content, .slick-slider.small-height .slick-slide:nth-child(odd) .slide__inner.sts2 .slide__inner__content {
  padding: 0;
}
.slick-slider.full-width.navigation-right .slick-slide, .slick-slider.medium-height.navigation-right .slick-slide, .slick-slider.small-height.navigation-right .slick-slide {
  min-height: 730px;
}
@media (max-width: 1399.98px) {
  .slick-slider.full-width.navigation-right .slick-slide, .slick-slider.medium-height.navigation-right .slick-slide, .slick-slider.small-height.navigation-right .slick-slide {
    min-height: 630px;
  }
}
@media (max-width: 1199.98px) {
  .slick-slider.full-width.navigation-right .slick-slide, .slick-slider.medium-height.navigation-right .slick-slide, .slick-slider.small-height.navigation-right .slick-slide {
    min-height: 531px;
  }
}
@media (max-width: 991.98px) {
  .slick-slider.full-width.navigation-right .slick-slide, .slick-slider.medium-height.navigation-right .slick-slide, .slick-slider.small-height.navigation-right .slick-slide {
    min-height: 398px;
  }
}
@media (max-width: 767.98px) {
  .slick-slider.full-width.navigation-right .slick-slide, .slick-slider.medium-height.navigation-right .slick-slide, .slick-slider.small-height.navigation-right .slick-slide {
    min-height: unset;
  }
}
@media (max-width: 767.98px) {
  .slick-slider.full-width.navigation-right .slick-slide .slide__inner.bgnone.sts1 .slide__inner__content .card .card-text, .slick-slider.medium-height.navigation-right .slick-slide .slide__inner.bgnone.sts1 .slide__inner__content .card .card-text, .slick-slider.small-height.navigation-right .slick-slide .slide__inner.bgnone.sts1 .slide__inner__content .card .card-text {
    margin-bottom: 1rem;
  }
}
.slick-slider.full-width .slick-slide .slide__inner__content figure {
  max-width: 100%;
}
.slick-slider.medium-height {
  height: 100%;
}
.slick-slider.medium-height .slick-track, .slick-slider.medium-height .slick-list {
  height: 100%;
}
.slick-slider.medium-height .slick-slide {
  min-height: 600px;
}
@media (max-width: 1399.98px) {
  .slick-slider.medium-height .slick-slide {
    min-height: 536px;
  }
}
@media (max-width: 1199.98px) {
  .slick-slider.medium-height .slick-slide {
    min-height: 452px;
  }
}
@media (max-width: 991.98px) {
  .slick-slider.medium-height .slick-slide {
    min-height: 339px;
  }
}
@media (max-width: 767.98px) {
  .slick-slider.medium-height .slick-slide {
    min-height: 254px;
  }
}
.slick-slider.medium-height.navigation-right .slick-slide {
  min-height: 600px;
}
@media (max-width: 1399.98px) {
  .slick-slider.medium-height.navigation-right .slick-slide {
    min-height: 536px;
  }
}
@media (max-width: 1199.98px) {
  .slick-slider.medium-height.navigation-right .slick-slide {
    min-height: 452px;
  }
}
@media (max-width: 991.98px) {
  .slick-slider.medium-height.navigation-right .slick-slide {
    min-height: 339px;
  }
}
@media (max-width: 767.98px) {
  .slick-slider.medium-height.navigation-right .slick-slide {
    min-height: 254px;
  }
}
.slick-slider.small-height {
  height: 100%;
}
.slick-slider.small-height .slick-track, .slick-slider.small-height .slick-list {
  height: 100%;
}
.slick-slider.small-height .slick-slide {
  min-height: 424px !important;
}
.slick-slider.small-height .slick-slide .card .card-body {
  padding: 1rem !important;
}
.slick-slider.small-height .slick-slide .card .bg-image {
  left: 20%;
  right: 20%;
}
.slick-slider .slick-dots {
  top: auto;
  bottom: -1.5rem;
  left: 0;
  text-align: left;
  height: 0.5rem;
  width: auto;
  display: flex;
}
.slick-slider .slick-dots li {
  margin: 0 2px;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.375rem;
}
.slick-slider .slick-dots li button {
  background: transparent;
  border: 1px solid #000000;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  padding: 4px;
}
.slick-slider .slick-dots li button:before {
  content: " ";
}
.slick-slider .slick-dots li.slick-active button {
  background: #000000;
}
.slick-slider .slick-arrow.slick-next {
  width: 46px;
  height: 18px;
}
.slick-slider .slick-arrow.slick-next:before {
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA0NS41IDE1LjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjUgMTUuMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiMxRDFEMUI7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMS43LDQuMWMtMy45LTEuMi03LjEtMi42LTkuNi00LjFjMC42LDEuMywxLjMsMi42LDIsMy43YzAuNywxLjIsMS41LDEuNywyLjMsMi44TDAsNi4xdjIuOGwyNi40LTAuNAoJCWMtMC44LDEuMS0xLjYsMS42LTIuMywyLjhjLTAuNywxLjItMS40LDIuNC0yLDMuN2MyLjYtMS41LDUuOC0yLjksOS42LTQuMWMzLjktMS4yLDguNS0yLjQsMTMuOC0zLjRDNDAuMiw2LjUsMzUuNiw1LjQsMzEuNyw0LjEiCgkJLz4KPC9nPgo8L3N2Zz4K");
  opacity: 1;
}
.slick-slider .slick-arrow.slick-prev {
  width: 46px;
  height: 18px;
}
.slick-slider .slick-arrow.slick-prev:before {
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA0NS41IDE1LjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjUgMTUuMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiMxRDFEMUI7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMy44LDEwLjljMy45LDEuMiw3LjEsMi42LDkuNiw0LjFjLTAuNi0xLjMtMS4zLTIuNi0yLTMuN2MtMC43LTEuMi0xLjUtMS43LTIuMy0yLjhsMjYuNCwwLjRsMC0yLjhMMTkuMSw2LjUKCQljMC44LTEuMSwxLjYtMS42LDIuMy0yLjhjMC43LTEuMiwxLjQtMi40LDItMy43Yy0yLjYsMS41LTUuOCwyLjktOS42LDQuMUMxMCw1LjQsNS40LDYuNSwwLDcuNUM1LjQsOC42LDEwLDkuNywxMy44LDEwLjkiLz4KPC9nPgo8L3N2Zz4K");
  opacity: 1;
}
.slick-slider.navigation-right .slick-dots {
  left: unset;
  right: calc(0px + 0.75rem + 46px);
  bottom: 0.375rem;
}
.slick-slider.navigation-right .slick-arrow.slick-next, .slick-slider.navigation-right .slick-arrow.slick-prev {
  top: calc(100% - 0.625rem);
}
.slick-slider.navigation-right .slick-arrow.slick-next {
  right: 0;
  left: unset;
}
.slick-slider.navigation-right .slick-arrow.slick-prev {
  left: unset;
  right: calc(0px + 0.75rem + 46px);
}
.slick-slider.product-tiles {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-bottom: -0.75rem;
}
@media (max-width: 575.98px) {
  .slick-slider.product-tiles {
    margin-left: 0;
    margin-right: 0;
  }
}
.slick-slider.product-tiles .slick-slide {
  min-height: 424px;
}
@media (max-width: 991.98px) {
  .slick-slider.product-tiles .slick-slide {
    min-height: 470px;
  }
}
.slick-slider.product-tiles .slick-slide .slide__inner__content {
  width: 336px;
  background-color: transparent;
  padding: 0.75em;
  color: #000000;
}
@media (max-width: 1399.98px) {
  .slick-slider.product-tiles .slick-slide .slide__inner__content {
    width: 291px !important;
  }
}
@media (max-width: 1199.98px) {
  .slick-slider.product-tiles .slick-slide .slide__inner__content {
    width: 246px !important;
  }
}
@media (max-width: 991.98px) {
  .slick-slider.product-tiles .slick-slide .slide__inner__content {
    width: 248px !important;
  }
}
@media (max-width: 767.98px) {
  .slick-slider.product-tiles .slick-slide .slide__inner__content {
    width: 282px !important;
  }
}
@media (max-width: 575.98px) {
  .slick-slider.product-tiles .slick-slide .slide__inner__content {
    width: 100% !important;
  }
}
.slick-slider.product-tiles .slick-slide .slide__inner__content h5, .slick-slider.product-tiles .slick-slide .slide__inner__content p, .slick-slider.product-tiles .slick-slide .slide__inner__content span, .slick-slider.product-tiles .slick-slide .slide__inner__content div {
  color: #000000;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .slick-slider.product-tiles .slick-slide .slide__inner__content h5 {
    font-size: 3vw;
  }
}
.slick-slider.product-tiles .slick-slide .slide__inner__content .newFlag {
  color: #fff;
}
.slick-slider.product-tiles .slick-slide .slide__inner__content .product-tile {
  background-color: #fff;
  padding: 0;
}
.slick-slider.product-tiles .slick-slide .slide__inner__content .product-tile .inner {
  background-color: #fff;
  padding: 1rem;
}
.slick-slider.product-tiles .slick-slide .slide__inner__content .product-tile .inner figure {
  display: flex;
  justify-content: center;
}
.slick-slider.product-tiles .slick-slide .slide__inner__content .product-tile .badge.discountBadge span {
  color: #fff;
  font-family: "Botera TFE", serif, system-ui;
  font-size: 1.75rem;
}
.slick-slider.product-tiles .slick-prev, .slick-slider.product-tiles .slick-next {
  width: 35px;
  height: 12px;
}
.slick-slider.product-tiles .slick-prev {
  left: -3rem;
  transform: rotate(180deg);
}
@media (max-width: 575.98px) {
  .slick-slider.product-tiles .slick-prev {
    display: none !important;
  }
}
.slick-slider.product-tiles .slick-prev:before {
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMy41IDcuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTMuNSA3LjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojMDAwMDAwO30KPC9zdHlsZT4KPGc+Cgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNOC42LDIuMUM3LjMsMS41LDYuMiwwLjgsNS4zLDBDNS41LDAuNyw1LjcsMS4zLDYsMS45YzAuMywwLjYsMC41LDAuOSwwLjgsMS40TDAsMy4xdjEuNGw2LjgtMC4yCgkJQzYuNSw0LjgsNi4yLDUuMSw2LDUuN0M1LjcsNi4zLDUuNSw2LjksNS4zLDcuNWMwLjktMC44LDItMS41LDMuNC0yLjFjMS40LTAuNiwzLTEuMiw0LjgtMS43QzExLjYsMy4zLDEwLDIuNyw4LjYsMi4xIi8+CjwvZz4KPC9zdmc+Cg==");
}
.slick-slider.product-tiles .slick-next {
  right: -3rem;
}
@media (max-width: 575.98px) {
  .slick-slider.product-tiles .slick-next {
    display: none !important;
  }
}
.slick-slider.product-tiles .slick-next:before {
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMy41IDcuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTMuNSA3LjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojMDAwMDAwO30KPC9zdHlsZT4KPGc+Cgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNOC42LDIuMUM3LjMsMS41LDYuMiwwLjgsNS4zLDBDNS41LDAuNyw1LjcsMS4zLDYsMS45YzAuMywwLjYsMC41LDAuOSwwLjgsMS40TDAsMy4xdjEuNGw2LjgtMC4yCgkJQzYuNSw0LjgsNi4yLDUuMSw2LDUuN0M1LjcsNi4zLDUuNSw2LjksNS4zLDcuNWMwLjktMC44LDItMS41LDMuNC0yLjFjMS40LTAuNiwzLTEuMiw0LjgtMS43QzExLjYsMy4zLDEwLDIuNyw4LjYsMi4xIi8+CjwvZz4KPC9zdmc+Cg==");
}

.breadcrumb {
  padding-left: 0;
  color: #5b5b5b;
  background-color: transparent;
}
.breadcrumb li {
  display: inline;
}

.chapter-menu ul {
  padding-left: 0;
}
.chapter-menu li {
  margin-bottom: 10px;
  list-style-type: none;
}
.chapter-menu li::after {
  display: block;
  clear: both;
  content: "";
}
.chapter-menu li img {
  margin: 0 15px 10px 0;
}

.chapter {
  padding-top: 20px;
  background-color: #fafafa;
}

.chapter-container {
  max-width: 640px;
  font-size: 1.3em;
  text-align: justify;
}
.chapter-container p:first-of-type:first-letter {
  float: left;
  margin: 0 10px 2px 0;
  padding: inherit;
  font-size: 4em;
  font-family: Times;
  line-height: 1;
  text-indent: 0;
  background: transparent;
  color: #000;
}
.chapter-container p {
  margin-bottom: 2em;
}
.chapter-container img {
  max-width: 250px;
  height: auto;
  margin: 0 0 0.5em 0.8em;
}
@media only screen and (max-width: 767.98px) {
  .chapter-container img {
    margin-left: auto;
    margin-right: auto;
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
  }
}

.chapter-pager {
  padding-left: 0;
  text-align: center;
  font-size: 0.8em;
}
.chapter-pager li {
  list-style-type: none;
  display: inline;
}

.form-navigation li {
  list-style-type: none;
}

.neos-nodetypes-form-form {
  margin-top: calc(3.125rem / 2);
}
.neos-nodetypes-form-form form .clearfix {
  position: relative;
}
.neos-nodetypes-form-form form input, .neos-nodetypes-form-form form textarea {
  border: none;
  background-color: #f3d0cb;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}
.neos-nodetypes-form-form form input {
  width: 50%;
}
.neos-nodetypes-form-form form textarea {
  width: 100%;
  margin-bottom: 0.5rem;
}
.neos-nodetypes-form-form form label {
  display: none;
}
.neos-nodetypes-form-form form .form-navigation ul {
  padding-left: 0;
}
.neos-nodetypes-form-form form .statictext {
  margin-bottom: calc(3.125rem / 2) !important;
}
.neos-nodetypes-form-form form .statictext a {
  text-decoration: underline !important;
}
.neos-nodetypes-form-form form label[for=contact-form-de-acceptprivacypolicy] {
  display: inline-block;
  padding-left: 1.25rem;
}
.neos-nodetypes-form-form form label[for=contact-form-de-acceptprivacypolicy] + .input {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
}
.neos-nodetypes-form-form form label[for=contact-form-de-acceptprivacypolicy] + .input .add-on {
  display: block;
}
.neos-nodetypes-form-form form label[for=contact-form-de-acceptprivacypolicy] + .input .add-on input {
  width: auto;
  margin-bottom: 0;
}
.neos-nodetypes-form-form form .error label[for=contact-form-de-acceptprivacypolicy] {
  margin-bottom: 1.5rem;
}
.neos-nodetypes-form-form form .error .help-inline {
  color: #c3505a;
}
.neos-nodetypes-form-form form .actions .submit button {
  background-color: transparent;
  color: #000000;
}

.responsive-video {
  position: relative;
  padding-bottom: 55%;
  padding-top: 15px;
  margin-bottom: 1.5em;
  height: 0;
  overflow: hidden;
}
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-exhibition #teaser .neos-contentcollection {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 730px;
}
.page-exhibition #teaser h1, .page-exhibition #teaser h2, .page-exhibition #teaser h3, .page-exhibition #teaser h4, .page-exhibition #teaser h5, .page-exhibition #teaser h6, .page-exhibition #teaser .h1, .page-exhibition #teaser .h2, .page-exhibition #teaser .h3, .page-exhibition #teaser .h4, .page-exhibition #teaser .h5, .page-exhibition #teaser .h6 {
  text-transform: none;
}
.page-exhibition #main {
  margin-top: 3rem;
}
.page-exhibition #main .content {
  padding-right: 5rem;
}
.page-exhibition #main .content .textelement h1, .page-exhibition #main .content .textelement h2, .page-exhibition #main .content .textelement h3, .page-exhibition #main .content .textelement h4, .page-exhibition #main .content .textelement h5, .page-exhibition #main .content .textelement h6 {
  line-height: 1.5;
}
.page-exhibition #main .sidebar .headline-border-bottom h1:after, .page-exhibition #main .sidebar .headline-border-bottom h2:after, .page-exhibition #main .sidebar .headline-border-bottom h3:after, .page-exhibition #main .sidebar .headline-border-bottom h4:after, .page-exhibition #main .sidebar .headline-border-bottom h5:after, .page-exhibition #main .sidebar .headline-border-bottom h6:after, .page-exhibition #main .sidebar .headline-border-bottom .h1:after, .page-exhibition #main .sidebar .headline-border-bottom .h2:after, .page-exhibition #main .sidebar .headline-border-bottom .h3:after, .page-exhibition #main .sidebar .headline-border-bottom .h4:after, .page-exhibition #main .sidebar .headline-border-bottom .h5:after, .page-exhibition #main .sidebar .headline-border-bottom .h6:after {
  margin: 0.5rem auto 0 0;
  width: 25%;
  border-bottom: 3px solid #000;
}
.page-exhibition #main h1, .page-exhibition #main h2, .page-exhibition #main h3, .page-exhibition #main h4, .page-exhibition #main h5, .page-exhibition #main h6, .page-exhibition #main .h1, .page-exhibition #main .h2, .page-exhibition #main .h3, .page-exhibition #main .h4, .page-exhibition #main .h5, .page-exhibition #main .h6 {
  font-family: "Botera TFE", serif, system-ui;
  text-transform: none;
}
.page-exhibition #main h1, .page-exhibition #main .h1 {
  margin-bottom: 1.5rem;
}
.page-exhibition #main h2, .page-exhibition #main h3, .page-exhibition #main h4, .page-exhibition #main h5, .page-exhibition #main h6 {
  margin-bottom: 1rem;
}
.page-exhibition #main .textelement {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767.98px) {
  .page-exhibition #main .textelement {
    margin-bottom: 1rem;
  }
}
.page-exhibition #gallery {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767.98px) {
  .page-exhibition #main .content {
    padding-right: 1rem;
  }
  .page-exhibition #main .content .btn {
    font-size: 4.25vw;
  }
  .page-exhibition #main .content .btn + .btn {
    margin-left: 0;
  }
  .page-exhibition #main .content .btn.btn-outline-dark {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.exhibition, .year {
  position: relative;
  margin-bottom: 0;
  padding-right: 0;
  margin-right: 0;
}
.exhibition figure, .year figure {
  margin-bottom: 0;
}
.exhibition .image, .year .image {
  padding-right: 0;
}
.exhibition .content, .year .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .exhibition .content, .year .content {
    left: 20%;
    width: auto;
  }
}
.exhibition .content h1, .exhibition .content h2, .exhibition .content h3, .exhibition .content h4, .exhibition .content h5, .exhibition .content h6, .exhibition .content p, .exhibition .content span, .year .content h1, .year .content h2, .year .content h3, .year .content h4, .year .content h5, .year .content h6, .year .content p, .year .content span {
  color: #fff;
  text-transform: none;
}
.exhibition .content h3, .year .content h3 {
  font-size: 1.125rem;
  font-family: "Botera TFE", serif, system-ui;
  margin-bottom: 1.5rem;
}
.exhibition .content .btn, .year .content .btn {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .exhibition:nth-child(even) .content, .year:nth-child(even) .content {
    left: -20%;
  }
}

.exhibition-menu .exhibition, .exhibition-menu .year, .year-menu .exhibition, .year-menu .year {
  position: relative;
}
.exhibition-menu .exhibition .bgoverlay, .exhibition-menu .year .bgoverlay, .year-menu .exhibition .bgoverlay, .year-menu .year .bgoverlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.exhibition-menu .exhibition .content, .exhibition-menu .year .content, .year-menu .exhibition .content, .year-menu .year .content {
  align-items: flex-start;
  left: 50%;
  max-width: 40%;
}
@media only screen and (max-width: 767.98px) {
  .exhibition-menu .exhibition .content, .exhibition-menu .year .content, .year-menu .exhibition .content, .year-menu .year .content {
    left: unset;
    right: unset;
    width: 100%;
    max-width: none;
    align-items: center;
  }
}
.exhibition-menu .exhibition:nth-child(even) .content, .exhibition-menu .year:nth-child(even) .content, .year-menu .exhibition:nth-child(even) .content, .year-menu .year:nth-child(even) .content {
  left: 10%;
  max-width: 40%;
}
@media only screen and (max-width: 767.98px) {
  .exhibition-menu .exhibition:nth-child(even) .content, .exhibition-menu .year:nth-child(even) .content, .year-menu .exhibition:nth-child(even) .content, .year-menu .year:nth-child(even) .content {
    left: unset;
    right: unset;
    width: 100%;
    max-width: none;
    align-items: center;
  }
}

@media only screen and (max-width: 539.98px) {
  .page-archive #main .row.year .content h1, .page-archiveyear #main .row.year .content h1 {
    font-size: 9vw;
  }
}
.page-event .headlineelement + div {
  margin-top: 0;
}

.event-menu date {
  display: block;
}
.event-menu date .far {
  padding-right: 0.5rem;
}
.event-menu time, .event-menu address {
  display: block;
  margin-bottom: 0;
  line-height: 1.75;
}
.event-menu .btn {
  margin-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 0;
}
.event-menu .item {
  display: block;
  margin-bottom: 1.5rem;
}
.event-menu .item .shortcontent {
  display: flex;
  max-height: 200px;
  transition: all 2s ease-in-out;
}
@media (max-width: 991.98px) {
  .event-menu .item .shortcontent {
    flex-direction: column;
    max-height: none;
  }
}
.event-menu .item .shortcontent .bottom {
  display: none;
}
.event-menu .item.news {
  background-color: #b5d4d4;
}
.event-menu .item.event {
  background-color: #f3d0cb;
}
.event-menu .item .type {
  width: auto;
  text-orientation: mixed;
  background-color: #0d0d0d;
  color: #fff;
  text-align: center;
  padding: 0.25rem 0.75rem;
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  font-weight: 100;
}
@media (min-width: 992px) {
  .event-menu .item .type {
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
    padding: 0 0.75rem;
  }
}
.event-menu .item .content {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .event-menu .item .content {
    width: calc(100% - 6rem);
  }
}
.event-menu .item .content .row {
  margin-bottom: 0;
  height: 100%;
}
@media (min-width: 768px) {
  .event-menu .item .content .row {
    margin-right: 0;
  }
}
.event-menu .item .content .row .textblock {
  margin: 1.5rem 0;
}
@media (max-width: 767.98px) {
  .event-menu .item .content .row .textblock .text p {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (min-width: 768px) {
  .event-menu .item .content .headline {
    position: relative;
    border-right: 1px solid #000000;
  }
  .event-menu .item .content .headline:after {
    content: " ";
    display: block;
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2px;
    border-right: 1px solid #000000;
  }
}
.event-menu .item .content .headline .headlineelement {
  padding-left: 1.5rem;
}
.event-menu .item .content .headline .headlineelement h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem !important;
}
.event-menu .item .content .headline .headlineelement date {
  font-size: 1rem;
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
}
.event-menu .item .content .headline .dateinfo {
  background-color: #0d0d0d;
  border: 3px solid #f3d0cb;
  border-radius: 50%;
  width: 6.25rem;
  height: 6.25rem;
  position: absolute;
  top: 0;
  left: calc(-5rem - 2px);
  padding-top: 0.375rem;
}
.event-menu .item .content .headline .dateinfo span {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
}
.event-menu .item .content .headline .dateinfo span.dayandmonth {
  font-size: 1.5625rem;
  font-family: "Botera TFE", serif, system-ui;
}
.event-menu .item .content .text {
  font-size: 1rem;
  padding-left: 1.5rem;
}
.event-menu .item .content img {
  max-height: 200px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .event-menu .item .content img {
    max-height: 240px;
  }
}
.event-menu .item .toggler {
  width: 100%;
  background-color: #0d0d0d;
  position: relative;
}
@media (max-width: 991.98px) {
  .event-menu .item .toggler {
    padding-top: 0.25rem;
    height: 2rem;
  }
}
@media (min-width: 992px) {
  .event-menu .item .toggler {
    width: 3rem;
    height: auto;
  }
}
.event-menu .item .toggler:after {
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNyAxNS4xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNyAxNS4xOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxnPgoJPHBhdGggY2xhc3M9InN0MCIgZD0iTTE3LjMsNC4xYy0yLjctMS4yLTUtMi42LTYuOC00LjFjMC40LDEuMywwLjksMi42LDEuNCwzLjdjMC41LDEuMiwxLDEuNywxLjYsMi44TDAsNi4xdjIuOGwxMy41LTAuNAoJCWMtMC42LDEuMS0xLjEsMS42LTEuNiwyLjhjLTAuNSwxLjItMSwyLjQtMS40LDMuN2MxLjgtMS41LDQuMS0yLjksNi44LTQuMXM1LjktMi40LDkuNy0zLjRDMjMuMiw2LjUsMjAsNS40LDE3LjMsNC4xIi8+CjwvZz4KPC9zdmc+Cg==");
  width: 1.75rem;
  height: auto;
  display: block;
  position: absolute;
  margin-left: 0.6125rem;
  margin-top: calc(200px / 2 - 10px);
}
@media (max-width: 991.98px) {
  .event-menu .item .toggler:after {
    margin-top: 2px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
.event-menu .item .ajaxcontent {
  padding-left: 2.25rem;
  overflow: hidden;
  height: 0;
}
.event-menu .item.open .content .row {
  height: auto;
}
.event-menu .item.open .shortcontent {
  max-height: none !important;
}
.event-menu .item.open .shortcontent .bottom {
  display: block;
}
@media (min-width: 768px) {
  .event-menu .item.open img {
    max-height: none !important;
    height: 100%;
  }
}
.event-menu .item.open .ajaxcontent {
  height: auto;
}
.event-menu .item.open .content .top .headline {
  width: 100%;
  border-right: none;
}
.event-menu .item.open .content .top .headline:after {
  display: none;
}
.event-menu .item.open .content .top .text {
  display: none;
}
.event-menu .item.open .toggler {
  height: 3rem;
}
@media (max-width: 991.98px) {
  .event-menu .item.open .toggler {
    height: 2rem;
  }
}
.event-menu .item.open .toggler:after {
  transform: rotate(90deg);
  margin-top: 0.75rem;
  margin-left: 0.5rem;
}
@media (max-width: 991.98px) {
  .event-menu .item.open .toggler:after {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .event-menu .item.event .shortcontent .content .textblock {
    padding-top: calc(1.5625rem * 2);
    position: relative;
  }
  .event-menu .item.event .shortcontent .content .headline .dateinfo {
    left: 2rem;
    top: -4rem;
  }
}
.event-menu.boxed {
  display: flex;
  flex-flow: wrap;
}
.event-menu.boxed .event {
  flex: 0 0 50%;
}
@media only screen and (max-width: 991px) {
  .event-menu.boxed .event {
    flex: 0 0 100%;
  }
}
.event-menu.boxed .event .content {
  box-sizing: border-box;
  height: 100%;
  margin: 1rem;
  border: 1px solid #000;
  padding: 2rem 2rem 0 2rem;
}
.event-menu.boxed .event h4:after {
  display: none;
}

body {
  font-size: 1rem;
  font-family: "FoundersGroteskText", sans-serif, system-ui;
}

p, ul, li {
  line-height: 1.2;
}

/* Headline */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Botera TFE", serif, system-ui;
  text-transform: none;
  margin-bottom: calc(1rem - 0.375rem);
  font-variant-ligatures: none;
}

h1, h2, h3, .h1, .h2, .h3 {
  margin-bottom: calc(calc(3.125rem / 2) - 0.5rem);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

@media only screen and (max-width: 991px) {
  h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 5vw;
  }

  h2 {
    font-size: 4vw;
  }

  h3 {
    font-size: 3vw;
  }

  h4, h5, h6 {
    font-size: 2vw;
  }
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 7vw;
  }

  h2 {
    font-size: 6vw;
  }

  h3 {
    font-size: 5vw;
  }

  h4, h5, h6 {
    font-size: 4vw;
  }
}
sub + br {
  line-height: 1;
}

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

.color-red {
  color: #c3505a !important;
}

.font-groteskmono {
  font-family: "FoundersGroteskMono", sans-serif, system-ui !important;
}
.font-groteskmono sub {
  font-size: 1rem;
  font-weight: 100;
  bottom: 0;
}

.headlineelement {
  z-index: 1;
}
@media (min-width: 992px) {
  .headlineelement.w75p {
    width: 75%;
    margin-left: 12.5%;
  }
}
.headlineelement.color-light h1, .headlineelement.color-light h2, .headlineelement.color-light h3, .headlineelement.color-light h4, .headlineelement.color-light h5, .headlineelement.color-light h6, .headlineelement.color-light .h1, .headlineelement.color-light .h2, .headlineelement.color-light .h3, .headlineelement.color-light .h4, .headlineelement.color-light .h5, .headlineelement.color-light .h6 {
  color: #fff;
  z-index: 1;
}
.headlineelement.color-dark h1, .headlineelement.color-dark h2, .headlineelement.color-dark h3, .headlineelement.color-dark h4, .headlineelement.color-dark h5, .headlineelement.color-dark h6, .headlineelement.color-dark .h1, .headlineelement.color-dark .h2, .headlineelement.color-dark .h3, .headlineelement.color-dark .h4, .headlineelement.color-dark .h5, .headlineelement.color-dark .h6 {
  color: #000000;
  z-index: 1;
}
.headlineelement.color-primary h1, .headlineelement.color-primary h2, .headlineelement.color-primary h3, .headlineelement.color-primary h4, .headlineelement.color-primary h5, .headlineelement.color-primary h6, .headlineelement.color-primary .h1, .headlineelement.color-primary .h2, .headlineelement.color-primary .h3, .headlineelement.color-primary .h4, .headlineelement.color-primary .h5, .headlineelement.color-primary .h6 {
  color: #000;
  z-index: 1;
}
.headlineelement.color-secondary h1, .headlineelement.color-secondary h2, .headlineelement.color-secondary h3, .headlineelement.color-secondary h4, .headlineelement.color-secondary h5, .headlineelement.color-secondary h6, .headlineelement.color-secondary .h1, .headlineelement.color-secondary .h2, .headlineelement.color-secondary .h3, .headlineelement.color-secondary .h4, .headlineelement.color-secondary .h5, .headlineelement.color-secondary .h6 {
  color: #f3d0cb;
  z-index: 1;
}
.headlineelement + div {
  margin-top: 1rem;
}
.headlineelement.mb-1 + div {
  margin-top: 0 !important;
}
.headlineelement.doublebordertopbottom {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  position: relative;
  padding: 1rem 0;
  margin-bottom: 0;
}
.headlineelement.doublebordertopbottom:before {
  display: block;
  content: " ";
  position: absolute;
  height: 1px;
  width: 100%;
  top: 2px;
  border-top: 1px solid #000000;
}
.headlineelement.doublebordertopbottom:after {
  display: block;
  content: " ";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 2px;
  border-bottom: 1px solid #000000;
}

.headline-border-bottom {
  border-bottom: 1px dotted #e4e9f0;
}
.headline-border-bottom h1, .headline-border-bottom h2, .headline-border-bottom h3, .headline-border-bottom h4, .headline-border-bottom h5, .headline-border-bottom h6, .headline-border-bottom .h1, .headline-border-bottom .h2, .headline-border-bottom .h3, .headline-border-bottom .h4, .headline-border-bottom .h5, .headline-border-bottom .h6 {
  display: inline-block;
  margin-bottom: -2px;
}
.headline-border-bottom h1:after, .headline-border-bottom h2:after, .headline-border-bottom h3:after, .headline-border-bottom h4:after, .headline-border-bottom h5:after, .headline-border-bottom h6:after, .headline-border-bottom .h1:after, .headline-border-bottom .h2:after, .headline-border-bottom .h3:after, .headline-border-bottom .h4:after, .headline-border-bottom .h5:after, .headline-border-bottom .h6:after {
  margin: 0;
  display: block;
  padding-bottom: 0.5rem;
  content: " ";
  width: 100%;
  border-bottom: 2px solid #000;
}

.headline-border-beside {
  position: relative;
}
.headline-border-beside:after, .headline-border-beside:before {
  position: absolute;
  top: 51%;
  width: 40%;
  height: 2px;
  content: " ";
  background-color: #fff;
}
.headline-border-beside:before {
  margin-left: -50%;
  text-align: right;
}
.headline-border-beside:after {
  margin-right: -50%;
  text-align: left;
  right: 0;
}
.headline-border-beside h1, .headline-border-beside h2, .headline-border-beside h3, .headline-border-beside h4, .headline-border-beside h5, .headline-border-beside h6, .headline-border-beside .h1, .headline-border-beside .h2, .headline-border-beside .h3, .headline-border-beside .h4, .headline-border-beside .h5, .headline-border-beside .h6 {
  z-index: 1;
  display: block;
  text-align: center;
}

.headline-border-right h1, .headline-border-right h2, .headline-border-right h3, .headline-border-right h4, .headline-border-right h5, .headline-border-right h6 {
  display: inline-block;
  position: relative;
  margin-right: 6rem;
}
.headline-border-right h1:after, .headline-border-right h2:after, .headline-border-right h3:after, .headline-border-right h4:after, .headline-border-right h5:after, .headline-border-right h6:after {
  position: absolute;
  content: " ";
  background-color: #000;
  right: -6rem;
  width: 5rem;
  height: 2px;
  top: 51%;
  margin-right: 0;
}

/* Lists */
ol.neos-list-decimal {
  list-style-type: decimal;
}
ol.neos-list-decimal-leading-zero {
  list-style-type: decimal-leading-zero;
}
ol.neos-list-lower-roman {
  list-style-type: lower-roman;
}
ol.neos-list-upper-roman {
  list-style-type: upper-roman;
}
ol.neos-list-lower-greek {
  list-style-type: lower-greek;
}
ol.neos-list-lower-latin {
  list-style-type: lower-latin;
}
ol.neos-list-upper-latin {
  list-style-type: upper-latin;
}

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

ul.neos-list-disc {
  list-style-type: disc;
}
ul.neos-list-circle {
  list-style-type: circle;
}
ul.neos-list-square {
  list-style-type: square;
}
ul li::marker {
  font-size: 0.75rem;
}

/* Text Style */
.primaryFont h1, .primaryFont h2, .primaryFont h3, .primaryFont h4, .primaryFont h5, .primaryFont h6, .primaryFont p, .primaryFont span, .primaryFont a, .primaryFont li, .primaryFont td {
  font-family: "FoundersGroteskText", sans-serif, system-ui !important;
}

.secondaryFont h1, .secondaryFont h2, .secondaryFont h3, .secondaryFont h4, .secondaryFont h5, .secondaryFont h6, .secondaryFont p, .secondaryFont span, .secondaryFont a, .secondaryFont li, .secondaryFont td {
  font-family: "Botera TFE", serif, system-ui !important;
}

.tt-uppercase {
  text-transform: uppercase !important;
}
.tt-uppercase h1, .tt-uppercase h2, .tt-uppercase h3, .tt-uppercase h4, .tt-uppercase h5, .tt-uppercase h6, .tt-uppercase p, .tt-uppercase span, .tt-uppercase a, .tt-uppercase li, .tt-uppercase td {
  text-transform: none !important;
}

.tt-lowercase {
  text-transform: lowercase !important;
}
.tt-lowercase h1, .tt-lowercase h2, .tt-lowercase h3, .tt-lowercase h4, .tt-lowercase h5, .tt-lowercase h6, .tt-lowercase p, .tt-lowercase span, .tt-lowercase a, .tt-lowercase li, .tt-lowercase td {
  text-transform: none !important;
}

.tt-capitalize {
  text-transform: capitalize !important;
}
.tt-capitalize h1, .tt-capitalize h2, .tt-capitalize h3, .tt-capitalize h4, .tt-capitalize h5, .tt-capitalize h6, .tt-capitalize p, .tt-capitalize span, .tt-capitalize a, .tt-capitalize li, .tt-capitalize td {
  text-transform: none !important;
}

.tt-none {
  text-transform: none !important;
}
.tt-none h1, .tt-none h2, .tt-none h3, .tt-none h4, .tt-none h5, .tt-none h6, .tt-none p, .tt-none span, .tt-none a, .tt-none li, .tt-none td {
  text-transform: none !important;
}

@media (max-width: 575.98px) {
  #main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
#main .neos-contentcollection .textelement a {
  text-decoration: underline;
  color: #000;
}
#main .neos-contentcollection .textelement p.fineprint {
  line-height: 1;
  font-size: 0.75rem;
}
#main .neos-contentcollection .textelement.w75p {
  padding: 0 12.5%;
}
#main .neos-contentcollection .textelement.w75p.alignBoxLeft {
  padding: 0 25% 0 0;
}
#main .neos-contentcollection .textelement.w75p.alignBoxLeft p:last-child {
  margin-bottom: 0;
}
#main .neos-contentcollection .textelement.fine-print p {
  line-height: 1;
  font-size: 0.75rem;
}
#main .neos-contentcollection h1:last-child, #main .neos-contentcollection h2:last-child, #main .neos-contentcollection h3:last-child, #main .neos-contentcollection h4:last-child, #main .neos-contentcollection h5:last-child, #main .neos-contentcollection h6:last-child, #main .neos-contentcollection p:last-child {
  margin-bottom: 0;
}
#main p strong, #main p b {
  color: #000000;
  font-weight: 700;
}
#main p a {
  text-decoration: none;
}

.textpictureelement .image, .textpictureelement .text {
  display: inline-block;
  vertical-align: top;
}
.textpictureelement .image img {
  padding-right: 1rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .textpictureelement .w-34, .textpictureelement .w-33 {
    width: 33% !important;
  }
}
.textpictureelement.float .image, .textpictureelement.float .text {
  display: block;
}
@media only screen and (min-width: 768px) {
  .textpictureelement.float .image {
    float: left;
  }
}
@media only screen and (min-width: 768px) {
  .textpictureelement.float.pull-right .image {
    float: right;
  }
}

figure.left {
  text-align: left;
}
figure.center {
  text-align: center;
}
figure.right {
  text-align: right;
}
figure.table table {
  width: 100%;
}
figure.table tr td, figure.table tr th {
  padding: 0.375rem 1rem;
}
figure.table tr td p, figure.table tr th p {
  margin: auto;
}
figure.table tr td:first-child, figure.table tr th:first-child {
  padding-left: 0;
}
figure.table tr td:last-child, figure.table tr th:last-child {
  padding-right: 0;
}
figure figcaption {
  font-size: 0.875rem;
  margin-top: 0.78125rem;
}
figure figcaption sub {
  bottom: 0.25rem;
}

.filedownload {
  padding-left: 0;
}
.filedownload li {
  position: relative;
  list-style: none;
  display: block;
  padding: 0.25rem 0 0.25rem 1.75rem;
}
.filedownload li a:before {
  display: block;
  content: " ";
  background-image: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhciIgZGF0YS1pY29uPSJmaWxlLXBkZiIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWZpbGUtcGRmIGZhLXctMTIiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMzg0IDUxMiI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMzY5LjkgOTcuOUwyODYgMTRDMjc3IDUgMjY0LjgtLjEgMjUyLjEtLjFINDhDMjEuNSAwIDAgMjEuNSAwIDQ4djQxNmMwIDI2LjUgMjEuNSA0OCA0OCA0OGgyODhjMjYuNSAwIDQ4LTIxLjUgNDgtNDhWMTMxLjljMC0xMi43LTUuMS0yNS0xNC4xLTM0ek0zMzIuMSAxMjhIMjU2VjUxLjlsNzYuMSA3Ni4xek00OCA0NjRWNDhoMTYwdjEwNGMwIDEzLjMgMTAuNyAyNCAyNCAyNGgxMDR2Mjg4SDQ4em0yNTAuMi0xNDMuN2MtMTIuMi0xMi00Ny04LjctNjQuNC02LjUtMTcuMi0xMC41LTI4LjctMjUtMzYuOC00Ni4zIDMuOS0xNi4xIDEwLjEtNDAuNiA1LjQtNTYtNC4yLTI2LjItMzcuOC0yMy42LTQyLjYtNS45LTQuNCAxNi4xLS40IDM4LjUgNyA2Ny4xLTEwIDIzLjktMjQuOSA1Ni0zNS40IDc0LjQtMjAgMTAuMy00NyAyNi4yLTUxIDQ2LjItMy4zIDE1LjggMjYgNTUuMiA3Ni4xLTMxLjIgMjIuNC03LjQgNDYuOC0xNi41IDY4LjQtMjAuMSAxOC45IDEwLjIgNDEgMTcgNTUuOCAxNyAyNS41IDAgMjgtMjguMiAxNy41LTM4Ljd6bS0xOTguMSA3Ny44YzUuMS0xMy43IDI0LjUtMjkuNSAzMC40LTM1LTE5IDMwLjMtMzAuNCAzNS43LTMwLjQgMzV6bTgxLjYtMTkwLjZjNy40IDAgNi43IDMyLjEgMS44IDQwLjgtNC40LTEzLjktNC4zLTQwLjgtMS44LTQwLjh6bS0yNC40IDEzNi42YzkuNy0xNi45IDE4LTM3IDI0LjctNTQuNyA4LjMgMTUuMSAxOC45IDI3LjIgMzAuMSAzNS41LTIwLjggNC4zLTM4LjkgMTMuMS01NC44IDE5LjJ6bTEzMS42LTVzLTUgNi0zNy4zLTcuOGMzNS4xLTIuNiA0MC45IDUuNCAzNy4zIDcuOHoiPjwvcGF0aD48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
}
.filedownload li a[href$=".jpg"]:before, .filedownload li a[href$=".png"]:before, .filedownload li a[href$=".gif"]:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhciIgZGF0YS1pY29uPSJmaWxlLWltYWdlIiBjbGFzcz0ic3ZnLWlubGluZS0tZmEgZmEtZmlsZS1pbWFnZSBmYS13LTEyIiByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDM4NCA1MTIiPjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0iTTM2OS45IDk3LjlMMjg2IDE0QzI3NyA1IDI2NC44LS4xIDI1Mi4xLS4xSDQ4QzIxLjUgMCAwIDIxLjUgMCA0OHY0MTZjMCAyNi41IDIxLjUgNDggNDggNDhoMjg4YzI2LjUgMCA0OC0yMS41IDQ4LTQ4VjEzMS45YzAtMTIuNy01LjEtMjUtMTQuMS0zNHpNMzMyLjEgMTI4SDI1NlY1MS45bDc2LjEgNzYuMXpNNDggNDY0VjQ4aDE2MHYxMDRjMCAxMy4zIDEwLjcgMjQgMjQgMjRoMTA0djI4OEg0OHptMzItNDhoMjI0VjI4OGwtMjMuNS0yMy41Yy00LjctNC43LTEyLjMtNC43LTE3IDBMMTc2IDM1MmwtMzkuNS0zOS41Yy00LjctNC43LTEyLjMtNC43LTE3IDBMODAgMzUydjY0em00OC0yNDBjLTI2LjUgMC00OCAyMS41LTQ4IDQ4czIxLjUgNDggNDggNDggNDgtMjEuNSA0OC00OC0yMS41LTQ4LTQ4LTQ4eiI+PC9wYXRoPjwvc3ZnPg==");
}
.filedownload li a[href$=".xls"]:before, .filedownload li a[href$=".xlsx"]:before, .filedownload li a[href$=".doc"]:before, .filedownload li a[href$=".docx"]:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhciIgZGF0YS1pY29uPSJmaWxlIiBjbGFzcz0ic3ZnLWlubGluZS0tZmEgZmEtZmlsZSBmYS13LTEyIiByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDM4NCA1MTIiPjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0iTTM2OS45IDk3LjlMMjg2IDE0QzI3NyA1IDI2NC44LS4xIDI1Mi4xLS4xSDQ4QzIxLjUgMCAwIDIxLjUgMCA0OHY0MTZjMCAyNi41IDIxLjUgNDggNDggNDhoMjg4YzI2LjUgMCA0OC0yMS41IDQ4LTQ4VjEzMS45YzAtMTIuNy01LjEtMjUtMTQuMS0zNHpNMzMyLjEgMTI4SDI1NlY1MS45bDc2LjEgNzYuMXpNNDggNDY0VjQ4aDE2MHYxMDRjMCAxMy4zIDEwLjcgMjQgMjQgMjRoMTA0djI4OEg0OHoiPjwvcGF0aD48L3N2Zz4=");
}

.lastcol-nowhitespace table tr:last-child td {
  white-space: nowrap;
}

.lastcol-nowhitespace table tr td:last-child {
  white-space: nowrap;
}

.firstcol-nowhitespace table tr td:first-child {
  white-space: nowrap;
}

.tablecell-nowhitespace table tr td {
  white-space: nowrap;
}

.backToListButton {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 1rem;
}

.backToList {
  display: flex;
  width: 4rem;
  height: 4rem;
  background-color: #f3d0cb;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: opacity 0.75s ease-in-out;
}
.backToList .arrow {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDI0OCA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI0OCA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOiNGRkZGRkY7fQ0KPC9zdHlsZT4NCjxnPg0KCTxnPg0KCQk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjQyLjIsMTEwLjRMMTM4LjIsNS45YzAsMCwwLDAsMCwwYy03LjgtNy44LTIwLjUtNy44LTI4LjMsMGMwLDAsMCwwLDAsMEw1LjgsMTEwLjQNCgkJCWMtNy44LDcuOC03LjgsMjAuNSwwLjEsMjguM2M3LjgsNy44LDIwLjUsNy44LDI4LjMtMC4xTDEwNCw2OC40VjQ5MmMwLDExLDksMjAsMjAsMjBjMTEsMCwyMC05LDIwLTIwVjY4LjRsNjkuOCw3MC4yDQoJCQljNy44LDcuOCwyMC41LDcuOSwyOC4zLDAuMUMyNDkuOSwxMzAuOSwyNTAsMTE4LjIsMjQyLjIsMTEwLjR6Ii8+DQoJPC9nPg0KPC9nPg0KPC9zdmc+DQo=");
  background-size: 1rem 3rem;
  background-repeat: no-repeat;
  display: block;
  height: 3rem;
  width: 1rem;
  transform: rotate(-90deg);
}

.accordion-item {
  border-radius: 0 !important;
}
.accordion-item:first-of-type {
  border-radius: 0 !important;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  color: #f3d0cb;
}
.accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cab000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(202, 176, 0, 0.25);
}

.social {
  vertical-align: middle;
}
.social a {
  vertical-align: middle;
  display: inline-block;
}
.social span {
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  font-weight: 300;
}
.social .fab {
  margin-left: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
}
.social .fab.fa-facebook {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NkM1MDQgMTE5IDM5MyA4IDI1NiA4UzggMTE5IDggMjU2YzAgMTIzLjc4IDkwLjY5IDIyNi4zOCAyMDkuMjUgMjQ1VjMyNy42OWgtNjNWMjU2aDYzdi01NC42NGMwLTYyLjE1IDM3LTk2LjQ4IDkzLjY3LTk2LjQ4IDI3LjE0IDAgNTUuNTIgNC44NCA1NS41MiA0Ljg0djYxaC0zMS4yOGMtMzAuOCAwLTQwLjQxIDE5LjEyLTQwLjQxIDM4LjczVjI1Nmg2OC43OGwtMTEgNzEuNjloLTU3Ljc4VjUwMUM0MTMuMzEgNDgyLjM4IDUwNCAzNzkuNzggNTA0IDI1NnoiLz48L3N2Zz4K");
}
.social .fab.fa-instagram {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNMjI0LjEgMTQxYy02My42IDAtMTE0LjkgNTEuMy0xMTQuOSAxMTQuOXM1MS4zIDExNC45IDExNC45IDExNC45UzMzOSAzMTkuNSAzMzkgMjU1LjkgMjg3LjcgMTQxIDIyNC4xIDE0MXptMCAxODkuNmMtNDEuMSAwLTc0LjctMzMuNS03NC43LTc0LjdzMzMuNS03NC43IDc0LjctNzQuNyA3NC43IDMzLjUgNzQuNyA3NC43LTMzLjYgNzQuNy03NC43IDc0Ljd6bTE0Ni40LTE5NC4zYzAgMTQuOS0xMiAyNi44LTI2LjggMjYuOC0xNC45IDAtMjYuOC0xMi0yNi44LTI2LjhzMTItMjYuOCAyNi44LTI2LjggMjYuOCAxMiAyNi44IDI2Ljh6bTc2LjEgMjcuMmMtMS43LTM1LjktOS45LTY3LjctMzYuMi05My45LTI2LjItMjYuMi01OC0zNC40LTkzLjktMzYuMi0zNy0yLjEtMTQ3LjktMi4xLTE4NC45IDAtMzUuOCAxLjctNjcuNiA5LjktOTMuOSAzNi4xcy0zNC40IDU4LTM2LjIgOTMuOWMtMi4xIDM3LTIuMSAxNDcuOSAwIDE4NC45IDEuNyAzNS45IDkuOSA2Ny43IDM2LjIgOTMuOXM1OCAzNC40IDkzLjkgMzYuMmMzNyAyLjEgMTQ3LjkgMi4xIDE4NC45IDAgMzUuOS0xLjcgNjcuNy05LjkgOTMuOS0zNi4yIDI2LjItMjYuMiAzNC40LTU4IDM2LjItOTMuOSAyLjEtMzcgMi4xLTE0Ny44IDAtMTg0Ljh6TTM5OC44IDM4OGMtNy44IDE5LjYtMjIuOSAzNC43LTQyLjYgNDIuNi0yOS41IDExLjctOTkuNSA5LTEzMi4xIDlzLTEwMi43IDIuNi0xMzIuMS05Yy0xOS42LTcuOC0zNC43LTIyLjktNDIuNi00Mi42LTExLjctMjkuNS05LTk5LjUtOS0xMzIuMXMtMi42LTEwMi43IDktMTMyLjFjNy44LTE5LjYgMjIuOS0zNC43IDQyLjYtNDIuNiAyOS41LTExLjcgOTkuNS05IDEzMi4xLTlzMTAyLjctMi42IDEzMi4xIDljMTkuNiA3LjggMzQuNyAyMi45IDQyLjYgNDIuNiAxMS43IDI5LjUgOSA5OS41IDkgMTMyLjFzMi43IDEwMi43LTkgMTMyLjF6Ii8+PC9zdmc+Cg==");
}

a.newsbox {
  padding: 0;
  border: none;
  margin-bottom: 15px;
}

.newsbox {
  padding: 7px;
  margin-bottom: 20px;
  position: relative;
}
.newsbox:hover {
  box-shadow: 0 0 8px #ddd;
  -webkit-transition: box-shadow 0.2s ease-in-out;
  -moz-transition: box-shadow 0.2s ease-in-out;
  -o-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
}
.newsbox:hover a.btn-more {
  right: 10px;
}
.newsbox h3 {
  margin: 1rem 0 0.5rem 0;
}
.newsbox h3 a:hover {
  color: #f3d0cb;
  text-decoration: none;
}
.newsbox .image {
  position: relative;
}
.newsbox a.btn-more {
  right: -10px;
  bottom: 10px;
  color: #fff;
  padding: 1px 6px;
  position: absolute;
  background: #f3d0cb;
  display: inline-block;
}
.newsbox a.btn-more.hover-effect {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.newsbox a.btn-more:hover {
  text-decoration: none;
  box-shadow: 0 0 0 2px #f3d0cb;
}
.newsbox .newsbox-img {
  position: relative;
  margin-bottom: 11px;
}

/* eocjsNewsticker v0.6.1 */
.eocjs-newsticker {
  padding: 1.5625rem 0;
  background-color: #eee;
}
.eocjs-newsticker .eocjs-newsticker-container {
  position: relative;
  height: 2.25rem;
  overflow: hidden;
}
.eocjs-newsticker .eocjs-newsticker-one,
.eocjs-newsticker .eocjs-newsticker-two {
  position: absolute;
  left: 0;
  top: 0;
  height: 2rem;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  font-family: "BerryScript";
  font-size: 1.875rem;
  font-weight: normal;
}
.eocjs-newsticker .eocjs-newsticker-one sub,
.eocjs-newsticker .eocjs-newsticker-two sub {
  bottom: 2px;
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  font-size: 1.125rem;
  font-weight: 100;
}

.eocjs-newsticker-loader {
  position: absolute;
  left: calc(50% - 10px);
  width: 16px;
  height: 16px;
  display: block;
  border: 2px solid #555555;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: eocjs-newsticker-spin 0.75s linear infinite;
}

@keyframes eocjs-newsticker-spin {
  to {
    transform: rotate(360deg);
  }
}
.ticker {
  background-color: #c3505a;
  font-family: "BerryScript";
  font-size: 1.875rem;
  padding: 1.5625rem 0;
}
.ticker span, .ticker p, .ticker h3 {
  color: #fff;
  font-size: 1.875rem;
}
.ticker sub {
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  font-size: 1.125rem;
}

.card {
  border: none;
  background-color: transparent;
  display: inline-flex;
  margin-bottom: 0;
  border-radius: 0;
  height: 100%;
}
.card.nmb {
  margin-bottom: 0;
}
.card.w-50 {
  width: calc(50% - 0.5rem) !important;
  margin-right: 1rem;
}
.card.w-50:nth-child(even) {
  margin-right: 0;
}
.card.bglightblue {
  background-color: #b5d4d4;
}
.card.bgred {
  background-color: #c3505a;
}
.card.bgblack {
  background-color: #0d0d0d;
}
.card.bgpink {
  background-color: #f3d0cb;
}
.card.bglightyellow {
  background-color: #fffdee;
}
.card figure {
  position: relative;
  margin: 0;
}
.card figure.left {
  text-align: left;
}
.card figure.center {
  text-align: center;
}
.card figure.right {
  text-align: right;
}
.card .card-body {
  display: block;
  -webkit-transition: all 0.5s;
  color: #000000;
  border-radius: 0;
  position: relative;
  padding: 1.5625rem;
}
.card .card-body date {
  display: block;
}
.card .card-body h1, .card .card-body h2, .card .card-body h3, .card .card-body h4, .card .card-body h5, .card .card-body h6, .card .card-body date, .card .card-body span, .card .card-body div, .card .card-body p, .card .card-body .card-text {
  color: #fff;
  text-transform: none;
}
.card .card-body h1, .card .card-body h2 {
  font-size: 2.25rem;
}
.card .card-body .card-text {
  margin-bottom: 5.25rem;
}
.card .card-body .subtitle, .card .card-body date {
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  font-weight: 100;
}
.card .card-body date {
  margin-top: -0.75rem;
  margin-bottom: 1rem;
}
.card .card-body .subtitle {
  padding-top: 0;
  margin-bottom: calc(1rem - 0.375rem);
}
.card .card-body .buttonContainer {
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
  left: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.card .card-body a.btn {
  background-color: transparent;
  text-align: left;
  border: none;
  border: 1px solid #fff;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
  transition: all 100ms ease-in-out;
}
.card .card-body a.btn span {
  color: #fff !important;
}
.card .card-body a.btn:hover {
  color: #000000;
  border-color: #fff;
  background-color: #fff;
  transition: all 100ms ease-in-out;
}
.card .card-body a.btn:hover span {
  color: #000000 !important;
}
.card .card-body a.btn.btn-invers {
  background-color: #fff;
  color: #000000;
  border-color: #fff;
}
.card .card-body a.btn.btn-invers span {
  color: #000000 !important;
}
.card .card-body a.btn.btn-invers:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.card .card-body a.btn.btn-invers:hover span {
  color: #fff !important;
}
.card.centercontent .card-body {
  text-align: center;
}
.card.centercontent .card-body div, .card.centercontent .card-body date, .card.centercontent .card-body a, .card.centercontent .card-body p, .card.centercontent .card-body span, .card.centercontent .card-body h1, .card.centercontent .card-body h2, .card.centercontent .card-body h3, .card.centercontent .card-body h4, .card.centercontent .card-body h5, .card.centercontent .card-body h6 {
  text-align: center;
}
.card.bglightblue .card-body h1, .card.bglightblue .card-body h2, .card.bglightblue .card-body h3, .card.bglightblue .card-body h4, .card.bglightblue .card-body h5, .card.bglightblue .card-body h6, .card.bglightblue .card-body date, .card.bglightblue .card-body span, .card.bglightblue .card-body div, .card.bglightblue .card-body p, .card.bglightblue .card-body .card-text, .card.bglightyellow .card-body h1, .card.bglightyellow .card-body h2, .card.bglightyellow .card-body h3, .card.bglightyellow .card-body h4, .card.bglightyellow .card-body h5, .card.bglightyellow .card-body h6, .card.bglightyellow .card-body date, .card.bglightyellow .card-body span, .card.bglightyellow .card-body div, .card.bglightyellow .card-body p, .card.bglightyellow .card-body .card-text, .card.bgpink .card-body h1, .card.bgpink .card-body h2, .card.bgpink .card-body h3, .card.bgpink .card-body h4, .card.bgpink .card-body h5, .card.bgpink .card-body h6, .card.bgpink .card-body date, .card.bgpink .card-body span, .card.bgpink .card-body div, .card.bgpink .card-body p, .card.bgpink .card-body .card-text, .card.bgnone .card-body h1, .card.bgnone .card-body h2, .card.bgnone .card-body h3, .card.bgnone .card-body h4, .card.bgnone .card-body h5, .card.bgnone .card-body h6, .card.bgnone .card-body date, .card.bgnone .card-body span, .card.bgnone .card-body div, .card.bgnone .card-body p, .card.bgnone .card-body .card-text {
  color: #000000;
}
.card.bglightblue .card-body a.btn, .card.bglightyellow .card-body a.btn, .card.bgpink .card-body a.btn, .card.bgnone .card-body a.btn {
  color: #000000;
  border-color: #000000;
  background-color: transparent;
}
.card.bglightblue .card-body a.btn span, .card.bglightyellow .card-body a.btn span, .card.bgpink .card-body a.btn span, .card.bgnone .card-body a.btn span {
  color: #000000 !important;
}
.card.bglightblue .card-body a.btn:hover, .card.bglightyellow .card-body a.btn:hover, .card.bgpink .card-body a.btn:hover, .card.bgnone .card-body a.btn:hover {
  color: #fff;
  border-color: #000000;
  background-color: #000000;
}
.card.bglightblue .card-body a.btn:hover span, .card.bglightyellow .card-body a.btn:hover span, .card.bgpink .card-body a.btn:hover span, .card.bgnone .card-body a.btn:hover span {
  color: #fff !important;
}
.card.bglightblue .card-body a.btn.btn-invers, .card.bglightyellow .card-body a.btn.btn-invers, .card.bgpink .card-body a.btn.btn-invers, .card.bgnone .card-body a.btn.btn-invers {
  background-color: #000000;
  color: #fff;
  border-color: #000000;
}
.card.bglightblue .card-body a.btn.btn-invers span, .card.bglightyellow .card-body a.btn.btn-invers span, .card.bgpink .card-body a.btn.btn-invers span, .card.bgnone .card-body a.btn.btn-invers span {
  color: #fff !important;
}
.card.bglightblue .card-body a.btn.btn-invers:hover, .card.bglightyellow .card-body a.btn.btn-invers:hover, .card.bgpink .card-body a.btn.btn-invers:hover, .card.bgnone .card-body a.btn.btn-invers:hover {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.card.bglightblue .card-body a.btn.btn-invers:hover span, .card.bglightyellow .card-body a.btn.btn-invers:hover span, .card.bgpink .card-body a.btn.btn-invers:hover span, .card.bgnone .card-body a.btn.btn-invers:hover span {
  color: #000000 !important;
}
.card.bgnone .card-body {
  padding: calc(3.125rem / 2) 0 2.5rem 0;
  position: relative;
}
.card.bgnone .card-body .btn {
  position: absolute;
  bottom: 0;
}
.card.bgnone .card-body .buttonContainer {
  padding-left: 0;
}
.card.alignvertically .card-body {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .card.alignhorizontally {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .card.alignhorizontally .card-image.swapped {
    padding-right: 0;
  }
}
.card.alignhorizontally .card-image figure {
  height: 100%;
}
.card.alignhorizontally .card-image figure img {
  object-fit: cover;
  height: 100%;
}
.card.withBgImage {
  position: relative;
}
.card.withBgImage .card-body {
  padding-top: 1.5rem;
}
.card.withBgImage .bg-image {
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .card.withBgImage .bg-image figure {
    text-align: center;
  }
  .card.withBgImage .bg-image img {
    width: auto;
    height: 100%;
    max-width: 50%;
  }
}
.card.withBgImage .bg-image.bottom {
  justify-content: flex-end;
}
.card.withBgImage .bg-image.top {
  justify-content: flex-start;
}

.vBorderCol1 .card .card-body .card-text, .vBorderCol2 .card .card-body .card-text {
  margin-bottom: 1rem;
}
.vBorderCol1 .card .card-body .buttonContainer, .vBorderCol2 .card .card-body .buttonContainer {
  bottom: 0;
}

.teaserbox {
  padding: 1rem 1.5rem;
  height: 100%;
}
.teaserbox .teaserbody {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  line-height: 1.2;
}
.teaserbox .teaserbody .texttop {
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  font-weight: 100;
  margin-bottom: calc(1rem - 0.375rem);
}
.teaserbox .teaserbody.alignLeft {
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
}
.teaserbox .teaserbody h3 {
  font-size: 2.25rem;
  margin-bottom: cacl(1.25rem-0.375rem);
}
.teaserbox .teaserbody h3:last-child {
  margin-bottom: 0;
}
.teaserbox .teaserbody .link {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA0NS41IDE1LjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjUgMTUuMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiMxRDFEMUI7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMS43LDQuMWMtMy45LTEuMi03LjEtMi42LTkuNi00LjFjMC42LDEuMywxLjMsMi42LDIsMy43YzAuNywxLjIsMS41LDEuNywyLjMsMi44TDAsNi4xdjIuOGwyNi40LTAuNAoJCWMtMC44LDEuMS0xLjYsMS42LTIuMywyLjhjLTAuNywxLjItMS40LDIuNC0yLDMuN2MyLjYtMS41LDUuOC0yLjksOS42LTQuMWMzLjktMS4yLDguNS0yLjQsMTMuOC0zLjRDNDAuMiw2LjUsMzUuNiw1LjQsMzEuNyw0LjEiCgkJLz4KPC9nPgo8L3N2Zz4K);
  background-size: 3rem 1.5rem;
  width: 3rem;
  height: 1.5rem;
  margin-top: -0.5rem;
}
.teaserbox.bglightblue {
  background-color: #b5d4d4;
}
.teaserbox.bgred {
  background-color: #c3505a;
}
.teaserbox.bgred .teaserbody {
  color: #fff;
}
.teaserbox.bgred .teaserbody h3, .teaserbox.bgred .teaserbody i, .teaserbox.bgred .teaserbody strong, .teaserbox.bgred .teaserbody b, .teaserbox.bgred .teaserbody p {
  color: #fff;
}
.teaserbox.bgred .teaserbody .link {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA0NS41IDE1LjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjUgMTUuMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMS43LDQuMWMtMy45LTEuMi03LjEtMi42LTkuNi00LjFjMC42LDEuMywxLjMsMi42LDIsMy43YzAuNywxLjIsMS41LDEuNywyLjMsMi44TDAsNi4xdjIuOGwyNi40LTAuNAoJCWMtMC44LDEuMS0xLjYsMS42LTIuMywyLjhjLTAuNywxLjItMS40LDIuNC0yLDMuN2MyLjYtMS41LDUuOC0yLjksOS42LTQuMWMzLjktMS4yLDguNS0yLjQsMTMuOC0zLjRDNDAuMiw2LjUsMzUuNiw1LjQsMzEuNyw0LjEiCgkJLz4KPC9nPgo8L3N2Zz4K);
}
.teaserbox.bgblack {
  background-color: #0d0d0d;
}
.teaserbox.bgblack .teaserbody {
  color: #fff;
}
.teaserbox.bgblack .teaserbody h3, .teaserbox.bgblack .teaserbody i, .teaserbox.bgblack .teaserbody strong, .teaserbox.bgblack .teaserbody b, .teaserbox.bgblack .teaserbody p, .teaserbox.bgblack .teaserbody strong, .teaserbox.bgblack .teaserbody a, .teaserbox.bgblack .teaserbody li, .teaserbox.bgblack .teaserbody span {
  color: #fff !important;
}
.teaserbox.bgblack .teaserbody .link {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA0NS41IDE1LjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjUgMTUuMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMS43LDQuMWMtMy45LTEuMi03LjEtMi42LTkuNi00LjFjMC42LDEuMywxLjMsMi42LDIsMy43YzAuNywxLjIsMS41LDEuNywyLjMsMi44TDAsNi4xdjIuOGwyNi40LTAuNAoJCWMtMC44LDEuMS0xLjYsMS42LTIuMywyLjhjLTAuNywxLjItMS40LDIuNC0yLDMuN2MyLjYtMS41LDUuOC0yLjksOS42LTQuMWMzLjktMS4yLDguNS0yLjQsMTMuOC0zLjRDNDAuMiw2LjUsMzUuNiw1LjQsMzEuNyw0LjEiCgkJLz4KPC9nPgo8L3N2Zz4K);
}
.teaserbox.bgpink {
  background-color: #f3d0cb;
}
.teaserbox.bglightyellow {
  background-color: #fffdee;
}
.teaserbox.bgnone {
  border-style: solid;
  border-inline-width: 1px;
  border-block-width: 1px;
  position: relative;
  /*
  Sarafi Hack
  @media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
      border-inline-width: 3px;
      border-block-width: 3px;
    }
  }
  */
}
.teaserbox.bgnone:after {
  content: " ";
  display: block;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border: 1px solid #000000;
  z-index: -1;
}

.neos-backend .teaserbox.bgnone:after {
  z-index: -1;
}

.linkbanner {
  margin-top: calc(-1 * calc(3.125rem / 2)) !important;
  margin-bottom: calc(-1 * calc(3.125rem / 2)) !important;
}
.linkbanner .neos-contentcollection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.linkbanner .neos-contentcollection .image {
  width: auto;
  max-width: 20%;
  padding: 0rem 0.75rem;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .linkbanner .neos-contentcollection .image {
    padding: 0.75rem 1.5rem;
  }
}
@media (min-width: 992px) {
  .linkbanner .neos-contentcollection .image {
    padding: 1rem 2rem;
  }
}
.linkbanner .neos-contentcollection .image:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  right: 1px;
  width: 4px;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
}
.linkbanner .neos-contentcollection .image:last-child:after {
  display: none;
}
.linkbanner .neos-contentcollection .image figure {
  margin-bottom: 0;
}
.linkbanner .neos-contentcollection .image:hover {
  background-color: #b5d4d4;
}
@-moz-document url-prefix() {
  .linkbanner .neos-contentcollection .image:first-child img {
    width: 151px;
    height: 125px;
  }
  .linkbanner .neos-contentcollection .image:nth-child(2) img {
    width: 233px;
    height: 100px;
  }
  .linkbanner .neos-contentcollection .image:nth-child(3) img {
    width: 96px !important;
    height: 132px !important;
  }
  .linkbanner .neos-contentcollection .image:nth-child(4) img {
    width: 193px;
    height: 122px;
  }
  .linkbanner .neos-contentcollection .image:nth-child(5) img {
    width: 154px;
    height: 125px;
  }
}

.product-tile {
  background-color: #fff;
  padding: calc(0.75rem + 0.5rem);
  position: relative;
}
.product-tile a {
  display: block;
}
.product-tile h5 {
  text-align: center;
  margin-bottom: 0;
}
.product-tile .pinfo {
  text-align: center;
}
.product-tile .pinfo span {
  margin-right: 0.75rem;
  display: inline-block;
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  font-size: 0.9375rem;
  font-weight: 100;
}
.product-tile .image {
  margin-top: 1.5625rem;
  margin-bottom: 1.5625rem;
  height: 200px;
  width: auto;
  text-align: center;
  position: relative;
}
.product-tile .image figure {
  padding-bottom: 1.5625rem;
  position: relative;
}
.product-tile .image figure:after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: " ";
  height: 4px;
  width: 100%;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
.product-tile .image .newFlag {
  position: absolute;
  bottom: -1.125rem;
  right: 0;
  background-color: #0d0d0d;
  color: #fff;
  padding: 0.125rem 0.75rem;
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
}
.product-tile .image img {
  height: auto;
  width: auto;
}
.product-tile .normal-price {
  margin-right: 1rem;
  font-family: "Botera TFE", serif, system-ui;
  font-size: 1.5625rem;
  display: inline-block;
}
.product-tile .normal-price.strike-trough {
  text-decoration: line-through;
  font-size: 1rem;
}
.product-tile .discount-price {
  font-size: 1.5625rem;
  display: inline-block;
  font-family: "Botera TFE", serif, system-ui;
}
.product-tile .discount-price span {
  display: inline-block;
}
.product-tile .discount-price span span {
  display: inline-block;
}
.product-tile .additional-info {
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  font-size: 0.75rem;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .product-tile .additional-info {
    font-size: 0.75rem;
  }
}
.product-tile .badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 6rem;
}
.product-tile .badge span {
  white-space: normal;
  font-family: "FoundersGroteskMono", sans-serif, system-ui;
  font-weight: 100;
  font-size: 11px;
}
.product-tile .badge.promoBadge {
  background-color: #c3505a;
}
.product-tile .badge.promoBadge span {
  color: #fff !important;
}
.product-tile .badge.monthBadge {
  background-color: #b5d4d4;
  color: #000000;
}
.product-tile .badge.discountBadge {
  background-color: #000000;
}
.product-tile .badge.discountBadge span {
  font-family: "Botera TFE", serif, system-ui;
  font-size: 1.75rem;
}

footer {
  background-color: #0d0d0d;
  padding-top: 3.125rem;
  padding-bottom: 0rem;
  position: relative;
  margin-top: calc(1.5625rem * 2);
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer .h1, footer .h2, footer .h3, footer .h4, footer .h5, footer .h6, footer p, footer a, footer span, footer li, footer th, footer td {
  color: #fff;
  font-family: "FoundersGroteskText", sans-serif, system-ui;
}
footer a:hover {
  color: #ccc !important;
}
footer b, footer strong {
  text-transform: uppercase;
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer .h1, footer .h2, footer .h3, footer .h4, footer .h5, footer .h6 {
  margin-bottom: 1.75rem;
}
footer .footerlogo {
  margin-bottom: 1.625rem;
}
footer table tr {
  border-bottom: none;
}
footer table tr td {
  padding-right: 1rem;
  padding-bottom: 2px;
  vertical-align: top;
}
footer table tr td:last-child {
  padding-right: 0;
  text-align: right;
  white-space: nowrap;
}
footer .backToTop {
  display: flex;
  opacity: 0;
  position: fixed;
  right: 1.75rem;
  bottom: 3rem;
  width: 4rem;
  height: 4rem;
  background-color: #f3d0cb;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: opacity 0.75s ease-in-out;
}
footer .backToTop .arrow {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDI0OCA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI0OCA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOiNGRkZGRkY7fQ0KPC9zdHlsZT4NCjxnPg0KCTxnPg0KCQk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjQyLjIsMTEwLjRMMTM4LjIsNS45YzAsMCwwLDAsMCwwYy03LjgtNy44LTIwLjUtNy44LTI4LjMsMGMwLDAsMCwwLDAsMEw1LjgsMTEwLjQNCgkJCWMtNy44LDcuOC03LjgsMjAuNSwwLjEsMjguM2M3LjgsNy44LDIwLjUsNy44LDI4LjMtMC4xTDEwNCw2OC40VjQ5MmMwLDExLDksMjAsMjAsMjBjMTEsMCwyMC05LDIwLTIwVjY4LjRsNjkuOCw3MC4yDQoJCQljNy44LDcuOCwyMC41LDcuOSwyOC4zLDAuMUMyNDkuOSwxMzAuOSwyNTAsMTE4LjIsMjQyLjIsMTEwLjR6Ii8+DQoJPC9nPg0KPC9nPg0KPC9zdmc+DQo=");
  background-size: 1rem 3rem;
  background-repeat: no-repeat;
  display: block;
  height: 3rem;
  width: 1rem;
}
footer.showBackToTopButton .backToTop {
  opacity: 0.95;
  transition: opacity 0.75s ease-in-out;
}
footer .cleverreach .form-control {
  border-radius: 0;
  font-family: "FoundersGroteskText", sans-serif, system-ui;
  margin-bottom: 0.25rem;
  border: none;
  padding: 0.5rem 0.75rem;
  background-color: #fff;
}
footer .cleverreach .success-message, footer .cleverreach .cleverreach__errors {
  color: #f3d0cb;
  background: #fff;
  padding: 1rem;
}
footer .cleverreach .cleverreach__errors {
  margin-bottom: 0.25rem;
}
footer .cleverreach .cleverreach__errors ul {
  padding-left: 0;
}
footer .cleverreach .cleverreach__errors ul li {
  list-style: none;
  color: #f3d0cb;
}
footer .cleverreach .btn-secondary:hover {
  border: 2px solid #f3d0cb;
}
footer .headline-border-bottom {
  max-width: 100%;
  border: none;
  margin-right: 3.125rem;
}
@media (max-width: 767.98px) {
  footer .headline-border-bottom {
    max-width: 100%;
    margin-left: 0;
  }
}
footer .headline-border-bottom h1, footer .headline-border-bottom h2, footer .headline-border-bottom h3, footer .headline-border-bottom h4, footer .headline-border-bottom h5, footer .headline-border-bottom h6 {
  position: relative;
  display: block;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
  letter-spacing: 0.8;
}
footer .headline-border-bottom h1:after, footer .headline-border-bottom h2:after, footer .headline-border-bottom h3:after, footer .headline-border-bottom h4:after, footer .headline-border-bottom h5:after, footer .headline-border-bottom h6:after {
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: -4px;
}
@media (max-width: 767.98px) {
  footer .footerMain {
    padding: 0 1.5rem;
  }
}
footer .footerMain p, footer .footerMain a, footer .footerMain h1, footer .footerMain h2, footer .footerMain h3, footer .footerMain h4, footer .footerMain h5, footer .footerMain h6, footer .footerMain span, footer .footerMain li {
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.8px;
}
footer .footerMain h5 {
  font-weight: bold;
}
footer .footerMain li {
  padding-bottom: 0.125rem;
}
footer .footerMain .subpages-menu li a {
  font-size: 0.875rem;
}
footer .footerMeta {
  padding-top: calc(3.125rem / 2);
  background-color: #f3d0cb;
}
footer .footerMeta .neos-contentcollection .row {
  margin-bottom: 0;
}
footer .footerMeta .neos-contentcollection .row p {
  text-size: 0.875rem;
}
footer .footerMeta .neos-contentcollection .row p a:hover {
  color: #000000;
}
footer .footerMeta section {
  margin-bottom: 0;
}
footer .footerMeta section .container {
  border: 0;
}
footer .footerMeta section .container:after {
  display: none;
}
footer .footerMeta section .container:before {
  display: none;
  content: "";
}
footer .footerMeta section .container .textelement p, footer .footerMeta section .container .textelement a, footer .footerMeta section .container .textelement span {
  color: #000000;
  font-size: 0.875rem;
  letter-spacing: 0.8px;
}

@media print {
  body {
    background: #fff;
    padding-top: 0 !important;
    color: #000;
    font-family: Georgia, Times, serif;
  }

  .top-navigation-wrap,
.carousel,
.responsive-video {
    display: none;
  }

  .container footer .panel-body {
    display: none;
  }
  .container footer .panel-footer {
    background: #fff;
  }
  .container a {
    font-weight: bold;
    text-decoration: underline;
    color: #06c;
  }
  .container a:after {
    content: " (" attr(href) ") ";
  }
}
.sponsors figure {
  text-align: center;
}

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