@charset "UTF-8";
/**
 * Swiper 11.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 9, 2024
 */
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
  filter: blur(0px);
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
* overwrite card
**/
/**
* border-radius
**/
/**
* badges
**/
/**
* inputs
**/
/**
* btn
**/
/**
* bg-gradient
**/
/*!
 * Bootstrap  v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #064d9d;
  --bs-indigo: #064d9d;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #d20505;
  --bs-orange: #fd7e14;
  --bs-yellow: #eaf500;
  --bs-green: #00eb85;
  --bs-teal: #20c997;
  --bs-cyan: #00b0ff;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #064d9d;
  --bs-secondary: #00b0ff;
  --bs-success: #00eb85;
  --bs-info: #eeefee;
  --bs-warning: #eaf500;
  --bs-danger: #d20505;
  --bs-light: #f8f9fa;
  --bs-dark: #292c34;
  --bs-primary-rgb: 6, 77, 157;
  --bs-secondary-rgb: 0, 176, 255;
  --bs-success-rgb: 0, 235, 133;
  --bs-info-rgb: 238, 239, 238;
  --bs-warning-rgb: 234, 245, 0;
  --bs-danger-rgb: 210, 5, 5;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 41, 44, 52;
  --bs-primary-text-emphasis: #021f3f;
  --bs-secondary-text-emphasis: #004666;
  --bs-success-text-emphasis: #005e35;
  --bs-info-text-emphasis: #5f605f;
  --bs-warning-text-emphasis: #5e6200;
  --bs-danger-text-emphasis: #540202;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cddbeb;
  --bs-secondary-bg-subtle: #ccefff;
  --bs-success-bg-subtle: #ccfbe7;
  --bs-info-bg-subtle: #fcfcfc;
  --bs-warning-bg-subtle: #fbfdcc;
  --bs-danger-bg-subtle: #f6cdcd;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9bb8d8;
  --bs-secondary-border-subtle: #99dfff;
  --bs-success-border-subtle: #99f7ce;
  --bs-info-border-subtle: #f8f9f8;
  --bs-warning-border-subtle: #f7fb99;
  --bs-danger-border-subtle: #ed9b9b;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: "Roboto", sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(18deg, #064d9d, #00b0ff);
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.8;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #064d9d;
  --bs-link-color-rgb: 6, 77, 157;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #053e7e;
  --bs-link-hover-color-rgb: 5, 62, 126;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fbfdcc;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(6, 77, 157, 0.25);
  --bs-form-valid-color: #00eb85;
  --bs-form-valid-border-color: #00eb85;
  --bs-form-invalid-color: #d20505;
  --bs-form-invalid-border-color: #d20505;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6a94c4;
  --bs-secondary-text-emphasis: #66d0ff;
  --bs-success-text-emphasis: #66f3b6;
  --bs-info-text-emphasis: whitesmoke;
  --bs-warning-text-emphasis: #f2f966;
  --bs-danger-text-emphasis: #e46969;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #010f1f;
  --bs-secondary-bg-subtle: #002333;
  --bs-success-bg-subtle: #002f1b;
  --bs-info-bg-subtle: #303030;
  --bs-warning-bg-subtle: #2f3100;
  --bs-danger-bg-subtle: #2a0101;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #042e5e;
  --bs-secondary-border-subtle: #006a99;
  --bs-success-border-subtle: #008d50;
  --bs-info-border-subtle: #8f8f8f;
  --bs-warning-border-subtle: #8c9300;
  --bs-danger-border-subtle: #7e0303;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6a94c4;
  --bs-link-hover-color: #88a9d0;
  --bs-link-color-rgb: 106, 148, 196;
  --bs-link-hover-color-rgb: 136, 169, 208;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #5e6200;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #66f3b6;
  --bs-form-valid-border-color: #66f3b6;
  --bs-form-invalid-color: #e46969;
  --bs-form-invalid-border-color: #e46969;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

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

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--bs-heading-color);
}

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

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

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

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

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

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

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 900;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

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

.figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1500px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

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

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cddbeb;
  --bs-table-border-color: #a4afbc;
  --bs-table-striped-bg: #c3d0df;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b9c5d4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #becbd9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #ccefff;
  --bs-table-border-color: #a3bfcc;
  --bs-table-striped-bg: #c2e3f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8d7e6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdddec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #ccfbe7;
  --bs-table-border-color: #a3c9b9;
  --bs-table-striped-bg: #c2eedb;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8e2d0;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bde8d6;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #fcfcfc;
  --bs-table-border-color: #cacaca;
  --bs-table-striped-bg: #efefef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e3e3e3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e9e9e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fbfdcc;
  --bs-table-border-color: #c9caa3;
  --bs-table-striped-bg: #eef0c2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e2e4b8;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e8eabd;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f6cdcd;
  --bs-table-border-color: #c5a4a4;
  --bs-table-striped-bg: #eac3c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #ddb9b9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e4bebe;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #c6c7c8;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #292c34;
  --bs-table-border-color: #54565d;
  --bs-table-striped-bg: #34373e;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #3e4148;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #393c43;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.8;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #83a6ce;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(6, 77, 157, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.8em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.25rem 1rem;
  margin: -0.25rem -1rem;
  margin-inline-end: 1rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.25rem 0;
  margin-bottom: 0;
  line-height: 1.8;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.8em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.8em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.8em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.8em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.8em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.8em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: calc(1.8em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.8em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.25rem 3rem 0.25rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #83a6ce;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(6, 77, 157, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 1rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 1.8rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-wrapping-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.4em;
  vertical-align: top;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #83a6ce;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(6, 77, 157, 0.25);
}
.form-check-input:checked {
  background-color: #064d9d;
  border-color: #064d9d;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #064d9d;
  border-color: #064d9d;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2383a6ce'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  appearance: none;
  background-color: transparent;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(6, 77, 157, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(6, 77, 157, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  appearance: none;
  background-color: #064d9d;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b4cae2;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  appearance: none;
  background-color: #064d9d;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b4cae2;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem 1rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 1rem;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-select ~ label::after {
  position: absolute;
  inset: 1rem 0.5rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}
.form-floating > :disabled ~ label::after,
.form-floating > .form-control:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.25rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 4rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}

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

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  padding-right: calc(1.8em + 0.5rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300eb85' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.45em + 0.125rem) center;
  background-size: calc(0.9em + 0.25rem) calc(0.9em + 0.25rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.8em + 0.5rem);
  background-position: top calc(0.45em + 0.125rem) right calc(0.45em + 0.125rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300eb85' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  padding-right: 5.5rem;
  background-position: right 1rem center, center right 3rem;
  background-size: 16px 12px, calc(0.9em + 0.25rem) calc(0.9em + 0.25rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.8em + 0.5rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

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

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}

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

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

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.8em + 0.5rem);
  background-position: top calc(0.45em + 0.125rem) right calc(0.45em + 0.125rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23d20505'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23d20505' stroke='none'/%3e%3c/svg%3e");
  padding-right: 5.5rem;
  background-position: right 1rem center, center right 3rem;
  background-size: 16px 12px, calc(0.9em + 0.25rem) calc(0.9em + 0.25rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.8em + 0.5rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

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

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 300;
  --bs-btn-line-height: 1.8;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #064d9d;
  --bs-btn-border-color: #064d9d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #054185;
  --bs-btn-hover-border-color: #053e7e;
  --bs-btn-focus-shadow-rgb: 43, 104, 172;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #053e7e;
  --bs-btn-active-border-color: #053a76;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #064d9d;
  --bs-btn-disabled-border-color: #064d9d;
}

.btn-secondary {
  --bs-btn-color: #000;
  --bs-btn-bg: #00b0ff;
  --bs-btn-border-color: #00b0ff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #26bcff;
  --bs-btn-hover-border-color: #1ab8ff;
  --bs-btn-focus-shadow-rgb: 0, 150, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #33c0ff;
  --bs-btn-active-border-color: #1ab8ff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #00b0ff;
  --bs-btn-disabled-border-color: #00b0ff;
}

.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #00eb85;
  --bs-btn-border-color: #00eb85;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #26ee97;
  --bs-btn-hover-border-color: #1aed91;
  --bs-btn-focus-shadow-rgb: 0, 200, 113;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #33ef9d;
  --bs-btn-active-border-color: #1aed91;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #00eb85;
  --bs-btn-disabled-border-color: #00eb85;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #eeefee;
  --bs-btn-border-color: #eeefee;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f1f1f1;
  --bs-btn-hover-border-color: #f0f1f0;
  --bs-btn-focus-shadow-rgb: 202, 203, 202;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f1f2f1;
  --bs-btn-active-border-color: #f0f1f0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #eeefee;
  --bs-btn-disabled-border-color: #eeefee;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #eaf500;
  --bs-btn-border-color: #eaf500;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #edf726;
  --bs-btn-hover-border-color: #ecf61a;
  --bs-btn-focus-shadow-rgb: 199, 208, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #eef733;
  --bs-btn-active-border-color: #ecf61a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #eaf500;
  --bs-btn-disabled-border-color: #eaf500;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #d20505;
  --bs-btn-border-color: #d20505;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #b30404;
  --bs-btn-hover-border-color: #a80404;
  --bs-btn-focus-shadow-rgb: 217, 43, 43;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a80404;
  --bs-btn-active-border-color: #9e0404;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d20505;
  --bs-btn-disabled-border-color: #d20505;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #292c34;
  --bs-btn-border-color: #292c34;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #494c52;
  --bs-btn-hover-border-color: #3e4148;
  --bs-btn-focus-shadow-rgb: 73, 76, 82;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #54565d;
  --bs-btn-active-border-color: #3e4148;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #292c34;
  --bs-btn-disabled-border-color: #292c34;
}

.btn-outline-primary {
  --bs-btn-color: #064d9d;
  --bs-btn-border-color: #064d9d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #064d9d;
  --bs-btn-hover-border-color: #064d9d;
  --bs-btn-focus-shadow-rgb: 6, 77, 157;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #064d9d;
  --bs-btn-active-border-color: #064d9d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #064d9d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #064d9d;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #00b0ff;
  --bs-btn-border-color: #00b0ff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #00b0ff;
  --bs-btn-hover-border-color: #00b0ff;
  --bs-btn-focus-shadow-rgb: 0, 176, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #00b0ff;
  --bs-btn-active-border-color: #00b0ff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #00b0ff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #00b0ff;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #00eb85;
  --bs-btn-border-color: #00eb85;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #00eb85;
  --bs-btn-hover-border-color: #00eb85;
  --bs-btn-focus-shadow-rgb: 0, 235, 133;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #00eb85;
  --bs-btn-active-border-color: #00eb85;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #00eb85;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #00eb85;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #eeefee;
  --bs-btn-border-color: #eeefee;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #eeefee;
  --bs-btn-hover-border-color: #eeefee;
  --bs-btn-focus-shadow-rgb: 238, 239, 238;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #eeefee;
  --bs-btn-active-border-color: #eeefee;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #eeefee;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #eeefee;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #eaf500;
  --bs-btn-border-color: #eaf500;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #eaf500;
  --bs-btn-hover-border-color: #eaf500;
  --bs-btn-focus-shadow-rgb: 234, 245, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #eaf500;
  --bs-btn-active-border-color: #eaf500;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #eaf500;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #eaf500;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #d20505;
  --bs-btn-border-color: #d20505;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #d20505;
  --bs-btn-hover-border-color: #d20505;
  --bs-btn-focus-shadow-rgb: 210, 5, 5;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #d20505;
  --bs-btn-active-border-color: #d20505;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #d20505;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #d20505;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #292c34;
  --bs-btn-border-color: #292c34;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #292c34;
  --bs-btn-hover-border-color: #292c34;
  --bs-btn-focus-shadow-rgb: 41, 44, 52;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #292c34;
  --bs-btn-active-border-color: #292c34;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #292c34;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #292c34;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 43, 104, 172;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #064d9d;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

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

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

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #064d9d;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: var(--bs-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(var(--bs-border-width) * -1);
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(var(--bs-border-width) * -1);
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(6, 77, 157, 0.25);
}
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #064d9d;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.275rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark,
.navbar[data-bs-theme=dark] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: 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, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme=dark] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: 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, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.locale__flag {
  width: 16px;
  height: 16px;
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0 - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23021f3f' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(6, 77, 157, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}
.accordion-flush > .accordion-item > .accordion-collapse {
  border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a94c4'%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");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a94c4'%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");
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(6, 77, 157, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #064d9d;
  --bs-pagination-active-border-color: #064d9d;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(var(--bs-border-width) * -1);
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

.badge {
  --bs-badge-padding-x: 1rem;
  --bs-badge-padding-y: 0.5rem;
  --bs-badge-font-size: 0.8rem;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: var(--bs-border-radius);
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress,
.progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #064d9d;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-stacked > .progress {
  overflow: visible;
}

.progress-stacked > .progress > .progress-bar {
  width: 100%;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #064d9d;
  --bs-list-group-active-border-color: #064d9d;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(6, 77, 157, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
  filter: var(--bs-btn-close-white-filter);
}

[data-bs-theme=dark] .btn-close {
  filter: var(--bs-btn-close-white-filter);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.8;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

[data-bs-theme=dark] .carousel .carousel-control-prev-icon,
[data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon,
[data-bs-theme=dark].carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  background-color: #000;
}
[data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  color: #000;
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.8;
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-offcanvas-padding-y)) calc(-0.5 * var(--bs-offcanvas-padding-x)) calc(-0.5 * var(--bs-offcanvas-padding-y)) auto;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

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

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

.text-bg-success {
  color: #000 !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

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

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

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

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

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

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(5, 62, 126, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(5, 62, 126, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(51, 192, 255, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(51, 192, 255, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(51, 239, 157, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(51, 239, 157, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(241, 242, 241, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(241, 242, 241, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(238, 247, 51, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(238, 247, 51, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(168, 4, 4, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(168, 4, 4, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(33, 35, 42, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(33, 35, 42, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  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;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

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

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  object-fit: contain !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

.object-fit-fill {
  object-fit: fill !important;
}

.object-fit-scale {
  object-fit: scale-down !important;
}

.object-fit-none {
  object-fit: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: 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-inline-grid {
  display: inline-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: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.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: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

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

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

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

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

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

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

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

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

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

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

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !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;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column-gap-5 {
  column-gap: 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-lighter {
  font-weight: 100 !important;
}

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

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

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

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

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

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

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

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

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

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

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

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

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

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

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

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

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

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

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

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

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

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

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

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

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !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: var(--bs-border-radius) !important;
}

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

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

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

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

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

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

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

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

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

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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;
  }
  .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;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    column-gap: 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;
  }
  .object-fit-md-contain {
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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;
  }
  .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;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    column-gap: 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;
  }
  .object-fit-lg-contain {
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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;
  }
  .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;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    column-gap: 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;
  }
  .object-fit-xl-contain {
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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;
  }
  .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;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    column-gap: 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;
  }
  .object-fit-xxl-contain {
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .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;
  }
  .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;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    column-gap: 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-inline-grid {
    display: inline-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;
  }
}
/* roboto-100 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: url("../Fonts/roboto-v30-latin-100.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-100.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-100.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-100.woff") format("woff"), url("../Fonts/roboto-v30-latin-100.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-100.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-100italic - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  src: url("../Fonts/roboto-v30-latin-100italic.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-100italic.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-100italic.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-100italic.woff") format("woff"), url("../Fonts/roboto-v30-latin-100italic.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-100italic.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../Fonts/roboto-v30-latin-300.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-300.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-300.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-300.woff") format("woff"), url("../Fonts/roboto-v30-latin-300.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-300.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-300italic - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  src: url("../Fonts/roboto-v30-latin-300italic.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-300italic.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-300italic.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-300italic.woff") format("woff"), url("../Fonts/roboto-v30-latin-300italic.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-300italic.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts/roboto-v30-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-regular.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-regular.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-regular.woff") format("woff"), url("../Fonts/roboto-v30-latin-regular.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("../Fonts/roboto-v30-latin-italic.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-italic.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-italic.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-italic.woff") format("woff"), url("../Fonts/roboto-v30-latin-italic.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-italic.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../Fonts/roboto-v30-latin-500.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-500.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-500.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-500.woff") format("woff"), url("../Fonts/roboto-v30-latin-500.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-500.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-500italic - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  src: url("../Fonts/roboto-v30-latin-500italic.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-500italic.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-500italic.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-500italic.woff") format("woff"), url("../Fonts/roboto-v30-latin-500italic.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-500italic.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../Fonts/roboto-v30-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-700.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-700.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-700.woff") format("woff"), url("../Fonts/roboto-v30-latin-700.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-700.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-900 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../Fonts/roboto-v30-latin-900.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-900.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-900.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-900.woff") format("woff"), url("../Fonts/roboto-v30-latin-900.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-900.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-900italic - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  src: url("../Fonts/roboto-v30-latin-900italic.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-900italic.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-900italic.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-900italic.woff") format("woff"), url("../Fonts/roboto-v30-latin-900italic.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-900italic.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-700italic - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  src: url("../Fonts/roboto-v30-latin-700italic.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts/roboto-v30-latin-700italic.eot?#iefix") format("embedded-opentype"), url("../Fonts/roboto-v30-latin-700italic.woff2") format("woff2"), url("../Fonts/roboto-v30-latin-700italic.woff") format("woff"), url("../Fonts/roboto-v30-latin-700italic.ttf") format("truetype"), url("../Fonts/roboto-v30-latin-700italic.svg#Roboto") format("svg"); /* Legacy iOS */
}
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}

.text-gray-light-1 {
  color: #f8f9fa;
}
.text-gray-light-2 {
  color: #d8d8d8;
}
.text-gray-dark {
  color: #343a40;
}
.text-ds {
  color: #cccdcd;
}
.text-cyan {
  color: #1592e6 !important;
}
.text-blue {
  color: #064d9d;
}

.bg-light {
  background-color: #f8f9fa;
}
.bg-dark {
  background-color: #292c34;
}
.bg-gray {
  background-color: #cccdcd;
}

.heading-polygon {
  aspect-ratio: 1/3.5;
  float: left;
  shape-outside: polygon(0 0, 100% 0, 9% 100%, 0% 100%);
}

.heading-1,
.heading-1--light,
.bg-dark .heading-1,
.bg-gradient .heading-1 {
  margin-bottom: 1.25rem;
}
.section__cta .heading-1,
.section__cta .heading-1--light {
  margin-bottom: 0 !important;
}
@media (min-width: 1400px) {
  .heading-1,
  .heading-1--light,
  .bg-dark .heading-1,
  .bg-gradient .heading-1 {
    margin-bottom: 4rem;
  }
}
.heading-1 .heading-space,
.heading-1--light .heading-space {
  aspect-ratio: 0.25;
}
@media (min-width: 1200px) {
  .heading-1 .heading-space,
  .heading-1--light .heading-space {
    aspect-ratio: 0.3448275862;
  }
}

.heading-1__wrapper {
  position: relative;
  display: flex;
  padding: 0.5% 0 0.5% 0;
  margin-top: 0;
}
@media (min-width: 1400px) {
  .heading-1__wrapper {
    margin-top: 0.5rem;
  }
}
.heading-1__wrapper:before {
  content: "";
  color: rgba(255, 255, 255, 0);
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  background-image: url("../Images/svg/weber_slash.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  height: 95%;
  aspect-ratio: 1/2;
}

.heading-1__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
}
@media (min-width: 1400px) {
  .heading-1__subheader {
    font-size: 0.94rem;
  }
}

.heading-1__title {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  font-size: clamp(1.25rem, 6.4vw, 3.44rem);
  line-height: clamp(1.63rem, 8.125vw, 4rem);
}
@media (min-width: 576px) {
  .heading-1__title {
    font-size: clamp(1.25rem, 4vw, 3.44rem);
    line-height: clamp(1.63rem, 4.8vw, 4rem);
  }
}
@media (min-width: 768px) {
  .heading-1__title {
    font-size: clamp(1.25rem, 4vw, 3.44rem);
    line-height: clamp(1.63rem, 4.8vw, 4rem);
  }
}
@media (min-width: 992px) {
  .heading-1__title {
    font-size: clamp(1.25rem, 2.7vw, 3.44rem);
    line-height: clamp(1.63rem, 3.2vw, 4rem);
  }
}
@media (min-width: 1200px) {
  .heading-1__title {
    font-size: clamp(1.25rem, 3vw, 3.44rem);
    line-height: clamp(1.63rem, 3.6vw, 4rem);
  }
}
@media (min-width: 1400px) {
  .heading-1__title {
    font-size: clamp(1.25rem, 6vw, 3.44rem);
    line-height: clamp(1.25rem, 7.2vw, 3.44rem);
  }
}
.section__cta .heading-1__title {
  font-size: 1.625rem;
  line-height: 1.75rem;
}
@media (min-width: 992px) {
  .section__cta .heading-1__title {
    font-size: 3.5rem;
    line-height: 3.75rem;
  }
}
@media screen and (max-width: 1599px) {
  [class*=col-lg-] .heading-1__title br {
    display: none;
  }
}
.heading-1__title > span:first-child {
  display: block;
  float: left;
  clear: left;
}

.heading-1--light, .bg-dark .heading-1,
.bg-gradient .heading-1 {
  color: white;
}
.heading-1--light .heading-1__subheader, .bg-dark .heading-1 .heading-1__subheader,
.bg-gradient .heading-1 .heading-1__subheader {
  color: white;
}

.heading-2,
.heading-2--light,
.bg-dark .heading-2,
.bg-gradient .heading-2 {
  margin-bottom: 1.13rem;
}
.section__cta .heading-2,
.section__cta .heading-2--light {
  margin-bottom: 0 !important;
}
@media (min-width: 1400px) {
  .heading-2,
  .heading-2--light,
  .bg-dark .heading-2,
  .bg-gradient .heading-2 {
    margin-bottom: 3.19rem;
  }
}
.heading-2 .heading-space,
.heading-2--light .heading-space {
  aspect-ratio: 0.3571428571;
}
@media (min-width: 1200px) {
  .heading-2 .heading-space,
  .heading-2--light .heading-space {
    aspect-ratio: 0.3571428571;
  }
}

.heading-2__wrapper {
  position: relative;
  display: flex;
  padding: 0.5% 0 0.5% 0;
  margin-top: 0;
}
@media (min-width: 1400px) {
  .heading-2__wrapper {
    margin-top: 0.25rem;
  }
}
.heading-2__wrapper:before {
  content: "";
  color: rgba(255, 255, 255, 0);
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  background-image: url("../Images/svg/weber_slash.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  height: 95%;
  aspect-ratio: 1/2;
}

.heading-2__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
}
@media (min-width: 1400px) {
  .heading-2__subheader {
    font-size: 0.88rem;
  }
}

.heading-2__title {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  font-size: clamp(1.13rem, 6.4vw, 2.81rem);
  line-height: clamp(1.56rem, 8.125vw, 3.19rem);
}
@media (min-width: 576px) {
  .heading-2__title {
    font-size: clamp(1.13rem, 4vw, 2.81rem);
    line-height: clamp(1.56rem, 4.8vw, 3.19rem);
  }
}
@media (min-width: 768px) {
  .heading-2__title {
    font-size: clamp(1.13rem, 4vw, 2.81rem);
    line-height: clamp(1.56rem, 4.8vw, 3.19rem);
  }
}
@media (min-width: 992px) {
  .heading-2__title {
    font-size: clamp(1.13rem, 2.7vw, 2.81rem);
    line-height: clamp(1.56rem, 3.2vw, 3.19rem);
  }
}
@media (min-width: 1200px) {
  .heading-2__title {
    font-size: clamp(1.13rem, 3vw, 2.81rem);
    line-height: clamp(1.56rem, 3.6vw, 3.19rem);
  }
}
@media (min-width: 1400px) {
  .heading-2__title {
    font-size: clamp(1.13rem, 6vw, 2.81rem);
    line-height: clamp(1.13rem, 7.2vw, 2.81rem);
  }
}
.section__cta .heading-2__title {
  font-size: 1.625rem;
  line-height: 1.75rem;
}
@media (min-width: 992px) {
  .section__cta .heading-2__title {
    font-size: 3.5rem;
    line-height: 3.75rem;
  }
}
@media screen and (max-width: 1599px) {
  [class*=col-lg-] .heading-2__title br {
    display: none;
  }
}
.heading-2__title > span:first-child {
  display: block;
  float: left;
  clear: left;
}

.heading-2--light, .bg-dark .heading-2,
.bg-gradient .heading-2 {
  color: white;
}
.heading-2--light .heading-2__subheader, .bg-dark .heading-2 .heading-2__subheader,
.bg-gradient .heading-2 .heading-2__subheader {
  color: white;
}

.heading-3,
.heading-3--light,
.bg-dark .heading-3,
.bg-gradient .heading-3 {
  margin-bottom: 1rem;
}
.section__cta .heading-3,
.section__cta .heading-3--light {
  margin-bottom: 0 !important;
}
@media (min-width: 1400px) {
  .heading-3,
  .heading-3--light,
  .bg-dark .heading-3,
  .bg-gradient .heading-3 {
    margin-bottom: 2.81rem;
  }
}
.heading-3 .heading-space,
.heading-3--light .heading-space {
  aspect-ratio: 0.3703703704;
}
@media (min-width: 1200px) {
  .heading-3 .heading-space,
  .heading-3--light .heading-space {
    aspect-ratio: 0.3703703704;
  }
}

.heading-3__wrapper {
  position: relative;
  display: flex;
  padding: 0.5% 0 0.5% 0;
  margin-top: 0;
}
@media (min-width: 1400px) {
  .heading-3__wrapper {
    margin-top: 0.17rem;
  }
}
.heading-3__wrapper:before {
  content: "";
  color: rgba(255, 255, 255, 0);
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  background-image: url("../Images/svg/weber_slash.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  height: 95%;
  aspect-ratio: 1/2;
}

.heading-3__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
}
@media (min-width: 1400px) {
  .heading-3__subheader {
    font-size: 0.81rem;
  }
}

.heading-3__title {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  font-size: clamp(1rem, 6.4vw, 2.5rem);
  line-height: clamp(1.44rem, 8.125vw, 2.81rem);
}
@media (min-width: 576px) {
  .heading-3__title {
    font-size: clamp(1rem, 4vw, 2.5rem);
    line-height: clamp(1.44rem, 4.8vw, 2.81rem);
  }
}
@media (min-width: 768px) {
  .heading-3__title {
    font-size: clamp(1rem, 4vw, 2.5rem);
    line-height: clamp(1.44rem, 4.8vw, 2.81rem);
  }
}
@media (min-width: 992px) {
  .heading-3__title {
    font-size: clamp(1rem, 2.7vw, 2.5rem);
    line-height: clamp(1.44rem, 3.2vw, 2.81rem);
  }
}
@media (min-width: 1200px) {
  .heading-3__title {
    font-size: clamp(1rem, 3vw, 2.5rem);
    line-height: clamp(1.44rem, 3.6vw, 2.81rem);
  }
}
@media (min-width: 1400px) {
  .heading-3__title {
    font-size: clamp(1rem, 6vw, 2.5rem);
    line-height: clamp(1rem, 7.2vw, 2.5rem);
  }
}
.section__cta .heading-3__title {
  font-size: 1.625rem;
  line-height: 1.75rem;
}
@media (min-width: 992px) {
  .section__cta .heading-3__title {
    font-size: 3.5rem;
    line-height: 3.75rem;
  }
}
@media screen and (max-width: 1599px) {
  [class*=col-lg-] .heading-3__title br {
    display: none;
  }
}
.heading-3__title > span:first-child {
  display: block;
  float: left;
  clear: left;
}

.heading-3--light, .bg-dark .heading-3,
.bg-gradient .heading-3 {
  color: white;
}
.heading-3--light .heading-3__subheader, .bg-dark .heading-3 .heading-3__subheader,
.bg-gradient .heading-3 .heading-3__subheader {
  color: white;
}

.heading-4,
.heading-4--light,
.bg-dark .heading-4,
.bg-gradient .heading-4 {
  margin-bottom: 1rem;
}
.section__cta .heading-4,
.section__cta .heading-4--light {
  margin-bottom: 0 !important;
}
@media (min-width: 1400px) {
  .heading-4,
  .heading-4--light,
  .bg-dark .heading-4,
  .bg-gradient .heading-4 {
    margin-bottom: 2.56rem;
  }
}
.heading-4 .heading-space,
.heading-4--light .heading-space {
  aspect-ratio: 0.3846153846;
}
@media (min-width: 1200px) {
  .heading-4 .heading-space,
  .heading-4--light .heading-space {
    aspect-ratio: 0.3846153846;
  }
}

.heading-4__wrapper {
  position: relative;
  display: flex;
  padding: 0.5% 0 0.5% 0;
  margin-top: 0;
}
@media (min-width: 1400px) {
  .heading-4__wrapper {
    margin-top: 0.13rem;
  }
}
.heading-4__wrapper:before {
  content: "";
  color: rgba(255, 255, 255, 0);
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  background-image: url("../Images/svg/weber_slash.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  height: 95%;
  aspect-ratio: 1/2;
}

.heading-4__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
}
@media (min-width: 1400px) {
  .heading-4__subheader {
    font-size: 0.75rem;
  }
}

.heading-4__title {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  font-size: clamp(1rem, 6.4vw, 2.25rem);
  line-height: clamp(1.19rem, 8.125vw, 2.56rem);
}
@media (min-width: 576px) {
  .heading-4__title {
    font-size: clamp(1rem, 4vw, 2.25rem);
    line-height: clamp(1.19rem, 4.8vw, 2.56rem);
  }
}
@media (min-width: 768px) {
  .heading-4__title {
    font-size: clamp(1rem, 4vw, 2.25rem);
    line-height: clamp(1.19rem, 4.8vw, 2.56rem);
  }
}
@media (min-width: 992px) {
  .heading-4__title {
    font-size: clamp(1rem, 2.7vw, 2.25rem);
    line-height: clamp(1.19rem, 3.2vw, 2.56rem);
  }
}
@media (min-width: 1200px) {
  .heading-4__title {
    font-size: clamp(1rem, 3vw, 2.25rem);
    line-height: clamp(1.19rem, 3.6vw, 2.56rem);
  }
}
@media (min-width: 1400px) {
  .heading-4__title {
    font-size: clamp(1rem, 6vw, 2.25rem);
    line-height: clamp(1rem, 7.2vw, 2.25rem);
  }
}
.section__cta .heading-4__title {
  font-size: 1.625rem;
  line-height: 1.75rem;
}
@media (min-width: 992px) {
  .section__cta .heading-4__title {
    font-size: 3.5rem;
    line-height: 3.75rem;
  }
}
@media screen and (max-width: 1599px) {
  [class*=col-lg-] .heading-4__title br {
    display: none;
  }
}
.heading-4__title > span:first-child {
  display: block;
  float: left;
  clear: left;
}

.heading-4--light, .bg-dark .heading-4,
.bg-gradient .heading-4 {
  color: white;
}
.heading-4--light .heading-4__subheader, .bg-dark .heading-4 .heading-4__subheader,
.bg-gradient .heading-4 .heading-4__subheader {
  color: white;
}

.heading-5,
.heading-5--light,
.bg-dark .heading-5,
.bg-gradient .heading-5 {
  margin-bottom: 0.88rem;
}
.section__cta .heading-5,
.section__cta .heading-5--light {
  margin-bottom: 0 !important;
}
@media (min-width: 1400px) {
  .heading-5,
  .heading-5--light,
  .bg-dark .heading-5,
  .bg-gradient .heading-5 {
    margin-bottom: 2.25rem;
  }
}
.heading-5 .heading-space,
.heading-5--light .heading-space {
  aspect-ratio: 0.4;
}
@media (min-width: 1200px) {
  .heading-5 .heading-space,
  .heading-5--light .heading-space {
    aspect-ratio: 0.4;
  }
}

.heading-5__wrapper {
  position: relative;
  display: flex;
  padding: 0.5% 0 0.5% 0;
  margin-top: 0;
}
@media (min-width: 1400px) {
  .heading-5__wrapper {
    margin-top: 0.1rem;
  }
}
.heading-5__wrapper:before {
  content: "";
  color: rgba(255, 255, 255, 0);
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  background-image: url("../Images/svg/weber_slash.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  height: 95%;
  aspect-ratio: 1/2;
}

.heading-5__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
}
@media (min-width: 1400px) {
  .heading-5__subheader {
    font-size: 0.69rem;
  }
}

.heading-5__title {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  font-size: clamp(0.88rem, 6.4vw, 1.88rem);
  line-height: clamp(1.06rem, 8.125vw, 2.25rem);
}
@media (min-width: 576px) {
  .heading-5__title {
    font-size: clamp(0.88rem, 4vw, 1.88rem);
    line-height: clamp(1.06rem, 4.8vw, 2.25rem);
  }
}
@media (min-width: 768px) {
  .heading-5__title {
    font-size: clamp(0.88rem, 4vw, 1.88rem);
    line-height: clamp(1.06rem, 4.8vw, 2.25rem);
  }
}
@media (min-width: 992px) {
  .heading-5__title {
    font-size: clamp(0.88rem, 2.7vw, 1.88rem);
    line-height: clamp(1.06rem, 3.2vw, 2.25rem);
  }
}
@media (min-width: 1200px) {
  .heading-5__title {
    font-size: clamp(0.88rem, 3vw, 1.88rem);
    line-height: clamp(1.06rem, 3.6vw, 2.25rem);
  }
}
@media (min-width: 1400px) {
  .heading-5__title {
    font-size: clamp(0.88rem, 6vw, 1.88rem);
    line-height: clamp(0.88rem, 7.2vw, 1.88rem);
  }
}
.section__cta .heading-5__title {
  font-size: 1.625rem;
  line-height: 1.75rem;
}
@media (min-width: 992px) {
  .section__cta .heading-5__title {
    font-size: 3.5rem;
    line-height: 3.75rem;
  }
}
@media screen and (max-width: 1599px) {
  [class*=col-lg-] .heading-5__title br {
    display: none;
  }
}
.heading-5__title > span:first-child {
  display: block;
  float: left;
  clear: left;
}

.heading-5--light, .bg-dark .heading-5,
.bg-gradient .heading-5 {
  color: white;
}
.heading-5--light .heading-5__subheader, .bg-dark .heading-5 .heading-5__subheader,
.bg-gradient .heading-5 .heading-5__subheader {
  color: white;
}

.heading-6,
.heading-6--light,
.bg-dark .heading-6,
.bg-gradient .heading-6 {
  margin-bottom: 0.88rem;
}
.section__cta .heading-6,
.section__cta .heading-6--light {
  margin-bottom: 0 !important;
}
@media (min-width: 1400px) {
  .heading-6,
  .heading-6--light,
  .bg-dark .heading-6,
  .bg-gradient .heading-6 {
    margin-bottom: 1.94rem;
  }
}
.heading-6 .heading-space,
.heading-6--light .heading-space {
  aspect-ratio: 0.4166666667;
}
@media (min-width: 1200px) {
  .heading-6 .heading-space,
  .heading-6--light .heading-space {
    aspect-ratio: 0.4166666667;
  }
}

.heading-6__wrapper {
  position: relative;
  display: flex;
  padding: 0.5% 0 0.5% 0;
  margin-top: 0;
}
@media (min-width: 1400px) {
  .heading-6__wrapper {
    margin-top: 0.08rem;
  }
}
.heading-6__wrapper:before {
  content: "";
  color: rgba(255, 255, 255, 0);
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  background-image: url("../Images/svg/weber_slash.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  height: 95%;
  aspect-ratio: 1/2;
}

.heading-6__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
}
@media (min-width: 1400px) {
  .heading-6__subheader {
    font-size: 0.63rem;
  }
}

.heading-6__title {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  font-size: clamp(0.88rem, 6.4vw, 1.56rem);
  line-height: clamp(1.06rem, 8.125vw, 1.94rem);
}
@media (min-width: 576px) {
  .heading-6__title {
    font-size: clamp(0.88rem, 4vw, 1.56rem);
    line-height: clamp(1.06rem, 4.8vw, 1.94rem);
  }
}
@media (min-width: 768px) {
  .heading-6__title {
    font-size: clamp(0.88rem, 4vw, 1.56rem);
    line-height: clamp(1.06rem, 4.8vw, 1.94rem);
  }
}
@media (min-width: 992px) {
  .heading-6__title {
    font-size: clamp(0.88rem, 2.7vw, 1.56rem);
    line-height: clamp(1.06rem, 3.2vw, 1.94rem);
  }
}
@media (min-width: 1200px) {
  .heading-6__title {
    font-size: clamp(0.88rem, 3vw, 1.56rem);
    line-height: clamp(1.06rem, 3.6vw, 1.94rem);
  }
}
@media (min-width: 1400px) {
  .heading-6__title {
    font-size: clamp(0.88rem, 6vw, 1.56rem);
    line-height: clamp(0.88rem, 7.2vw, 1.56rem);
  }
}
.section__cta .heading-6__title {
  font-size: 1.625rem;
  line-height: 1.75rem;
}
@media (min-width: 992px) {
  .section__cta .heading-6__title {
    font-size: 3.5rem;
    line-height: 3.75rem;
  }
}
@media screen and (max-width: 1599px) {
  [class*=col-lg-] .heading-6__title br {
    display: none;
  }
}
.heading-6__title > span:first-child {
  display: block;
  float: left;
  clear: left;
}

.heading-6--light, .bg-dark .heading-6,
.bg-gradient .heading-6 {
  color: white;
}
.heading-6--light .heading-6__subheader, .bg-dark .heading-6 .heading-6__subheader,
.bg-gradient .heading-6 .heading-6__subheader {
  color: white;
}

.heading-1--lh {
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 1.25rem;
  font-size: clamp(1.25rem, 6.4vw, 3.44rem);
  line-height: clamp(1.63rem, 8.125vw, 4rem);
}
@media (min-width: 576px) {
  .heading-1--lh {
    font-size: clamp(1.25rem, 4vw, 3.44rem);
    line-height: clamp(1.63rem, 4.8vw, 4rem);
  }
}
@media (min-width: 768px) {
  .heading-1--lh {
    font-size: clamp(1.25rem, 4vw, 3.44rem);
    line-height: clamp(1.63rem, 4.8vw, 4rem);
  }
}
@media (min-width: 992px) {
  .heading-1--lh {
    font-size: clamp(1.25rem, 2.7vw, 3.44rem);
    line-height: clamp(1.63rem, 3.2vw, 4rem);
  }
}
@media (min-width: 1200px) {
  .heading-1--lh {
    font-size: clamp(1.25rem, 3vw, 3.44rem);
    line-height: clamp(1.63rem, 3.6vw, 4rem);
  }
}
@media (min-width: 1400px) {
  .heading-1--lh {
    font-size: clamp(1.25rem, 6vw, 3.44rem);
    line-height: clamp(1.25rem, 7.2vw, 3.44rem);
    margin-bottom: 4rem;
  }
}
.heading-1--lh:hover {
  color: #1592e6;
}
.heading-1--lh:hover .heading-1--lh__link {
  color: #1592e6;
}
.heading-1--lh:hover .heading-1--lh__link b,
.heading-1--lh:hover .heading-1--lh__link strong,
.heading-1--lh:hover .heading-1--lh__link span {
  color: #1592e6;
}
.heading-1--lh__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-1--lh__link b,
.heading-1--lh__link strong {
  color: #292c34;
  font-weight: bold;
}
.heading-1--lh__link b:after,
.heading-1--lh__link strong:after {
  content: " ";
}
.heading-1--lh__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 1.875rem;
}
@media (min-width: 1400px) {
  .heading-1--lh__icon {
    font-size: 1.875rem;
  }
}

.heading-1--lh-light, .bg-dark .heading-1--lh,
.bg-gradient .heading-1--lh {
  display: flex;
  align-items: center;
  color: #cccdcd;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
}
.heading-1--lh-light:hover, .bg-dark .heading-1--lh:hover,
.bg-gradient .heading-1--lh:hover {
  color: #1592e6;
}
.heading-1--lh-light:hover .heading-1--lh__link, .bg-dark .heading-1--lh:hover .heading-1--lh__link,
.bg-gradient .heading-1--lh:hover .heading-1--lh__link {
  color: #1592e6;
}
.heading-1--lh-light:hover .heading-1--lh__link b, .bg-dark .heading-1--lh:hover .heading-1--lh__link b,
.bg-gradient .heading-1--lh:hover .heading-1--lh__link b,
.heading-1--lh-light:hover .heading-1--lh__link strong,
.bg-dark .heading-1--lh:hover .heading-1--lh__link strong,
.bg-gradient .heading-1--lh:hover .heading-1--lh__link strong,
.heading-1--lh-light:hover .heading-1--lh__link span,
.bg-dark .heading-1--lh:hover .heading-1--lh__link span,
.bg-gradient .heading-1--lh:hover .heading-1--lh__link span {
  color: #1592e6;
}
@media (min-width: 1400px) {
  .heading-1--lh-light, .bg-dark .heading-1--lh,
  .bg-gradient .heading-1--lh {
    font-size: 3.44rem;
    line-height: 4rem;
    margin-bottom: 4rem;
  }
}
.heading-1--lh-light .heading-1--lh__link b, .bg-dark .heading-1--lh .heading-1--lh__link b,
.bg-gradient .heading-1--lh .heading-1--lh__link b,
.heading-1--lh-light .heading-1--lh__link strong,
.bg-dark .heading-1--lh .heading-1--lh__link strong,
.bg-gradient .heading-1--lh .heading-1--lh__link strong {
  color: white;
}
.heading-1--lh-light .heading-2--lh__link b, .bg-dark .heading-1--lh .heading-2--lh__link b,
.bg-gradient .heading-1--lh .heading-2--lh__link b,
.heading-1--lh-light .heading-2--lh__link strong,
.bg-dark .heading-1--lh .heading-2--lh__link strong,
.bg-gradient .heading-1--lh .heading-2--lh__link strong {
  color: white;
}
.heading-1--lh-light .heading-3--lh__link b, .bg-dark .heading-1--lh .heading-3--lh__link b,
.bg-gradient .heading-1--lh .heading-3--lh__link b,
.heading-1--lh-light .heading-3--lh__link strong,
.bg-dark .heading-1--lh .heading-3--lh__link strong,
.bg-gradient .heading-1--lh .heading-3--lh__link strong {
  color: white;
}
.heading-1--lh-light .heading-4--lh__link b, .bg-dark .heading-1--lh .heading-4--lh__link b,
.bg-gradient .heading-1--lh .heading-4--lh__link b,
.heading-1--lh-light .heading-4--lh__link strong,
.bg-dark .heading-1--lh .heading-4--lh__link strong,
.bg-gradient .heading-1--lh .heading-4--lh__link strong {
  color: white;
}
.heading-1--lh-light .heading-5--lh__link b, .bg-dark .heading-1--lh .heading-5--lh__link b,
.bg-gradient .heading-1--lh .heading-5--lh__link b,
.heading-1--lh-light .heading-5--lh__link strong,
.bg-dark .heading-1--lh .heading-5--lh__link strong,
.bg-gradient .heading-1--lh .heading-5--lh__link strong {
  color: white;
}
.heading-1--lh-light .heading-6--lh__link b, .bg-dark .heading-1--lh .heading-6--lh__link b,
.bg-gradient .heading-1--lh .heading-6--lh__link b,
.heading-1--lh-light .heading-6--lh__link strong,
.bg-dark .heading-1--lh .heading-6--lh__link strong,
.bg-gradient .heading-1--lh .heading-6--lh__link strong {
  color: white;
}

.heading-2--lh {
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 1.13rem;
  font-size: clamp(1.13rem, 6.4vw, 2.81rem);
  line-height: clamp(1.56rem, 8.125vw, 3.19rem);
}
@media (min-width: 576px) {
  .heading-2--lh {
    font-size: clamp(1.13rem, 4vw, 2.81rem);
    line-height: clamp(1.56rem, 4.8vw, 3.19rem);
  }
}
@media (min-width: 768px) {
  .heading-2--lh {
    font-size: clamp(1.13rem, 4vw, 2.81rem);
    line-height: clamp(1.56rem, 4.8vw, 3.19rem);
  }
}
@media (min-width: 992px) {
  .heading-2--lh {
    font-size: clamp(1.13rem, 2.7vw, 2.81rem);
    line-height: clamp(1.56rem, 3.2vw, 3.19rem);
  }
}
@media (min-width: 1200px) {
  .heading-2--lh {
    font-size: clamp(1.13rem, 3vw, 2.81rem);
    line-height: clamp(1.56rem, 3.6vw, 3.19rem);
  }
}
@media (min-width: 1400px) {
  .heading-2--lh {
    font-size: clamp(1.13rem, 6vw, 2.81rem);
    line-height: clamp(1.13rem, 7.2vw, 2.81rem);
    margin-bottom: 3.19rem;
  }
}
.heading-2--lh:hover {
  color: #1592e6;
}
.heading-2--lh:hover .heading-2--lh__link {
  color: #1592e6;
}
.heading-2--lh:hover .heading-2--lh__link b,
.heading-2--lh:hover .heading-2--lh__link strong,
.heading-2--lh:hover .heading-2--lh__link span {
  color: #1592e6;
}
.heading-2--lh__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-2--lh__link b,
.heading-2--lh__link strong {
  color: #292c34;
  font-weight: bold;
}
.heading-2--lh__link b:after,
.heading-2--lh__link strong:after {
  content: " ";
}
.heading-2--lh__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 1.625rem;
}
@media (min-width: 1400px) {
  .heading-2--lh__icon {
    font-size: 1.625rem;
  }
}

.heading-2--lh-light, .bg-dark .heading-2--lh,
.bg-gradient .heading-2--lh {
  display: flex;
  align-items: center;
  color: #cccdcd;
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.13rem;
  margin-bottom: 1.13rem;
}
.heading-2--lh-light:hover, .bg-dark .heading-2--lh:hover,
.bg-gradient .heading-2--lh:hover {
  color: #1592e6;
}
.heading-2--lh-light:hover .heading-2--lh__link, .bg-dark .heading-2--lh:hover .heading-2--lh__link,
.bg-gradient .heading-2--lh:hover .heading-2--lh__link {
  color: #1592e6;
}
.heading-2--lh-light:hover .heading-2--lh__link b, .bg-dark .heading-2--lh:hover .heading-2--lh__link b,
.bg-gradient .heading-2--lh:hover .heading-2--lh__link b,
.heading-2--lh-light:hover .heading-2--lh__link strong,
.bg-dark .heading-2--lh:hover .heading-2--lh__link strong,
.bg-gradient .heading-2--lh:hover .heading-2--lh__link strong,
.heading-2--lh-light:hover .heading-2--lh__link span,
.bg-dark .heading-2--lh:hover .heading-2--lh__link span,
.bg-gradient .heading-2--lh:hover .heading-2--lh__link span {
  color: #1592e6;
}
@media (min-width: 1400px) {
  .heading-2--lh-light, .bg-dark .heading-2--lh,
  .bg-gradient .heading-2--lh {
    font-size: 2.81rem;
    line-height: 3.19rem;
    margin-bottom: 3.19rem;
  }
}
.heading-2--lh-light .heading-1--lh__link b, .bg-dark .heading-2--lh .heading-1--lh__link b,
.bg-gradient .heading-2--lh .heading-1--lh__link b,
.heading-2--lh-light .heading-1--lh__link strong,
.bg-dark .heading-2--lh .heading-1--lh__link strong,
.bg-gradient .heading-2--lh .heading-1--lh__link strong {
  color: white;
}
.heading-2--lh-light .heading-2--lh__link b, .bg-dark .heading-2--lh .heading-2--lh__link b,
.bg-gradient .heading-2--lh .heading-2--lh__link b,
.heading-2--lh-light .heading-2--lh__link strong,
.bg-dark .heading-2--lh .heading-2--lh__link strong,
.bg-gradient .heading-2--lh .heading-2--lh__link strong {
  color: white;
}
.heading-2--lh-light .heading-3--lh__link b, .bg-dark .heading-2--lh .heading-3--lh__link b,
.bg-gradient .heading-2--lh .heading-3--lh__link b,
.heading-2--lh-light .heading-3--lh__link strong,
.bg-dark .heading-2--lh .heading-3--lh__link strong,
.bg-gradient .heading-2--lh .heading-3--lh__link strong {
  color: white;
}
.heading-2--lh-light .heading-4--lh__link b, .bg-dark .heading-2--lh .heading-4--lh__link b,
.bg-gradient .heading-2--lh .heading-4--lh__link b,
.heading-2--lh-light .heading-4--lh__link strong,
.bg-dark .heading-2--lh .heading-4--lh__link strong,
.bg-gradient .heading-2--lh .heading-4--lh__link strong {
  color: white;
}
.heading-2--lh-light .heading-5--lh__link b, .bg-dark .heading-2--lh .heading-5--lh__link b,
.bg-gradient .heading-2--lh .heading-5--lh__link b,
.heading-2--lh-light .heading-5--lh__link strong,
.bg-dark .heading-2--lh .heading-5--lh__link strong,
.bg-gradient .heading-2--lh .heading-5--lh__link strong {
  color: white;
}
.heading-2--lh-light .heading-6--lh__link b, .bg-dark .heading-2--lh .heading-6--lh__link b,
.bg-gradient .heading-2--lh .heading-6--lh__link b,
.heading-2--lh-light .heading-6--lh__link strong,
.bg-dark .heading-2--lh .heading-6--lh__link strong,
.bg-gradient .heading-2--lh .heading-6--lh__link strong {
  color: white;
}

.heading-3--lh {
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 6.4vw, 2.5rem);
  line-height: clamp(1.44rem, 8.125vw, 2.81rem);
}
@media (min-width: 576px) {
  .heading-3--lh {
    font-size: clamp(1rem, 4vw, 2.5rem);
    line-height: clamp(1.44rem, 4.8vw, 2.81rem);
  }
}
@media (min-width: 768px) {
  .heading-3--lh {
    font-size: clamp(1rem, 4vw, 2.5rem);
    line-height: clamp(1.44rem, 4.8vw, 2.81rem);
  }
}
@media (min-width: 992px) {
  .heading-3--lh {
    font-size: clamp(1rem, 2.7vw, 2.5rem);
    line-height: clamp(1.44rem, 3.2vw, 2.81rem);
  }
}
@media (min-width: 1200px) {
  .heading-3--lh {
    font-size: clamp(1rem, 3vw, 2.5rem);
    line-height: clamp(1.44rem, 3.6vw, 2.81rem);
  }
}
@media (min-width: 1400px) {
  .heading-3--lh {
    font-size: clamp(1rem, 6vw, 2.5rem);
    line-height: clamp(1rem, 7.2vw, 2.5rem);
    margin-bottom: 2.81rem;
  }
}
.heading-3--lh:hover {
  color: #1592e6;
}
.heading-3--lh:hover .heading-3--lh__link {
  color: #1592e6;
}
.heading-3--lh:hover .heading-3--lh__link b,
.heading-3--lh:hover .heading-3--lh__link strong,
.heading-3--lh:hover .heading-3--lh__link span {
  color: #1592e6;
}
.heading-3--lh__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-3--lh__link b,
.heading-3--lh__link strong {
  color: #292c34;
  font-weight: bold;
}
.heading-3--lh__link b:after,
.heading-3--lh__link strong:after {
  content: " ";
}
.heading-3--lh__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 1.375rem;
}
@media (min-width: 1400px) {
  .heading-3--lh__icon {
    font-size: 1.375rem;
  }
}

.heading-3--lh-light, .bg-dark .heading-3--lh,
.bg-gradient .heading-3--lh {
  display: flex;
  align-items: center;
  color: #cccdcd;
  margin: 0;
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 1rem;
}
.heading-3--lh-light:hover, .bg-dark .heading-3--lh:hover,
.bg-gradient .heading-3--lh:hover {
  color: #1592e6;
}
.heading-3--lh-light:hover .heading-3--lh__link, .bg-dark .heading-3--lh:hover .heading-3--lh__link,
.bg-gradient .heading-3--lh:hover .heading-3--lh__link {
  color: #1592e6;
}
.heading-3--lh-light:hover .heading-3--lh__link b, .bg-dark .heading-3--lh:hover .heading-3--lh__link b,
.bg-gradient .heading-3--lh:hover .heading-3--lh__link b,
.heading-3--lh-light:hover .heading-3--lh__link strong,
.bg-dark .heading-3--lh:hover .heading-3--lh__link strong,
.bg-gradient .heading-3--lh:hover .heading-3--lh__link strong,
.heading-3--lh-light:hover .heading-3--lh__link span,
.bg-dark .heading-3--lh:hover .heading-3--lh__link span,
.bg-gradient .heading-3--lh:hover .heading-3--lh__link span {
  color: #1592e6;
}
@media (min-width: 1400px) {
  .heading-3--lh-light, .bg-dark .heading-3--lh,
  .bg-gradient .heading-3--lh {
    font-size: 2.5rem;
    line-height: 2.81rem;
    margin-bottom: 2.81rem;
  }
}
.heading-3--lh-light .heading-1--lh__link b, .bg-dark .heading-3--lh .heading-1--lh__link b,
.bg-gradient .heading-3--lh .heading-1--lh__link b,
.heading-3--lh-light .heading-1--lh__link strong,
.bg-dark .heading-3--lh .heading-1--lh__link strong,
.bg-gradient .heading-3--lh .heading-1--lh__link strong {
  color: white;
}
.heading-3--lh-light .heading-2--lh__link b, .bg-dark .heading-3--lh .heading-2--lh__link b,
.bg-gradient .heading-3--lh .heading-2--lh__link b,
.heading-3--lh-light .heading-2--lh__link strong,
.bg-dark .heading-3--lh .heading-2--lh__link strong,
.bg-gradient .heading-3--lh .heading-2--lh__link strong {
  color: white;
}
.heading-3--lh-light .heading-3--lh__link b, .bg-dark .heading-3--lh .heading-3--lh__link b,
.bg-gradient .heading-3--lh .heading-3--lh__link b,
.heading-3--lh-light .heading-3--lh__link strong,
.bg-dark .heading-3--lh .heading-3--lh__link strong,
.bg-gradient .heading-3--lh .heading-3--lh__link strong {
  color: white;
}
.heading-3--lh-light .heading-4--lh__link b, .bg-dark .heading-3--lh .heading-4--lh__link b,
.bg-gradient .heading-3--lh .heading-4--lh__link b,
.heading-3--lh-light .heading-4--lh__link strong,
.bg-dark .heading-3--lh .heading-4--lh__link strong,
.bg-gradient .heading-3--lh .heading-4--lh__link strong {
  color: white;
}
.heading-3--lh-light .heading-5--lh__link b, .bg-dark .heading-3--lh .heading-5--lh__link b,
.bg-gradient .heading-3--lh .heading-5--lh__link b,
.heading-3--lh-light .heading-5--lh__link strong,
.bg-dark .heading-3--lh .heading-5--lh__link strong,
.bg-gradient .heading-3--lh .heading-5--lh__link strong {
  color: white;
}
.heading-3--lh-light .heading-6--lh__link b, .bg-dark .heading-3--lh .heading-6--lh__link b,
.bg-gradient .heading-3--lh .heading-6--lh__link b,
.heading-3--lh-light .heading-6--lh__link strong,
.bg-dark .heading-3--lh .heading-6--lh__link strong,
.bg-gradient .heading-3--lh .heading-6--lh__link strong {
  color: white;
}

.heading-4--lh {
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 6.4vw, 2.25rem);
  line-height: clamp(1.19rem, 8.125vw, 2.56rem);
}
@media (min-width: 576px) {
  .heading-4--lh {
    font-size: clamp(1rem, 4vw, 2.25rem);
    line-height: clamp(1.19rem, 4.8vw, 2.56rem);
  }
}
@media (min-width: 768px) {
  .heading-4--lh {
    font-size: clamp(1rem, 4vw, 2.25rem);
    line-height: clamp(1.19rem, 4.8vw, 2.56rem);
  }
}
@media (min-width: 992px) {
  .heading-4--lh {
    font-size: clamp(1rem, 2.7vw, 2.25rem);
    line-height: clamp(1.19rem, 3.2vw, 2.56rem);
  }
}
@media (min-width: 1200px) {
  .heading-4--lh {
    font-size: clamp(1rem, 3vw, 2.25rem);
    line-height: clamp(1.19rem, 3.6vw, 2.56rem);
  }
}
@media (min-width: 1400px) {
  .heading-4--lh {
    font-size: clamp(1rem, 6vw, 2.25rem);
    line-height: clamp(1rem, 7.2vw, 2.25rem);
    margin-bottom: 2.56rem;
  }
}
.heading-4--lh:hover {
  color: #1592e6;
}
.heading-4--lh:hover .heading-4--lh__link {
  color: #1592e6;
}
.heading-4--lh:hover .heading-4--lh__link b,
.heading-4--lh:hover .heading-4--lh__link strong,
.heading-4--lh:hover .heading-4--lh__link span {
  color: #1592e6;
}
.heading-4--lh__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-4--lh__link b,
.heading-4--lh__link strong {
  color: #292c34;
  font-weight: bold;
}
.heading-4--lh__link b:after,
.heading-4--lh__link strong:after {
  content: " ";
}
.heading-4--lh__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 1.125rem;
}
@media (min-width: 1400px) {
  .heading-4--lh__icon {
    font-size: 1.125rem;
  }
}

.heading-4--lh-light, .bg-dark .heading-4--lh,
.bg-gradient .heading-4--lh {
  display: flex;
  align-items: center;
  color: #cccdcd;
  margin: 0;
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 1rem;
}
.heading-4--lh-light:hover, .bg-dark .heading-4--lh:hover,
.bg-gradient .heading-4--lh:hover {
  color: #1592e6;
}
.heading-4--lh-light:hover .heading-4--lh__link, .bg-dark .heading-4--lh:hover .heading-4--lh__link,
.bg-gradient .heading-4--lh:hover .heading-4--lh__link {
  color: #1592e6;
}
.heading-4--lh-light:hover .heading-4--lh__link b, .bg-dark .heading-4--lh:hover .heading-4--lh__link b,
.bg-gradient .heading-4--lh:hover .heading-4--lh__link b,
.heading-4--lh-light:hover .heading-4--lh__link strong,
.bg-dark .heading-4--lh:hover .heading-4--lh__link strong,
.bg-gradient .heading-4--lh:hover .heading-4--lh__link strong,
.heading-4--lh-light:hover .heading-4--lh__link span,
.bg-dark .heading-4--lh:hover .heading-4--lh__link span,
.bg-gradient .heading-4--lh:hover .heading-4--lh__link span {
  color: #1592e6;
}
@media (min-width: 1400px) {
  .heading-4--lh-light, .bg-dark .heading-4--lh,
  .bg-gradient .heading-4--lh {
    font-size: 2.25rem;
    line-height: 2.56rem;
    margin-bottom: 2.56rem;
  }
}
.heading-4--lh-light .heading-1--lh__link b, .bg-dark .heading-4--lh .heading-1--lh__link b,
.bg-gradient .heading-4--lh .heading-1--lh__link b,
.heading-4--lh-light .heading-1--lh__link strong,
.bg-dark .heading-4--lh .heading-1--lh__link strong,
.bg-gradient .heading-4--lh .heading-1--lh__link strong {
  color: white;
}
.heading-4--lh-light .heading-2--lh__link b, .bg-dark .heading-4--lh .heading-2--lh__link b,
.bg-gradient .heading-4--lh .heading-2--lh__link b,
.heading-4--lh-light .heading-2--lh__link strong,
.bg-dark .heading-4--lh .heading-2--lh__link strong,
.bg-gradient .heading-4--lh .heading-2--lh__link strong {
  color: white;
}
.heading-4--lh-light .heading-3--lh__link b, .bg-dark .heading-4--lh .heading-3--lh__link b,
.bg-gradient .heading-4--lh .heading-3--lh__link b,
.heading-4--lh-light .heading-3--lh__link strong,
.bg-dark .heading-4--lh .heading-3--lh__link strong,
.bg-gradient .heading-4--lh .heading-3--lh__link strong {
  color: white;
}
.heading-4--lh-light .heading-4--lh__link b, .bg-dark .heading-4--lh .heading-4--lh__link b,
.bg-gradient .heading-4--lh .heading-4--lh__link b,
.heading-4--lh-light .heading-4--lh__link strong,
.bg-dark .heading-4--lh .heading-4--lh__link strong,
.bg-gradient .heading-4--lh .heading-4--lh__link strong {
  color: white;
}
.heading-4--lh-light .heading-5--lh__link b, .bg-dark .heading-4--lh .heading-5--lh__link b,
.bg-gradient .heading-4--lh .heading-5--lh__link b,
.heading-4--lh-light .heading-5--lh__link strong,
.bg-dark .heading-4--lh .heading-5--lh__link strong,
.bg-gradient .heading-4--lh .heading-5--lh__link strong {
  color: white;
}
.heading-4--lh-light .heading-6--lh__link b, .bg-dark .heading-4--lh .heading-6--lh__link b,
.bg-gradient .heading-4--lh .heading-6--lh__link b,
.heading-4--lh-light .heading-6--lh__link strong,
.bg-dark .heading-4--lh .heading-6--lh__link strong,
.bg-gradient .heading-4--lh .heading-6--lh__link strong {
  color: white;
}

.heading-5--lh {
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 0.88rem;
  font-size: clamp(0.88rem, 6.4vw, 1.88rem);
  line-height: clamp(1.06rem, 8.125vw, 2.25rem);
}
@media (min-width: 576px) {
  .heading-5--lh {
    font-size: clamp(0.88rem, 4vw, 1.88rem);
    line-height: clamp(1.06rem, 4.8vw, 2.25rem);
  }
}
@media (min-width: 768px) {
  .heading-5--lh {
    font-size: clamp(0.88rem, 4vw, 1.88rem);
    line-height: clamp(1.06rem, 4.8vw, 2.25rem);
  }
}
@media (min-width: 992px) {
  .heading-5--lh {
    font-size: clamp(0.88rem, 2.7vw, 1.88rem);
    line-height: clamp(1.06rem, 3.2vw, 2.25rem);
  }
}
@media (min-width: 1200px) {
  .heading-5--lh {
    font-size: clamp(0.88rem, 3vw, 1.88rem);
    line-height: clamp(1.06rem, 3.6vw, 2.25rem);
  }
}
@media (min-width: 1400px) {
  .heading-5--lh {
    font-size: clamp(0.88rem, 6vw, 1.88rem);
    line-height: clamp(0.88rem, 7.2vw, 1.88rem);
    margin-bottom: 2.25rem;
  }
}
.heading-5--lh:hover {
  color: #1592e6;
}
.heading-5--lh:hover .heading-5--lh__link {
  color: #1592e6;
}
.heading-5--lh:hover .heading-5--lh__link b,
.heading-5--lh:hover .heading-5--lh__link strong,
.heading-5--lh:hover .heading-5--lh__link span {
  color: #1592e6;
}
.heading-5--lh__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-5--lh__link b,
.heading-5--lh__link strong {
  color: #292c34;
  font-weight: bold;
}
.heading-5--lh__link b:after,
.heading-5--lh__link strong:after {
  content: " ";
}
.heading-5--lh__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 0.875rem;
}
@media (min-width: 1400px) {
  .heading-5--lh__icon {
    font-size: 0.875rem;
  }
}

.heading-5--lh-light, .bg-dark .heading-5--lh,
.bg-gradient .heading-5--lh {
  display: flex;
  align-items: center;
  color: #cccdcd;
  margin: 0;
  font-size: 0.88rem;
  line-height: 0.88rem;
  margin-bottom: 0.88rem;
}
.heading-5--lh-light:hover, .bg-dark .heading-5--lh:hover,
.bg-gradient .heading-5--lh:hover {
  color: #1592e6;
}
.heading-5--lh-light:hover .heading-5--lh__link, .bg-dark .heading-5--lh:hover .heading-5--lh__link,
.bg-gradient .heading-5--lh:hover .heading-5--lh__link {
  color: #1592e6;
}
.heading-5--lh-light:hover .heading-5--lh__link b, .bg-dark .heading-5--lh:hover .heading-5--lh__link b,
.bg-gradient .heading-5--lh:hover .heading-5--lh__link b,
.heading-5--lh-light:hover .heading-5--lh__link strong,
.bg-dark .heading-5--lh:hover .heading-5--lh__link strong,
.bg-gradient .heading-5--lh:hover .heading-5--lh__link strong,
.heading-5--lh-light:hover .heading-5--lh__link span,
.bg-dark .heading-5--lh:hover .heading-5--lh__link span,
.bg-gradient .heading-5--lh:hover .heading-5--lh__link span {
  color: #1592e6;
}
@media (min-width: 1400px) {
  .heading-5--lh-light, .bg-dark .heading-5--lh,
  .bg-gradient .heading-5--lh {
    font-size: 1.88rem;
    line-height: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
.heading-5--lh-light .heading-1--lh__link b, .bg-dark .heading-5--lh .heading-1--lh__link b,
.bg-gradient .heading-5--lh .heading-1--lh__link b,
.heading-5--lh-light .heading-1--lh__link strong,
.bg-dark .heading-5--lh .heading-1--lh__link strong,
.bg-gradient .heading-5--lh .heading-1--lh__link strong {
  color: white;
}
.heading-5--lh-light .heading-2--lh__link b, .bg-dark .heading-5--lh .heading-2--lh__link b,
.bg-gradient .heading-5--lh .heading-2--lh__link b,
.heading-5--lh-light .heading-2--lh__link strong,
.bg-dark .heading-5--lh .heading-2--lh__link strong,
.bg-gradient .heading-5--lh .heading-2--lh__link strong {
  color: white;
}
.heading-5--lh-light .heading-3--lh__link b, .bg-dark .heading-5--lh .heading-3--lh__link b,
.bg-gradient .heading-5--lh .heading-3--lh__link b,
.heading-5--lh-light .heading-3--lh__link strong,
.bg-dark .heading-5--lh .heading-3--lh__link strong,
.bg-gradient .heading-5--lh .heading-3--lh__link strong {
  color: white;
}
.heading-5--lh-light .heading-4--lh__link b, .bg-dark .heading-5--lh .heading-4--lh__link b,
.bg-gradient .heading-5--lh .heading-4--lh__link b,
.heading-5--lh-light .heading-4--lh__link strong,
.bg-dark .heading-5--lh .heading-4--lh__link strong,
.bg-gradient .heading-5--lh .heading-4--lh__link strong {
  color: white;
}
.heading-5--lh-light .heading-5--lh__link b, .bg-dark .heading-5--lh .heading-5--lh__link b,
.bg-gradient .heading-5--lh .heading-5--lh__link b,
.heading-5--lh-light .heading-5--lh__link strong,
.bg-dark .heading-5--lh .heading-5--lh__link strong,
.bg-gradient .heading-5--lh .heading-5--lh__link strong {
  color: white;
}
.heading-5--lh-light .heading-6--lh__link b, .bg-dark .heading-5--lh .heading-6--lh__link b,
.bg-gradient .heading-5--lh .heading-6--lh__link b,
.heading-5--lh-light .heading-6--lh__link strong,
.bg-dark .heading-5--lh .heading-6--lh__link strong,
.bg-gradient .heading-5--lh .heading-6--lh__link strong {
  color: white;
}

.heading-6--lh {
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 0.88rem;
  font-size: clamp(0.88rem, 6.4vw, 1.56rem);
  line-height: clamp(1.06rem, 8.125vw, 1.94rem);
}
@media (min-width: 576px) {
  .heading-6--lh {
    font-size: clamp(0.88rem, 4vw, 1.56rem);
    line-height: clamp(1.06rem, 4.8vw, 1.94rem);
  }
}
@media (min-width: 768px) {
  .heading-6--lh {
    font-size: clamp(0.88rem, 4vw, 1.56rem);
    line-height: clamp(1.06rem, 4.8vw, 1.94rem);
  }
}
@media (min-width: 992px) {
  .heading-6--lh {
    font-size: clamp(0.88rem, 2.7vw, 1.56rem);
    line-height: clamp(1.06rem, 3.2vw, 1.94rem);
  }
}
@media (min-width: 1200px) {
  .heading-6--lh {
    font-size: clamp(0.88rem, 3vw, 1.56rem);
    line-height: clamp(1.06rem, 3.6vw, 1.94rem);
  }
}
@media (min-width: 1400px) {
  .heading-6--lh {
    font-size: clamp(0.88rem, 6vw, 1.56rem);
    line-height: clamp(0.88rem, 7.2vw, 1.56rem);
    margin-bottom: 1.94rem;
  }
}
.heading-6--lh:hover {
  color: #1592e6;
}
.heading-6--lh:hover .heading-6--lh__link {
  color: #1592e6;
}
.heading-6--lh:hover .heading-6--lh__link b,
.heading-6--lh:hover .heading-6--lh__link strong,
.heading-6--lh:hover .heading-6--lh__link span {
  color: #1592e6;
}
.heading-6--lh__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-6--lh__link b,
.heading-6--lh__link strong {
  color: #292c34;
  font-weight: bold;
}
.heading-6--lh__link b:after,
.heading-6--lh__link strong:after {
  content: " ";
}
.heading-6--lh__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 0.625rem;
}
@media (min-width: 1400px) {
  .heading-6--lh__icon {
    font-size: 0.625rem;
  }
}

.heading-6--lh-light, .bg-dark .heading-6--lh,
.bg-gradient .heading-6--lh {
  display: flex;
  align-items: center;
  color: #cccdcd;
  margin: 0;
  font-size: 0.88rem;
  line-height: 0.88rem;
  margin-bottom: 0.88rem;
}
.heading-6--lh-light:hover, .bg-dark .heading-6--lh:hover,
.bg-gradient .heading-6--lh:hover {
  color: #1592e6;
}
.heading-6--lh-light:hover .heading-6--lh__link, .bg-dark .heading-6--lh:hover .heading-6--lh__link,
.bg-gradient .heading-6--lh:hover .heading-6--lh__link {
  color: #1592e6;
}
.heading-6--lh-light:hover .heading-6--lh__link b, .bg-dark .heading-6--lh:hover .heading-6--lh__link b,
.bg-gradient .heading-6--lh:hover .heading-6--lh__link b,
.heading-6--lh-light:hover .heading-6--lh__link strong,
.bg-dark .heading-6--lh:hover .heading-6--lh__link strong,
.bg-gradient .heading-6--lh:hover .heading-6--lh__link strong,
.heading-6--lh-light:hover .heading-6--lh__link span,
.bg-dark .heading-6--lh:hover .heading-6--lh__link span,
.bg-gradient .heading-6--lh:hover .heading-6--lh__link span {
  color: #1592e6;
}
@media (min-width: 1400px) {
  .heading-6--lh-light, .bg-dark .heading-6--lh,
  .bg-gradient .heading-6--lh {
    font-size: 1.56rem;
    line-height: 1.94rem;
    margin-bottom: 1.94rem;
  }
}
.heading-6--lh-light .heading-1--lh__link b, .bg-dark .heading-6--lh .heading-1--lh__link b,
.bg-gradient .heading-6--lh .heading-1--lh__link b,
.heading-6--lh-light .heading-1--lh__link strong,
.bg-dark .heading-6--lh .heading-1--lh__link strong,
.bg-gradient .heading-6--lh .heading-1--lh__link strong {
  color: white;
}
.heading-6--lh-light .heading-2--lh__link b, .bg-dark .heading-6--lh .heading-2--lh__link b,
.bg-gradient .heading-6--lh .heading-2--lh__link b,
.heading-6--lh-light .heading-2--lh__link strong,
.bg-dark .heading-6--lh .heading-2--lh__link strong,
.bg-gradient .heading-6--lh .heading-2--lh__link strong {
  color: white;
}
.heading-6--lh-light .heading-3--lh__link b, .bg-dark .heading-6--lh .heading-3--lh__link b,
.bg-gradient .heading-6--lh .heading-3--lh__link b,
.heading-6--lh-light .heading-3--lh__link strong,
.bg-dark .heading-6--lh .heading-3--lh__link strong,
.bg-gradient .heading-6--lh .heading-3--lh__link strong {
  color: white;
}
.heading-6--lh-light .heading-4--lh__link b, .bg-dark .heading-6--lh .heading-4--lh__link b,
.bg-gradient .heading-6--lh .heading-4--lh__link b,
.heading-6--lh-light .heading-4--lh__link strong,
.bg-dark .heading-6--lh .heading-4--lh__link strong,
.bg-gradient .heading-6--lh .heading-4--lh__link strong {
  color: white;
}
.heading-6--lh-light .heading-5--lh__link b, .bg-dark .heading-6--lh .heading-5--lh__link b,
.bg-gradient .heading-6--lh .heading-5--lh__link b,
.heading-6--lh-light .heading-5--lh__link strong,
.bg-dark .heading-6--lh .heading-5--lh__link strong,
.bg-gradient .heading-6--lh .heading-5--lh__link strong {
  color: white;
}
.heading-6--lh-light .heading-6--lh__link b, .bg-dark .heading-6--lh .heading-6--lh__link b,
.bg-gradient .heading-6--lh .heading-6--lh__link b,
.heading-6--lh-light .heading-6--lh__link strong,
.bg-dark .heading-6--lh .heading-6--lh__link strong,
.bg-gradient .heading-6--lh .heading-6--lh__link strong {
  color: white;
}

.heading-1--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #292c34;
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 1400px) {
  .heading-1--lhb {
    font-size: 3.44rem;
    line-height: 4rem;
    margin-bottom: 4rem;
  }
}
.heading-1--lhb__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 1.875rem;
}
@media (min-width: 1400px) {
  .heading-1--lhb__icon {
    font-size: 1.875rem;
  }
}
.heading-1--lhb__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-1--lhb__link:hover {
  color: #1592e6;
}
.heading-1--lhb b,
.heading-1--lhb strong {
  font-weight: bold;
}

.heading-1--lhb-light, .bg-dark .heading-1--lhb,
.bg-gradient .heading-1--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #f8f9fa;
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 1400px) {
  .heading-1--lhb-light, .bg-dark .heading-1--lhb,
  .bg-gradient .heading-1--lhb {
    font-size: 3.44rem;
    line-height: 4rem;
    margin-bottom: 4rem;
  }
}

.heading-2--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #292c34;
  font-size: 1.13rem;
  line-height: 1.13rem;
  margin-bottom: 1.13rem;
}
@media (min-width: 1400px) {
  .heading-2--lhb {
    font-size: 2.81rem;
    line-height: 3.19rem;
    margin-bottom: 3.19rem;
  }
}
.heading-2--lhb__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 1.625rem;
}
@media (min-width: 1400px) {
  .heading-2--lhb__icon {
    font-size: 1.625rem;
  }
}
.heading-2--lhb__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-2--lhb__link:hover {
  color: #1592e6;
}
.heading-2--lhb b,
.heading-2--lhb strong {
  font-weight: bold;
}

.heading-2--lhb-light, .bg-dark .heading-2--lhb,
.bg-gradient .heading-2--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #f8f9fa;
  font-size: 1.13rem;
  line-height: 1.13rem;
  margin-bottom: 1.13rem;
}
@media (min-width: 1400px) {
  .heading-2--lhb-light, .bg-dark .heading-2--lhb,
  .bg-gradient .heading-2--lhb {
    font-size: 2.81rem;
    line-height: 3.19rem;
    margin-bottom: 3.19rem;
  }
}

.heading-3--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #292c34;
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  .heading-3--lhb {
    font-size: 2.5rem;
    line-height: 2.81rem;
    margin-bottom: 2.81rem;
  }
}
.heading-3--lhb__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 1.375rem;
}
@media (min-width: 1400px) {
  .heading-3--lhb__icon {
    font-size: 1.375rem;
  }
}
.heading-3--lhb__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-3--lhb__link:hover {
  color: #1592e6;
}
.heading-3--lhb b,
.heading-3--lhb strong {
  font-weight: bold;
}

.heading-3--lhb-light, .bg-dark .heading-3--lhb,
.bg-gradient .heading-3--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #f8f9fa;
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  .heading-3--lhb-light, .bg-dark .heading-3--lhb,
  .bg-gradient .heading-3--lhb {
    font-size: 2.5rem;
    line-height: 2.81rem;
    margin-bottom: 2.81rem;
  }
}

.heading-4--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #292c34;
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  .heading-4--lhb {
    font-size: 2.25rem;
    line-height: 2.56rem;
    margin-bottom: 2.56rem;
  }
}
.heading-4--lhb__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 1.125rem;
}
@media (min-width: 1400px) {
  .heading-4--lhb__icon {
    font-size: 1.125rem;
  }
}
.heading-4--lhb__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-4--lhb__link:hover {
  color: #1592e6;
}
.heading-4--lhb b,
.heading-4--lhb strong {
  font-weight: bold;
}

.heading-4--lhb-light, .bg-dark .heading-4--lhb,
.bg-gradient .heading-4--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #f8f9fa;
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  .heading-4--lhb-light, .bg-dark .heading-4--lhb,
  .bg-gradient .heading-4--lhb {
    font-size: 2.25rem;
    line-height: 2.56rem;
    margin-bottom: 2.56rem;
  }
}

.heading-5--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #292c34;
  font-size: 0.88rem;
  line-height: 0.88rem;
  margin-bottom: 0.88rem;
}
@media (min-width: 1400px) {
  .heading-5--lhb {
    font-size: 1.88rem;
    line-height: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
.heading-5--lhb__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 0.875rem;
}
@media (min-width: 1400px) {
  .heading-5--lhb__icon {
    font-size: 0.875rem;
  }
}
.heading-5--lhb__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-5--lhb__link:hover {
  color: #1592e6;
}
.heading-5--lhb b,
.heading-5--lhb strong {
  font-weight: bold;
}

.heading-5--lhb-light, .bg-dark .heading-5--lhb,
.bg-gradient .heading-5--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #f8f9fa;
  font-size: 0.88rem;
  line-height: 0.88rem;
  margin-bottom: 0.88rem;
}
@media (min-width: 1400px) {
  .heading-5--lhb-light, .bg-dark .heading-5--lhb,
  .bg-gradient .heading-5--lhb {
    font-size: 1.88rem;
    line-height: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

.heading-6--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #292c34;
  font-size: 0.88rem;
  line-height: 0.88rem;
  margin-bottom: 0.88rem;
}
@media (min-width: 1400px) {
  .heading-6--lhb {
    font-size: 1.56rem;
    line-height: 1.94rem;
    margin-bottom: 1.94rem;
  }
}
.heading-6--lhb__icon {
  margin-right: 0.5em;
  color: #1592e6;
  font-size: 0.625rem;
}
@media (min-width: 1400px) {
  .heading-6--lhb__icon {
    font-size: 0.625rem;
  }
}
.heading-6--lhb__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.heading-6--lhb__link:hover {
  color: #1592e6;
}
.heading-6--lhb b,
.heading-6--lhb strong {
  font-weight: bold;
}

.heading-6--lhb-light, .bg-dark .heading-6--lhb,
.bg-gradient .heading-6--lhb {
  display: flex;
  align-items: center;
  margin: 0;
  color: #f8f9fa;
  font-size: 0.88rem;
  line-height: 0.88rem;
  margin-bottom: 0.88rem;
}
@media (min-width: 1400px) {
  .heading-6--lhb-light, .bg-dark .heading-6--lhb,
  .bg-gradient .heading-6--lhb {
    font-size: 1.56rem;
    line-height: 1.94rem;
    margin-bottom: 1.94rem;
  }
}

.heading-1--basic__title {
  color: #292c34;
  font-weight: 400;
  margin-bottom: 1.25rem;
  font-size: clamp(1.25rem, 6.4vw, 3.44rem);
  line-height: clamp(1.63rem, 8.125vw, 4rem);
}
@media (min-width: 576px) {
  .heading-1--basic__title {
    font-size: clamp(1.25rem, 4vw, 3.44rem);
    line-height: clamp(1.63rem, 4.8vw, 4rem);
  }
}
@media (min-width: 768px) {
  .heading-1--basic__title {
    font-size: clamp(1.25rem, 4vw, 3.44rem);
    line-height: clamp(1.63rem, 4.8vw, 4rem);
  }
}
@media (min-width: 992px) {
  .heading-1--basic__title {
    font-size: clamp(1.25rem, 2.7vw, 3.44rem);
    line-height: clamp(1.63rem, 3.2vw, 4rem);
  }
}
@media (min-width: 1200px) {
  .heading-1--basic__title {
    font-size: clamp(1.25rem, 3vw, 3.44rem);
    line-height: clamp(1.63rem, 3.6vw, 4rem);
  }
}
@media (min-width: 1400px) {
  .heading-1--basic__title {
    margin-bottom: 3.4375rem;
    font-size: clamp(1.25rem, 6vw, 3.44rem);
    line-height: clamp(1.25rem, 7.2vw, 3.44rem);
  }
}
.heading-1--basic__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-1--basic__subheader {
    font-size: 0.94rem;
    margin-bottom: 0.9375rem;
  }
}

.heading-1--basic-ds .heading-1--basic__title {
  color: #cccdcd;
}
.heading-1--basic-ds .heading-1--basic__title strong,
.heading-1--basic-ds .heading-1--basic__title b {
  color: #292c34;
}

.heading-1--basic-ds__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-1--basic-ds__subheader {
    font-size: 0.94rem;
    margin-bottom: 0.9375rem;
  }
}

.heading-1--basic-light .heading-1--basic__subheader, .bg-dark .heading-1--basic .heading-1--basic__subheader,
.bg-gradient .heading-1--basic .heading-1--basic__subheader {
  color: white;
}
.heading-1--basic-light .heading-1--basic__title, .bg-dark .heading-1--basic .heading-1--basic__title,
.bg-gradient .heading-1--basic .heading-1--basic__title {
  color: white;
}

.heading-2--basic__title {
  color: #292c34;
  font-weight: 400;
  margin-bottom: 1.125rem;
  font-size: clamp(1.13rem, 6.4vw, 2.81rem);
  line-height: clamp(1.56rem, 8.125vw, 3.19rem);
}
@media (min-width: 576px) {
  .heading-2--basic__title {
    font-size: clamp(1.13rem, 4vw, 2.81rem);
    line-height: clamp(1.56rem, 4.8vw, 3.19rem);
  }
}
@media (min-width: 768px) {
  .heading-2--basic__title {
    font-size: clamp(1.13rem, 4vw, 2.81rem);
    line-height: clamp(1.56rem, 4.8vw, 3.19rem);
  }
}
@media (min-width: 992px) {
  .heading-2--basic__title {
    font-size: clamp(1.13rem, 2.7vw, 2.81rem);
    line-height: clamp(1.56rem, 3.2vw, 3.19rem);
  }
}
@media (min-width: 1200px) {
  .heading-2--basic__title {
    font-size: clamp(1.13rem, 3vw, 2.81rem);
    line-height: clamp(1.56rem, 3.6vw, 3.19rem);
  }
}
@media (min-width: 1400px) {
  .heading-2--basic__title {
    margin-bottom: 2.8125rem;
    font-size: clamp(1.13rem, 6vw, 2.81rem);
    line-height: clamp(1.13rem, 7.2vw, 2.81rem);
  }
}
.heading-2--basic__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-2--basic__subheader {
    font-size: 0.88rem;
    margin-bottom: 0.875rem;
  }
}

.heading-2--basic-ds .heading-2--basic__title {
  color: #cccdcd;
}
.heading-2--basic-ds .heading-2--basic__title strong,
.heading-2--basic-ds .heading-2--basic__title b {
  color: #292c34;
}

.heading-2--basic-ds__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-2--basic-ds__subheader {
    font-size: 0.88rem;
    margin-bottom: 0.875rem;
  }
}

.heading-2--basic-light .heading-2--basic__subheader, .bg-dark .heading-2--basic .heading-2--basic__subheader,
.bg-gradient .heading-2--basic .heading-2--basic__subheader {
  color: white;
}
.heading-2--basic-light .heading-2--basic__title, .bg-dark .heading-2--basic .heading-2--basic__title,
.bg-gradient .heading-2--basic .heading-2--basic__title {
  color: white;
}

.heading-3--basic__title {
  color: #292c34;
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 6.4vw, 2.5rem);
  line-height: clamp(1.44rem, 8.125vw, 2.81rem);
}
@media (min-width: 576px) {
  .heading-3--basic__title {
    font-size: clamp(1rem, 4vw, 2.5rem);
    line-height: clamp(1.44rem, 4.8vw, 2.81rem);
  }
}
@media (min-width: 768px) {
  .heading-3--basic__title {
    font-size: clamp(1rem, 4vw, 2.5rem);
    line-height: clamp(1.44rem, 4.8vw, 2.81rem);
  }
}
@media (min-width: 992px) {
  .heading-3--basic__title {
    font-size: clamp(1rem, 2.7vw, 2.5rem);
    line-height: clamp(1.44rem, 3.2vw, 2.81rem);
  }
}
@media (min-width: 1200px) {
  .heading-3--basic__title {
    font-size: clamp(1rem, 3vw, 2.5rem);
    line-height: clamp(1.44rem, 3.6vw, 2.81rem);
  }
}
@media (min-width: 1400px) {
  .heading-3--basic__title {
    margin-bottom: 2.5rem;
    font-size: clamp(1rem, 6vw, 2.5rem);
    line-height: clamp(1rem, 7.2vw, 2.5rem);
  }
}
.heading-3--basic__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-3--basic__subheader {
    font-size: 0.81rem;
    margin-bottom: 0.8125rem;
  }
}

.heading-3--basic-ds .heading-3--basic__title {
  color: #cccdcd;
}
.heading-3--basic-ds .heading-3--basic__title strong,
.heading-3--basic-ds .heading-3--basic__title b {
  color: #292c34;
}

.heading-3--basic-ds__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-3--basic-ds__subheader {
    font-size: 0.81rem;
    margin-bottom: 0.8125rem;
  }
}

.heading-3--basic-light .heading-3--basic__subheader, .bg-dark .heading-3--basic .heading-3--basic__subheader,
.bg-gradient .heading-3--basic .heading-3--basic__subheader {
  color: white;
}
.heading-3--basic-light .heading-3--basic__title, .bg-dark .heading-3--basic .heading-3--basic__title,
.bg-gradient .heading-3--basic .heading-3--basic__title {
  color: white;
}

.heading-4--basic__title {
  color: #292c34;
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 6.4vw, 2.25rem);
  line-height: clamp(1.19rem, 8.125vw, 2.56rem);
}
@media (min-width: 576px) {
  .heading-4--basic__title {
    font-size: clamp(1rem, 4vw, 2.25rem);
    line-height: clamp(1.19rem, 4.8vw, 2.56rem);
  }
}
@media (min-width: 768px) {
  .heading-4--basic__title {
    font-size: clamp(1rem, 4vw, 2.25rem);
    line-height: clamp(1.19rem, 4.8vw, 2.56rem);
  }
}
@media (min-width: 992px) {
  .heading-4--basic__title {
    font-size: clamp(1rem, 2.7vw, 2.25rem);
    line-height: clamp(1.19rem, 3.2vw, 2.56rem);
  }
}
@media (min-width: 1200px) {
  .heading-4--basic__title {
    font-size: clamp(1rem, 3vw, 2.25rem);
    line-height: clamp(1.19rem, 3.6vw, 2.56rem);
  }
}
@media (min-width: 1400px) {
  .heading-4--basic__title {
    margin-bottom: 2.25rem;
    font-size: clamp(1rem, 6vw, 2.25rem);
    line-height: clamp(1rem, 7.2vw, 2.25rem);
  }
}
.heading-4--basic__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-4--basic__subheader {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
}

.heading-4--basic-ds .heading-4--basic__title {
  color: #cccdcd;
}
.heading-4--basic-ds .heading-4--basic__title strong,
.heading-4--basic-ds .heading-4--basic__title b {
  color: #292c34;
}

.heading-4--basic-ds__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-4--basic-ds__subheader {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
}

.heading-4--basic-light .heading-4--basic__subheader, .bg-dark .heading-4--basic .heading-4--basic__subheader,
.bg-gradient .heading-4--basic .heading-4--basic__subheader {
  color: white;
}
.heading-4--basic-light .heading-4--basic__title, .bg-dark .heading-4--basic .heading-4--basic__title,
.bg-gradient .heading-4--basic .heading-4--basic__title {
  color: white;
}

.heading-5--basic__title {
  color: #292c34;
  font-weight: 400;
  margin-bottom: 0.875rem;
  font-size: clamp(0.88rem, 6.4vw, 1.88rem);
  line-height: clamp(1.06rem, 8.125vw, 2.25rem);
}
@media (min-width: 576px) {
  .heading-5--basic__title {
    font-size: clamp(0.88rem, 4vw, 1.88rem);
    line-height: clamp(1.06rem, 4.8vw, 2.25rem);
  }
}
@media (min-width: 768px) {
  .heading-5--basic__title {
    font-size: clamp(0.88rem, 4vw, 1.88rem);
    line-height: clamp(1.06rem, 4.8vw, 2.25rem);
  }
}
@media (min-width: 992px) {
  .heading-5--basic__title {
    font-size: clamp(0.88rem, 2.7vw, 1.88rem);
    line-height: clamp(1.06rem, 3.2vw, 2.25rem);
  }
}
@media (min-width: 1200px) {
  .heading-5--basic__title {
    font-size: clamp(0.88rem, 3vw, 1.88rem);
    line-height: clamp(1.06rem, 3.6vw, 2.25rem);
  }
}
@media (min-width: 1400px) {
  .heading-5--basic__title {
    margin-bottom: 1.875rem;
    font-size: clamp(0.88rem, 6vw, 1.88rem);
    line-height: clamp(0.88rem, 7.2vw, 1.88rem);
  }
}
.heading-5--basic__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-5--basic__subheader {
    font-size: 0.69rem;
    margin-bottom: 0.6875rem;
  }
}

.heading-5--basic-ds .heading-5--basic__title {
  color: #cccdcd;
}
.heading-5--basic-ds .heading-5--basic__title strong,
.heading-5--basic-ds .heading-5--basic__title b {
  color: #292c34;
}

.heading-5--basic-ds__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-5--basic-ds__subheader {
    font-size: 0.69rem;
    margin-bottom: 0.6875rem;
  }
}

.heading-5--basic-light .heading-5--basic__subheader, .bg-dark .heading-5--basic .heading-5--basic__subheader,
.bg-gradient .heading-5--basic .heading-5--basic__subheader {
  color: white;
}
.heading-5--basic-light .heading-5--basic__title, .bg-dark .heading-5--basic .heading-5--basic__title,
.bg-gradient .heading-5--basic .heading-5--basic__title {
  color: white;
}

.heading-6--basic__title {
  color: #292c34;
  font-weight: 400;
  margin-bottom: 0.875rem;
  font-size: clamp(0.88rem, 6.4vw, 1.56rem);
  line-height: clamp(1.06rem, 8.125vw, 1.94rem);
}
@media (min-width: 576px) {
  .heading-6--basic__title {
    font-size: clamp(0.88rem, 4vw, 1.56rem);
    line-height: clamp(1.06rem, 4.8vw, 1.94rem);
  }
}
@media (min-width: 768px) {
  .heading-6--basic__title {
    font-size: clamp(0.88rem, 4vw, 1.56rem);
    line-height: clamp(1.06rem, 4.8vw, 1.94rem);
  }
}
@media (min-width: 992px) {
  .heading-6--basic__title {
    font-size: clamp(0.88rem, 2.7vw, 1.56rem);
    line-height: clamp(1.06rem, 3.2vw, 1.94rem);
  }
}
@media (min-width: 1200px) {
  .heading-6--basic__title {
    font-size: clamp(0.88rem, 3vw, 1.56rem);
    line-height: clamp(1.06rem, 3.6vw, 1.94rem);
  }
}
@media (min-width: 1400px) {
  .heading-6--basic__title {
    margin-bottom: 1.5625rem;
    font-size: clamp(0.88rem, 6vw, 1.56rem);
    line-height: clamp(0.88rem, 7.2vw, 1.56rem);
  }
}
.heading-6--basic__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-6--basic__subheader {
    font-size: 0.63rem;
    margin-bottom: 0.625rem;
  }
}

.heading-6--basic-ds .heading-6--basic__title {
  color: #cccdcd;
}
.heading-6--basic-ds .heading-6--basic__title strong,
.heading-6--basic-ds .heading-6--basic__title b {
  color: #292c34;
}

.heading-6--basic-ds__subheader {
  text-transform: uppercase;
  color: #292c34;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.5625rem;
}
@media (min-width: 1400px) {
  .heading-6--basic-ds__subheader {
    font-size: 0.63rem;
    margin-bottom: 0.625rem;
  }
}

.heading-6--basic-light .heading-6--basic__subheader, .bg-dark .heading-6--basic .heading-6--basic__subheader,
.bg-gradient .heading-6--basic .heading-6--basic__subheader {
  color: white;
}
.heading-6--basic-light .heading-6--basic__title, .bg-dark .heading-6--basic .heading-6--basic__title,
.bg-gradient .heading-6--basic .heading-6--basic__title {
  color: white;
}

.bg-gradient .heading-1--light .heading-1__wrapper:before,
.bg-gradient .heading-1 .heading-1__wrapper:before {
  background-image: url("../Images/svg/weber_slash_w.svg");
}
.bg-gradient .heading-2--light .heading-2__wrapper:before,
.bg-gradient .heading-2 .heading-2__wrapper:before {
  background-image: url("../Images/svg/weber_slash_w.svg");
}
.bg-gradient .heading-3--light .heading-3__wrapper:before,
.bg-gradient .heading-3 .heading-3__wrapper:before {
  background-image: url("../Images/svg/weber_slash_w.svg");
}
.bg-gradient .heading-4--light .heading-4__wrapper:before,
.bg-gradient .heading-4 .heading-4__wrapper:before {
  background-image: url("../Images/svg/weber_slash_w.svg");
}
.bg-gradient .heading-5--light .heading-5__wrapper:before,
.bg-gradient .heading-5 .heading-5__wrapper:before {
  background-image: url("../Images/svg/weber_slash_w.svg");
}
.bg-gradient .heading-6--light .heading-6__wrapper:before,
.bg-gradient .heading-6 .heading-6__wrapper:before {
  background-image: url("../Images/svg/weber_slash_w.svg");
}

.heading-d1 {
  display: flex;
  position: relative;
  z-index: 10;
  width: 100%;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  font-size: 1.625rem;
  line-height: 1.75rem;
  /* @include media-breakpoint-up(xxl) {
    font-size: toRem(80) + rem;
    line-height: toRem(78) + rem;
  }*/
}
@media (min-width: 992px) {
  .heading-d1 {
    font-size: clamp(1.625rem, 3.5vw, 4.2rem);
    line-height: clamp(1.75rem, 3.5vw, 4.875rem);
  }
}
.heading-d1 .heading-space {
  aspect-ratio: 1/3.5;
}
.heading-d1:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  aspect-ratio: 1/2;
  background-image: url("../Images/svg/weber_slash.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.display-2 {
  font-size: clamp(6vw, 8vw, 4.5rem);
}
@media (min-width: 992px) {
  .display-2 {
    font-size: clamp(2vw, 4vw, 4.5rem);
  }
}

/**
* headline-slash
**/
.headline-slash {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 0;
  font-size: 1.625rem;
  line-height: 1.75rem;
}
@media (min-width: 992px) {
  .headline-slash {
    font-size: 3.5rem;
    line-height: 3.75rem;
  }
}
.headline-slash .heading-space {
  aspect-ratio: 1/2;
}
.headline-slash > *:nth-child(2):before {
  content: " ";
  color: rgba(255, 255, 255, 0);
}
.headline-slash:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  aspect-ratio: 1/2;
  background-image: url("../Images/svg/weber_slash.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.section-text-image {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .section-text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 2rem;
    padding-top: 3rem;
    margin-bottom: 4rem;
  }
}
.section-text-image__image-wrapper {
  position: relative;
  margin-bottom: 3rem;
}
.section-text-image__image-wrapper .section-text-image__image {
  position: relative;
}
.section-text-image__image-wrapper .section-text-image__image img {
  width: 100%;
}
.section-text-image__image-wrapper .section-text-image__image:after {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8rem 4rem;
  border-color: transparent transparent white transparent;
  transform: translate(1px, 1px);
  transition: all 0.2s ease;
}
@media (min-width: 992px) {
  .section-text-image__image-wrapper {
    grid-area: 1/col2-start/last-line/2;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .section-text-image__header {
    margin-top: -2rem;
  }
}
.section-text-image__text {
  font-family: Roboto, serif;
  font-weight: 300;
  color: #292c34;
}
.section-text-image__text .text-quote {
  color: #1592e6;
}
.section-text-image__text .text-quote:before {
  content: "„";
}
.section-text-image__text .text-quote:after {
  content: "”";
}
.section-text-image__text.is-bright {
  color: #f8f9fa;
}
@media (min-width: 992px) {
  .section-text-image__text {
    margin-right: 10rem;
  }
}
.section-text-image__video {
  display: none;
}

main ul,
main ol {
  list-style: none;
  padding: 0;
  color: #292c34;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 992px) {
  main ul,
  main ol {
    margin-left: initial;
    margin-right: initial;
  }
}
main ul li,
main ol li {
  align-items: center;
  color: inherit;
  transition: color 0.1s ease;
  display: block;
  position: relative;
  padding-left: 3.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #292c34;
  color: inherit;
  font-size: 1rem;
  word-break: break-word;
}
@media (min-width: 992px) {
  main ul li,
  main ol li {
    font-size: 1.25rem;
    padding-left: 2.42rem;
  }
}
main ul li:before,
main ol li:before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
  height: 2rem;
  background-image: url("../Images/svg/weber_slash.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: center;
}
@media (min-width: 992px) {
  main ul li:before,
  main ol li:before {
    left: 0;
  }
}
main ul li:last-child,
main ol li:last-child {
  border-bottom: none;
}
main ul li:last-child a,
main ul li:last-child span,
main ol li:last-child a,
main ol li:last-child span {
  border-bottom: none;
}
main ul main ul, main ul main ol__icon,
main ol main ul,
main ol main ol__icon {
  color: #1592e6;
  padding-right: 1rem;
}
main ul main ul, main ul main ol__item-text,
main ol main ul,
main ol main ol__item-text {
  font-size: 1rem;
}
@media (min-width: 992px) {
  main ul main ul, main ul main ol__item-text,
  main ol main ul,
  main ol main ol__item-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  main .accordion li {
    font-size: 1rem;
  }
  main .accordion li:before {
    left: 0.75rem;
  }
}
main .bg-dark ul {
  color: #f8f9fa;
}
main .bg-dark ul li {
  border-color: #d8d8d8;
}
main .bg-dark ul li:before {
  background-image: url("../Images/svg/weber_slash_w.svg");
}

.has-col-separators [class^=col-],
.has-col-separators [class*=" col-"] {
  align-self: stretch;
}
@media (min-width: 992px) {
  .has-col-separators [class^=col-],
  .has-col-separators [class*=" col-"] {
    padding-top: initial;
    padding-bottom: initial;
  }
}
.has-col-separators [class^=col-]:first-child,
.has-col-separators [class*=" col-"]:first-child {
  padding-top: 0;
}
@media (min-width: 992px) {
  .has-col-separators [class^=col-]:first-child,
  .has-col-separators [class*=" col-"]:first-child {
    padding-bottom: initial;
  }
}
.has-col-separators [class^=col-]:last-child,
.has-col-separators [class*=" col-"]:last-child {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .has-col-separators [class^=col-]:last-child,
  .has-col-separators [class*=" col-"]:last-child {
    padding-top: initial;
  }
}
@media (min-width: 992px) {
  .has-col-separators [class^=col-]:not(:last-child),
  .has-col-separators [class*=" col-"]:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid #343a40;
  }
}
@media (min-width: 992px) {
  .has-col-separators .border-start {
    border-left: 1px solid #343a40 !important;
  }
}
@media (min-width: 992px) {
  .has-col-separators .border-end {
    border-right: 1px solid #343a40 !important;
  }
}

.bg-light .has-col-separators [class^=col-]:not(:last-child),
.bg-light .has-col-separators [class*=" col-"]:not(:last-child) {
  border-color: #cccdcd;
  border-bottom: 1px solid;
}
@media (min-width: 992px) {
  .bg-light .has-col-separators [class^=col-]:not(:last-child),
  .bg-light .has-col-separators [class*=" col-"]:not(:last-child) {
    border-bottom: none;
    border-color: #cccdcd;
  }
}
.bg-light .border-start {
  border-color: #cccdcd !important;
}
.bg-light .border-end {
  border-color: #cccdcd !important;
}

.bg-white .has-col-separators [class^=col-]:not(:last-child),
.bg-white .has-col-separators [class*=" col-"]:not(:last-child) {
  border-color: #979797;
}
@media (min-width: 992px) {
  .bg-white .has-col-separators [class^=col-]:not(:last-child),
  .bg-white .has-col-separators [class*=" col-"]:not(:last-child) {
    border-bottom: none;
    border-color: #979797;
  }
}
.bg-white .border-start {
  border-color: #979797 !important;
}
.bg-white .border-end {
  border-color: #979797 !important;
}

.bg-dark .has-col-separators [class^=col-]:not(:last-child),
.bg-dark .has-col-separators [class*=" col-"]:not(:last-child) {
  border-color: #d8d8d8;
}
@media (min-width: 992px) {
  .bg-dark .has-col-separators [class^=col-]:not(:last-child),
  .bg-dark .has-col-separators [class*=" col-"]:not(:last-child) {
    border-bottom: none;
    border-color: #d8d8d8;
  }
}
.bg-dark .border-start {
  border-color: #d8d8d8 !important;
}
.bg-dark .border-end {
  border-color: #d8d8d8 !important;
}

.ce-table,
table {
  width: 100%;
  overflow-x: auto;
}
.ce-table th,
.ce-table td:first-child,
table th,
table td:first-child {
  font-weight: normal;
  color: #343a40;
}
@media (min-width: 992px) {
  .ce-table th,
  .ce-table td:first-child,
  table th,
  table td:first-child {
    padding: 0.5em 0.75em;
  }
}
.bg-dark .ce-table th,
.bg-dark .ce-table td:first-child,
.bg-dark table th,
.bg-dark table td:first-child {
  color: #d8d8d8;
}
.ce-table td,
table td {
  font-weight: bold;
  color: #1592e6;
  min-width: 120px;
}
@media (min-width: 992px) {
  .ce-table td,
  table td {
    border-top: 1px solid #dadada;
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
  }
}
.ce-table td:first-child,
table td:first-child {
  border-top: 1px solid #dadada;
  padding-top: 1rem;
}
@media (min-width: 992px) {
  .ce-table td:first-child,
  table td:first-child {
    padding-top: 1.1875rem;
  }
}
.ce-table td:last-child,
table td:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .ce-table td:last-child,
  table td:last-child {
    margin-bottom: initial;
  }
}
.bg-dark .ce-table td,
.bg-dark table td {
  color: #f8f9fa;
}
.ce-table tr,
table tr {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .ce-table tr,
  table tr {
    display: table-row;
  }
}
.ce-table tr:first-child td,
table tr:first-child td {
  border-top: none;
}
.ce-table thead th,
table thead th {
  border-top: none;
  border-bottom-width: 1px;
}
.ce-table .normal,
table .normal {
  font-weight: normal;
  color: #343a40;
  padding: 1.53125rem 0.75em;
}
.ce-table .normal:first-child,
table .normal:first-child {
  padding-left: 0;
}
.ce-table .normal:last-child,
table .normal:last-child {
  padding-right: 0;
}
.bg-dark .ce-table .normal,
.bg-dark table .normal {
  color: #d8d8d8;
}

.full-hero {
  position: relative;
  width: 100vw;
  height: calc(100vh - 8rem);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .full-hero {
    height: calc(100vh - 5rem);
  }
}
.full-hero__heading {
  position: absolute;
  top: 32%;
  left: 10%;
}
.full-hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.15) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 40%);
}
.full-hero .container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (min-width: 992px) {
  .full-hero .container {
    margin-top: -6rem;
  }
}
.full-hero .container .content-filter__output-item {
  margin: 0;
}
.full-hero .container [class*=heading-] {
  margin-bottom: 0;
}
.full-hero .container [class*=heading-],
.full-hero .container [class*=heading-] a,
.full-hero .container [class*=heading-] span,
.full-hero .container [class*=heading-] p {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.full-hero .container [class*=heading-][class*=__wrapper]::before {
  background-image: none;
  background-color: #1592e6;
  -webkit-mask: url("../Images/svg/weber_slash.svg") no-repeat center/auto 100%;
  mask: url("../Images/svg/weber_slash.svg") no-repeat center/auto 100%;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
.full-hero .container [class*="--lh__icon"] {
  display: none;
}
.full-hero__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .full-hero__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.full-hero__text {
  margin: 0;
}
@media (min-width: 992px) {
  .full-hero__text {
    flex-grow: 1;
  }
}
.full-hero__arrows {
  margin-top: 1.5rem;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
.full-hero__cta.cta {
  background-color: #1592e6;
  border-color: #1592e6;
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.125rem 0.125rem 0.125rem 1rem;
  gap: 4rem;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
.full-hero__cta.cta .icon {
  color: #1592e6;
  height: 2rem;
  width: 2rem;
}
.full-hero__cta.cta:hover, .full-hero__cta.cta:focus {
  background-color: #fff;
  color: #1592e6;
  border-color: #1592e6;
}
.full-hero__cta.cta:hover .icon, .full-hero__cta.cta:focus .icon {
  background-color: #1592e6;
  color: #fff;
}
.full-hero__content {
  margin-left: 10%;
  position: relative;
  top: 50vh;
  z-index: 40;
}
@media (min-width: 992px) {
  .full-hero__content {
    top: 60vh;
  }
}
.full-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.full-hero.has-shimmer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.full-hero.has-shimmer:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  background: #fff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.section-big-image__wrapper {
  padding-left: 12%;
  padding-right: 12%;
}
.section-big-image__wrapper img {
  width: 100%;
}

.swiper-single {
  position: relative;
  z-index: -1;
}
.swiper-single .swiper-pagination {
  margin-top: 1rem;
}

.full-hero-slider {
  position: relative;
  height: calc(100vh - 8rem);
}
@media (min-width: 992px) {
  .full-hero-slider {
    height: calc(100vh - 5rem);
  }
}
.full-hero-slider .swiper-single,
.full-hero-slider .swiper-wrapper,
.full-hero-slider .swiper-slide,
.full-hero-slider .item-wrapper,
.full-hero-slider .full-hero {
  height: calc(100vh - 8rem) !important;
}
@media (min-width: 992px) {
  .full-hero-slider .swiper-single,
  .full-hero-slider .swiper-wrapper,
  .full-hero-slider .swiper-slide,
  .full-hero-slider .item-wrapper,
  .full-hero-slider .full-hero {
    height: calc(100vh - 5rem) !important;
  }
}
.full-hero-slider .swiper-single {
  z-index: 1;
}
.full-hero-slider .swiper-single .swiper-pagination {
  margin-top: 0;
}
.full-hero-slider .swiper-single-arrows {
  display: flex;
  gap: 0.5rem;
}
.full-hero-slider .swiper-single-arrows .arrow-left.is-dark,
.full-hero-slider .swiper-single-arrows .arrow-right.is-dark {
  margin: 0;
  width: 5rem;
  height: 1.75rem;
  border-radius: 0;
  border: none;
  background-color: rgb(41, 44, 52);
  color: #fff;
}
.full-hero-slider .swiper-single-arrows .arrow-left.is-dark:hover,
.full-hero-slider .swiper-single-arrows .arrow-right.is-dark:hover {
  background-color: #1592e6;
  color: #fff;
}
.full-hero-slider .swiper-single-arrows .arrow-left.is-dark:before,
.full-hero-slider .swiper-single-arrows .arrow-right.is-dark:before {
  font-size: 1.25rem;
}
.full-hero-slider__progress.swiper-pagination {
  position: absolute;
  bottom: 7.5rem;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .full-hero-slider__progress.swiper-pagination {
    bottom: 12rem;
  }
}
.full-hero-slider__progress.swiper-pagination .swiper-pagination-bullet {
  width: 2rem;
  height: 0.25rem;
  margin: 0 0.25rem !important;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: background-color 0.3s ease;
}
.full-hero-slider__progress.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1592e6;
}

.full-hero-single {
  position: relative;
}

.full-hero-slider .full-hero__scroll.triangle,
.full-hero-single .full-hero__scroll.triangle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
  z-index: 15;
  background-color: rgb(41, 44, 52);
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 3.5rem;
  padding-right: 2rem;
  padding-bottom: 2.5rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8125rem;
  line-height: 1;
  display: flex;
}
@media (min-width: 992px) {
  .full-hero-slider .full-hero__scroll.triangle,
  .full-hero-single .full-hero__scroll.triangle {
    clip-path: polygon(101% 0, 101% 101%, 0 101%, 0 7rem);
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}
.full-hero-slider .full-hero__scroll.triangle .full-hero__scroll-text,
.full-hero-single .full-hero__scroll.triangle .full-hero__scroll-text {
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
}

.full-hero__scroll-icon {
  color: #1592e6;
  font-size: 1rem;
  margin-left: 0.5rem;
}

figure.image {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}
figure.image img {
  clip-path: polygon(0% 0%, 100% 0, 100% 57%, 83% 100%, 0 100%);
}
@media (min-width: 992px) {
  figure.image img {
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 86% 100%, 0 100%);
  }
}

[data-fancybox] {
  position: relative;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
[data-fancybox]:after {
  position: absolute;
  content: "\f424";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  color: #1592e6;
  bottom: 6%;
  right: 2%;
}
@media (min-width: 992px) {
  [data-fancybox]:after {
    right: 2%;
  }
}

.image-wrapper {
  position: relative;
  z-index: 1;
}
.image-wrapper img {
  width: 100%;
}
.image-wrapper:after {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8rem 4rem;
  transform: translate(1px, 1px);
  transition: all 0.2s ease;
}

.bg-dark .image-wrapper:after {
  border-color: transparent transparent #292c34 transparent;
}

/**
* navbar
**/
body {
  position: relative;
  overflow-x: hidden;
}

.navbar .navbar-collapse {
  flex-grow: unset;
}

.header + main {
  padding-top: 8rem;
}

.header-container {
  background-color: #f8f9fa;
  position: fixed;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease, background-color 0.3s ease;
}
.header-container.on-scroll {
  background-color: white;
}
@media (min-width: 992px) {
  .header-container.on-scroll {
    border-bottom: 1px solid #f1f1f1;
  }
}
@media (max-width: 991.98px) {
  .header-container.on-scroll .header {
    border-bottom: 1px solid #f1f1f1;
  }
}

.header {
  position: fixed;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  top: 0;
  z-index: 1000;
  background: inherit;
  padding: 0;
  /*

     &--active {
         position: fixed;

         @include media-breakpoint-up(lg) {
             position: initial;
         }
     }
     */
}
@media (max-width: 991.98px) {
  .header {
    max-width: initial;
  }
}
@media (min-width: 992px) {
  .header {
    padding: initial;
    position: initial;
    background: initial;
  }
}
.header__breadcrumbs {
  position: relative;
  padding: 1rem;
  line-height: 1;
  max-width: 50%;
  overflow-x: auto;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .header__breadcrumbs {
    flex-grow: 1;
    margin-right: 0.5rem;
  }
}
@media (min-width: 992px) {
  .header__breadcrumbs {
    position: absolute;
    top: 6rem;
    left: 1rem;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .header__breadcrumbs.is-active {
    opacity: 1;
    pointer-events: all;
  }
  .header__breadcrumbs::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: 100%;
    left: 1.5em;
    border: 0.75rem solid transparent;
    border-top: none;
    border-bottom-color: #fff;
    filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, 0.1));
  }
}
.header__transform-wrapper {
  display: flex;
  width: 200vw;
  transform: translateX(50%);
  background: #f8f9fa;
  transition: all 0.6s ease;
  border-top: 2px solid #f1f1f1;
}
.header__transform-wrapper--show-menu {
  transform: translateX(0);
}
.header__transform-wrapper--show-modal {
  transform: translateX(-50%);
}
.header__transform-wrapper--show-modal .header__nav-modal-wrapper {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 992px) {
  .header__transform-wrapper {
    width: initial;
    transform: initial;
    background: initial;
    border: none;
  }
}
.header__nav-dropdown {
  list-style: none;
  width: 100%;
  padding: 0;
  background: #f8f9fa;
  overflow-y: scroll;
  overscroll-behavior-block: none;
  padding-bottom: 5rem;
}
.header__nav-dropdown-container {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100%;
  z-index: 980;
  overflow-x: hidden;
  pointer-events: none;
  transition: background-color 0.6s ease;
}
.header__nav-dropdown-container--active {
  pointer-events: all;
}
.header__nav-dropdown-container .header__transform-wrapper {
  height: calc(100vh - 5rem);
  width: 100vw;
  position: fixed;
  transform: translateX(100%);
}
.header__nav-dropdown-container .header__transform-wrapper.header__transform-wrapper--show-menu {
  transform: translateX(0);
}
.header__nav-dropdown-container .nav-dropdown {
  width: 100%;
  padding: 0;
}
.header__nav-dropdown-container .nav-dropdown__link {
  padding-left: 2rem;
}
.header__nav-dropdown-container .nav-dropdown__link:after {
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\e3d6";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  padding-left: 1rem;
  color: #1592e6;
}
.header__nav-dropdown-container .nav-dropdown__menu-item {
  padding: 1rem 0.5rem;
  text-align: left;
  border-bottom: 2px solid #f1f1f1;
  position: relative;
  background: #f8f9fa;
}
.header__nav-dropdown-container .nav-dropdown__sub-menu {
  display: none;
  list-style: none;
  padding: 0 0 0 1rem;
  margin-top: -0.5rem;
}
.header__nav-dropdown-container .nav-dropdown__sub-menu__hl:before {
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\e3d6";
  position: relative;
  margin-right: 0.25rem;
  vertical-align: text-top;
}
.header__nav-dropdown-container .nav-dropdown__sub-menu--active {
  display: block;
}
.header__nav-dropdown-container .nav-dropdown__sub-menu__links {
  display: none;
  list-style: none;
  padding: 0 0 0 2rem;
  margin-top: -0.5rem;
}
.header__nav-dropdown-container .nav-dropdown__sub-menu__links li {
  padding: 0.5rem 0;
}
.header__nav-dropdown-container .nav-dropdown__sub-menu__links--active {
  display: block;
}
.header__nav-dropdown-container .nav-dropdown__sub-menu__title {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}
.header__nav-dropdown-container .nav-dropdown__sub-menu__button:after {
  content: "\f149";
  font-family: "Font Awesome 6 Pro";
  color: #1592e6;
}
.header__nav-dropdown-container .nav-dropdown__sub-menu__grid--active .nav-dropdown__sub-menu__button:after {
  content: "\e59b";
}
.header__nav-dropdown-container .nav-dropdown__menu-item-wrapper {
  position: relative;
  color: #292c34;
  transition: color 0.3s ease;
  text-decoration: none;
  margin: 0;
  padding: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header__nav-dropdown-container .nav-dropdown__menu-item-wrapper--active .nav-dropdown__dropdown-button:after {
  content: "\e59b";
}
.header__nav-dropdown-container .nav-dropdown__dropdown-button:after {
  content: "\f149";
  font-family: "Font Awesome 6 Pro";
  color: #1592e6;
}
.header__menu-container {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  z-index: 980;
  overflow-x: hidden;
  pointer-events: none;
  transition: background-color 0.6s ease;
}
.header__menu-container--active {
  pointer-events: all;
}
@media (min-width: 992px) {
  .header__menu-container {
    position: initial;
    top: 0;
    background-color: transparent;
    min-height: initial;
    width: initial;
    z-index: 980;
    overflow-x: initial;
    pointer-events: all;
    height: initial;
  }
}
.header__nav-menu {
  display: flex;
  position: relative;
  width: 100vw;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  height: calc(100vh - 4rem);
  transition: all 0.6s ease;
  flex-direction: column;
  /*
                &--active {
                    //transform: translateX(0);

                    @include media-breakpoint-up(lg) {
                        transform: initial;
                    }
                }*/
}
@media (min-width: 992px) {
  .header__nav-menu {
    width: initial;
    flex-direction: row;
    justify-content: center;
    transform: initial;
    height: initial;
    flex-wrap: wrap;
  }
}
.header__nav-menu--expanded {
  transform: translateX(-100%);
}
@media (min-width: 992px) {
  .header__nav-menu--expanded {
    transform: initial;
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 1rem;
  position: relative;
}
@media (min-width: 992px) {
  .header__wrapper {
    flex-direction: row;
    margin-top: initial;
  }
}
.header__logo {
  position: relative;
  width: 2rem;
}
@media (min-width: 992px) {
  .header__logo {
    width: 4rem;
    margin-top: initial;
  }
}
.header__logo-img {
  width: 100%;
  height: 3rem;
  object-fit: contain;
}
@media (min-width: 992px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger-wrapper {
  display: flex;
  height: 2rem;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__hamburger-wrapper {
    display: none;
  }
}
.header__hamburger-checkbox {
  display: none;
}
.header__hamburger-checkbox:checked ~ .nav-menu__mobile-wrapper {
  display: block;
  transform: translateX(0);
}
.header__locale-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  color: inherit;
  margin-left: auto;
}
@media (min-width: 992px) {
  .header__locale-wrapper {
    margin-right: 2rem;
    margin-left: initial;
    margin-right: initial;
  }
}
.header__login-wrapper {
  position: relative;
}
.header__login-wrapper .header__login-wrapper-button {
  cursor: pointer;
  width: 20px;
  height: 100%;
  margin-left: 20px;
  display: inline-block;
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
@media (min-width: 992px) {
  .header__login-wrapper .header__login-wrapper-button {
    margin-right: 0;
  }
}
.header__login-wrapper .header__login-wrapper-button * {
  pointer-events: none;
  user-select: none;
}
.header__login-wrapper .header__login-dropdown {
  position: absolute;
  padding: 0;
  top: 32px;
  right: 0;
  background: white;
  z-index: 99;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms ease-out;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
@media (max-width: 767.98px) {
  .header__login-wrapper .header__login-dropdown {
    width: 100vw;
    left: 0;
    position: fixed;
    top: 80px;
  }
}
.header__login-wrapper .header__login-dropdown.is-visible {
  visibility: visible;
  opacity: 1;
}
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efefef;
}
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry .wrapper {
  display: flex;
  align-items: center;
  padding: 16px 32px;
  width: 100%;
}
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry .wrapper a > div {
  color: var(--bs-body-color);
  transition: all 200ms ease-out;
}
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry .wrapper a:hover > div {
  color: #1592e6;
}
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry.is-disabled i,
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry.is-disabled .header__login-dropdown-entry-headline,
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry.is-disabled .header__login-dropdown-entry-subline {
  color: rgba(33, 37, 41, 0.3019607843);
}
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry i {
  margin-right: 16px;
  color: #1592e6;
  font-size: 20px;
}
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry .header__login-dropdown-entry-headline {
  line-height: 1;
}
.header__login-wrapper .header__login-dropdown .header__login-dropdown-entry .header__login-dropdown-entry-subline {
  line-height: 1;
  margin-top: 4px;
  font-size: 10px;
}
.header #header__hamburger-icon {
  width: 2rem;
  height: 1rem;
  position: relative;
  -webkit-transition: 0.6s ease;
  -moz-transition: 0.6s ease;
  -o-transition: 0.6s ease;
  transition: 0.6s ease;
  cursor: pointer;
}
.header #header__hamburger-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #1592e6;
  opacity: 1;
  right: 0;
  -webkit-transition: 0.6s ease;
  -moz-transition: 0.6s ease;
  -o-transition: 0.6s ease;
  transition: 0.6s ease;
  transform-origin: center;
}
.header #header__hamburger-icon span:nth-child(1) {
  top: 0;
}
.header #header__hamburger-icon span:nth-child(2) {
  top: 50%;
  width: 50%;
}
.header #header__hamburger-icon span:nth-child(3) {
  top: 100%;
}
.header #header__hamburger-icon.open span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}
.header #header__hamburger-icon.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-1.5rem);
}
.header #header__hamburger-icon.open span:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.nav-menu__menu-item {
  padding: 2rem 0.5rem;
  text-align: left;
  border-bottom: 2px solid #f1f1f1;
  position: relative;
}
.nav-menu__menu-item.has-arrow a {
  pointer-events: none;
}
@media (min-width: 992px) {
  .nav-menu__menu-item.has-arrow a {
    pointer-events: all;
  }
}
.nav-menu__menu-item.has-arrow:after {
  content: "\f340";
  position: absolute;
  width: 3rem;
  height: 3rem;
  display: block;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  font-family: "Font Awesome 6 Sharp";
  color: #1592e6;
  filter: opacity(0.5);
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 992px) {
  .nav-menu__menu-item.has-arrow:after {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav-menu__menu-item {
    text-align: initial;
    text-align: center;
    border-bottom: none;
    margin: 0 0.5rem;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .nav-menu__menu-item:first-child {
    margin-left: 0;
  }
}
.nav-menu__menu-item:last-child {
  margin-right: 0;
}
.nav-menu__link {
  position: relative;
  color: rgb(41, 44, 52);
  transition: color 0.3s ease;
  text-decoration: none;
  margin: 0;
  padding: 1rem 1rem 1rem 3rem;
  cursor: default;
  font-weight: bold;
}
@media (min-width: 992px) {
  .nav-menu__link {
    padding: 1rem 1rem;
    font-weight: initial;
  }
}
.nav-menu__link[href] {
  cursor: pointer;
}
.nav-menu__link--active {
  color: #1592e6;
}
.nav-menu__link--active:before {
  opacity: 1 !important;
}
.nav-menu__link:hover {
  color: #1592e6;
}
.nav-menu__link:hover:before {
  opacity: 1 !important;
}
.nav-menu__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: opacity 0.3s ease;
  border-bottom: 3px solid #1592e6;
  opacity: 0;
  pointer-events: none;
}
.nav-menu__link:after {
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\e3d6";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  padding-left: 1rem;
  color: #1592e6;
}
@media (min-width: 992px) {
  .nav-menu__link:after {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav-menu {
    position: relative;
    display: block;
  }
}
.nav-menu__menu {
  position: relative;
  z-index: 1000;
  background-color: #f8f9fa;
}
.nav-menu__mobile-wrapper {
  order: 3;
  position: absolute;
  top: 4rem;
  right: 0;
  transition: all 0.3s ease;
  transform: translateX(100%);
  background-color: white;
  width: 100%;
  height: 100vh;
  z-index: 999;
}
@media (min-width: 992px) {
  .nav-menu__mobile-wrapper {
    order: initial;
    position: initial;
    background-color: initial;
    transform: translateX(0);
    height: initial;
    z-index: initial;
    opacity: initial;
  }
}
.nav-menu__mobile-wrapper.is-expanded {
  transform: translateX(-100%) !important;
}

.locale {
  position: relative;
}
.locale__arr {
  z-index: 1000;
  position: absolute;
  top: 2rem;
  right: 0.4rem;
  user-select: none;
  background: white;
  padding: 0.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18) !important;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.locale__arr.is-active {
  opacity: 1;
  pointer-events: all;
}
.locale__item {
  display: flex;
  align-items: center;
  color: inherit;
  cursor: pointer;
}
.locale__item.is-active {
  color: #1592e6;
}
.locale__item:hover {
  color: #1592e6;
}
.locale__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.locale__link:hover {
  color: inherit;
}
.locale__flag {
  margin-right: 0.5rem;
  max-width: 1rem;
}
.locale__icon {
  font-size: 0.5rem;
  margin-left: 0.5rem;
  color: #1592e6;
}

.navbar-return {
  position: relative;
  text-decoration: none;
  padding-left: 3rem;
  margin-right: auto;
  color: rgb(41, 44, 52);
}
.navbar-return:before {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(90deg) translateX(-40%);
  width: 3rem;
  text-align: center;
  content: "↵";
  font-size: 140%;
  color: #00b0ff;
}
.navbar-return--roofline {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  line-height: 1;
}
.navbar-return--title {
  display: block;
  font-size: 1.2rem;
}

.scroll-shadows {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  background: linear-gradient(#f8f9fa 30%, rgba(255, 255, 255, 0)) center top, linear-gradient(rgba(255, 255, 255, 0), #f8f9fa 70%) center bottom, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)) center top, radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)) center bottom;
  background-repeat: no-repeat;
  background-size: 100% 5rem, 100% 5rem, 100% 2rem, 100% 2rem;
  background-attachment: local, local, scroll, scroll;
}

.header__nav-modal-wrapper {
  width: 100vw;
  height: calc(100vh - 4rem);
  overflow-y: scroll;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
@media (min-width: 992px) {
  .header__nav-modal-wrapper {
    position: absolute;
    width: initial;
    left: 50%;
    top: 5rem;
    transform: translateX(-50%);
    overflow: initial;
    height: initial;
    opacity: 0;
  }
}
.header__nav-modal-wrapper--active {
  transform: translateX(0);
}
@media (min-width: 992px) {
  .header__nav-modal-wrapper--active {
    transform: translateX(-50%);
    opacity: 1;
  }
}

.menu-item__nav-modal {
  left: 0;
  top: 0;
  display: block;
  z-index: 999;
  background: white;
  width: 100%;
  padding: 4rem;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(100%);
}
.menu-item__nav-modal--active {
  opacity: 1;
  pointer-events: all;
}
.nav-modal {
  width: 100%;
}
@media (min-width: 992px) {
  .nav-modal {
    background: white;
    width: 992px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18) !important;
  }
}
@media (min-width: 1200px) {
  .nav-modal {
    width: 1200px;
  }
}
@media (min-width: 1400px) {
  .nav-modal {
    width: 1400px;
  }
}
@media (min-width: 992px) {
  .nav-modal--active {
    opacity: 1;
  }
}
.nav-modal__sub-menu {
  padding-left: 0;
  list-style: none;
  margin: 0;
  margin-top: -4.5rem;
}
@media (min-width: 992px) {
  .nav-modal__sub-menu {
    margin: 0;
  }
}
.nav-modal__back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: rgb(248, 249, 250);
  color: #1592e6;
  cursor: pointer;
  top: 1.5rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: block;
  position: sticky;
  background-color: white;
}
.nav-modal__back:hover {
  color: white;
  background-color: #00b0ff;
}
.nav-modal__back:before {
  content: "✕";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-modal__back:before {
  content: "\f33e";
}
@media (min-width: 992px) {
  .nav-modal__back {
    display: none;
  }
}
.nav-modal__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: rgb(248, 249, 250);
  color: #1592e6;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: none;
}
.nav-modal__close:hover {
  color: white;
  background-color: #00b0ff;
}
.nav-modal__close:before {
  content: "✕";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 992px) {
  .nav-modal__close {
    display: block;
  }
}

.sub-menu__content {
  display: none;
  flex-direction: column;
  user-select: none;
  opacity: 0;
  padding: 3rem 3rem 8rem 7rem;
  margin: 0;
  gap: 1rem;
}
@media (min-width: 992px) {
  .sub-menu__content {
    flex-direction: row;
    padding: 4rem;
  }
}
.sub-menu__content--active {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
}
@media (min-width: 992px) {
  .sub-menu__content--active {
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
  }
}
.sub-menu__content .sub-menu__grid {
  display: block;
  margin-bottom: 2rem;
  width: 100%;
  grid-template-columns: 3.5rem auto;
  grid-template-rows: auto auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media (min-width: 992px) {
  .sub-menu__content .sub-menu__grid {
    margin-bottom: 0;
    flex: calc(25% - 1rem);
  }
}
.sub-menu__content .sub-menu__grid-item:nth-child(1) {
  align-self: center;
}
.sub-menu__content .sub-menu__grid-item:nth-child(2) {
  align-self: center;
}
.sub-menu__content .sub-menu__links {
  font-weight: 300;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.sub-menu__content .sub-menu__links .sub-menu__link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.5rem;
}
.sub-menu__content .sub-menu__links .sub-menu__link:hover {
  color: #1592e6;
}
.sub-menu__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}
.sub-menu__img {
  width: 100%;
}
.sub-menu__title {
  position: relative;
  margin: 0;
}
.sub-menu__title span {
  font-size: large;
  font-weight: 400;
}
.sub-menu__hl {
  color: inherit;
  text-decoration: none;
}
.sub-menu__hl:before {
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\e3d6";
  position: relative;
  margin-right: 0.25rem;
  vertical-align: text-top;
}

nav.header__wrapper .level-4 {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 80%;
  margin-top: 0.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
nav.header__wrapper .level-4 li {
  padding: 0 !important;
  margin: 0 !important;
}
nav.header__wrapper .level-4 li .sub-menu__link {
  background: #fff;
  padding: 0.25rem 1rem;
  display: block;
  margin: 0;
}
@media (min-width: 992px) {
  nav.header__wrapper .level-4 li .sub-menu__link {
    background-color: var(--bs-gray-200);
  }
}

.hw-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #f8f9fa;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}
.hw-header.on-scroll {
  background-color: white;
  border-bottom-color: #f1f1f1;
}
.hw-header__inner {
  display: flex;
  align-items: center;
  height: 4rem;
  padding: 0 1rem;
  max-width: 1500px;
  margin: 0 auto;
  gap: 0.75rem;
}
@media (min-width: 992px) {
  .hw-header__inner {
    height: 5rem;
    padding: 0 1.5rem;
    gap: 1.25rem;
  }
}
.hw-header__logo {
  flex-shrink: 0;
  width: 2rem;
}
@media (min-width: 992px) {
  .hw-header__logo {
    width: 4rem;
  }
}
.hw-header__logo-link {
  display: block;
}
.hw-header__logo-img {
  width: 100%;
  height: 3rem;
  object-fit: contain;
}
.hw-header__breadcrumbs {
  position: relative;
  padding: 1rem;
  line-height: 1;
  max-width: 50%;
  overflow-x: auto;
  white-space: nowrap;
  flex-grow: 1;
  margin-right: 0.5rem;
}
.hw-header__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 992px) {
  .hw-header__breadcrumbs {
    position: absolute;
    top: 6rem;
    left: 1rem;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0 13px 27px -5px, rgba(0, 0, 0, 0.3) 0 8px 16px -8px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    flex-grow: 0;
    margin-right: 0;
  }
  .hw-header__breadcrumbs.is-active {
    opacity: 1;
    pointer-events: all;
  }
  .hw-header__breadcrumbs::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: 100%;
    left: 1.5em;
    border: 0.75rem solid transparent;
    border-top: none;
    border-bottom-color: #fff;
    filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, 0.1));
  }
}
.hw-header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.5rem;
}

.hw-header + main,
.hw-header + .site-main {
  padding-top: 4rem;
}
@media (min-width: 992px) {
  .hw-header + main,
  .hw-header + .site-main {
    padding-top: 5rem;
  }
}

.hw-nav-main {
  display: none;
}
@media (min-width: 992px) {
  .hw-nav-main {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    margin: 0 auto;
  }
}
.hw-nav-main__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.hw-nav-main__item {
  position: relative;
}
.hw-nav-main__link {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(41, 44, 52);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.hw-nav-main__link--active, .hw-nav-main__link--open, .hw-nav-main__link:hover {
  color: #1592e6;
}

.hw-flyout {
  position: absolute;
  top: 5.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  overflow: visible;
}
@media (max-width: 991.98px) {
  .hw-flyout {
    display: none;
  }
}
.hw-flyout::before {
  content: "";
  position: absolute;
  top: -8px;
  left: var(--flyout-nub-x, 50%);
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: white;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease;
}
.hw-flyout--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hw-flyout--open::before {
  opacity: 1;
}
.hw-flyout__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1.5rem 1.5rem;
  max-height: calc(100vh - 5rem - 2rem);
  overflow-y: auto;
}
.hw-flyout__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(41, 44, 52);
  transition: color 0.3s ease, background 0.3s ease;
  z-index: 2;
}
.hw-flyout__close:hover {
  color: #1592e6;
  background: #f1f1f1;
}
.hw-flyout__layout {
  display: flex;
  gap: 2rem;
}
.hw-flyout__level2-col {
  flex: 0 0 280px;
  min-width: 0;
}
.hw-flyout__right {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-right: 3rem;
  padding-left: 1.5rem;
}
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__image-col {
  display: none;
}
.hw-flyout__right:has(.hw-flyout__panel--active) {
  background-color: rgb(41, 44, 52);
  color: #fff;
}
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__panel-title,
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__panel-title-link,
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__panel-title-context,
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-link,
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-title,
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-subtitle {
  color: #fff;
}
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-link {
  background-color: transparent;
}
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-link:hover, .hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-link--active {
  color: #1592e6;
}
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-link:hover .hw-flyout__level3-title,
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-link:hover .hw-flyout__level3-subtitle, .hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-link--active .hw-flyout__level3-title,
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__level3-link--active .hw-flyout__level3-subtitle {
  color: #1592e6;
}
.hw-flyout__right:has(.hw-flyout__panel--active) .hw-flyout__panel-title-link:hover {
  color: #1592e6;
}
.hw-flyout__level2 {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hw-flyout__level2-item {
  margin: 0;
}
.hw-flyout__level2-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0.75rem;
  color: rgb(41, 44, 52);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
}
.hw-flyout__level2-link:hover, .hw-flyout__level2-link--active {
  color: #1592e6;
}
.hw-flyout__level2-link:hover .hw-flyout__level2-title, .hw-flyout__level2-link--active .hw-flyout__level2-title {
  color: #1592e6;
}
.hw-flyout__level2-link--active::after {
  content: "";
  position: absolute;
  left: calc(100% + 2rem);
  top: 50%;
  width: 16px;
  height: 16px;
  background: rgb(41, 44, 52);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 2;
  pointer-events: none;
}
.hw-flyout__level2-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.hw-flyout__level2-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-right: 1rem;
}
.hw-flyout__level2-title span,
.hw-flyout__level2-title p {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
.hw-flyout__level2-arrow {
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.hw-flyout__panel {
  display: none;
}
.hw-flyout__panel--active {
  display: block;
  animation: hw-fadeIn 0.25s ease;
}
.hw-flyout__panel-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 1.125rem 0 1.25rem;
  color: rgb(41, 44, 52);
  line-height: 1.2;
}
.hw-flyout__panel-title-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
.hw-flyout__panel-title-link:hover {
  color: #1592e6;
}
.hw-flyout__panel-title-context {
  color: rgb(41, 44, 52);
  font-weight: 700;
}
.hw-flyout__level3 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  grid-template-columns: 1fr 1fr;
  gap: 0 1.75rem;
}
.hw-flyout__level3-item {
  margin: 0;
}
.hw-flyout__level3-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.225rem 0;
  text-decoration: none;
  color: rgb(41, 44, 52);
  background-color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.hw-flyout__level3-link:hover, .hw-flyout__level3-link--active {
  color: #1592e6;
}
.hw-flyout__level3-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.hw-flyout__level3-title {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}
.hw-flyout__level3-arrow {
  width: 9px;
  height: 16px;
  opacity: 0;
  flex-shrink: 0;
  margin-left: auto;
  color: #1592e6;
  transition: opacity 0.3s ease;
}
.hw-flyout__level4 {
  grid-column: 1/-1;
  list-style: none;
  margin: 0 0 0.75rem 2.5rem;
  padding: 0.25rem 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.hw-flyout__level4-item {
  margin: 0;
}
.hw-flyout__level4-link {
  display: block;
  padding: 0.25rem 0.75rem;
  background-color: #f1f1f1;
  text-decoration: none;
  color: rgb(41, 44, 52);
  font-size: 0.75rem;
}
.hw-flyout__level4-link:hover {
  color: #1592e6;
}

.hw-mobile-nav {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f8f9fa;
  z-index: 998;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hw-mobile-nav {
    display: none !important;
  }
}
.hw-mobile-nav--open {
  display: block;
}
.hw-mobile-nav__inner {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.hw-mobile-nav__level {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding: 1rem;
}
.hw-mobile-nav__level--root {
  transform: translateX(0);
  opacity: 1;
}
.hw-mobile-nav__level--root.hw-mobile-nav__level--hidden-left {
  transform: translateX(-100%);
  opacity: 0;
}
.hw-mobile-nav__level--sub {
  transform: translateX(100%);
  opacity: 0;
  background: white;
}
.hw-mobile-nav__level--sub.hw-mobile-nav__level--visible {
  transform: translateX(0);
  opacity: 1;
}
.hw-mobile-nav__level[aria-hidden=true] {
  pointer-events: none;
}
.hw-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hw-mobile-nav__item {
  margin: 0;
  border-bottom: 1px solid #f1f1f1;
}
.hw-mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgb(41, 44, 52);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}
.hw-mobile-nav__link:hover {
  color: #1592e6;
}
.hw-mobile-nav__arrow {
  flex-shrink: 0;
  color: #1592e6;
}
.hw-mobile-nav__back {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgb(41, 44, 52);
  background: none;
  border: none;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
  margin-bottom: 1rem;
  text-align: left;
  transition: color 0.3s ease;
}
.hw-mobile-nav__back:hover {
  color: #1592e6;
}
.hw-mobile-nav__back-arrow {
  color: #1592e6;
}
.hw-mobile-nav__groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hw-mobile-nav__group-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgb(41, 44, 52);
  margin: 0 0 0.5rem;
}
.hw-mobile-nav__group-title a {
  color: inherit;
  text-decoration: none;
}
.hw-mobile-nav__group-title a:hover {
  color: #1592e6;
}
.hw-mobile-nav__group-title span,
.hw-mobile-nav__group-title p {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
.hw-mobile-nav__group-title--toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: rgb(41, 44, 52);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
.hw-mobile-nav__group-title-text {
  flex: 1;
}
.hw-mobile-nav__group-title-arrow {
  flex-shrink: 0;
  margin-left: 0.5rem;
  width: 20px;
  height: 20px;
  color: #1592e6;
  transition: transform 0.25s ease;
}
.hw-mobile-nav__group--open .hw-mobile-nav__group-title-arrow {
  transform: rotate(180deg);
}
.hw-mobile-nav__group-body {
  background: rgb(41, 44, 52);
  color: #fff;
  padding: 1rem;
  margin-top: 0.5rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
.hw-mobile-nav__group-body a {
  color: #fff;
  text-decoration: none;
}
.hw-mobile-nav__group-body .hw-mobile-nav__card,
.hw-mobile-nav__group-body .hw-mobile-nav__card-title,
.hw-mobile-nav__group-body .hw-mobile-nav__sublink,
.hw-mobile-nav__group-body .hw-mobile-nav__level4-link {
  color: #fff;
}
.hw-mobile-nav__group-body .hw-mobile-nav__level4-link {
  background: rgba(255, 255, 255, 0.08);
}
.hw-mobile-nav__group-body .hw-mobile-nav__card:hover,
.hw-mobile-nav__group-body .hw-mobile-nav__sublink:hover,
.hw-mobile-nav__group-body .hw-mobile-nav__level4-link:hover {
  color: #1592e6;
}
.hw-mobile-nav__group-overview {
  display: block;
  padding: 0 0 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  text-decoration: none;
}
.hw-mobile-nav__group-overview:hover {
  color: #1592e6;
}
.hw-mobile-nav__sublinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.hw-mobile-nav__sublinks-item {
  margin: 0;
}
.hw-mobile-nav__sublink {
  display: block;
  padding: 0.375rem 0;
  color: rgb(41, 44, 52);
  text-decoration: none;
  font-size: 0.9375rem;
}
.hw-mobile-nav__sublink:hover {
  color: #1592e6;
}
.hw-mobile-nav__level4 {
  list-style: none;
  margin: 0.25rem 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.hw-mobile-nav__level4-link {
  display: block;
  padding: 0.2rem 0.625rem;
  background: #f1f1f1;
  color: rgb(41, 44, 52);
  text-decoration: none;
  font-size: 0.75rem;
}
.hw-mobile-nav__level4-link:hover {
  color: #1592e6;
}

body.hw-mobile-nav-active {
  overflow: hidden;
}

body.hw-flyout-active::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 997;
  pointer-events: none;
}

@keyframes hw-fadeIn {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hw-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 992px) {
  .hw-burger {
    display: none;
  }
}
.hw-burger__icon {
  position: relative;
  display: block;
  width: 2rem;
  height: 1rem;
  transition: 0.3s ease;
}
.hw-burger__icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #1592e6;
  opacity: 1;
  right: 0;
  transition: 0.3s ease;
  transform-origin: center;
}
.hw-burger__icon span:nth-child(1) {
  top: 0;
}
.hw-burger__icon span:nth-child(2) {
  top: 50%;
  width: 50%;
}
.hw-burger__icon span:nth-child(3) {
  top: 100%;
}
.hw-burger[aria-expanded=true] .hw-burger__icon span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}
.hw-burger[aria-expanded=true] .hw-burger__icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-1.5rem);
}
.hw-burger[aria-expanded=true] .hw-burger__icon span:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.hw-flyout__image-col {
  position: absolute;
  inset: 0;
  display: block;
}
.hw-flyout__featured-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.hw-flyout__featured-link:hover .hw-flyout__image img {
  transform: scale(1.05);
}
.hw-flyout__images {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.hw-flyout__image {
  display: none;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hw-flyout__image--active {
  display: block;
}
.hw-flyout__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 3px solid #1592e6;
  transition: transform 0.3s ease;
}
.hw-flyout__image-label {
  --label-corner: 12px;
  --label-corner-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M0,0 Q0,10 10,10 L0,10 Z' fill='%2300b0ff'/%3E%3C/svg%3E");
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1592e6;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.625rem 0.75rem;
  z-index: 2;
}
.hw-flyout__level3-image {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  overflow: hidden;
  display: inline-block;
}
.hw-flyout__level3-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hw-mobile-nav__featured {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.hw-mobile-nav__featured-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hw-mobile-nav__featured-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6864864865;
  object-fit: cover;
  border-bottom: 3px solid #1592e6;
}
.hw-mobile-nav__featured-label {
  --label-corner: 12px;
  --label-corner-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M0,0 Q0,10 10,10 L0,10 Z' fill='%2300b0ff'/%3E%3C/svg%3E");
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1592e6;
  color: #fff;
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  z-index: 2;
}
.hw-mobile-nav__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: rgb(41, 44, 52);
  padding: 0.375rem 0;
  transition: color 0.3s ease;
}
.hw-mobile-nav__card:hover {
  color: #1592e6;
}
.hw-mobile-nav__card-image {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  overflow: hidden;
}
.hw-mobile-nav__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hw-mobile-nav__card-title {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.footer--dark {
  position: relative;
  bottom: 0;
  width: 100%;
  /*
  &:before {
      content: '';
      position: absolute;
      z-index: 50;
      width: 0;
      height: 0;
      top: 0;
      pointer-events: none;
      border-style: solid;
      border-width: $height 100vw 0 0;
      @include media-breakpoint-down(lg) {
          border-width: $height 100vw 0 0;
      }
      border-color: map-get($theme-colors, 'bgDark') transparent transparent transparent;
  }
  */
  font-size: 0.5625rem;
}
.footer--dark #ifdigital {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: #979797;
  transform: translate(-50%, 0);
  transition: all 0.3s ease;
}
.footer--dark #ifdigital:hover {
  background-image: linear-gradient(134deg, #f43e95 0%, #f77a48 100%);
  color: #fff;
  padding: 0.5rem 1.5rem;
  transform: translate(-50%, 0);
}
@media (min-width: 992px) {
  .footer--dark {
    font-size: 0.875rem;
  }
}
.footer--dark .footer__content {
  width: 100%;
  text-align: right;
  padding-bottom: 2rem;
  position: relative;
}
.footer--dark .footer__social {
  display: flex;
  justify-content: end;
  font-size: 2rem;
}
.footer--dark .footer__social-item {
  display: block;
  margin: 0.5rem;
  color: #292c34;
}
@media (min-width: 992px) {
  .footer--dark .footer__social-item {
    color: #064d9d;
  }
}
.footer--dark .footer__social-item:first-child {
  margin-left: 0;
}
.footer--dark .footer__social-item:last-child {
  margin-right: 0;
}
.footer--dark .footer__links {
  display: flex;
  justify-content: end;
}
@media (max-width: 767.98px) {
  .footer--dark .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer--dark .footer__links .footer__link {
  display: block;
  color: inherit;
  text-decoration: none;
  margin-left: 0.5rem;
}
.footer--dark .footer__links .footer__link:hover {
  color: #1592e6;
}
.footer--dark .footer__links .footer__link:hover:after {
  color: white;
}
.footer--dark .footer__links .footer__link:after {
  content: "|";
  margin-left: 0.5rem;
}
.footer--dark .footer__links .footer__link:last-child:after {
  content: "";
  margin-left: 0;
}
.footer--dark:before {
  border-color: #292c34 transparent transparent transparent;
}
.footer--dark .footer__social {
  display: flex;
  justify-content: end;
}
@media (max-width: 767.98px) {
  .footer--dark .footer__social {
    justify-content: center;
  }
}
.footer--dark .footer__social-item {
  color: #292c34;
}
@media (min-width: 992px) {
  .footer--dark .footer__social-item {
    color: #064d9d;
  }
}
.footer--dark .footer__links .footer__link:hover {
  color: #1592e6;
}
.footer--dark .footer__links .footer__link:hover:after {
  color: black;
}
.footer--light {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: #292c34;
  color: #f8f9fa;
  /*
  &:before {
      content: '';
      position: absolute;
      z-index: 50;
      width: 0;
      height: 0;
      top: 0;
      pointer-events: none;
      border-style: solid;
      border-width: $height 100vw 0 0;
      @include media-breakpoint-down(lg) {
          border-width: $height 100vw 0 0;
      }
      border-color: map-get($theme-colors, 'bgDark') transparent transparent transparent;
  }
  */
  font-size: 0.5625rem;
}
@media (min-width: 992px) {
  .footer--light {
    font-size: 0.875rem;
  }
}
.footer--light .footer__content {
  width: 100%;
  text-align: right;
  padding-bottom: 2rem;
  position: relative;
}
.footer--light .footer__social {
  display: flex;
  justify-content: end;
  font-size: 2rem;
}
.footer--light .footer__social-item {
  display: block;
  margin: 0.5rem;
  color: #292c34;
}
@media (min-width: 992px) {
  .footer--light .footer__social-item {
    color: #064d9d;
  }
}
.footer--light .footer__social-item:first-child {
  margin-left: 0;
}
.footer--light .footer__social-item:last-child {
  margin-right: 0;
}
.footer--light .footer__links {
  display: flex;
  justify-content: end;
}
@media (max-width: 767.98px) {
  .footer--light .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer--light .footer__links .footer__link {
  display: block;
  color: inherit;
  text-decoration: none;
  margin-left: 0.5rem;
}
.footer--light .footer__links .footer__link:hover {
  color: #1592e6;
}
.footer--light .footer__links .footer__link:hover:after {
  color: white;
}
.footer--light .footer__links .footer__link:after {
  content: "|";
  margin-left: 0.5rem;
}
.footer--light .footer__links .footer__link:last-child:after {
  content: "";
  margin-left: 0;
}
.footer--light:before {
  border-color: #f8f9fa transparent transparent transparent;
}
.footer--light .footer__social {
  display: flex;
  justify-content: end;
}
.footer--light .footer__social-item {
  color: #f8f9fa;
}

.section__cta {
  border-top: 1px solid #cccdcd;
  border-bottom: 1px solid #cccdcd;
}
.section__cta .container > a:hover .cta__icon {
  transform: translateX(50%);
}
.section__cta .cta__icon {
  color: #1592e6;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.section__cta .cta__icon:before {
  content: "\f061";
}
@media (min-width: 992px) {
  .section__cta .cta__icon {
    font-size: 3rem;
  }
}
.section__cta .cta__link {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.section__cta a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.section__topic-filter {
  display: none;
}
@media (min-width: 992px) {
  .section__topic-filter {
    display: block;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section__jobs {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section__tc-info[data-site=product-detail-1] .tc-info__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-column-gap: 0;
  grid-row-gap: 0;
}
@media (min-width: 992px) {
  .section__tc-info[data-site=product-detail-1] .tc-info__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 0;
  }
}
.section__tc-info[data-site=product-detail-1] .tc-info__col {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(2) > div {
  display: inline-block;
  text-align: end;
  margin-right: 2rem;
}
@media (min-width: 992px) {
  .section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(2) > div {
    margin-right: 2rem;
  }
}
.section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(3) > div {
  display: inline-block;
  text-align: end;
  margin-left: 2rem;
}
@media (min-width: 992px) {
  .section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(3) > div {
    margin-right: 2rem;
    margin-left: 0;
  }
}
.section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(1) {
  align-items: start;
  justify-content: end;
  grid-area: 2/1/3/3;
}
@media (min-width: 992px) {
  .section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(1) {
    grid-area: 1/1/2/2;
    border-right: 1px solid;
  }
}
.section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(2) {
  grid-area: 1/1/2/2;
  border-right: 1px solid;
}
@media (min-width: 992px) {
  .section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(2) {
    grid-area: 1/2/2/3;
  }
}
.section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(3) {
  grid-area: 1/2/2/3;
}
@media (min-width: 992px) {
  .section__tc-info[data-site=product-detail-1] .tc-info__col:nth-child(3) {
    grid-area: 1/3/2/4;
  }
}

.section__category-cards .alignt-items-baseline {
  align-items: baseline;
}
.section__category-cards i.ankle-arrow {
  font-style: normal;
  position: relative;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  border-bottom: 0px solid #fff;
  padding-left: 2rem;
}
.section__category-cards i.ankle-arrow * {
  text-decoration: inherit;
  color: inherit;
}
.section__category-cards i.ankle-arrow:before {
  display: block;
  text-align: center;
  content: "↳";
  color: #1592e6;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200%;
}
@media (min-width: 992px) {
  .section__category-cards .row .col-lg-6:first-child {
    border-right: 1px solid #cccdcd;
  }
}

.section__content-filter {
  display: flex;
  flex-direction: column;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: fixed;
  top: 5rem;
  right: 5vw;
  z-index: 999;
}
.section__content-filter.is-active {
  opacity: 1;
  pointer-events: all;
}

.container-content-filter {
  position: fixed;
  z-index: 100;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: end;
}

.triangle.triangle-top.bg-dark.frame-space-before-large-negative .content-filter__output-item.frame-space-before-small {
  display: none;
}

.content-filter {
  display: none;
}
.content-filter__button {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border: 1px solid #f1f1f1;
  background-color: #1592e6;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .content-filter__button {
    display: inline-flex;
    align-self: end;
  }
  .content-filter__button:hover .content-filter__groups {
    opacity: 1;
    pointer-events: all;
  }
}
.content-filter__button img {
  width: 1rem;
}
.content-filter__button span {
  line-height: 1;
  color: white;
  margin: 1rem;
}
.content-filter__groups {
  position: absolute;
  display: grid;
  bottom: 0;
  left: 5vw;
  transform: translate(-50%, 100%);
  width: 100%;
  min-width: 80vw;
  grid-template-columns: repeat(1, auto);
  grid-template-rows: repeat(1, auto);
  grid-row-gap: 1rem;
  grid-column-gap: 1rem;
  user-select: none;
  border: 1px solid #cccdcd;
  background-color: #f8f9fa;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 2rem 1.5rem;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media (min-width: 992px) {
  .content-filter__groups {
    grid-template-columns: repeat(2, auto);
    width: initial;
    min-width: initial;
    left: 0;
  }
}
.content-filter__groups::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 100%;
  left: 80%;
  transform: translate(-50%, 0);
  border: 0.75rem solid transparent;
  border-top: none;
  border-bottom-color: #fff;
  filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, 0.1));
}
.content-filter__groups.is-active {
  opacity: 1;
  pointer-events: all;
}
.content-filter__group {
  display: flex;
  align-items: center;
}
.content-filter__label {
  user-select: none;
  color: #343a40;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-left: 1rem;
  white-space: nowrap;
}
.content-filter__output {
  gap: 1rem;
  flex-wrap: wrap;
  display: flex;
}
.content-filter__output.badges {
  display: none;
}
.content-filter__output [data-filter=Ansprache] {
  height: 5rem;
  margin: 2rem;
  background-color: #00eb85;
}
.content-filter__output [data-filter=W-Vision] {
  height: 5rem;
  margin: 2rem;
  background-color: #7200eb;
}
.content-filter__output [data-filter=Farben] {
  height: 5rem;
  margin: 2rem;
  background-color: #ff2e50;
}
.content-filter__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
  transition: all 0.15s ease-out 0s;
  border: 1px solid #1592e6;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  outline: none;
  flex-shrink: 0;
}
.content-filter__input:checked + label {
  color: #1592e6;
  transition: color 0.3s ease;
}
.content-filter__input::before {
  width: 2rem;
  height: 2rem;
  display: flex;
  content: "\f00c";
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  align-items: center;
  justify-content: center;
  color: #1592e6;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}
.content-filter__input:checked::before {
  transform: scale(1);
  opacity: 1;
}
.content-filter__input {
  border-radius: 50%;
}
.content-filter__input::after {
  border-radius: 50%;
}

.arrows-wrapper {
  position: relative;
  z-index: 10;
}
.arrows-wrapper .arrow-left {
  display: none;
  background-color: white;
  color: #1592e6;
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .arrows-wrapper .arrow-left:first-child {
    margin-left: 0;
  }
  .arrows-wrapper .arrow-left:last-child {
    margin-right: 0;
  }
  .arrows-wrapper .arrow-left:hover {
    color: rgb(248, 249, 250);
    background-color: #00b0ff;
  }
}
.arrows-wrapper .arrow-left:before {
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  content: "\f061";
}
.arrows-wrapper .arrow-left--white, .arrows-wrapper .bg-light .arrow-left, .bg-light .arrows-wrapper .arrow-left, .arrows-wrapper .arrow-left.is-white {
  display: none;
  background-color: white;
  color: #1592e6;
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-left--white, .arrows-wrapper .bg-light .arrow-left, .bg-light .arrows-wrapper .arrow-left, .arrows-wrapper .arrow-left.is-white {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .arrows-wrapper .arrow-left--white:first-child, .arrows-wrapper .bg-light .arrow-left:first-child, .bg-light .arrows-wrapper .arrow-left:first-child, .arrows-wrapper .arrow-left.is-white:first-child {
    margin-left: 0;
  }
  .arrows-wrapper .arrow-left--white:last-child, .arrows-wrapper .bg-light .arrow-left:last-child, .bg-light .arrows-wrapper .arrow-left:last-child, .arrows-wrapper .arrow-left.is-white:last-child {
    margin-right: 0;
  }
  .arrows-wrapper .arrow-left--white:hover, .arrows-wrapper .bg-light .arrow-left:hover, .bg-light .arrows-wrapper .arrow-left:hover, .arrows-wrapper .arrow-left.is-white:hover {
    color: rgb(248, 249, 250);
    background-color: #00b0ff;
  }
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-left--white:hover, .arrows-wrapper .bg-light .arrow-left:hover, .bg-light .arrows-wrapper .arrow-left:hover, .arrows-wrapper .arrow-left.is-white:hover {
    color: white;
  }
}
.arrows-wrapper .arrow-left--white:before, .arrows-wrapper .bg-light .arrow-left:before, .bg-light .arrows-wrapper .arrow-left:before, .arrows-wrapper .arrow-left.is-white:before {
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  content: "\f060";
}
.arrows-wrapper .arrow-left--light, .arrows-wrapper .bg-white .arrow-left, .bg-white .arrows-wrapper .arrow-left, .arrows-wrapper .arrow-left.is-light {
  display: none;
  background-color: rgb(248, 249, 250);
  color: #1592e6;
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-left--light, .arrows-wrapper .bg-white .arrow-left, .bg-white .arrows-wrapper .arrow-left, .arrows-wrapper .arrow-left.is-light {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .arrows-wrapper .arrow-left--light:first-child, .arrows-wrapper .bg-white .arrow-left:first-child, .bg-white .arrows-wrapper .arrow-left:first-child, .arrows-wrapper .arrow-left.is-light:first-child {
    margin-left: 0;
  }
  .arrows-wrapper .arrow-left--light:last-child, .arrows-wrapper .bg-white .arrow-left:last-child, .bg-white .arrows-wrapper .arrow-left:last-child, .arrows-wrapper .arrow-left.is-light:last-child {
    margin-right: 0;
  }
  .arrows-wrapper .arrow-left--light:hover, .arrows-wrapper .bg-white .arrow-left:hover, .bg-white .arrows-wrapper .arrow-left:hover, .arrows-wrapper .arrow-left.is-light:hover {
    color: rgb(248, 249, 250);
    background-color: #00b0ff;
  }
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-left--light:hover, .arrows-wrapper .bg-white .arrow-left:hover, .bg-white .arrows-wrapper .arrow-left:hover, .arrows-wrapper .arrow-left.is-light:hover {
    color: white;
  }
}
.arrows-wrapper .arrow-left--light:before, .arrows-wrapper .bg-white .arrow-left:before, .bg-white .arrows-wrapper .arrow-left:before, .arrows-wrapper .arrow-left.is-light:before {
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  content: "\f060";
}
.arrows-wrapper .arrow-left--dark, .arrows-wrapper .bg-dark .arrow-left, .bg-dark .arrows-wrapper .arrow-left, .arrows-wrapper .arrow-left.is-dark {
  display: none;
  background-color: rgb(83, 86, 92);
  color: white;
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-left--dark, .arrows-wrapper .bg-dark .arrow-left, .bg-dark .arrows-wrapper .arrow-left, .arrows-wrapper .arrow-left.is-dark {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .arrows-wrapper .arrow-left--dark:first-child, .arrows-wrapper .bg-dark .arrow-left:first-child, .bg-dark .arrows-wrapper .arrow-left:first-child, .arrows-wrapper .arrow-left.is-dark:first-child {
    margin-left: 0;
  }
  .arrows-wrapper .arrow-left--dark:last-child, .arrows-wrapper .bg-dark .arrow-left:last-child, .bg-dark .arrows-wrapper .arrow-left:last-child, .arrows-wrapper .arrow-left.is-dark:last-child {
    margin-right: 0;
  }
  .arrows-wrapper .arrow-left--dark:hover, .arrows-wrapper .bg-dark .arrow-left:hover, .bg-dark .arrows-wrapper .arrow-left:hover, .arrows-wrapper .arrow-left.is-dark:hover {
    color: rgb(248, 249, 250);
    background-color: #00b0ff;
  }
}
.arrows-wrapper .arrow-left--dark:before, .arrows-wrapper .bg-dark .arrow-left:before, .bg-dark .arrows-wrapper .arrow-left:before, .arrows-wrapper .arrow-left.is-dark:before {
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  content: "\f060";
}
.arrows-wrapper .arrow-left.swiper-button-disabled {
  color: #d8d8d8;
  background-color: transparent;
  cursor: no-drop;
}
.arrows-wrapper .arrow-left.swiper-button-disabled:hover {
  color: #d8d8d8;
  background-color: transparent;
}
.arrows-wrapper .arrow-right {
  display: none;
  background-color: white;
  color: #1592e6;
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .arrows-wrapper .arrow-right:first-child {
    margin-left: 0;
  }
  .arrows-wrapper .arrow-right:last-child {
    margin-right: 0;
  }
  .arrows-wrapper .arrow-right:hover {
    color: rgb(248, 249, 250);
    background-color: #00b0ff;
  }
}
.arrows-wrapper .arrow-right:before {
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  content: "\f060";
}
.arrows-wrapper .arrow-right--white, .arrows-wrapper .bg-light .arrow-right, .bg-light .arrows-wrapper .arrow-right, .arrows-wrapper .arrow-right.is-white {
  display: none;
  background-color: white;
  color: #1592e6;
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-right--white, .arrows-wrapper .bg-light .arrow-right, .bg-light .arrows-wrapper .arrow-right, .arrows-wrapper .arrow-right.is-white {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .arrows-wrapper .arrow-right--white:first-child, .arrows-wrapper .bg-light .arrow-right:first-child, .bg-light .arrows-wrapper .arrow-right:first-child, .arrows-wrapper .arrow-right.is-white:first-child {
    margin-left: 0;
  }
  .arrows-wrapper .arrow-right--white:last-child, .arrows-wrapper .bg-light .arrow-right:last-child, .bg-light .arrows-wrapper .arrow-right:last-child, .arrows-wrapper .arrow-right.is-white:last-child {
    margin-right: 0;
  }
  .arrows-wrapper .arrow-right--white:hover, .arrows-wrapper .bg-light .arrow-right:hover, .bg-light .arrows-wrapper .arrow-right:hover, .arrows-wrapper .arrow-right.is-white:hover {
    color: rgb(248, 249, 250);
    background-color: #00b0ff;
  }
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-right--white:hover, .arrows-wrapper .bg-light .arrow-right:hover, .bg-light .arrows-wrapper .arrow-right:hover, .arrows-wrapper .arrow-right.is-white:hover {
    color: white;
  }
}
.arrows-wrapper .arrow-right--white:before, .arrows-wrapper .bg-light .arrow-right:before, .bg-light .arrows-wrapper .arrow-right:before, .arrows-wrapper .arrow-right.is-white:before {
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  content: "\f061";
}
.arrows-wrapper .arrow-right--light, .arrows-wrapper .bg-white .arrow-right, .bg-white .arrows-wrapper .arrow-right, .arrows-wrapper .arrow-right.is-light {
  display: none;
  background-color: rgb(248, 249, 250);
  color: #1592e6;
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-right--light, .arrows-wrapper .bg-white .arrow-right, .bg-white .arrows-wrapper .arrow-right, .arrows-wrapper .arrow-right.is-light {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .arrows-wrapper .arrow-right--light:first-child, .arrows-wrapper .bg-white .arrow-right:first-child, .bg-white .arrows-wrapper .arrow-right:first-child, .arrows-wrapper .arrow-right.is-light:first-child {
    margin-left: 0;
  }
  .arrows-wrapper .arrow-right--light:last-child, .arrows-wrapper .bg-white .arrow-right:last-child, .bg-white .arrows-wrapper .arrow-right:last-child, .arrows-wrapper .arrow-right.is-light:last-child {
    margin-right: 0;
  }
  .arrows-wrapper .arrow-right--light:hover, .arrows-wrapper .bg-white .arrow-right:hover, .bg-white .arrows-wrapper .arrow-right:hover, .arrows-wrapper .arrow-right.is-light:hover {
    color: rgb(248, 249, 250);
    background-color: #00b0ff;
  }
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-right--light:hover, .arrows-wrapper .bg-white .arrow-right:hover, .bg-white .arrows-wrapper .arrow-right:hover, .arrows-wrapper .arrow-right.is-light:hover {
    color: white;
  }
}
.arrows-wrapper .arrow-right--light:before, .arrows-wrapper .bg-white .arrow-right:before, .bg-white .arrows-wrapper .arrow-right:before, .arrows-wrapper .arrow-right.is-light:before {
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  content: "\f061";
}
.arrows-wrapper .arrow-right--dark, .arrows-wrapper .bg-dark .arrow-right, .bg-dark .arrows-wrapper .arrow-right, .arrows-wrapper .arrow-right.is-dark {
  display: none;
  background-color: rgb(83, 86, 92);
  color: white;
}
@media (min-width: 992px) {
  .arrows-wrapper .arrow-right--dark, .arrows-wrapper .bg-dark .arrow-right, .bg-dark .arrows-wrapper .arrow-right, .arrows-wrapper .arrow-right.is-dark {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .arrows-wrapper .arrow-right--dark:first-child, .arrows-wrapper .bg-dark .arrow-right:first-child, .bg-dark .arrows-wrapper .arrow-right:first-child, .arrows-wrapper .arrow-right.is-dark:first-child {
    margin-left: 0;
  }
  .arrows-wrapper .arrow-right--dark:last-child, .arrows-wrapper .bg-dark .arrow-right:last-child, .bg-dark .arrows-wrapper .arrow-right:last-child, .arrows-wrapper .arrow-right.is-dark:last-child {
    margin-right: 0;
  }
  .arrows-wrapper .arrow-right--dark:hover, .arrows-wrapper .bg-dark .arrow-right:hover, .bg-dark .arrows-wrapper .arrow-right:hover, .arrows-wrapper .arrow-right.is-dark:hover {
    color: rgb(248, 249, 250);
    background-color: #00b0ff;
  }
}
.arrows-wrapper .arrow-right--dark:before, .arrows-wrapper .bg-dark .arrow-right:before, .bg-dark .arrows-wrapper .arrow-right:before, .arrows-wrapper .arrow-right.is-dark:before {
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  content: "\f061";
}
.arrows-wrapper .arrow-right.swiper-button-disabled {
  color: #d8d8d8;
  background-color: transparent;
  cursor: no-drop;
}
.arrows-wrapper .arrow-right.swiper-button-disabled:hover {
  color: #d8d8d8;
  background-color: transparent;
}

.site-main {
  padding-top: 5rem;
}
@media (min-width: 992px) {
  .site-main {
    padding-top: 5rem;
  }
}

.close-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: rgb(248, 249, 250);
  color: #1592e6;
  cursor: pointer;
}
.close-button:hover {
  color: white;
  background-color: #00b0ff;
}
.close-button:before {
  content: "✕";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font-size: 1.5rem;
  font-weight: bold;
}

[data-icon]:before {
  display: block;
  margin-left: 1rem;
  font-size: 3.5rem;
  color: #1592e6;
  content: attr(data-icon);
  speak: none;
}

.swiper-standard .item-wrapper {
  height: 100%;
}
.swiper-standard .item-wrapper .card--basic {
  height: 100%;
}
@media (min-width: 992px) {
  .swiper-standard.swiper--mobile-only .swiper-wrapper {
    flex-wrap: wrap;
  }
  .swiper-standard.swiper--mobile-only .swiper-slide {
    width: calc(33.33333% - 24px);
    margin-bottom: 36px;
    height: auto;
  }
  .swiper-standard.swiper--mobile-only .swiper-slide:nth-child(3n-1) {
    margin-left: 36px;
    margin-right: 36px;
  }
  .swiper-standard.swiper--mobile-only .swiper-arrows,
  .swiper-standard.swiper--mobile-only .swiper-pagination {
    display: none !important;
  }
}

.dots {
  display: flex;
  justify-content: center;
}
.dots.swiper-pagination {
  position: initial;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .dots.swiper-pagination {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.dots .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.3125rem;
  margin: 0 0.15625rem !important;
  border-radius: 0 !important;
  cursor: pointer;
  opacity: 1;
  background-color: #cccdcd;
}
@media (min-width: 992px) {
  .dots .swiper-pagination-bullet {
    width: 1.25rem;
    height: 0.625rem;
    margin: 0 0.3125rem !important;
  }
}
.dots .swiper-pagination-bullet-active {
  background-color: #1592e6;
}

.bg-gray .dots .swiper-pagination-bullet {
  background-color: #f8f9fa;
}
.bg-gray .dots .swiper-pagination-bullet-active {
  background-color: #1592e6;
}

.btn-primary,
input[type=file] {
  display: inline-block;
  align-items: center;
  padding: 0.5rem 1rem;
  color: white !important;
  width: fit-content;
  user-select: none;
  text-decoration: none;
  background-color: #1592e6;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  margin: 0.3rem;
}
.btn-primary:hover,
input[type=file]:hover {
  color: #1592e6;
  border-color: #1592e6;
  filter: brightness(1.1) !important;
}
.btn-primary:after,
input[type=file]:after {
  content: initial;
}

.button {
  /*
    &-submit {
        background: map-get($theme-colors, 'bgDark');

        color: white;
        font-weight: bold;

        .button__icon {
            @include fontAwesome;

            &:before {
                content: '\e2e1'; // Arrow back
            }
        }
        &:hover {
            color: map-get($font-colors, 'gray3');
            background-color: map-get($theme-colors, 'bgLight');
            border: 1px solid map-get($theme-colors, 'bgDark');
        }
    }
    */
}
.button--basic {
  display: inline-block;
  align-items: center;
  padding: 0.5rem 1rem;
  color: white !important;
  width: fit-content;
  user-select: none;
  text-decoration: none;
  background-color: #1592e6;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  margin: 0.3rem;
}
.button--basic:hover {
  color: #1592e6;
  border-color: #1592e6;
  filter: brightness(1.1) !important;
}
.button--basic:after {
  content: initial;
}
.button--basic:before {
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\e3d6";
  position: relative;
  margin-right: 1rem;
}
.button--basic.button--basic-back:before {
  content: "\e3d6";
}
.button--basic.button--basic-no-arrow:before {
  content: normal;
}
.button--basic--gray {
  background: #979797;
}

.modal__bg {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6509803922);
  backdrop-filter: blur(3px);
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal__bg.modal-in {
  animation: modalFadeIn 0.3s ease;
}
.modal__bg.modal-out {
  animation: modalFadeIn 0.3s ease reverse;
}

.common__deco-line {
  background-color: #292c34;
  width: 5.5rem;
  height: 1px;
  margin-bottom: 0.5rem;
}
.common__tag-container {
  user-select: none;
}
.common__tag-container.is-light .common__deco-line {
  background-color: #d8d8d8;
  width: 5.5rem;
  height: 1px;
  margin-bottom: 0.5rem;
}
.common__video-modal {
  display: none;
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.51);
  animation: fadeIn 0.6s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.common__video-modal.is-active {
  display: block;
}
.common-text p {
  font-size: 0.875rem;
  line-height: 1.375rem;
}
@media (min-width: 992px) {
  .common-text p {
    font-size: 1rem;
    line-height: 2rem;
  }
}
.common__big-text {
  font-size: 1.1875rem;
  line-height: 1.5;
  font-weight: 300;
}
@media (min-width: 992px) {
  .common__big-text {
    font-size: 2rem;
    font-weight: 400;
  }
}

.bg-dark .common-text,
.bg-gradient .common-text {
  color: #f8f9fa;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.video-modal__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 95vw;
}
@media (min-width: 992px) {
  .video-modal__wrapper {
    min-width: initial;
    max-width: 95vw;
  }
}
.video-modal__close {
  position: absolute;
  cursor: pointer;
  right: 1rem;
  top: 1rem;
  color: #fff;
  font-size: 2rem;
}
@media (min-width: 992px) {
  .video-modal__close {
    right: 4rem;
    top: 4rem;
    font-size: 3rem;
  }
}

/*.display-1 {
    font-size: 4rem;
}*/
.section-header__title {
  margin-bottom: 1.5rem;
}
.section-header__subline {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.56rem;
  margin-bottom: 0.625rem;
}

.jobs__icon {
  color: #1592e6;
  padding-right: 1rem;
}
.jobs__job-name {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .jobs__job-name {
    font-size: 1.5rem;
  }
}
.jobs__link {
  display: flex;
  align-items: center;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  color: #292c34;
  transition: color 0.1s ease;
  text-decoration: none;
  border-bottom: 1px solid #d8d8d8;
}
.jobs__link:last-child {
  border-bottom: none;
}
.jobs__link:hover {
  color: #1592e6;
}

/**
* badge
**/
.badges {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.badges__container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  text-decoration: none;
  user-select: none;
  cursor: pointer;
}
.badge.active:before {
  content: "✓";
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  margin-left: -0.25rem;
}

.badge {
  background-color: white;
  border: white;
  color: #1592e6;
}
@media (min-width: 768px) {
  .badge:hover {
    background-color: #1592e6;
    color: white;
  }
}
.badge.active {
  background-color: #1592e6;
  color: white;
}
.badge.active:before {
  border-right: 1px solid #fff;
  color: white;
}

/*.bg-white {
    .badge {
        background-color: $gray-100;
        border: 1px solid $gray-100;
        color: $dark;

        @include media-breakpoint-up(md) {

            &:hover {
                color: #fff;
                background-color: map-get($themeColors, cyan);
            }
        }

        &.active {
            background-color: $secondary;
            color: #fff;

            &:before {
                border-right: 1px solid #fff;
                color: #fff;
            }
        }
    }
}*/
.bg-dark .badge,
.bg-light .badge,
.bg-white .badge {
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  color: #333639;
}
@media (min-width: 768px) {
  .bg-dark .badge:hover,
  .bg-light .badge:hover,
  .bg-white .badge:hover {
    color: #1592e6;
    background-color: #f1f1f1;
  }
}
.bg-dark .badge.active,
.bg-light .badge.active,
.bg-white .badge.active {
  background-color: #00b0ff;
  color: #fff;
}
.bg-dark .badge.active:before,
.bg-light .badge.active:before,
.bg-white .badge.active:before {
  border-right: 1px solid #fff;
  color: #fff;
}

.triangle {
  /*
    position: relative;
    $triangleHeight: 8vw; //14rem;
    */
  background: inherit;
  overflow: hidden;
  /*    &:before {
            content: "";
            position: absolute;
            top: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0 $triangleHeight 100vw;
            border-color: transparent transparent rgba(102, 255, 113, 0.62) transparent;
        }
        */
  /*
        &.triangle-is-dark {
            &:before {
                border-color: transparent transparent transparent map-get($themeColors, gray1);
            }
        }

        &.triangle-is-light {
            &:before {
                border-color: transparent transparent map-get($themeColors, gray1) transparent;
            }
        }

        &.triangle-is-white {
            &:before {
                border-color: transparent transparent white transparent;
            }
        }

        &.triangle-light-dark {
            &:before {
                background-color: map-get($themeColors, gray1);
                border-color: transparent transparent map-get($themeColors, gray5) transparent;
            }
        }

        &.triangle-white-dark {
            &:before {
                background-color: white;
                border-color: transparent transparent map-get($themeColors, gray5) transparent;
            }
        }

        &.triangle-white-light {
            &:before {
                background-color: white;
                border-color: transparent transparent map-get($themeColors, gray1) transparent;
            }
        }

        &.triangle-light-white {
            &:before {
                background-color: map-get($themeColors, gray1);
                border-color: transparent transparent white transparent;
            }
        }

        &.triangle-dark-white {
            &:before {
                background-color: map-get($themeColors, gray5);
                border-color: transparent transparent white transparent;
            }
        }

        &.triangle-dark-light {
            &:before {
                background-color: map-get($themeColors, gray5);
                border-color: transparent transparent map-get($themeColors, gray1) transparent;
            }
        }*/
}
.triangle-spacer {
  padding-bottom: 7rem;
}
.triangle-inactive.frame-space-before-extra-large-negative, .triangle-inactive.frame-space-before-large-negative, .triangle-inactive.frame-space-before-medium-negative, .triangle-inactive.frame-space-before-small-negative, .triangle-inactive.frame-space-before-extra-small-negative {
  margin-top: 0 !important;
}
.triangle.triangle-top {
  padding-top: 7rem;
  padding-bottom: initial;
  margin-top: -7rem;
  clip-path: polygon(101% 0, 101% 101%, 0 101%, 0 3rem);
}
@media (min-width: 992px) {
  .triangle.triangle-top {
    clip-path: polygon(101% 0, 101% 101%, 0 101%, 0 7rem);
  }
}
.triangle.triangle-top:before {
  top: 0 !important;
  bottom: initial;
}
.triangle.triangle-bottom {
  padding-top: initial;
  padding-bottom: 7rem;
}
.triangle.triangle-bottom:before {
  top: initial;
  bottom: 0 !important;
}

.swiper-title {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media (min-width: 992px) {
  .swiper-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 992px) {
  .swiper-standard {
    padding-right: initial;
  }
}
.swiper-standard__container {
  padding-right: 5rem;
}
@media (min-width: 576px) {
  .swiper-standard__container {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}
@media (min-width: 992px) {
  .swiper-pagination {
    padding-left: initial;
  }
}

.bg-dark .swiper-title {
  color: white;
}

.accordion-button:not(.collapsed)::after {
  content: "\e59b";
  background-image: none;
  transform: none !important;
  width: initial;
  height: initial;
}

.accordion-button::after {
  content: "\f149";
  font-family: "Font Awesome 6 Pro";
  color: #1592e6;
  background-image: none;
  transform: none !important;
  width: initial;
  height: initial;
}

.faq-accordion .accordion-button::before {
  content: "Q: ";
  font-weight: bold;
  align-self: flex-start;
  margin-right: 1rem;
}
@media (max-width: 767.98px) {
  .faq-accordion .accordion-button::before {
    margin-right: 0.25rem;
  }
}

.accordion-button {
  padding: 1.1875rem 1.25rem;
  font-size: 1.125rem;
}
@media (max-width: 767.98px) {
  .accordion-button {
    font-size: 1.25rem;
    hyphens: auto;
  }
}

.accordion-button:not(.collapsed) {
  color: #1592e6;
  background-color: rgba(21, 146, 230, 0.06);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
}

.accordion-item {
  border: 1px solid #292c34;
}

.border-right {
  border-right: 1px solid;
}

.form-control {
  border: none;
  border-bottom: 2px solid #cad5e2;
  margin-bottom: 24px;
}

input[type=file],
.form-check {
  margin-bottom: 24px;
}

input[type=file] {
  opacity: 0;
  position: absolute;
  width: 150px;
}
input[type=file] + label {
  display: inline-block;
  align-items: center;
  padding: 0.5rem 1rem;
  color: white !important;
  width: fit-content;
  user-select: none;
  text-decoration: none;
  background-color: #1592e6;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  margin: 0.3rem;
}
input[type=file] + label:hover {
  color: #1592e6;
  border-color: #1592e6;
  filter: brightness(1.1) !important;
}
input[type=file] + label:after {
  content: initial;
}

.delete-file {
  appearance: none;
  border: none;
  background: none;
  color: #1592e6;
  font-size: 26px;
  display: inline-block;
  vertical-align: sub;
  transition: all 300ms ease-out;
}
.delete-file:hover {
  color: #ee5c5a;
}

.job-application-hidden-url {
  display: none;
}

/**
* navbar-toggler
**/
.navbar-toggler {
  background-color: #fff;
}

/**
* offset-background
**/
.offset-background {
  position: relative;
}
.offset-background:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0px;
  height: 0px;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 0 0 80px 100vw;
  border-color: transparent transparent #f8f9fa transparent;
  z-index: 30;
}
@media (min-width: 992px) {
  .offset-background:after {
    border-width: 0 0 100px 100vw;
  }
}
@media (min-width: 992px) {
  .offset-background:after {
    border-width: 0 0 120px 100vw;
  }
}
.offset-background--dark {
  color: rgb(248, 249, 250);
}
.offset-background--dark:after {
  border-color: transparent transparent rgb(41, 44, 52) transparent;
}
.offset-background--white:after {
  border-color: transparent transparent #fff transparent;
}
.offset-background > * {
  position: relative;
  z-index: 40;
}

/**
* sticky bottom
**/
.sticky-bottom {
  position: sticky;
  bottom: 0;
}

/**
* vertical-align-headline
**/
.vertical-align-headline {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/**
* text-gradient
**/
.text-gradient {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  background-image: linear-gradient(35deg, #064d9d 0%, #00b0ff 100%);
}
/**
* hr
**/
hr {
  max-width: 120px;
  height: 2px;
  border: 0;
  margin-top: 2rem;
  background-color: currentColor;
  opacity: 0.5;
}

/**
* header-search
**/
.header-search {
  position: relative;
  margin-bottom: 0;
}
.header-search .search-anchor {
  display: block;
  position: absolute;
  height: calc(100% - 10px);
  width: 3rem;
  top: 5px;
  right: 5px;
  text-decoration: none;
  background-image: url("../Images/svg/icon-search.svg");
  background-position: center center;
  background-size: auto 50%;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0);
  border-color: rgba(255, 255, 255, 0);
}

/**
* opacity
**/
.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

/**
* pre
**/
pre {
  background-color: rgb(248, 249, 250);
}

/**
* btn-icon
**/
.btn-icon {
  padding-left: 4rem;
  position: relative;
}
.btn-icon.btn-lg, .btn-group-lg > .btn-icon.btn {
  padding-left: 4rem;
}
.btn-icon.btn-lg:before, .btn-group-lg > .btn-icon.btn:before {
  width: 4rem;
}
.btn-icon:before {
  display: block;
  height: 100%;
  width: 3rem;
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  border-right: 1px solid currentColor;
  color: currentColor;
  margin-right: 0.75rem;
  background-image: url("../Images/svg/weber_signet.svg");
  background-size: auto 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
}
.btn-icon--download:before {
  background-image: url("../Images/svg/icon-download.svg");
}
.btn-icon--search:before {
  background-image: url("../Images/svg/icon-search.svg");
}
.btn-icon--filter {
  border-bottom: 1px solid rgb(248, 249, 250);
  border-left: 1px solid rgb(248, 249, 250);
  background-color: #fff;
}
.btn-icon--filter:before {
  background-image: url("../Images/svg/icon-filter.svg");
}

/**
* video
**/
video {
  width: 100%;
}

/**
* site-header
**/
/**
* site-footer
**/
.site-footer {
  z-index: 999;
  padding: 0.5rem;
}
.site-footer * {
  font-size: 0.7rem;
}
@media (min-width: 992px) {
  .site-footer * {
    font-size: 0.9rem;
  }
}
.site-footer.fixed-bottom {
  position: fixed;
  bottom: 0;
}

/**
* site-main
**/
.site-main > article {
  max-width: 100vw;
  overflow: hidden;
}

/**
* hero
**/
.hero {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100vh;
}
.hero > * {
  margin-top: 60vh;
  padding-left: 0;
}
@media (min-width: 992px) {
  .hero > * {
    margin-top: 40vh;
  }
}
.hero:before {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 60%;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 30;
}
.hero:after {
  z-index: 20;
}
.hero--image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: 80% center;
  z-index: 10;
}
.hero--inner {
  position: relative;
  z-index: 40;
  padding: 1rem;
  width: calc(100% - 2rem);
}
@media (min-width: 768px) {
  .hero--inner {
    padding-left: 6rem;
    width: 100%;
  }
}
.hero.has-no-image:before, .hero.has-no-image:after {
  display: none;
}

/**
* section
**/
.section {
  padding-top: 5vh;
  padding-bottom: 5vh;
}
@media (min-width: 768px) {
  .section {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
}
.section--image {
  padding-top: 0;
  padding-bottom: 0;
}
.section--code {
  background-color: rgb(248, 249, 250);
}

/**
* abwandlung sidebar navigation
**/
.sidebar--navigation {
  border-top: 1px solid rgb(248, 249, 250);
}
@media (min-width: 768px) {
  .sidebar--navigation {
    border-top: 0px solid #fff;
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
  }
}

/**
* abwandlung card element
**/
.card--navigation {
  position: relative;
  min-height: 300px;
  justify-content: center;
  padding-left: 6rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 0px solid #fff;
  /*        &:before {
          display: block;
          width: $spacer * 6;
          text-align: center;
          content: "\e3d6";
          color: $blue;
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          font-size: 1.5rem;
          font-family: 'Font Awesome 6 Sharp';
      }*/
}
.card--navigation:last-child {
  margin-bottom: 3rem;
}
.card--navigation * {
  text-decoration: inherit;
  color: inherit;
}
.card--navigation .card-title {
  position: relative;
}
.card--navigation .card-title:before {
  display: block;
  text-align: center;
  content: "\e3d6";
  color: #064d9d;
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Sharp";
}
@media (min-width: 768px) {
  .card--navigation:hover {
    background-color: #f8f9fa;
  }
  .card--navigation:hover .card-title {
    color: #064d9d;
  }
  .card--navigation:hover:before {
    color: #00b0ff;
  }
}
.card--navigation .card-body {
  flex: initial;
}
.card--cta {
  position: relative;
  min-height: 300px;
  justify-content: center;
  padding-left: 0;
  padding-right: 3rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 0px solid #fff;
}
@media (min-width: 768px) {
  .card--cta {
    padding-left: 6rem;
  }
}
.card--cta:last-child {
  margin-bottom: 3rem;
}
.card--cta * {
  text-decoration: inherit;
  color: inherit;
}
.card--cta:before {
  display: block;
  width: 6rem;
  text-align: center;
  content: "⇥";
  color: #064d9d;
  position: absolute;
  left: auto;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200%;
}
@media (min-width: 768px) {
  .card--cta:before {
    right: 6rem;
  }
  .card--cta:hover {
    background-color: #f8f9fa;
  }
  .card--cta:hover .card-title {
    color: #064d9d;
  }
  .card--cta:hover:before {
    color: #00b0ff;
  }
}
.card--cta .card-subtitle {
  padding-left: 4rem;
}
.card--cta .card-body {
  flex: initial;
}
.card--basic {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: all 0.4s ease;
}
.card--basic:hover {
  transform: translateY(-0.5rem);
}
.card--basic:hover .card--basic__corner {
  border-width: 0 0 5.5rem 3.5rem;
}
.card--basic:hover .card--basic__image,
.card--basic:hover .image-wrapper {
  transform: scale(1.1);
  filter: saturate(1.2);
}
.card--basic:hover .card--basic__content:before {
  opacity: 1;
}
.card--basic:hover .card--basic__wrapper:before {
  opacity: 0;
}
.card--basic:hover a:hover {
  color: white;
}
.card--basic:hover:after {
  content: "";
  opacity: 1;
}
.card--basic:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.card--basic__corner {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5rem 3rem;
  border-color: transparent transparent white transparent;
  transform: translate(1px, 1px);
  /*
        position: absolute;
        z-index: 11;
        right: 0;
        bottom: 0;
        width: 2rem;
        height: 4rem;
        background: #36ff00;
        -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        */
  transition: all 0.4s ease;
}
.card--basic__corner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.card--basic__icon {
  position: absolute;
  z-index: 13;
  right: 0.5rem;
  bottom: -4.5rem;
  color: #1592e6;
  transition: all 0.4s ease;
}
.card--basic.is-video .card--basic__icon {
  font-size: 1.3rem;
}
.card--basic__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.card--basic__wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  transition: all 0.4s ease;
}
.card--basic__image,
.card--basic .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1);
  transition: all 0.4s ease;
  user-select: none;
}
.card--basic__image--active,
.card--basic .image-wrapper--active {
  filter: brightness(1) saturate(1);
}
.card--basic__content {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  color: white;
  padding: 1rem;
  width: 100%;
}
.card--basic__content:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease;
  background: linear-gradient(183deg, rgba(0, 0, 0, 0.3490196078) 50%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(4px);
}
.card--basic__title {
  position: relative;
  z-index: 12;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}
.card--basic__title .card--basic__link-main {
  text-decoration: none;
  color: inherit;
}
.card--basic__category {
  position: relative;
  z-index: 12;
  font-size: 0.563rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #cccdcd;
  margin: 0;
}
.card--basic__category .card--basic__link-category {
  text-decoration: none;
  color: inherit;
}
.card--basic.card-without-link {
  cursor: initial;
}
.card--basic.card-without-link:hover {
  transform: initial !important;
}
.card--basic.card-without-link .card--basic__wrapper:before {
  background: rgba(255, 255, 255, 0);
}
.card--basic.card-without-link .card--basic__content:before {
  opacity: 1;
}
.card--article {
  display: grid;
  grid-template-columns: 3.5rem auto;
  grid-template-rows: auto auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-left: 3rem;
  margin-right: 3rem;
}
.card--article .card--article__icon {
  align-self: center;
  color: #1592e6;
}
.card--article .card--article__icon:before {
  content: "\e3d6";
}
.card--article .card--article__title-wrapper {
  align-self: center;
}
.card--article .card--article__title {
  display: flex;
  align-items: end;
}

/**
* content-filter
**/
#content-filter {
  margin-bottom: 200px;
  max-width: 600px;
}
#content-filter .dropdown-menu {
  display: block !important;
  position: relative !important;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  width: 100%;
  transform: translate3d(0, 0, 0) !important;
}
#content-filter .dropdown-toggle {
  display: none;
}
#content-filter.is-style-sticky {
  position: fixed;
  top: 69px;
  right: 0;
}
#content-filter.is-style-sticky .dropdown-toggle {
  display: inherit;
}
#content-filter.is-style-sticky .dropdown-menu {
  display: none !important;
  position: absolute !important;
  transform: inherit !important;
  background-color: #fff;
  border: 1px solid #e9ecef;
  padding: 1rem;
  width: 300px;
  right: 0 !important;
  left: auto !important;
  top: 100%;
}
@media (min-width: 768px) {
  #content-filter.is-style-sticky .dropdown-menu {
    width: 460px;
  }
}
#content-filter.is-style-sticky .dropdown-menu.show {
  display: block !important;
}

.container-filter-fixed {
  position: fixed;
  z-index: 100;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
}

#startseite {
  background-color: rgb(248, 249, 250);
}

.section__hero-sp + div {
  margin-top: -10rem;
}
@media (min-width: 1400px) {
  .section__hero-sp + div {
    margin-top: initial;
  }
}
@media (min-width: 992px) {
  .section__hero-sp + div .container > .row {
    padding-top: 10rem;
  }
}
.section__hero-sp .row {
  align-content: center;
  align-items: center;
}

.hero-sp__swiper {
  position: relative;
}
.hero-sp__swiper .heading-d1 {
  white-space: nowrap;
}
@media (min-width: 992px) {
  .hero-sp__swiper .heading-d1 {
    margin-bottom: 6rem;
  }
}
.hero-sp__swiper .arrows-wrapper {
  position: absolute;
  display: none !important;
}
@media (min-width: 992px) {
  .hero-sp__swiper .arrows-wrapper {
    display: flex !important;
  }
}
.hero-sp__swiper-images {
  overflow-x: hidden;
}
.hero-sp__slider-wrapper {
  position: initial;
}
.hero-sp__swiper.overflow-hidden {
  position: relative;
  margin-left: -3rem;
  padding-left: 3rem;
}
.hero-sp__swiper.overflow-hidden:before {
  content: "";
  position: absolute;
  left: -4rem;
  top: 50%;
  background-color: #f8f9fa;
  width: 5rem;
  height: 120%;
  filter: blur(10px);
  z-index: 10;
  transform: translate(0, -50%);
}
.hero-sp__image-foreground {
  z-index: 50;
  top: 20%;
  height: auto;
  max-width: 100%;
  pointer-events: none;
  display: block;
}
.hero-sp__image-foreground img {
  max-width: 100%;
}
.hero-sp__image-background {
  position: absolute;
  z-index: 49;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .hero-sp__image-background {
    position: initial;
    margin-bottom: 3rem;
  }
}
.hero-sp__line {
  position: relative;
}
.hero-sp__line:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 1px solid transparent;
  pointer-events: none;
}
@media (min-width: 992px) {
  .hero-sp__line:after {
    border-right: 1px solid #d8d8d8;
  }
}
.hero-sp__swiper-pagination {
  justify-content: start;
}
@media (min-width: 992px) {
  .hero-sp__swiper-pagination {
    margin-bottom: 3rem !important;
  }
}

.section__sp-main-slider {
  position: relative;
  padding-bottom: 3em;
}
@media (min-width: 1200px) {
  .section__sp-main-slider {
    margin-top: inherit;
  }
}
.section__sp-main-slider .container {
  position: relative;
}
.section__sp-main-slider [class^=col],
.section__sp-main-slider [class*=" col"] {
  padding-bottom: 0;
}

.scroll-down {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  top: 0;
  user-select: none;
  cursor: pointer;
  z-index: 60;
  right: 1rem;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: bold;
}
.scroll-down .scroll-down-icon {
  color: #1592e6;
  margin-left: 0.5rem;
}
.scroll-down [data-icon]:before {
  display: block;
  margin-left: 1rem;
  font-size: 1.5rem;
  color: #1592e6;
  content: attr(data-icon);
  speak: none; /* Not to be trusted, but hey. */
  transform: rotate(270deg);
}

.site-nd__hero-image {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0, 100% 70%, 86% 100%, 0 100%);
}
.subline-single {
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .site-nd__hero-padding {
    padding-right: 5rem;
  }
}

.timeline {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-left: 0;
  border-right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.timeline .timeline-swiper {
  flex-grow: 2;
  overflow-x: hidden;
}
.timeline .timeline-swiper .swiper-slide {
  width: initial;
}
.timeline .timeline-swiper .month {
  display: block;
  padding: 0.5rem 0;
  user-select: none;
  cursor: pointer;
}
.timeline .timeline-swiper .month:hover {
  color: #1592e6;
}
.timeline .timeline-arrow-left {
  position: relative;
  padding-left: 3rem;
  height: 2rem;
  cursor: pointer;
}
.timeline .timeline-arrow-left:before {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #cccdcd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.timeline .timeline-arrow-left:hover:before {
  color: #1592e6;
}
.timeline .timeline-arrow-left.swiper-button-disabled:before {
  color: #f8f9fa;
}
.timeline .timeline-arrow-left:before {
  content: "\f053";
  left: 30%;
}
.timeline .timeline-arrow-right {
  position: relative;
  padding-left: 3rem;
  height: 2rem;
  cursor: pointer;
}
.timeline .timeline-arrow-right:before {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #cccdcd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.timeline .timeline-arrow-right:hover:before {
  color: #1592e6;
}
.timeline .timeline-arrow-right.swiper-button-disabled:before {
  color: #f8f9fa;
}
.timeline .timeline-arrow-right:before {
  content: "\f054";
  right: 30%;
}

.svg-path {
  position: absolute;
}

.pin-spacer {
  mix-blend-mode: multiply;
}

.section__product-detail-first {
  padding-bottom: 20vh;
}
@media (max-width: 991.98px) {
  .section__product-detail-first .container .row:first-child > *:last-child {
    padding-bottom: 4rem;
  }
}

#canvas-extruder {
  position: absolute;
  z-index: 1;
  left: 0;
}
@media (min-width: 992px) {
  #canvas-extruder {
    position: absolute;
    left: 50%;
    width: initial;
  }
}

.text-above {
  z-index: 11;
  position: relative;
}

#svg {
  position: absolute;
  top: 0;
}

.skew-backdrop {
  position: absolute;
  width: 100%;
  height: 170%;
  top: 45%;
  left: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: skewY(-10deg) translateY(-50%);
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid white;
}
@media (min-width: 576px) {
  .skew-backdrop {
    height: 250%;
  }
}
@media (min-width: 992px) {
  .skew-backdrop {
    display: none;
  }
}

.trigger-section {
  height: 125vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
}
@media (min-width: 576px) {
  .trigger-section {
    height: 100vh;
  }
}
@media (min-width: 992px) {
  .trigger-section {
    height: 100vh;
  }
}
.trigger-section .spacing-y-test {
  height: 125vh;
}

.tech-data__dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow-y: hidden;
  transition: height 0.6s ease;
}
.tech-data__dl dt,
.tech-data__dl dd {
  display: block;
  width: 95%;
  margin: 0;
}
.tech-data__dl .tech-data__item {
  padding: 1rem;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  flex-direction: column;
  width: 100%;
  /*
                    &:nth-last-child(-1n+3) {
                        border: none;
                    }

                    &:nth-last-child(-2n+3) {
                        border: none;
                    }

                    &:nth-last-child(-3n+3) {
                        border: none;
                    }*/
}
@media (min-width: 992px) {
  .tech-data__dl .tech-data__item {
    width: 33.3333333333%;
    padding: 1rem 0;
  }
}
.tech-data__dl .tech-data__item:nth-child(3n+1) {
  align-items: start;
}
@media (min-width: 992px) {
  .tech-data__dl .tech-data__item:nth-child(3n+1) {
    align-items: start;
  }
}
.tech-data__dl .tech-data__item:nth-child(3n+2) {
  align-items: start;
}
@media (min-width: 992px) {
  .tech-data__dl .tech-data__item:nth-child(3n+2) {
    align-items: center;
  }
}
.tech-data__dl .tech-data__item:nth-child(3n+3) {
  align-items: start;
}
@media (min-width: 992px) {
  .tech-data__dl .tech-data__item:nth-child(3n+3) {
    align-items: end;
  }
}
.tech-data__show-more {
  color: #1592e6;
  cursor: pointer;
  text-align: right;
  display: block;
  user-select: none;
  margin-right: 1rem;
}
@media (min-width: 992px) {
  .tech-data__show-more {
    margin-right: 0;
  }
}

.accordion {
  margin-right: -1rem;
  margin-left: -1rem;
}
@media (min-width: 576px) {
  .accordion {
    margin: initial;
  }
}

/*.headline-slash {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-left: 3rem;
    line-height: 1.1;

    &:after {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        width: 3.5rem;
        height: 100%;
        background-image: url(https://hansweber.de/fileadmin/damlogin/weber_slash.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
    }
}*/
@media (max-width: 991.98px) {
  #tinder-reverse-mobile {
    flex-direction: column-reverse;
  }
}

#job-tinder .display-1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}
#job-tinder .btn-custom-wrapper {
  text-decoration: none;
}
#job-tinder .btn-custom {
  display: flex;
  align-items: center;
  color: white;
  background-color: #1592e6;
  padding: 0.5rem 1rem;
  width: fit-content;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
}
#job-tinder .btn-custom:hover {
  color: #1592e6;
  background-color: white;
  border: 1px solid #1592e6;
}
#job-tinder .arrow {
  position: relative;
  width: 2rem;
  height: 100%;
}
#job-tinder .arrow:before {
  display: block;
  text-align: center;
  content: "↳";
  color: inherit;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 100%;
}
#job-tinder .text-content {
  padding-right: 0;
}
@media (min-width: 992px) {
  #job-tinder .text-content {
    padding-right: 25%;
  }
}
#job-tinder .custom-border-right {
  border-right: 0;
}
@media (min-width: 992px) {
  #job-tinder .custom-border-right {
    border-right: 1px solid black;
  }
}
#job-tinder #root {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  #job-tinder #root {
    max-width: 60%;
  }
}

.tinder-result__wrapper {
  width: 100%;
  padding: 0 0 1rem;
}
@media (min-width: 1200px) {
  .tinder-result__wrapper {
    width: 50%;
    padding: 0 1rem 1rem;
  }
}
.tinder-result__cards {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .jobdetail {
    margin-top: 3rem;
  }
}
.jobdetail .topline {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .jobdetail .topline {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .jobdetail .topline {
    margin-bottom: 4rem;
  }
}

.frame-space-before-extra-small-negative {
  margin-top: -2em !important;
}

.frame-space-before-small-negative {
  margin-top: -4em !important;
}

.frame-space-before-medium-negative {
  margin-top: -6em !important;
}

.frame-space-before-large-negative {
  margin-top: -12em !important;
}

.frame-space-before-extra-large-negative {
  margin-top: -16em !important;
}

.frame-space-before-extra-small {
  margin-top: 2em;
}
.frame-space-before-small {
  margin-top: 4em;
}
.frame-space-before-medium {
  margin-top: 3em;
}
@media (min-width: 992px) {
  .frame-space-before-medium {
    margin-top: 6em;
  }
}
.frame-space-before-large {
  margin-top: 3em;
}
@media (min-width: 992px) {
  .frame-space-before-large {
    margin-top: 8em;
  }
}
.frame-space-before-extra-large {
  margin-top: 3em;
}
@media (min-width: 992px) {
  .frame-space-before-extra-large {
    margin-top: 10em;
  }
}
.frame-space-after-extra-small {
  margin-bottom: 2em;
}
.frame-space-after-small {
  margin-bottom: 4em;
}
.frame-space-after-medium {
  margin-bottom: 3em;
}
@media (min-width: 992px) {
  .frame-space-after-medium {
    margin-bottom: 6em;
  }
}
.frame-space-after-large {
  margin-bottom: 3em;
}
@media (min-width: 992px) {
  .frame-space-after-large {
    margin-bottom: 8em;
  }
}
.frame-space-after-extra-large {
  margin-bottom: 3em;
}
@media (min-width: 992px) {
  .frame-space-after-extra-large {
    margin-bottom: 10em;
  }
}

.frame-space-inner-before-extra-small, .frame-space-outer-before-extra-small {
  padding-top: 2em;
}
.frame-space-inner-before-small, .frame-space-outer-before-small {
  padding-top: 4em;
}
.frame-space-inner-before-medium, .section__cta a, .frame-space-outer-before-medium {
  padding-top: 3em;
}
@media (min-width: 992px) {
  .frame-space-inner-before-medium, .section__cta a, .frame-space-outer-before-medium {
    padding-top: 6em;
  }
}
.frame-space-inner-before-large, .frame-space-outer-before-large {
  padding-top: 3em;
}
@media (min-width: 992px) {
  .frame-space-inner-before-large, .frame-space-outer-before-large {
    padding-top: 8em;
  }
}
.frame-space-inner-before-extra-large, .frame-space-outer-before-extra-large {
  padding-top: 3rem;
}
@media (min-width: 992px) {
  .frame-space-inner-before-extra-large, .frame-space-outer-before-extra-large {
    padding-top: 10em;
  }
}
.frame-space-inner-after-extra-small, .frame-space-outer-after-extra-small {
  padding-bottom: 2em;
}
.frame-space-inner-after-small, .frame-space-outer-after-small {
  padding-bottom: 4em;
}
.frame-space-inner-after-medium, .section__cta a, .frame-space-outer-after-medium {
  padding-bottom: 3em;
}
@media (min-width: 992px) {
  .frame-space-inner-after-medium, .section__cta a, .frame-space-outer-after-medium {
    padding-bottom: 6em;
  }
}
.frame-space-inner-after-large, .frame-space-outer-after-large {
  padding-bottom: 3em;
}
@media (min-width: 992px) {
  .frame-space-inner-after-large, .frame-space-outer-after-large {
    padding-bottom: 8em;
  }
}
.frame-space-inner-after-extra-large, .frame-space-outer-after-extra-large {
  padding-bottom: 3em;
}
@media (min-width: 992px) {
  .frame-space-inner-after-extra-large, .frame-space-outer-after-extra-large {
    padding-bottom: 10em;
  }
}

.news-body-text .text-right,
.news-ce .text-right {
  display: flex;
  justify-content: end;
}

@media (max-width: 991.98px) {
  .site-main > div:first-child > div:first-child .container > *:first-child {
    padding-top: 1rem;
  }
}

.ce-headline-center {
  text-align: center;
}

.ce-gallery,
.ce-image {
  overflow: initial;
}

.om-cookie-panel .cookie-panel__attribution {
  display: none;
}
.om-cookie-panel .cookie-panel__checkbox + label:before {
  content: normal;
}
.om-cookie-panel .cookie-panel__checkbox:checked + label::before {
  border: none;
  background-color: #1592e6;
}

.ce-uploads img {
  float: left;
  padding-right: 1em;
  vertical-align: top;
}
.ce-uploads span {
  display: block;
}
.ce-uploads li {
  display: flex;
  padding-left: 3rem;
}
.ce-uploads li:before {
  width: 1.9rem;
  height: 100%;
}
.ce-uploads li a {
  cursor: pointer;
}
.ce-uploads .ce-uploads-filemeta {
  text-transform: uppercase;
  font-size: 18px;
}

.ce-textpic,
.ce-image,
.ce-nowrap .ce-bodytext,
.ce-gallery,
.ce-row,
.ce-uploads li,
.ce-uploads div {
  overflow: hidden;
}

.frame-type-textmedia > .container {
  padding: 0;
}
.frame-type-textmedia > .container .row {
  max-width: 100%;
  margin-left: 0;
}
.frame-type-textmedia > .container .row .ce-textpic {
  padding: 0;
}

:root {
  --breakpoint-lg: 992px;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

main {
  overflow-x: hidden;
}
@media (min-width: 992px) {
  main {
    padding-top: 0;
  }
}

video {
  position: relative;
  z-index: 99;
}

figure.video {
  width: 100%;
  position: relative;
  z-index: 1;
}
figure.video video {
  background-color: #fff;
}

iframe {
  width: 100%;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

p {
  font-size: 0.875rem;
  line-height: 1.5rem;
}
@media (min-width: 992px) {
  p {
    font-size: 1rem;
    line-height: 2rem;
  }
}

blockquote p {
  font-size: 1.3rem;
  line-height: 2;
  font-style: italic;
}

p a {
  color: #1592e6;
  transition: color 0.2s ease;
}
p a:hover {
  color: #1592e6;
  filter: brightness(1.5);
}

.bg-white p a {
  color: #1592e6;
  transition: color 0.2s ease;
}
.bg-white p a:hover {
  color: #1592e6;
  filter: brightness(1.5);
}

.bg-dark p a {
  color: #1592e6;
  transition: color 0.2s ease;
}
.bg-dark p a:hover {
  color: #1592e6;
  filter: brightness(1.5);
}

.bg-gradient p a {
  color: white;
  transition: color 0.2s ease;
}
.bg-gradient p a:hover {
  color: black;
}

.text-gradient a {
  background: inherit !important;
}
.text-gradient a:hover {
  filter: invert(0.5) !important;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #1592e6;
}
.bg-dark a {
  color: white;
}
.bg-dark a:hover {
  color: #1592e6;
}

.bg-dark,
.bg-gradient {
  color: white;
}

.bg-gradient a:hover {
  color: white;
}
.bg-gradient a .headline-slash:after {
  background-image: url("../Images/svg/weber_slash_w.svg");
}

.bg-dark .text-gradient {
  filter: brightness(1.5);
}
.bg-dark a:hover .text-gradient {
  filter: brightness(2);
}

@media (max-width: 991.98px) {
  [class^=col-lg].border-start, [class^=col-lg].border-end,
  [class*=" col-lg"].border-start,
  [class*=" col-lg"].border-end {
    border-left: none;
    border-right: none;
  }
}

figure {
  margin: 0;
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1rem);
  padding-left: var(--bs-gutter-x, 1rem);
  margin-right: auto;
  margin-left: auto;
}

.font-icons {
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.row > * {
  padding-right: calc(var(--bs-gutter-x) * 1.5);
  padding-left: calc(var(--bs-gutter-x) * 1.5);
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox]:not(.header__hamburger-checkbox) {
    --active: #1592e6;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, 0.3);
    --border: #bbc1e1;
    --border-hover: #1592e6;
    --background: #fff;
    --disabled: #f6f8ff;
    --disabled-inner: #e1e6f9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    flex-shrink: 0;
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: 0.3s;
    --d-t: 0.6s;
    --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):disabled + label {
    cursor: not-allowed;
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):focus {
    box-shadow: 0 0 0 var(--focus);
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):not(.switch) {
    width: 21px;
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):not(.switch):checked {
    --o: 1;
  }
  input[type=checkbox]:not(.header__hamburger-checkbox) + label:not(.header__hamburger-wrapper) {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 4px;
  }
  .tx_evoweb_sfregister input[type=checkbox]:not(.header__hamburger-checkbox) + label:not(.header__hamburger-wrapper) {
    margin-left: 34px;
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  input[type=checkbox]:not(.header__hamburger-checkbox):not(.switch):checked {
    --r: 43deg;
  }
}
.form-check {
  padding: 0;
}
@media screen and (min-width: 992px) {
  .form-check > label {
    display: flex;
    align-items: center;
  }
  .form-check > label input[type=checkbox] {
    margin-right: 10px;
    width: 55px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .form-check > label input[type=checkbox] {
    width: 46px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1400px) {
  .form-check > label input[type=checkbox] {
    width: 34px;
  }
}

.cta {
  background-color: rgb(41, 44, 52);
  color: #fff;
  border-radius: 100px;
  border: solid 1px rgb(41, 44, 52);
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  padding-left: 1rem;
  min-width: 100px;
  width: fit-content;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-transform: uppercase;
  transition: all 200ms ease;
  line-height: 1;
}
.cta:hover, .cta:focus {
  text-decoration: none;
  background-color: #fff;
  color: rgb(41, 44, 52);
  border-color: rgb(41, 44, 52);
}
.cta:hover .icon, .cta:focus .icon {
  background-color: rgb(41, 44, 52);
  color: #fff;
}
.cta.secondary {
  border-color: var(--bs-secondary);
  background-color: var(--bs-secondary);
}
.cta.secondary:hover, .cta.secondary:focus {
  text-decoration: none;
  background-color: #fff;
  color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}
.cta.secondary:hover .icon, .cta.secondary:focus .icon {
  background-color: var(--bs-secondary);
  color: #fff;
}
.cta.secondary .icon {
  color: var(--bs-secondary);
}
.cta .icon {
  background-color: #fff;
  color: rgb(41, 44, 52);
  border-radius: 100%;
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.tx-downloadform .trigger-download-form {
  cursor: pointer;
}

.download-form {
  background-color: #292c34;
  padding: 3.25em 3.75em 2.75em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.download-form h5, .download-form .h5 {
  color: white;
  margin-bottom: 1em;
}

.download-form input {
  font-size: 1em;
  color: white;
  background-color: transparent;
  padding: 0.8em 0.8em 0.8em 0;
  border: none;
  border-bottom: 1px solid #d6d7d9;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
}

.download-form input.error {
  border-bottom: 1px solid red;
}

.download-form-hint-email-invalid {
  color: white;
  margin-bottom: 0;
}

.download-form input:focus {
  color: white;
  outline: none;
  background: #292c34;
  border-color: #d6d7d9;
  box-shadow: none;
}

.download-form input[type=submit] {
  border-radius: 0;
  font-size: 1em;
  color: #ffffff;
  background-color: #1592e6;
  padding: 0.8em 0.8em;
  margin-top: 1.5em;
  border: none;
  box-sizing: border-box;
  font-weight: bold;
  width: auto;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.download-form-overlay a[download] {
  color: white;
}

.form-close-button {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  opacity: 0.3;
  cursor: pointer;
}
.form-close-button:after, .form-close-button:before {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}
.form-close-button:after {
  transform: rotate(-45deg);
}
.form-close-button:before {
  transform: rotate(45deg);
}

@media screen and (max-width: 1023px) {
  .download-form {
    padding: 2.25em 1.75em 1.75em;
    width: 75vw;
  }
  .form-close-button {
    width: 1.5rem;
    height: 1.5rem;
  }
  .form-close-button:after,
  .form-close-button:before {
    left: 0.7rem;
    height: 1.5rem;
  }
}
.tx_evoweb_sfregister,
.tx-felogin-pi1 {
  background-color: #292c34;
  color: #fff;
  padding: 3.25em 3.75em;
  display: inline-block;
  width: 100%;
}
.tx_evoweb_sfregister .form-control,
.tx_evoweb_sfregister input:not([type=submit]):not([type=checkbox]),
.tx-felogin-pi1 .form-control,
.tx-felogin-pi1 input:not([type=submit]):not([type=checkbox]) {
  font-size: 1em;
  color: white;
  background-color: transparent;
  padding: 0.8em 0.8em 0.8em 0;
  border: none;
  border-bottom: 1px solid #d6d7d9;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
}
.tx_evoweb_sfregister .form-check,
.tx-felogin-pi1 .form-check {
  position: relative;
}
.tx_evoweb_sfregister .form-check input[type=checkbox],
.tx-felogin-pi1 .form-check input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tx_evoweb_sfregister input:focus,
.tx_evoweb_sfregister select:focus,
.tx-felogin-pi1 input:focus,
.tx-felogin-pi1 select:focus {
  box-shadow: none;
  outline: none;
}
.tx_evoweb_sfregister input:autofill,
.tx_evoweb_sfregister select:autofill,
.tx-felogin-pi1 input:autofill,
.tx-felogin-pi1 select:autofill {
  -webkit-box-shadow: 0 0 0 30px #292c34 inset !important;
  -webkit-text-fill-color: white;
}

.tx_evoweb_sfregister .username label,
.tx_evoweb_sfregister .firstName label,
.tx_evoweb_sfregister .email label,
.tx_evoweb_sfregister .telephone label,
.tx_evoweb_sfregister .company label {
  display: none;
}
.tx_evoweb_sfregister .username,
.tx_evoweb_sfregister .password {
  display: none;
}

/**
 * Cookie-Script.com banner — Hans Weber brand overrides
 * Target the runtime-injected `cookiescript_*` classes. The CDN bundle ships
 * a generic blue (#3F87FF-ish); replace with HW primary + apply Roboto.
 */
#cookiescript_injected,
#cookiescript_injected_wrapper,
#cookiescript_badge {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  letter-spacing: 0 !important;
}

#cookiescript_injected *,
#cookiescript_injected_wrapper *,
#cookiescript_badge * {
  letter-spacing: 0 !important;
}

#cookiescript_injected button,
#cookiescript_injected .cookiescript_button,
#cookiescript_injected .cs_button,
#cookiescript_injected #cookiescript_accept,
#cookiescript_injected #cookiescript_save,
#cookiescript_injected #cookiescript_reject {
  border-radius: 0 !important;
}
#cookiescript_injected #cookiescript_accept,
#cookiescript_injected #cookiescript_save,
#cookiescript_injected .cookiescript_accept,
#cookiescript_injected .cookiescript_save,
#cookiescript_injected .cs_button_accept,
#cookiescript_injected .cs_button_save {
  background-color: #1592e6 !important;
  border-color: #1592e6 !important;
  color: #fff !important;
}
#cookiescript_injected #cookiescript_accept:hover, #cookiescript_injected #cookiescript_accept:focus,
#cookiescript_injected #cookiescript_save:hover,
#cookiescript_injected #cookiescript_save:focus,
#cookiescript_injected .cookiescript_accept:hover,
#cookiescript_injected .cookiescript_accept:focus,
#cookiescript_injected .cookiescript_save:hover,
#cookiescript_injected .cookiescript_save:focus,
#cookiescript_injected .cs_button_accept:hover,
#cookiescript_injected .cs_button_accept:focus,
#cookiescript_injected .cs_button_save:hover,
#cookiescript_injected .cs_button_save:focus {
  background-color: #127ac1 !important;
  border-color: #127ac1 !important;
}
#cookiescript_injected #cookiescript_reject:hover, #cookiescript_injected #cookiescript_reject:focus,
#cookiescript_injected .cookiescript_reject:hover,
#cookiescript_injected .cookiescript_reject:focus,
#cookiescript_injected .cs_button_reject:hover,
#cookiescript_injected .cs_button_reject:focus {
  color: #1592e6 !important;
}
#cookiescript_injected a,
#cookiescript_injected .cookiescript_link {
  color: #1592e6 !important;
}
#cookiescript_injected a:hover,
#cookiescript_injected .cookiescript_link:hover {
  color: #127ac1 !important;
}
#cookiescript_injected input[type=checkbox]:checked + label,
#cookiescript_injected .cookiescript_checkbox:checked + label,
#cookiescript_injected .cs_switch input:checked + .cs_slider {
  background-color: #1592e6 !important;
}

#cookiescript_badge {
  background-color: #1592e6 !important;
  color: #fff !important;
}

.news .filtered_job_list {
  justify-content: center;
}
.news .filtered_job_list .filter {
  margin-bottom: 2.25rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  text-transform: uppercase;
  display: none;
}
.news .filtered_job_list .filter .select_wrapper {
  position: relative;
}
.news .filtered_job_list .filter .select_wrapper select {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  border-radius: 10rem;
  height: 2.75rem;
  padding: 0 1rem;
  text-transform: uppercase;
  padding-right: 2.5rem;
}
.news .filtered_job_list .filter .select_wrapper select option {
  text-transform: none;
}
.news .filtered_job_list .filter .select_wrapper .arrows {
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  position: absolute;
  right: 0.5rem;
  background: var(--bs-white);
  color: var(--bs-black);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 5px 0 0 0 var(--bs-secondary);
}
.news .filtered_job_list .filter .select_wrapper .arrows .icon {
  position: absolute;
  transform: translateY(0.25rem);
}
.news .filtered_job_list .filter .select_wrapper .arrows .icon.fa-chevron-up {
  top: 0;
}
.news .filtered_job_list .filter .select_wrapper .arrows .icon.fa-chevrondown {
  bottom: 0;
}
.news .filtered_job_list ul.jobs {
  display: grid;
  list-style: none;
  gap: 0.625rem;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 576px) {
  .news .filtered_job_list ul.jobs {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .news .filtered_job_list ul.jobs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1425px) {
  .news .filtered_job_list ul.jobs {
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.news .filtered_job_list ul.jobs li {
  all: unset;
  overflow: hidden;
  background-color: var(--bs-light);
  width: 100%;
}
.news .filtered_job_list ul.jobs li::before {
  content: none;
}
.news .filtered_job_list ul.jobs li a {
  padding: 0.625rem;
  padding-right: 1.4375rem;
  position: relative;
  display: flex;
  height: 8.875rem;
  gap: 0.625rem;
}
.news .filtered_job_list ul.jobs li a:hover {
  text-decoration: none;
  color: initial;
}
.news .filtered_job_list ul.jobs li img {
  max-width: 6.25rem;
  max-height: 6.25rem;
  height: 100%;
  width: auto;
  aspect-ratio: 1;
  position: relative;
}
@media (min-width: 480px) {
  .news .filtered_job_list ul.jobs li img {
    margin-right: 1.6875rem;
    max-width: 7.5rem;
    max-height: 7.5rem;
  }
}
@media (min-width: 1200px) {
  .news .filtered_job_list ul.jobs li img {
    margin-right: 1.5rem;
  }
}
.news .filtered_job_list ul.jobs li .content {
  padding: 0.5rem 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.news .filtered_job_list ul.jobs li .content .heading_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.news .filtered_job_list ul.jobs li .content .heading_wrapper h3, .news .filtered_job_list ul.jobs li .content .heading_wrapper .h3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2rem;
  max-height: 75px;
  display: box;
  line-clamp: 3;
  box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 480px) {
  .news .filtered_job_list ul.jobs li .content .heading_wrapper h3, .news .filtered_job_list ul.jobs li .content .heading_wrapper .h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 520px) {
  .news .filtered_job_list ul.jobs li .content .heading_wrapper h3, .news .filtered_job_list ul.jobs li .content .heading_wrapper .h3 {
    line-height: 1.6rem;
  }
}
.news .filtered_job_list ul.jobs li .content .bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #979797;
  position: relative;
}
.news .filtered_job_list ul.jobs li .content .bottom span {
  width: 50%;
}
.news .filtered_job_list ul.jobs li .icon {
  color: var(--bs-secondary);
  margin-left: auto;
  align-self: center;
  width: 1.5rem;
  margin-left: 1.5rem;
  display: none;
}
@media (min-width: 480px) {
  .news .filtered_job_list ul.jobs li .icon {
    display: block;
  }
}
@media (min-width: 1200px) {
  .news .filtered_job_list ul.jobs li .icon {
    margin-left: 0;
  }
}
@media (min-width: 480px) {
  .news .filtered_job_list ul.jobs li .card--basic__corner {
    display: none;
  }
}

.frame-type-mask_benefits_icons_slider h1, .frame-type-mask_benefits_icons_slider .h1 {
  flex: 1;
  font-weight: 600;
}
.frame-type-mask_benefits_icons_slider h1 .subheader, .frame-type-mask_benefits_icons_slider .h1 .subheader {
  color: var(--bs-secondary, #00b0ff);
  font-size: 20px;
  font-weight: 400;
}
.frame-type-mask_benefits_icons_slider .benefits-icons-slider {
  margin-top: 2.5rem;
}
.frame-type-mask_benefits_icons_slider .benefits-icons-slider.swiper-initialized {
  position: relative;
  padding-bottom: 50px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .frame-type-mask_benefits_icons_slider .benefits-icons-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.5rem;
  }
}
@media (min-width: 992px) {
  .frame-type-mask_benefits_icons_slider .benefits-icons-slider .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.frame-type-mask_benefits_icons_slider .benefits-icons-slider .swiper-wrapper .swiper-slide {
  display: flex;
  padding: 18px 0 0 0;
  flex-direction: column;
  align-content: center;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}
@media (min-width: 578px) {
  .frame-type-mask_benefits_icons_slider .benefits-icons-slider .swiper-wrapper .swiper-slide {
    padding: 0 0.675rem;
  }
}
.frame-type-mask_benefits_icons_slider .benefits-icons-slider .swiper-wrapper .swiper-slide h2, .frame-type-mask_benefits_icons_slider .benefits-icons-slider .swiper-wrapper .swiper-slide .h2 {
  color: rgb(41, 44, 52);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 992px) {
  .frame-type-mask_benefits_icons_slider .benefits-icons-slider .swiper-wrapper .swiper-slide .text p {
    line-height: 1;
  }
}
.frame-type-mask_benefits_icons_slider .benefits-icons-slider .benefits-icons-slider__slide_label {
  margin-bottom: 8px;
  line-height: 1.2;
  font-size: 0.8rem;
}

.frame-type-mask_info_checklist {
  margin: 5rem 0;
}
.frame-type-mask_info_checklist .hw_info_checklist {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.frame-type-mask_info_checklist .hw_info_checklist .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .frame-type-mask_info_checklist .hw_info_checklist .content {
    flex-direction: row;
    gap: 4rem;
  }
}
.frame-type-mask_info_checklist .hw_info_checklist .content h1, .frame-type-mask_info_checklist .hw_info_checklist .content .h1 {
  flex: 1;
  font-weight: 600;
}
.frame-type-mask_info_checklist .hw_info_checklist .content h1 .subheader, .frame-type-mask_info_checklist .hw_info_checklist .content .h1 .subheader {
  color: var(--bs-secondary, #00b0ff);
  font-size: 20px;
  font-weight: 400;
}
.frame-type-mask_info_checklist .hw_info_checklist .content ul {
  flex: 2;
  margin-bottom: 0;
}
.frame-type-mask_info_checklist .hw_info_checklist .content ul li {
  border-bottom: 0;
  display: flex;
  gap: 2rem;
  padding-left: 1rem;
}
.frame-type-mask_info_checklist .hw_info_checklist .content ul li:last-child {
  padding-bottom: 0;
}
.frame-type-mask_info_checklist .hw_info_checklist .content ul li i {
  font-size: 3rem;
  font-weight: 300;
}
.frame-type-mask_info_checklist .hw_info_checklist .content ul li::before {
  content: none;
}
.frame-type-mask_info_checklist .hw_info_checklist .cta {
  align-self: center;
}

@media (min-width: 576px) {
  .swiper-standard__container,
  div:has(.swiper-title) {
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
}
@media (min-width: 1200px) {
  .frame-type-mask_benefits_icons_slider .benefits-icons-slider .swiper-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 991px) {
  .row {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .row > * {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .row {
    margin-left: unset;
    margin-right: unset;
  }
  .row .border-start,
  .row .border-end {
    border-left: 0 !important;
    border-right: 0 !important;
  }
}