@charset "UTF-8";
/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */
: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-slide,
  .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 */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .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-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .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-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 */
/*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */
/* Bulma Utilities */
.file-cta,
.file-name, .select select, .textarea, .input {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  height: 2.5em;
  justify-content: flex-start;
  line-height: 1.5;
  padding-bottom: calc(0.5em - 1px);
  padding-left: calc(0.75em - 1px);
  padding-right: calc(0.75em - 1px);
  padding-top: calc(0.5em - 1px);
  position: relative;
  vertical-align: top;
}
.file-cta:focus,
.file-name:focus, .select select:focus, .textarea:focus, .input:focus, .is-focused.file-cta,
.is-focused.file-name, .select select.is-focused, .is-focused.textarea, .is-focused.input, .file-cta:active,
.file-name:active, .select select:active, .textarea:active, .input:active, .is-active.file-cta,
.is-active.file-name, .select select.is-active, .is-active.textarea, .is-active.input {
  outline: none;
}
[disabled].file-cta,
[disabled].file-name, .select select[disabled], [disabled].textarea, [disabled].input, fieldset[disabled] .file-cta,
fieldset[disabled] .file-name, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input {
  cursor: not-allowed;
}

.is-unselectable, .file {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select:not(.is-multiple):not(.is-loading)::after {
  border: 3px solid transparent;
  border-radius: 2px;
  border-right: 0;
  border-top: 0;
  content: " ";
  display: block;
  height: 0.625em;
  margin-top: -0.4375em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: center;
  width: 0.625em;
}

.control.is-loading::after, .select.is-loading::after {
  animation: spinAround 500ms infinite linear;
  border: 2px solid hsl(0, 0%, 86%);
  border-radius: 9999px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

.is-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* Bulma Base */
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

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

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

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
td:not([align]),
th:not([align]) {
  text-align: inherit;
}

html {
  background-color: hsl(0, 0%, 100%);
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
optgroup,
select,
textarea {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

body {
  color: hsl(0, 0%, 29%);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: hsl(229, 53%, 53%);
  cursor: pointer;
  text-decoration: none;
}
a strong {
  color: currentColor;
}
a:hover {
  color: hsl(0, 0%, 21%);
}

code {
  background-color: hsl(0, 0%, 96%);
  color: hsl(348, 86%, 46%);
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}

hr {
  background-color: hsl(0, 0%, 96%);
  border: none;
  display: block;
  height: 2px;
  margin: 1.5rem 0;
}

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

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

small {
  font-size: 0.875em;
}

span {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  color: hsl(0, 0%, 21%);
  font-weight: 700;
}

fieldset {
  border: none;
}

pre {
  -webkit-overflow-scrolling: touch;
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 29%);
  font-size: 0.875em;
  overflow-x: auto;
  padding: 1.25rem 1.5rem;
  white-space: pre;
  word-wrap: normal;
}
pre code {
  background-color: transparent;
  color: currentColor;
  font-size: 1em;
  padding: 0;
}

table td,
table th {
  vertical-align: top;
}
table td:not([align]),
table th:not([align]) {
  text-align: inherit;
}
table th {
  color: hsl(0, 0%, 21%);
}

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* Bulma Form */
.select select, .textarea, .input {
  background-color: hsl(0, 0%, 100%);
  border-color: hsl(0, 0%, 86%);
  border-radius: 4px;
  color: hsl(0, 0%, 21%);
}
.select select::-moz-placeholder, .textarea::-moz-placeholder, .input::-moz-placeholder {
  color: rgba(53.55, 53.55, 53.55, 0.3);
}
.select select::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .input::-webkit-input-placeholder {
  color: rgba(53.55, 53.55, 53.55, 0.3);
}
.select select:-moz-placeholder, .textarea:-moz-placeholder, .input:-moz-placeholder {
  color: rgba(53.55, 53.55, 53.55, 0.3);
}
.select select:-ms-input-placeholder, .textarea:-ms-input-placeholder, .input:-ms-input-placeholder {
  color: rgba(53.55, 53.55, 53.55, 0.3);
}
.select select:hover, .textarea:hover, .input:hover, .select select.is-hovered, .is-hovered.textarea, .is-hovered.input {
  border-color: hsl(0, 0%, 71%);
}
.select select:focus, .textarea:focus, .input:focus, .select select.is-focused, .is-focused.textarea, .is-focused.input, .select select:active, .textarea:active, .input:active, .select select.is-active, .is-active.textarea, .is-active.input {
  border-color: hsl(229, 53%, 53%);
  box-shadow: 0 0 0 0.125em rgba(71.6295, 94.92035, 198.6705, 0.25);
}
.select select[disabled], [disabled].textarea, [disabled].input, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input {
  background-color: hsl(0, 0%, 96%);
  border-color: hsl(0, 0%, 96%);
  box-shadow: none;
  color: hsl(0, 0%, 48%);
}
.select select[disabled]::-moz-placeholder, [disabled].textarea::-moz-placeholder, [disabled].input::-moz-placeholder, fieldset[disabled] .select select::-moz-placeholder, .select fieldset[disabled] select::-moz-placeholder, fieldset[disabled] .textarea::-moz-placeholder, fieldset[disabled] .input::-moz-placeholder {
  color: rgba(122.4, 122.4, 122.4, 0.3);
}
.select select[disabled]::-webkit-input-placeholder, [disabled].textarea::-webkit-input-placeholder, [disabled].input::-webkit-input-placeholder, fieldset[disabled] .select select::-webkit-input-placeholder, .select fieldset[disabled] select::-webkit-input-placeholder, fieldset[disabled] .textarea::-webkit-input-placeholder, fieldset[disabled] .input::-webkit-input-placeholder {
  color: rgba(122.4, 122.4, 122.4, 0.3);
}
.select select[disabled]:-moz-placeholder, [disabled].textarea:-moz-placeholder, [disabled].input:-moz-placeholder, fieldset[disabled] .select select:-moz-placeholder, .select fieldset[disabled] select:-moz-placeholder, fieldset[disabled] .textarea:-moz-placeholder, fieldset[disabled] .input:-moz-placeholder {
  color: rgba(122.4, 122.4, 122.4, 0.3);
}
.select select[disabled]:-ms-input-placeholder, [disabled].textarea:-ms-input-placeholder, [disabled].input:-ms-input-placeholder, fieldset[disabled] .select select:-ms-input-placeholder, .select fieldset[disabled] select:-ms-input-placeholder, fieldset[disabled] .textarea:-ms-input-placeholder, fieldset[disabled] .input:-ms-input-placeholder {
  color: rgba(122.4, 122.4, 122.4, 0.3);
}

.textarea, .input {
  box-shadow: inset 0 0.0625em 0.125em rgba(10.2, 10.2, 10.2, 0.05);
  max-width: 100%;
  width: 100%;
}
[readonly].textarea, [readonly].input {
  box-shadow: none;
}
.is-white.textarea, .is-white.input {
  border-color: hsl(0, 0%, 100%);
}
.is-white.textarea:focus, .is-white.input:focus, .is-white.is-focused.textarea, .is-white.is-focused.input, .is-white.textarea:active, .is-white.input:active, .is-white.is-active.textarea, .is-white.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}
.is-black.textarea, .is-black.input {
  border-color: hsl(0, 0%, 4%);
}
.is-black.textarea:focus, .is-black.input:focus, .is-black.is-focused.textarea, .is-black.is-focused.input, .is-black.textarea:active, .is-black.input:active, .is-black.is-active.textarea, .is-black.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(10.2, 10.2, 10.2, 0.25);
}
.is-light.textarea, .is-light.input {
  border-color: hsl(0, 0%, 96%);
}
.is-light.textarea:focus, .is-light.input:focus, .is-light.is-focused.textarea, .is-light.is-focused.input, .is-light.textarea:active, .is-light.input:active, .is-light.is-active.textarea, .is-light.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(244.8, 244.8, 244.8, 0.25);
}
.is-dark.textarea, .is-dark.input {
  border-color: hsl(0, 0%, 21%);
}
.is-dark.textarea:focus, .is-dark.input:focus, .is-dark.is-focused.textarea, .is-dark.is-focused.input, .is-dark.textarea:active, .is-dark.input:active, .is-dark.is-active.textarea, .is-dark.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(53.55, 53.55, 53.55, 0.25);
}
.is-primary.textarea, .is-primary.input {
  border-color: hsl(171, 100%, 41%);
}
.is-primary.textarea:focus, .is-primary.input:focus, .is-primary.is-focused.textarea, .is-primary.is-focused.input, .is-primary.textarea:active, .is-primary.input:active, .is-primary.is-active.textarea, .is-primary.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(0, 209.1, 177.735, 0.25);
}
.is-link.textarea, .is-link.input {
  border-color: hsl(229, 53%, 53%);
}
.is-link.textarea:focus, .is-link.input:focus, .is-link.is-focused.textarea, .is-link.is-focused.input, .is-link.textarea:active, .is-link.input:active, .is-link.is-active.textarea, .is-link.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(71.6295, 94.92035, 198.6705, 0.25);
}
.is-info.textarea, .is-info.input {
  border-color: hsl(207, 61%, 53%);
}
.is-info.textarea:focus, .is-info.input:focus, .is-info.is-focused.textarea, .is-info.is-focused.input, .is-info.textarea:active, .is-info.input:active, .is-info.is-active.textarea, .is-info.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(62.0415, 142.46085, 208.2585, 0.25);
}
.is-success.textarea, .is-success.input {
  border-color: hsl(153, 53%, 53%);
}
.is-success.textarea:focus, .is-success.input:focus, .is-success.is-focused.textarea, .is-success.is-focused.input, .is-success.textarea:active, .is-success.input:active, .is-success.is-active.textarea, .is-success.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(71.6295, 198.6705, 141.50205, 0.25);
}
.is-warning.textarea, .is-warning.input {
  border-color: hsl(44, 100%, 77%);
}
.is-warning.textarea:focus, .is-warning.input:focus, .is-warning.is-focused.textarea, .is-warning.is-focused.input, .is-warning.textarea:active, .is-warning.input:active, .is-warning.is-active.textarea, .is-warning.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(255, 223.72, 137.7, 0.25);
}
.is-danger.textarea, .is-danger.input {
  border-color: hsl(348, 86%, 61%);
}
.is-danger.textarea:focus, .is-danger.input:focus, .is-danger.is-focused.textarea, .is-danger.is-focused.input, .is-danger.textarea:active, .is-danger.input:active, .is-danger.is-active.textarea, .is-danger.is-active.input {
  box-shadow: 0 0 0 0.125em rgba(241.077, 70.023, 104.2338, 0.25);
}
.is-small.textarea, .is-small.input {
  border-radius: 2px;
  font-size: 0.75rem;
}
.is-medium.textarea, .is-medium.input {
  font-size: 1.25rem;
}
.is-large.textarea, .is-large.input {
  font-size: 1.5rem;
}
.is-fullwidth.textarea, .is-fullwidth.input {
  display: block;
  width: 100%;
}
.is-inline.textarea, .is-inline.input {
  display: inline;
  width: auto;
}

.input.is-rounded {
  border-radius: 9999px;
  padding-left: calc(calc(0.75em - 1px) + 0.375em);
  padding-right: calc(calc(0.75em - 1px) + 0.375em);
}
.input.is-static {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.textarea {
  display: block;
  max-width: 100%;
  min-width: 100%;
  padding: calc(0.75em - 1px);
  resize: vertical;
}
.textarea:not([rows]) {
  max-height: 40em;
  min-height: 8em;
}
.textarea[rows] {
  height: initial;
}
.textarea.has-fixed-size {
  resize: none;
}

.radio, .checkbox {
  cursor: pointer;
  display: inline-block;
  line-height: 1.25;
  position: relative;
}
.radio input, .checkbox input {
  cursor: pointer;
}
.radio:hover, .checkbox:hover {
  color: hsl(0, 0%, 21%);
}
[disabled].radio, [disabled].checkbox, fieldset[disabled] .radio, fieldset[disabled] .checkbox,
.radio input[disabled],
.checkbox input[disabled] {
  color: hsl(0, 0%, 48%);
  cursor: not-allowed;
}

.radio + .radio {
  margin-left: 0.5em;
}

.select {
  display: inline-block;
  max-width: 100%;
  position: relative;
  vertical-align: top;
}
.select:not(.is-multiple) {
  height: 2.5em;
}
.select:not(.is-multiple):not(.is-loading)::after {
  border-color: hsl(229, 53%, 53%);
  right: 1.125em;
  z-index: 4;
}
.select.is-rounded select {
  border-radius: 9999px;
  padding-left: 1em;
}
.select select {
  cursor: pointer;
  display: block;
  font-size: 1em;
  max-width: 100%;
  outline: none;
}
.select select::-ms-expand {
  display: none;
}
.select select[disabled]:hover, fieldset[disabled] .select select:hover {
  border-color: hsl(0, 0%, 96%);
}
.select select:not([multiple]) {
  padding-right: 2.5em;
}
.select select[multiple] {
  height: auto;
  padding: 0;
}
.select select[multiple] option {
  padding: 0.5em 1em;
}
.select:not(.is-multiple):not(.is-loading):hover::after {
  border-color: hsl(0, 0%, 21%);
}
.select.is-white:not(:hover)::after {
  border-color: hsl(0, 0%, 100%);
}
.select.is-white select {
  border-color: hsl(0, 0%, 100%);
}
.select.is-white select:hover, .select.is-white select.is-hovered {
  border-color: hsl(0, 0%, 95%);
}
.select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}
.select.is-black:not(:hover)::after {
  border-color: hsl(0, 0%, 4%);
}
.select.is-black select {
  border-color: hsl(0, 0%, 4%);
}
.select.is-black select:hover, .select.is-black select.is-hovered {
  border-color: hsl(0, 0%, 0%);
}
.select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active {
  box-shadow: 0 0 0 0.125em rgba(10.2, 10.2, 10.2, 0.25);
}
.select.is-light:not(:hover)::after {
  border-color: hsl(0, 0%, 96%);
}
.select.is-light select {
  border-color: hsl(0, 0%, 96%);
}
.select.is-light select:hover, .select.is-light select.is-hovered {
  border-color: hsl(0, 0%, 91%);
}
.select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active {
  box-shadow: 0 0 0 0.125em rgba(244.8, 244.8, 244.8, 0.25);
}
.select.is-dark:not(:hover)::after {
  border-color: hsl(0, 0%, 21%);
}
.select.is-dark select {
  border-color: hsl(0, 0%, 21%);
}
.select.is-dark select:hover, .select.is-dark select.is-hovered {
  border-color: hsl(0, 0%, 16%);
}
.select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active {
  box-shadow: 0 0 0 0.125em rgba(53.55, 53.55, 53.55, 0.25);
}
.select.is-primary:not(:hover)::after {
  border-color: hsl(171, 100%, 41%);
}
.select.is-primary select {
  border-color: hsl(171, 100%, 41%);
}
.select.is-primary select:hover, .select.is-primary select.is-hovered {
  border-color: hsl(171, 100%, 36%);
}
.select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active {
  box-shadow: 0 0 0 0.125em rgba(0, 209.1, 177.735, 0.25);
}
.select.is-link:not(:hover)::after {
  border-color: hsl(229, 53%, 53%);
}
.select.is-link select {
  border-color: hsl(229, 53%, 53%);
}
.select.is-link select:hover, .select.is-link select.is-hovered {
  border-color: hsl(229, 53%, 48%);
}
.select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active {
  box-shadow: 0 0 0 0.125em rgba(71.6295, 94.92035, 198.6705, 0.25);
}
.select.is-info:not(:hover)::after {
  border-color: hsl(207, 61%, 53%);
}
.select.is-info select {
  border-color: hsl(207, 61%, 53%);
}
.select.is-info select:hover, .select.is-info select.is-hovered {
  border-color: hsl(207, 61%, 48%);
}
.select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active {
  box-shadow: 0 0 0 0.125em rgba(62.0415, 142.46085, 208.2585, 0.25);
}
.select.is-success:not(:hover)::after {
  border-color: hsl(153, 53%, 53%);
}
.select.is-success select {
  border-color: hsl(153, 53%, 53%);
}
.select.is-success select:hover, .select.is-success select.is-hovered {
  border-color: hsl(153, 53%, 48%);
}
.select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active {
  box-shadow: 0 0 0 0.125em rgba(71.6295, 198.6705, 141.50205, 0.25);
}
.select.is-warning:not(:hover)::after {
  border-color: hsl(44, 100%, 77%);
}
.select.is-warning select {
  border-color: hsl(44, 100%, 77%);
}
.select.is-warning select:hover, .select.is-warning select.is-hovered {
  border-color: hsl(44, 100%, 72%);
}
.select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active {
  box-shadow: 0 0 0 0.125em rgba(255, 223.72, 137.7, 0.25);
}
.select.is-danger:not(:hover)::after {
  border-color: hsl(348, 86%, 61%);
}
.select.is-danger select {
  border-color: hsl(348, 86%, 61%);
}
.select.is-danger select:hover, .select.is-danger select.is-hovered {
  border-color: hsl(348, 86%, 56%);
}
.select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active {
  box-shadow: 0 0 0 0.125em rgba(241.077, 70.023, 104.2338, 0.25);
}
.select.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}
.select.is-medium {
  font-size: 1.25rem;
}
.select.is-large {
  font-size: 1.5rem;
}
.select.is-disabled::after {
  border-color: hsl(0, 0%, 48%) !important;
  opacity: 0.5;
}
.select.is-fullwidth {
  width: 100%;
}
.select.is-fullwidth select {
  width: 100%;
}
.select.is-loading::after {
  margin-top: 0;
  position: absolute;
  right: 0.625em;
  top: 0.625em;
  transform: none;
}
.select.is-loading.is-small:after {
  font-size: 0.75rem;
}
.select.is-loading.is-medium:after {
  font-size: 1.25rem;
}
.select.is-loading.is-large:after {
  font-size: 1.5rem;
}

.file {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.file.is-white .file-cta {
  background-color: hsl(0, 0%, 100%);
  border-color: transparent;
  color: hsl(0, 0%, 4%);
}
.file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta {
  background-color: hsl(0, 0%, 97.5%);
  border-color: transparent;
  color: hsl(0, 0%, 4%);
}
.file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
  color: hsl(0, 0%, 4%);
}
.file.is-white:active .file-cta, .file.is-white.is-active .file-cta {
  background-color: hsl(0, 0%, 95%);
  border-color: transparent;
  color: hsl(0, 0%, 4%);
}
.file.is-black .file-cta {
  background-color: hsl(0, 0%, 4%);
  border-color: transparent;
  color: hsl(0, 0%, 100%);
}
.file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta {
  background-color: hsl(0, 0%, 1.5%);
  border-color: transparent;
  color: hsl(0, 0%, 100%);
}
.file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(10.2, 10.2, 10.2, 0.25);
  color: hsl(0, 0%, 100%);
}
.file.is-black:active .file-cta, .file.is-black.is-active .file-cta {
  background-color: hsl(0, 0%, 0%);
  border-color: transparent;
  color: hsl(0, 0%, 100%);
}
.file.is-light .file-cta {
  background-color: hsl(0, 0%, 96%);
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta {
  background-color: hsl(0, 0%, 93.5%);
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(244.8, 244.8, 244.8, 0.25);
  color: rgba(0, 0, 0, 0.7);
}
.file.is-light:active .file-cta, .file.is-light.is-active .file-cta {
  background-color: hsl(0, 0%, 91%);
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.file.is-dark .file-cta {
  background-color: hsl(0, 0%, 21%);
  border-color: transparent;
  color: #fff;
}
.file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta {
  background-color: hsl(0, 0%, 18.5%);
  border-color: transparent;
  color: #fff;
}
.file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(53.55, 53.55, 53.55, 0.25);
  color: #fff;
}
.file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta {
  background-color: hsl(0, 0%, 16%);
  border-color: transparent;
  color: #fff;
}
.file.is-primary .file-cta {
  background-color: hsl(171, 100%, 41%);
  border-color: transparent;
  color: #fff;
}
.file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta {
  background-color: hsl(171, 100%, 38.5%);
  border-color: transparent;
  color: #fff;
}
.file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(0, 209.1, 177.735, 0.25);
  color: #fff;
}
.file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta {
  background-color: hsl(171, 100%, 36%);
  border-color: transparent;
  color: #fff;
}
.file.is-link .file-cta {
  background-color: hsl(229, 53%, 53%);
  border-color: transparent;
  color: #fff;
}
.file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta {
  background-color: hsl(229, 53%, 50.5%);
  border-color: transparent;
  color: #fff;
}
.file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(71.6295, 94.92035, 198.6705, 0.25);
  color: #fff;
}
.file.is-link:active .file-cta, .file.is-link.is-active .file-cta {
  background-color: hsl(229, 53%, 48%);
  border-color: transparent;
  color: #fff;
}
.file.is-info .file-cta {
  background-color: hsl(207, 61%, 53%);
  border-color: transparent;
  color: #fff;
}
.file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta {
  background-color: hsl(207, 61%, 50.5%);
  border-color: transparent;
  color: #fff;
}
.file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(62.0415, 142.46085, 208.2585, 0.25);
  color: #fff;
}
.file.is-info:active .file-cta, .file.is-info.is-active .file-cta {
  background-color: hsl(207, 61%, 48%);
  border-color: transparent;
  color: #fff;
}
.file.is-success .file-cta {
  background-color: hsl(153, 53%, 53%);
  border-color: transparent;
  color: #fff;
}
.file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta {
  background-color: hsl(153, 53%, 50.5%);
  border-color: transparent;
  color: #fff;
}
.file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(71.6295, 198.6705, 141.50205, 0.25);
  color: #fff;
}
.file.is-success:active .file-cta, .file.is-success.is-active .file-cta {
  background-color: hsl(153, 53%, 48%);
  border-color: transparent;
  color: #fff;
}
.file.is-warning .file-cta {
  background-color: hsl(44, 100%, 77%);
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta {
  background-color: hsl(44, 100%, 74.5%);
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(255, 223.72, 137.7, 0.25);
  color: rgba(0, 0, 0, 0.7);
}
.file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta {
  background-color: hsl(44, 100%, 72%);
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.file.is-danger .file-cta {
  background-color: hsl(348, 86%, 61%);
  border-color: transparent;
  color: #fff;
}
.file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta {
  background-color: hsl(348, 86%, 58.5%);
  border-color: transparent;
  color: #fff;
}
.file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(241.077, 70.023, 104.2338, 0.25);
  color: #fff;
}
.file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta {
  background-color: hsl(348, 86%, 56%);
  border-color: transparent;
  color: #fff;
}
.file.is-small {
  font-size: 0.75rem;
}
.file.is-normal {
  font-size: 1rem;
}
.file.is-medium {
  font-size: 1.25rem;
}
.file.is-medium .file-icon .fa {
  font-size: 21px;
}
.file.is-large {
  font-size: 1.5rem;
}
.file.is-large .file-icon .fa {
  font-size: 28px;
}
.file.has-name .file-cta {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.file.has-name .file-name {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.file.has-name.is-empty .file-cta {
  border-radius: 4px;
}
.file.has-name.is-empty .file-name {
  display: none;
}
.file.is-boxed .file-label {
  flex-direction: column;
}
.file.is-boxed .file-cta {
  flex-direction: column;
  height: auto;
  padding: 1em 3em;
}
.file.is-boxed .file-name {
  border-width: 0 1px 1px;
}
.file.is-boxed .file-icon {
  height: 1.5em;
  width: 1.5em;
}
.file.is-boxed .file-icon .fa {
  font-size: 21px;
}
.file.is-boxed.is-small .file-icon .fa {
  font-size: 14px;
}
.file.is-boxed.is-medium .file-icon .fa {
  font-size: 28px;
}
.file.is-boxed.is-large .file-icon .fa {
  font-size: 35px;
}
.file.is-boxed.has-name .file-cta {
  border-radius: 4px 4px 0 0;
}
.file.is-boxed.has-name .file-name {
  border-radius: 0 0 4px 4px;
  border-width: 0 1px 1px;
}
.file.is-centered {
  justify-content: center;
}
.file.is-fullwidth .file-label {
  width: 100%;
}
.file.is-fullwidth .file-name {
  flex-grow: 1;
  max-width: none;
}
.file.is-right {
  justify-content: flex-end;
}
.file.is-right .file-cta {
  border-radius: 0 4px 4px 0;
}
.file.is-right .file-name {
  border-radius: 4px 0 0 4px;
  border-width: 1px 0 1px 1px;
  order: -1;
}

.file-label {
  align-items: stretch;
  display: flex;
  cursor: pointer;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}
.file-label:hover .file-cta {
  background-color: hsl(0, 0%, 93.5%);
  color: hsl(0, 0%, 21%);
}
.file-label:hover .file-name {
  border-color: hsl(0, 0%, 83.5%);
}
.file-label:active .file-cta {
  background-color: hsl(0, 0%, 91%);
  color: hsl(0, 0%, 21%);
}
.file-label:active .file-name {
  border-color: hsl(0, 0%, 81%);
}

.file-input {
  height: 100%;
  left: 0;
  opacity: 0;
  outline: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.file-cta,
.file-name {
  border-color: hsl(0, 0%, 86%);
  border-radius: 4px;
  font-size: 1em;
  padding-left: 1em;
  padding-right: 1em;
  white-space: nowrap;
}

.file-cta {
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 29%);
}

.file-name {
  border-color: hsl(0, 0%, 86%);
  border-style: solid;
  border-width: 1px 1px 1px 0;
  display: block;
  max-width: 16em;
  overflow: hidden;
  text-align: inherit;
  text-overflow: ellipsis;
}

.file-icon {
  align-items: center;
  display: flex;
  height: 1em;
  justify-content: center;
  margin-right: 0.5em;
  width: 1em;
}
.file-icon .fa {
  font-size: 14px;
}

.label {
  color: hsl(0, 0%, 21%);
  display: block;
  font-size: 1rem;
  font-weight: 700;
}
.label:not(:last-child) {
  margin-bottom: 0.5em;
}
.label.is-small {
  font-size: 0.75rem;
}
.label.is-medium {
  font-size: 1.25rem;
}
.label.is-large {
  font-size: 1.5rem;
}

.help {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.help.is-white {
  color: hsl(0, 0%, 100%);
}
.help.is-black {
  color: hsl(0, 0%, 4%);
}
.help.is-light {
  color: hsl(0, 0%, 96%);
}
.help.is-dark {
  color: hsl(0, 0%, 21%);
}
.help.is-primary {
  color: hsl(171, 100%, 41%);
}
.help.is-link {
  color: hsl(229, 53%, 53%);
}
.help.is-info {
  color: hsl(207, 61%, 53%);
}
.help.is-success {
  color: hsl(153, 53%, 53%);
}
.help.is-warning {
  color: hsl(44, 100%, 77%);
}
.help.is-danger {
  color: hsl(348, 86%, 61%);
}

.field:not(:last-child) {
  margin-bottom: 0.75rem;
}
.field.has-addons {
  display: flex;
  justify-content: flex-start;
}
.field.has-addons .control:not(:last-child) {
  margin-right: -1px;
}
.field.has-addons .control:not(:first-child):not(:last-child) .button,
.field.has-addons .control:not(:first-child):not(:last-child) .input,
.field.has-addons .control:not(:first-child):not(:last-child) .select select {
  border-radius: 0;
}
.field.has-addons .control:first-child:not(:only-child) .button,
.field.has-addons .control:first-child:not(:only-child) .input,
.field.has-addons .control:first-child:not(:only-child) .select select {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.field.has-addons .control:last-child:not(:only-child) .button,
.field.has-addons .control:last-child:not(:only-child) .input,
.field.has-addons .control:last-child:not(:only-child) .select select {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered,
.field.has-addons .control .input:not([disabled]):hover,
.field.has-addons .control .input:not([disabled]).is-hovered,
.field.has-addons .control .select select:not([disabled]):hover,
.field.has-addons .control .select select:not([disabled]).is-hovered {
  z-index: 2;
}
.field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active,
.field.has-addons .control .input:not([disabled]):focus,
.field.has-addons .control .input:not([disabled]).is-focused,
.field.has-addons .control .input:not([disabled]):active,
.field.has-addons .control .input:not([disabled]).is-active,
.field.has-addons .control .select select:not([disabled]):focus,
.field.has-addons .control .select select:not([disabled]).is-focused,
.field.has-addons .control .select select:not([disabled]):active,
.field.has-addons .control .select select:not([disabled]).is-active {
  z-index: 3;
}
.field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover,
.field.has-addons .control .input:not([disabled]):focus:hover,
.field.has-addons .control .input:not([disabled]).is-focused:hover,
.field.has-addons .control .input:not([disabled]):active:hover,
.field.has-addons .control .input:not([disabled]).is-active:hover,
.field.has-addons .control .select select:not([disabled]):focus:hover,
.field.has-addons .control .select select:not([disabled]).is-focused:hover,
.field.has-addons .control .select select:not([disabled]):active:hover,
.field.has-addons .control .select select:not([disabled]).is-active:hover {
  z-index: 4;
}
.field.has-addons .control.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}
.field.has-addons.has-addons-centered {
  justify-content: center;
}
.field.has-addons.has-addons-right {
  justify-content: flex-end;
}
.field.has-addons.has-addons-fullwidth .control {
  flex-grow: 1;
  flex-shrink: 0;
}
.field.is-grouped {
  display: flex;
  justify-content: flex-start;
}
.field.is-grouped > .control {
  flex-shrink: 0;
}
.field.is-grouped > .control:not(:last-child) {
  margin-bottom: 0;
  margin-right: 0.75rem;
}
.field.is-grouped > .control.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}
.field.is-grouped.is-grouped-centered {
  justify-content: center;
}
.field.is-grouped.is-grouped-right {
  justify-content: flex-end;
}
.field.is-grouped.is-grouped-multiline {
  flex-wrap: wrap;
}
.field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
  margin-bottom: 0.75rem;
}
.field.is-grouped.is-grouped-multiline:last-child {
  margin-bottom: -0.75rem;
}
.field.is-grouped.is-grouped-multiline:not(:last-child) {
  margin-bottom: 0;
}
@media screen and (min-width: 769px), print {
  .field.is-horizontal {
    display: flex;
  }
}

.field-label .label {
  font-size: inherit;
}
@media screen and (max-width: 768px) {
  .field-label {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .field-label {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 0;
    margin-right: 1.5rem;
    text-align: right;
  }
  .field-label.is-small {
    font-size: 0.75rem;
    padding-top: 0.375em;
  }
  .field-label.is-normal {
    padding-top: 0.375em;
  }
  .field-label.is-medium {
    font-size: 1.25rem;
    padding-top: 0.375em;
  }
  .field-label.is-large {
    font-size: 1.5rem;
    padding-top: 0.375em;
  }
}

.field-body .field .field {
  margin-bottom: 0;
}
@media screen and (min-width: 769px), print {
  .field-body {
    display: flex;
    flex-basis: 0;
    flex-grow: 5;
    flex-shrink: 1;
  }
  .field-body .field {
    margin-bottom: 0;
  }
  .field-body > .field {
    flex-shrink: 1;
  }
  .field-body > .field:not(.is-narrow) {
    flex-grow: 1;
  }
  .field-body > .field:not(:last-child) {
    margin-right: 0.75rem;
  }
}

.control {
  box-sizing: border-box;
  clear: both;
  font-size: 1rem;
  position: relative;
  text-align: inherit;
}
.control.has-icons-left .input:focus ~ .icon,
.control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon,
.control.has-icons-right .select:focus ~ .icon {
  color: hsl(0, 0%, 29%);
}
.control.has-icons-left .input.is-small ~ .icon,
.control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon,
.control.has-icons-right .select.is-small ~ .icon {
  font-size: 0.75rem;
}
.control.has-icons-left .input.is-medium ~ .icon,
.control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon,
.control.has-icons-right .select.is-medium ~ .icon {
  font-size: 1.25rem;
}
.control.has-icons-left .input.is-large ~ .icon,
.control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon,
.control.has-icons-right .select.is-large ~ .icon {
  font-size: 1.5rem;
}
.control.has-icons-left .icon, .control.has-icons-right .icon {
  color: hsl(0, 0%, 86%);
  height: 2.5em;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 2.5em;
  z-index: 4;
}
.control.has-icons-left .input,
.control.has-icons-left .select select {
  padding-left: 2.5em;
}
.control.has-icons-left .icon.is-left {
  left: 0;
}
.control.has-icons-right .input,
.control.has-icons-right .select select {
  padding-right: 2.5em;
}
.control.has-icons-right .icon.is-right {
  right: 0;
}
.control.is-loading::after {
  position: absolute !important;
  right: 0.625em;
  top: 0.625em;
  z-index: 4;
}
.control.is-loading.is-small:after {
  font-size: 0.75rem;
}
.control.is-loading.is-medium:after {
  font-size: 1.25rem;
}
.control.is-loading.is-large:after {
  font-size: 1.5rem;
}

/* Bulma Grid */
.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}
.columns.is-mobile > .column.is-narrow {
  flex: none;
  width: unset;
}
.columns.is-mobile > .column.is-full {
  flex: none;
  width: 100%;
}
.columns.is-mobile > .column.is-three-quarters {
  flex: none;
  width: 75%;
}
.columns.is-mobile > .column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}
.columns.is-mobile > .column.is-half {
  flex: none;
  width: 50%;
}
.columns.is-mobile > .column.is-one-third {
  flex: none;
  width: 33.3333%;
}
.columns.is-mobile > .column.is-one-quarter {
  flex: none;
  width: 25%;
}
.columns.is-mobile > .column.is-one-fifth {
  flex: none;
  width: 20%;
}
.columns.is-mobile > .column.is-two-fifths {
  flex: none;
  width: 40%;
}
.columns.is-mobile > .column.is-three-fifths {
  flex: none;
  width: 60%;
}
.columns.is-mobile > .column.is-four-fifths {
  flex: none;
  width: 80%;
}
.columns.is-mobile > .column.is-offset-three-quarters {
  margin-left: 75%;
}
.columns.is-mobile > .column.is-offset-two-thirds {
  margin-left: 66.6666%;
}
.columns.is-mobile > .column.is-offset-half {
  margin-left: 50%;
}
.columns.is-mobile > .column.is-offset-one-third {
  margin-left: 33.3333%;
}
.columns.is-mobile > .column.is-offset-one-quarter {
  margin-left: 25%;
}
.columns.is-mobile > .column.is-offset-one-fifth {
  margin-left: 20%;
}
.columns.is-mobile > .column.is-offset-two-fifths {
  margin-left: 40%;
}
.columns.is-mobile > .column.is-offset-three-fifths {
  margin-left: 60%;
}
.columns.is-mobile > .column.is-offset-four-fifths {
  margin-left: 80%;
}
.columns.is-mobile > .column.is-0 {
  flex: none;
  width: 0%;
}
.columns.is-mobile > .column.is-offset-0 {
  margin-left: 0%;
}
.columns.is-mobile > .column.is-1 {
  flex: none;
  width: 8.33333337%;
}
.columns.is-mobile > .column.is-offset-1 {
  margin-left: 8.33333337%;
}
.columns.is-mobile > .column.is-2 {
  flex: none;
  width: 16.66666674%;
}
.columns.is-mobile > .column.is-offset-2 {
  margin-left: 16.66666674%;
}
.columns.is-mobile > .column.is-3 {
  flex: none;
  width: 25%;
}
.columns.is-mobile > .column.is-offset-3 {
  margin-left: 25%;
}
.columns.is-mobile > .column.is-4 {
  flex: none;
  width: 33.33333337%;
}
.columns.is-mobile > .column.is-offset-4 {
  margin-left: 33.33333337%;
}
.columns.is-mobile > .column.is-5 {
  flex: none;
  width: 41.66666674%;
}
.columns.is-mobile > .column.is-offset-5 {
  margin-left: 41.66666674%;
}
.columns.is-mobile > .column.is-6 {
  flex: none;
  width: 50%;
}
.columns.is-mobile > .column.is-offset-6 {
  margin-left: 50%;
}
.columns.is-mobile > .column.is-7 {
  flex: none;
  width: 58.33333337%;
}
.columns.is-mobile > .column.is-offset-7 {
  margin-left: 58.33333337%;
}
.columns.is-mobile > .column.is-8 {
  flex: none;
  width: 66.66666674%;
}
.columns.is-mobile > .column.is-offset-8 {
  margin-left: 66.66666674%;
}
.columns.is-mobile > .column.is-9 {
  flex: none;
  width: 75%;
}
.columns.is-mobile > .column.is-offset-9 {
  margin-left: 75%;
}
.columns.is-mobile > .column.is-10 {
  flex: none;
  width: 83.33333337%;
}
.columns.is-mobile > .column.is-offset-10 {
  margin-left: 83.33333337%;
}
.columns.is-mobile > .column.is-11 {
  flex: none;
  width: 91.66666674%;
}
.columns.is-mobile > .column.is-offset-11 {
  margin-left: 91.66666674%;
}
.columns.is-mobile > .column.is-12 {
  flex: none;
  width: 100%;
}
.columns.is-mobile > .column.is-offset-12 {
  margin-left: 100%;
}
@media screen and (max-width: 768px) {
  .column.is-narrow-mobile {
    flex: none;
    width: unset;
  }
  .column.is-full-mobile {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-mobile {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-mobile {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-mobile {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-mobile {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-mobile {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-mobile {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-mobile {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-mobile {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-mobile {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-mobile {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-mobile {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-mobile {
    margin-left: 50%;
  }
  .column.is-offset-one-third-mobile {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-mobile {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-mobile {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-mobile {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-mobile {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-mobile {
    margin-left: 80%;
  }
  .column.is-0-mobile {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-mobile {
    margin-left: 0%;
  }
  .column.is-1-mobile {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-mobile {
    margin-left: 8.33333337%;
  }
  .column.is-2-mobile {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-mobile {
    margin-left: 16.66666674%;
  }
  .column.is-3-mobile {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-mobile {
    margin-left: 25%;
  }
  .column.is-4-mobile {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-mobile {
    margin-left: 33.33333337%;
  }
  .column.is-5-mobile {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-mobile {
    margin-left: 41.66666674%;
  }
  .column.is-6-mobile {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-mobile {
    margin-left: 50%;
  }
  .column.is-7-mobile {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-mobile {
    margin-left: 58.33333337%;
  }
  .column.is-8-mobile {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-mobile {
    margin-left: 66.66666674%;
  }
  .column.is-9-mobile {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-mobile {
    margin-left: 75%;
  }
  .column.is-10-mobile {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-mobile {
    margin-left: 83.33333337%;
  }
  .column.is-11-mobile {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-mobile {
    margin-left: 91.66666674%;
  }
  .column.is-12-mobile {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-mobile {
    margin-left: 100%;
  }
}
@media screen and (min-width: 769px), print {
  .column.is-narrow, .column.is-narrow-tablet {
    flex: none;
    width: unset;
  }
  .column.is-full, .column.is-full-tablet {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters, .column.is-three-quarters-tablet {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds, .column.is-two-thirds-tablet {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half, .column.is-half-tablet {
    flex: none;
    width: 50%;
  }
  .column.is-one-third, .column.is-one-third-tablet {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter, .column.is-one-quarter-tablet {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth, .column.is-one-fifth-tablet {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths, .column.is-two-fifths-tablet {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths, .column.is-three-fifths-tablet {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths, .column.is-four-fifths-tablet {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
    margin-left: 66.6666%;
  }
  .column.is-offset-half, .column.is-offset-half-tablet {
    margin-left: 50%;
  }
  .column.is-offset-one-third, .column.is-offset-one-third-tablet {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
    margin-left: 80%;
  }
  .column.is-0, .column.is-0-tablet {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0, .column.is-offset-0-tablet {
    margin-left: 0%;
  }
  .column.is-1, .column.is-1-tablet {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1, .column.is-offset-1-tablet {
    margin-left: 8.33333337%;
  }
  .column.is-2, .column.is-2-tablet {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2, .column.is-offset-2-tablet {
    margin-left: 16.66666674%;
  }
  .column.is-3, .column.is-3-tablet {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3, .column.is-offset-3-tablet {
    margin-left: 25%;
  }
  .column.is-4, .column.is-4-tablet {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4, .column.is-offset-4-tablet {
    margin-left: 33.33333337%;
  }
  .column.is-5, .column.is-5-tablet {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5, .column.is-offset-5-tablet {
    margin-left: 41.66666674%;
  }
  .column.is-6, .column.is-6-tablet {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6, .column.is-offset-6-tablet {
    margin-left: 50%;
  }
  .column.is-7, .column.is-7-tablet {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7, .column.is-offset-7-tablet {
    margin-left: 58.33333337%;
  }
  .column.is-8, .column.is-8-tablet {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8, .column.is-offset-8-tablet {
    margin-left: 66.66666674%;
  }
  .column.is-9, .column.is-9-tablet {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9, .column.is-offset-9-tablet {
    margin-left: 75%;
  }
  .column.is-10, .column.is-10-tablet {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10, .column.is-offset-10-tablet {
    margin-left: 83.33333337%;
  }
  .column.is-11, .column.is-11-tablet {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11, .column.is-offset-11-tablet {
    margin-left: 91.66666674%;
  }
  .column.is-12, .column.is-12-tablet {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12, .column.is-offset-12-tablet {
    margin-left: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .column.is-narrow-touch {
    flex: none;
    width: unset;
  }
  .column.is-full-touch {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-touch {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-touch {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-touch {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-touch {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-touch {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-touch {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-touch {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-touch {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-touch {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-touch {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-touch {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-touch {
    margin-left: 50%;
  }
  .column.is-offset-one-third-touch {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-touch {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-touch {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-touch {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-touch {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-touch {
    margin-left: 80%;
  }
  .column.is-0-touch {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-touch {
    margin-left: 0%;
  }
  .column.is-1-touch {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-touch {
    margin-left: 8.33333337%;
  }
  .column.is-2-touch {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-touch {
    margin-left: 16.66666674%;
  }
  .column.is-3-touch {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-touch {
    margin-left: 25%;
  }
  .column.is-4-touch {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-touch {
    margin-left: 33.33333337%;
  }
  .column.is-5-touch {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-touch {
    margin-left: 41.66666674%;
  }
  .column.is-6-touch {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-touch {
    margin-left: 50%;
  }
  .column.is-7-touch {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-touch {
    margin-left: 58.33333337%;
  }
  .column.is-8-touch {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-touch {
    margin-left: 66.66666674%;
  }
  .column.is-9-touch {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-touch {
    margin-left: 75%;
  }
  .column.is-10-touch {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-touch {
    margin-left: 83.33333337%;
  }
  .column.is-11-touch {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-touch {
    margin-left: 91.66666674%;
  }
  .column.is-12-touch {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-touch {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .column.is-narrow-desktop {
    flex: none;
    width: unset;
  }
  .column.is-full-desktop {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-desktop {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-desktop {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-desktop {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-desktop {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-desktop {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-desktop {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-desktop {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-desktop {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-desktop {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-desktop {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-desktop {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-desktop {
    margin-left: 50%;
  }
  .column.is-offset-one-third-desktop {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-desktop {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-desktop {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-desktop {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-desktop {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-desktop {
    margin-left: 80%;
  }
  .column.is-0-desktop {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-desktop {
    margin-left: 0%;
  }
  .column.is-1-desktop {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-desktop {
    margin-left: 8.33333337%;
  }
  .column.is-2-desktop {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-desktop {
    margin-left: 16.66666674%;
  }
  .column.is-3-desktop {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-desktop {
    margin-left: 25%;
  }
  .column.is-4-desktop {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-desktop {
    margin-left: 33.33333337%;
  }
  .column.is-5-desktop {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-desktop {
    margin-left: 41.66666674%;
  }
  .column.is-6-desktop {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-desktop {
    margin-left: 50%;
  }
  .column.is-7-desktop {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-desktop {
    margin-left: 58.33333337%;
  }
  .column.is-8-desktop {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-desktop {
    margin-left: 66.66666674%;
  }
  .column.is-9-desktop {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-desktop {
    margin-left: 75%;
  }
  .column.is-10-desktop {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-desktop {
    margin-left: 83.33333337%;
  }
  .column.is-11-desktop {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-desktop {
    margin-left: 91.66666674%;
  }
  .column.is-12-desktop {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-desktop {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1216px) {
  .column.is-narrow-widescreen {
    flex: none;
    width: unset;
  }
  .column.is-full-widescreen {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-widescreen {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-widescreen {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-widescreen {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-widescreen {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-widescreen {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-widescreen {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-widescreen {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-widescreen {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-widescreen {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-widescreen {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-widescreen {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-widescreen {
    margin-left: 50%;
  }
  .column.is-offset-one-third-widescreen {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-widescreen {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-widescreen {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-widescreen {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-widescreen {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-widescreen {
    margin-left: 80%;
  }
  .column.is-0-widescreen {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-widescreen {
    margin-left: 0%;
  }
  .column.is-1-widescreen {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-widescreen {
    margin-left: 8.33333337%;
  }
  .column.is-2-widescreen {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-widescreen {
    margin-left: 16.66666674%;
  }
  .column.is-3-widescreen {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-widescreen {
    margin-left: 25%;
  }
  .column.is-4-widescreen {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-widescreen {
    margin-left: 33.33333337%;
  }
  .column.is-5-widescreen {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-widescreen {
    margin-left: 41.66666674%;
  }
  .column.is-6-widescreen {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-widescreen {
    margin-left: 50%;
  }
  .column.is-7-widescreen {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-widescreen {
    margin-left: 58.33333337%;
  }
  .column.is-8-widescreen {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-widescreen {
    margin-left: 66.66666674%;
  }
  .column.is-9-widescreen {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-widescreen {
    margin-left: 75%;
  }
  .column.is-10-widescreen {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-widescreen {
    margin-left: 83.33333337%;
  }
  .column.is-11-widescreen {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-widescreen {
    margin-left: 91.66666674%;
  }
  .column.is-12-widescreen {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-widescreen {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1408px) {
  .column.is-narrow-fullhd {
    flex: none;
    width: unset;
  }
  .column.is-full-fullhd {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-fullhd {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-fullhd {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-fullhd {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-fullhd {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-fullhd {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-fullhd {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-fullhd {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-fullhd {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-fullhd {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-fullhd {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-fullhd {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-fullhd {
    margin-left: 50%;
  }
  .column.is-offset-one-third-fullhd {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-fullhd {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-fullhd {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-fullhd {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-fullhd {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-fullhd {
    margin-left: 80%;
  }
  .column.is-0-fullhd {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-fullhd {
    margin-left: 0%;
  }
  .column.is-1-fullhd {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-fullhd {
    margin-left: 8.33333337%;
  }
  .column.is-2-fullhd {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-fullhd {
    margin-left: 16.66666674%;
  }
  .column.is-3-fullhd {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-fullhd {
    margin-left: 25%;
  }
  .column.is-4-fullhd {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-fullhd {
    margin-left: 33.33333337%;
  }
  .column.is-5-fullhd {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-fullhd {
    margin-left: 41.66666674%;
  }
  .column.is-6-fullhd {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-fullhd {
    margin-left: 50%;
  }
  .column.is-7-fullhd {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-fullhd {
    margin-left: 58.33333337%;
  }
  .column.is-8-fullhd {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-fullhd {
    margin-left: 66.66666674%;
  }
  .column.is-9-fullhd {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-fullhd {
    margin-left: 75%;
  }
  .column.is-10-fullhd {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-fullhd {
    margin-left: 83.33333337%;
  }
  .column.is-11-fullhd {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-fullhd {
    margin-left: 91.66666674%;
  }
  .column.is-12-fullhd {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-fullhd {
    margin-left: 100%;
  }
}

.columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.columns:last-child {
  margin-bottom: -0.75rem;
}
.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}
.columns.is-centered {
  justify-content: center;
}
.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.columns.is-gapless > .column {
  margin: 0;
  padding: 0 !important;
}
.columns.is-gapless:not(:last-child) {
  margin-bottom: 1.5rem;
}
.columns.is-gapless:last-child {
  margin-bottom: 0;
}
.columns.is-mobile {
  display: flex;
}
.columns.is-multiline {
  flex-wrap: wrap;
}
.columns.is-vcentered {
  align-items: center;
}
@media screen and (min-width: 769px), print {
  .columns:not(.is-desktop) {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-desktop {
    display: flex;
  }
}

.columns.is-variable {
  --columnGap: 0.75rem;
  margin-left: calc(-1 * var(--columnGap));
  margin-right: calc(-1 * var(--columnGap));
}
.columns.is-variable > .column {
  padding-left: var(--columnGap);
  padding-right: var(--columnGap);
}
.columns.is-variable.is-0 {
  --columnGap: 0rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-0-mobile {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-0-tablet {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-0-tablet-only {
    --columnGap: 0rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-0-touch {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-0-desktop {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-0-desktop-only {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-0-widescreen {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-0-widescreen-only {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-0-fullhd {
    --columnGap: 0rem;
  }
}
.columns.is-variable.is-1 {
  --columnGap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-1-mobile {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-1-tablet {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-1-tablet-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-1-touch {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-1-desktop {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-1-desktop-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-1-widescreen {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-1-widescreen-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-1-fullhd {
    --columnGap: 0.25rem;
  }
}
.columns.is-variable.is-2 {
  --columnGap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-2-mobile {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-2-tablet {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-2-tablet-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-2-touch {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-2-desktop {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-2-desktop-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-2-widescreen {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-2-widescreen-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-2-fullhd {
    --columnGap: 0.5rem;
  }
}
.columns.is-variable.is-3 {
  --columnGap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-3-mobile {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-3-tablet {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-3-tablet-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-3-touch {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-3-desktop {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-3-desktop-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-3-widescreen {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-3-widescreen-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-3-fullhd {
    --columnGap: 0.75rem;
  }
}
.columns.is-variable.is-4 {
  --columnGap: 1rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-4-mobile {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-4-tablet {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-4-tablet-only {
    --columnGap: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-4-touch {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-4-desktop {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-4-desktop-only {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-4-widescreen {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-4-widescreen-only {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-4-fullhd {
    --columnGap: 1rem;
  }
}
.columns.is-variable.is-5 {
  --columnGap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-5-mobile {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-5-tablet {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-5-tablet-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-5-touch {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-5-desktop {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-5-desktop-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-5-widescreen {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-5-widescreen-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-5-fullhd {
    --columnGap: 1.25rem;
  }
}
.columns.is-variable.is-6 {
  --columnGap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-6-mobile {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-6-tablet {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-6-tablet-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-6-touch {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-6-desktop {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-6-desktop-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-6-widescreen {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-6-widescreen-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-6-fullhd {
    --columnGap: 1.5rem;
  }
}
.columns.is-variable.is-7 {
  --columnGap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-7-mobile {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-7-tablet {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-7-tablet-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-7-touch {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-7-desktop {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-7-desktop-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-7-widescreen {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-7-widescreen-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-7-fullhd {
    --columnGap: 1.75rem;
  }
}
.columns.is-variable.is-8 {
  --columnGap: 2rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-8-mobile {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-8-tablet {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-8-tablet-only {
    --columnGap: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-8-touch {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-8-desktop {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-8-desktop-only {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-8-widescreen {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-8-widescreen-only {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-8-fullhd {
    --columnGap: 2rem;
  }
}

.tile {
  align-items: stretch;
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: min-content;
}
.tile.is-ancestor {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.tile.is-ancestor:last-child {
  margin-bottom: -0.75rem;
}
.tile.is-ancestor:not(:last-child) {
  margin-bottom: 0.75rem;
}
.tile.is-child {
  margin: 0 !important;
}
.tile.is-parent {
  padding: 0.75rem;
}
.tile.is-vertical {
  flex-direction: column;
}
.tile.is-vertical > .tile.is-child:not(:last-child) {
  margin-bottom: 1.5rem !important;
}
@media screen and (min-width: 769px), print {
  .tile:not(.is-child) {
    display: flex;
  }
  .tile.is-1 {
    flex: none;
    width: 8.33333337%;
  }
  .tile.is-2 {
    flex: none;
    width: 16.66666674%;
  }
  .tile.is-3 {
    flex: none;
    width: 25%;
  }
  .tile.is-4 {
    flex: none;
    width: 33.33333337%;
  }
  .tile.is-5 {
    flex: none;
    width: 41.66666674%;
  }
  .tile.is-6 {
    flex: none;
    width: 50%;
  }
  .tile.is-7 {
    flex: none;
    width: 58.33333337%;
  }
  .tile.is-8 {
    flex: none;
    width: 66.66666674%;
  }
  .tile.is-9 {
    flex: none;
    width: 75%;
  }
  .tile.is-10 {
    flex: none;
    width: 83.33333337%;
  }
  .tile.is-11 {
    flex: none;
    width: 91.66666674%;
  }
  .tile.is-12 {
    flex: none;
    width: 100%;
  }
}

/* Bulma Helpers */
.has-text-white, .content-block.kontaktformular .alert.success {
  color: hsl(0, 0%, 100%) !important;
}

a.has-text-white:hover, .content-block.kontaktformular a.alert.success:hover, a.has-text-white:focus, .content-block.kontaktformular a.alert.success:focus {
  color: hsl(0, 0%, 90%) !important;
}

.has-background-white {
  background-color: hsl(0, 0%, 100%) !important;
}

.has-text-black {
  color: hsl(0, 0%, 4%) !important;
}

a.has-text-black:hover, a.has-text-black:focus {
  color: hsl(0, 0%, 0%) !important;
}

.has-background-black {
  background-color: hsl(0, 0%, 4%) !important;
}

.has-text-light {
  color: hsl(0, 0%, 96%) !important;
}

a.has-text-light:hover, a.has-text-light:focus {
  color: hsl(0, 0%, 86%) !important;
}

.has-background-light {
  background-color: hsl(0, 0%, 96%) !important;
}

.has-text-dark {
  color: hsl(0, 0%, 21%) !important;
}

a.has-text-dark:hover, a.has-text-dark:focus {
  color: hsl(0, 0%, 11%) !important;
}

.has-background-dark {
  background-color: hsl(0, 0%, 21%) !important;
}

.has-text-primary {
  color: hsl(171, 100%, 41%) !important;
}

a.has-text-primary:hover, a.has-text-primary:focus {
  color: hsl(171, 100%, 31%) !important;
}

.has-background-primary {
  background-color: hsl(171, 100%, 41%) !important;
}

.has-text-primary-light {
  color: hsl(171, 100%, 96%) !important;
}

a.has-text-primary-light:hover, a.has-text-primary-light:focus {
  color: hsl(171, 100%, 86%) !important;
}

.has-background-primary-light {
  background-color: hsl(171, 100%, 96%) !important;
}

.has-text-primary-dark {
  color: hsl(171, 100%, 29%) !important;
}

a.has-text-primary-dark:hover, a.has-text-primary-dark:focus {
  color: hsl(171, 100%, 39%) !important;
}

.has-background-primary-dark {
  background-color: hsl(171, 100%, 29%) !important;
}

.has-text-link {
  color: hsl(229, 53%, 53%) !important;
}

a.has-text-link:hover, a.has-text-link:focus {
  color: hsl(229, 53%, 43%) !important;
}

.has-background-link {
  background-color: hsl(229, 53%, 53%) !important;
}

.has-text-link-light {
  color: hsl(229, 53%, 96%) !important;
}

a.has-text-link-light:hover, a.has-text-link-light:focus {
  color: hsl(229, 53%, 86%) !important;
}

.has-background-link-light {
  background-color: hsl(229, 53%, 96%) !important;
}

.has-text-link-dark {
  color: hsl(229, 53%, 47%) !important;
}

a.has-text-link-dark:hover, a.has-text-link-dark:focus {
  color: hsl(229, 53%, 57%) !important;
}

.has-background-link-dark {
  background-color: hsl(229, 53%, 47%) !important;
}

.has-text-info {
  color: hsl(207, 61%, 53%) !important;
}

a.has-text-info:hover, a.has-text-info:focus {
  color: hsl(207, 61%, 43%) !important;
}

.has-background-info {
  background-color: hsl(207, 61%, 53%) !important;
}

.has-text-info-light {
  color: hsl(207, 61%, 96%) !important;
}

a.has-text-info-light:hover, a.has-text-info-light:focus {
  color: hsl(207, 61%, 86%) !important;
}

.has-background-info-light {
  background-color: hsl(207, 61%, 96%) !important;
}

.has-text-info-dark {
  color: hsl(207, 61%, 41%) !important;
}

a.has-text-info-dark:hover, a.has-text-info-dark:focus {
  color: hsl(207, 61%, 51%) !important;
}

.has-background-info-dark {
  background-color: hsl(207, 61%, 41%) !important;
}

.has-text-success {
  color: hsl(153, 53%, 53%) !important;
}

a.has-text-success:hover, a.has-text-success:focus {
  color: hsl(153, 53%, 43%) !important;
}

.has-background-success {
  background-color: hsl(153, 53%, 53%) !important;
}

.has-text-success-light {
  color: hsl(153, 53%, 96%) !important;
}

a.has-text-success-light:hover, a.has-text-success-light:focus {
  color: hsl(153, 53%, 86%) !important;
}

.has-background-success-light {
  background-color: hsl(153, 53%, 96%) !important;
}

.has-text-success-dark {
  color: hsl(153, 53%, 31%) !important;
}

a.has-text-success-dark:hover, a.has-text-success-dark:focus {
  color: hsl(153, 53%, 41%) !important;
}

.has-background-success-dark {
  background-color: hsl(153, 53%, 31%) !important;
}

.has-text-warning {
  color: hsl(44, 100%, 77%) !important;
}

a.has-text-warning:hover, a.has-text-warning:focus {
  color: hsl(44, 100%, 67%) !important;
}

.has-background-warning {
  background-color: hsl(44, 100%, 77%) !important;
}

.has-text-warning-light {
  color: hsl(44, 100%, 96%) !important;
}

a.has-text-warning-light:hover, a.has-text-warning-light:focus {
  color: hsl(44, 100%, 86%) !important;
}

.has-background-warning-light {
  background-color: hsl(44, 100%, 96%) !important;
}

.has-text-warning-dark {
  color: hsl(44, 100%, 29%) !important;
}

a.has-text-warning-dark:hover, a.has-text-warning-dark:focus {
  color: hsl(44, 100%, 39%) !important;
}

.has-background-warning-dark {
  background-color: hsl(44, 100%, 29%) !important;
}

.has-text-danger {
  color: hsl(348, 86%, 61%) !important;
}

a.has-text-danger:hover, a.has-text-danger:focus {
  color: hsl(348, 86%, 51%) !important;
}

.has-background-danger {
  background-color: hsl(348, 86%, 61%) !important;
}

.has-text-danger-light {
  color: hsl(348, 86%, 96%) !important;
}

a.has-text-danger-light:hover, a.has-text-danger-light:focus {
  color: hsl(348, 86%, 86%) !important;
}

.has-background-danger-light {
  background-color: hsl(348, 86%, 96%) !important;
}

.has-text-danger-dark {
  color: hsl(348, 86%, 43%) !important;
}

a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
  color: hsl(348, 86%, 53%) !important;
}

.has-background-danger-dark {
  background-color: hsl(348, 86%, 43%) !important;
}

.has-text-black-bis {
  color: hsl(0, 0%, 7%) !important;
}

.has-background-black-bis {
  background-color: hsl(0, 0%, 7%) !important;
}

.has-text-black-ter {
  color: hsl(0, 0%, 14%) !important;
}

.has-background-black-ter {
  background-color: hsl(0, 0%, 14%) !important;
}

.has-text-grey-darker {
  color: hsl(0, 0%, 21%) !important;
}

.has-background-grey-darker {
  background-color: hsl(0, 0%, 21%) !important;
}

.has-text-grey-dark {
  color: hsl(0, 0%, 29%) !important;
}

.has-background-grey-dark {
  background-color: hsl(0, 0%, 29%) !important;
}

.has-text-grey {
  color: hsl(0, 0%, 48%) !important;
}

.has-background-grey {
  background-color: hsl(0, 0%, 48%) !important;
}

.has-text-grey-light {
  color: hsl(0, 0%, 71%) !important;
}

.has-background-grey-light {
  background-color: hsl(0, 0%, 71%) !important;
}

.has-text-grey-lighter {
  color: hsl(0, 0%, 86%) !important;
}

.has-background-grey-lighter {
  background-color: hsl(0, 0%, 86%) !important;
}

.has-text-white-ter {
  color: hsl(0, 0%, 96%) !important;
}

.has-background-white-ter {
  background-color: hsl(0, 0%, 96%) !important;
}

.has-text-white-bis {
  color: hsl(0, 0%, 98%) !important;
}

.has-background-white-bis {
  background-color: hsl(0, 0%, 98%) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-justify-content-left {
  justify-content: left !important;
}

.is-justify-content-right {
  justify-content: right !important;
}

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

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

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

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

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

.is-align-content-space-evenly {
  align-content: space-evenly !important;
}

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

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

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

.is-align-content-baseline {
  align-content: baseline !important;
}

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

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

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

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

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

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

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

.is-align-items-self-start {
  align-items: self-start !important;
}

.is-align-items-self-end {
  align-items: self-end !important;
}

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

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

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

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

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

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

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

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

.is-flex-grow-2 {
  flex-grow: 2 !important;
}

.is-flex-grow-3 {
  flex-grow: 3 !important;
}

.is-flex-grow-4 {
  flex-grow: 4 !important;
}

.is-flex-grow-5 {
  flex-grow: 5 !important;
}

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

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

.is-flex-shrink-2 {
  flex-shrink: 2 !important;
}

.is-flex-shrink-3 {
  flex-shrink: 3 !important;
}

.is-flex-shrink-4 {
  flex-shrink: 4 !important;
}

.is-flex-shrink-5 {
  flex-shrink: 5 !important;
}

.is-clearfix::after {
  clear: both;
  content: " ";
  display: table;
}

.is-pulled-left {
  float: left !important;
}

.is-pulled-right {
  float: right !important;
}

.is-radiusless {
  border-radius: 0 !important;
}

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

.is-clickable {
  cursor: pointer !important;
  pointer-events: all !important;
}

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

.is-relative {
  position: relative !important;
}

.is-marginless {
  margin: 0 !important;
}

.is-paddingless {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-3 {
  margin-right: 0.75rem !important;
}

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

.ml-3 {
  margin-left: 0.75rem !important;
}

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

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

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

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

.mr-4 {
  margin-right: 1rem !important;
}

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

.ml-4 {
  margin-left: 1rem !important;
}

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

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

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

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

.mr-5 {
  margin-right: 1.5rem !important;
}

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

.ml-5 {
  margin-left: 1.5rem !important;
}

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

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

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

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

.mr-6 {
  margin-right: 3rem !important;
}

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

.ml-6 {
  margin-left: 3rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pr-3 {
  padding-right: 0.75rem !important;
}

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

.pl-3 {
  padding-left: 0.75rem !important;
}

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

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

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

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

.pr-4 {
  padding-right: 1rem !important;
}

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

.pl-4 {
  padding-left: 1rem !important;
}

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

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

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

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

.pr-5 {
  padding-right: 1.5rem !important;
}

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

.pl-5 {
  padding-left: 1.5rem !important;
}

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

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

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

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

.pr-6 {
  padding-right: 3rem !important;
}

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

.pl-6 {
  padding-left: 3rem !important;
}

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

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

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

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

.pr-auto {
  padding-right: auto !important;
}

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

.pl-auto {
  padding-left: auto !important;
}

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

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

.is-size-1 {
  font-size: 3rem !important;
}

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

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

.is-size-4 {
  font-size: 1.5rem !important;
}

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

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

.is-size-7 {
  font-size: 0.75rem !important;
}

@media screen and (max-width: 768px) {
  .is-size-1-mobile {
    font-size: 3rem !important;
  }
  .is-size-2-mobile {
    font-size: 2.5rem !important;
  }
  .is-size-3-mobile {
    font-size: 2rem !important;
  }
  .is-size-4-mobile {
    font-size: 1.5rem !important;
  }
  .is-size-5-mobile {
    font-size: 1.25rem !important;
  }
  .is-size-6-mobile {
    font-size: 1rem !important;
  }
  .is-size-7-mobile {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-size-1-tablet {
    font-size: 3rem !important;
  }
  .is-size-2-tablet {
    font-size: 2.5rem !important;
  }
  .is-size-3-tablet {
    font-size: 2rem !important;
  }
  .is-size-4-tablet {
    font-size: 1.5rem !important;
  }
  .is-size-5-tablet {
    font-size: 1.25rem !important;
  }
  .is-size-6-tablet {
    font-size: 1rem !important;
  }
  .is-size-7-tablet {
    font-size: 0.75rem !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-size-1-touch {
    font-size: 3rem !important;
  }
  .is-size-2-touch {
    font-size: 2.5rem !important;
  }
  .is-size-3-touch {
    font-size: 2rem !important;
  }
  .is-size-4-touch {
    font-size: 1.5rem !important;
  }
  .is-size-5-touch {
    font-size: 1.25rem !important;
  }
  .is-size-6-touch {
    font-size: 1rem !important;
  }
  .is-size-7-touch {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-size-1-desktop {
    font-size: 3rem !important;
  }
  .is-size-2-desktop {
    font-size: 2.5rem !important;
  }
  .is-size-3-desktop {
    font-size: 2rem !important;
  }
  .is-size-4-desktop {
    font-size: 1.5rem !important;
  }
  .is-size-5-desktop {
    font-size: 1.25rem !important;
  }
  .is-size-6-desktop {
    font-size: 1rem !important;
  }
  .is-size-7-desktop {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-size-1-widescreen {
    font-size: 3rem !important;
  }
  .is-size-2-widescreen {
    font-size: 2.5rem !important;
  }
  .is-size-3-widescreen {
    font-size: 2rem !important;
  }
  .is-size-4-widescreen {
    font-size: 1.5rem !important;
  }
  .is-size-5-widescreen {
    font-size: 1.25rem !important;
  }
  .is-size-6-widescreen {
    font-size: 1rem !important;
  }
  .is-size-7-widescreen {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-size-1-fullhd {
    font-size: 3rem !important;
  }
  .is-size-2-fullhd {
    font-size: 2.5rem !important;
  }
  .is-size-3-fullhd {
    font-size: 2rem !important;
  }
  .is-size-4-fullhd {
    font-size: 1.5rem !important;
  }
  .is-size-5-fullhd {
    font-size: 1.25rem !important;
  }
  .is-size-6-fullhd {
    font-size: 1rem !important;
  }
  .is-size-7-fullhd {
    font-size: 0.75rem !important;
  }
}
.has-text-centered {
  text-align: center !important;
}

.has-text-justified {
  text-align: justify !important;
}

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

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

@media screen and (max-width: 768px) {
  .has-text-centered-mobile {
    text-align: center !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-centered-tablet {
    text-align: center !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-centered-tablet-only {
    text-align: center !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-centered-touch {
    text-align: center !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-centered-desktop {
    text-align: center !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-centered-desktop-only {
    text-align: center !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-centered-widescreen {
    text-align: center !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-centered-widescreen-only {
    text-align: center !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-centered-fullhd {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-justified-mobile {
    text-align: justify !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-justified-tablet {
    text-align: justify !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-justified-tablet-only {
    text-align: justify !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-justified-touch {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-justified-desktop {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-justified-desktop-only {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-justified-widescreen {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-justified-widescreen-only {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-justified-fullhd {
    text-align: justify !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-left-mobile {
    text-align: left !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-left-tablet {
    text-align: left !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-left-tablet-only {
    text-align: left !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-left-touch {
    text-align: left !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-left-desktop {
    text-align: left !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-left-desktop-only {
    text-align: left !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-left-widescreen {
    text-align: left !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-left-widescreen-only {
    text-align: left !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-left-fullhd {
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-right-mobile {
    text-align: right !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-right-tablet {
    text-align: right !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-right-tablet-only {
    text-align: right !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-right-touch {
    text-align: right !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-right-desktop {
    text-align: right !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-right-desktop-only {
    text-align: right !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-right-widescreen {
    text-align: right !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-right-widescreen-only {
    text-align: right !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-right-fullhd {
    text-align: right !important;
  }
}
.is-capitalized {
  text-transform: capitalize !important;
}

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

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

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

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

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

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

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

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

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

.is-family-primary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-secondary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-sans-serif {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-monospace {
  font-family: monospace !important;
}

.is-family-code {
  font-family: monospace !important;
}

.is-block {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .is-block-mobile {
    display: block !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-block-tablet {
    display: block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-block-tablet-only {
    display: block !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-block-touch {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-block-desktop {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-block-desktop-only {
    display: block !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-block-widescreen {
    display: block !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-block-widescreen-only {
    display: block !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-block-fullhd {
    display: block !important;
  }
}
.is-flex {
  display: flex !important;
}

@media screen and (max-width: 768px) {
  .is-flex-mobile {
    display: flex !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-flex-tablet {
    display: flex !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-flex-tablet-only {
    display: flex !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-flex-touch {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-flex-desktop {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-flex-desktop-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-flex-widescreen {
    display: flex !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-flex-widescreen-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-flex-fullhd {
    display: flex !important;
  }
}
.is-inline {
  display: inline !important;
}

@media screen and (max-width: 768px) {
  .is-inline-mobile {
    display: inline !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-tablet {
    display: inline !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-tablet-only {
    display: inline !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-touch {
    display: inline !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-desktop {
    display: inline !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-inline-desktop-only {
    display: inline !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-inline-widescreen {
    display: inline !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-inline-widescreen-only {
    display: inline !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-fullhd {
    display: inline !important;
  }
}
.is-inline-block {
  display: inline-block !important;
}

@media screen and (max-width: 768px) {
  .is-inline-block-mobile {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-block-tablet {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-block-tablet-only {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-block-touch {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-block-desktop {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-inline-block-desktop-only {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-inline-block-widescreen {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-inline-block-widescreen-only {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-block-fullhd {
    display: inline-block !important;
  }
}
.is-inline-flex {
  display: inline-flex !important;
}

@media screen and (max-width: 768px) {
  .is-inline-flex-mobile {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-flex-tablet {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-flex-tablet-only {
    display: inline-flex !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-flex-touch {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-flex-desktop {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-inline-flex-desktop-only {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-inline-flex-widescreen {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-inline-flex-widescreen-only {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-flex-fullhd {
    display: inline-flex !important;
  }
}
.is-hidden {
  display: none !important;
}

.is-sr-only {
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

@media screen and (max-width: 768px) {
  .is-hidden-mobile {
    display: none !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-hidden-tablet {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-hidden-tablet-only {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-hidden-touch {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-hidden-desktop {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-hidden-desktop-only {
    display: none !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-hidden-widescreen {
    display: none !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-hidden-widescreen-only {
    display: none !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-hidden-fullhd {
    display: none !important;
  }
}
.is-invisible {
  visibility: hidden !important;
}

@media screen and (max-width: 768px) {
  .is-invisible-mobile {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-invisible-tablet {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-invisible-tablet-only {
    visibility: hidden !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-invisible-touch {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-invisible-desktop {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-invisible-desktop-only {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-invisible-widescreen {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-invisible-widescreen-only {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-invisible-fullhd {
    visibility: hidden !important;
  }
}
/* ibm-plex-mono-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ibm-plex-mono-v19-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ibm-plex-mono-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Mono";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/ibm-plex-mono-v19-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ibm-plex-mono-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/ibm-plex-mono-v19-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ibm-plex-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ibm-plex-sans-v19-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ibm-plex-sans-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/ibm-plex-sans-v19-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ibm-plex-sans-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/ibm-plex-sans-v19-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIcons-Regular.woff2) format("woff2"), url(../fonts/MaterialIcons-Regular.woff) format("woff"), url(../fonts/MaterialIcons-Regular.ttf) format("truetype");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

/* Rules for sizing the icon. */
.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: rgb(255, 255, 255);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

body {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.5;
}

h1 {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(24px + 12 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  h1 {
    font-size: 36px;
  }
}
h1 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  color: #9c2932;
}

h2 {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  h2 {
    font-size: calc(24px + 12 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  h2 {
    font-size: 36px;
  }
}
h2 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  color: #9c2932;
  margin-bottom: 0.75em;
}

h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  h3 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  h3 {
    font-size: 26px;
  }
}
h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 400;
}

h4 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  h4 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  h4 {
    font-size: 21px;
  }
}
h4 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #2a58a3;
  font-weight: 600;
}

h6 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
h6 {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  h6 {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  h6 {
    font-size: 18px;
  }
}
h6 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  color: #9c2932;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75em;
}

p {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
p {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  p {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  p {
    font-size: 18px;
  }
}

ol {
  margin-left: 1em;
}

.content-block:not(.quote) blockquote {
  padding: 2em 0;
}
.content-block:not(.quote) blockquote p {
  font-size: 21px;
}
@media screen and (min-width: 320px) {
  .content-block:not(.quote) blockquote p {
    font-size: calc(21px + 7 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block:not(.quote) blockquote p {
    font-size: 28px;
  }
}
.content-block:not(.quote) blockquote p {
  font-style: italic;
  color: #2a93a3;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .content-block:not(.quote) blockquote {
    width: 75%;
    padding: 2.5em 0;
  }
}
.content-block:not(.quote) blockquote:first-child {
  padding-top: 0;
}

.has-text-small p,
.has-text-small ul,
.has-text-small ol {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.has-text-small p,
.has-text-small ul,
.has-text-small ol {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .has-text-small p,
  .has-text-small ul,
  .has-text-small ol {
    font-size: calc(13px + 2 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .has-text-small p,
  .has-text-small ul,
  .has-text-small ol {
    font-size: 15px;
  }
}

.is-caption-small {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.is-caption-small {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .is-caption-small {
    font-size: calc(13px + 2 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .is-caption-small {
    font-size: 15px;
  }
}
.is-caption-small {
  color: #8c8c8c;
}

.has-checklists ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.has-checklists ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .has-checklists ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .has-checklists ul {
    font-size: 18px;
  }
}
.has-checklists ul {
  list-style: none;
}
.has-checklists ul li {
  padding-left: 1.75em;
  position: relative;
  width: auto;
}
.has-checklists ul li + li {
  margin-top: 0.5em;
}
.has-checklists ul li:before {
  position: absolute;
  left: 0;
  top: -0.1em;
  content: "check_circle";
  font-size: 1.2em;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
  color: #2a93a3;
}

p + p,
p + ul,
ul + p,
h4 + ul,
p + ol {
  margin-top: 1em;
}

p + p > .button,
p + h3,
h3 + ul,
p + h4,
ul + h4 {
  margin-top: 1.5em;
}

img + h3,
img + h4 {
  margin-top: 0.75em;
}

@media screen and (max-width: 768px) {
  p + p > .button {
    margin-top: 1em;
  }
}

.button {
  position: relative;
  display: inline-block;
  height: 2rem;
  min-width: 12.5rem;
  padding-top: 0.15em;
  padding-left: 1.25em;
  padding-right: 3em;
  background-color: #2a58a3;
  background-image: linear-gradient(to right, #2a58a3 50%, #2a93a3 50%);
  background-size: 250% 100%;
  background-position: left bottom;
  border-radius: 50px;
  font-size: 1rem;
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  color: white;
  transition: all ease-out 0.5s;
}
.button::before {
  position: absolute;
  content: "east";
  left: auto;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 2rem;
  background-color: #2a93a3;
  border-radius: 100%;
  font-size: 1rem;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
}
.button:hover {
  color: white;
  background-position: right bottom;
}
.button.mail, .button.tel {
  padding-left: 3em;
  padding-right: 1.25em;
  background-image: linear-gradient(to right, #2a93a3 50%, #2a58a3 50%);
  background-position: right bottom;
}
.button.mail::before, .button.tel::before {
  left: 0;
  right: auto;
}
.button.mail:hover, .button.tel:hover {
  background-position: left bottom;
}
.button.mail::before {
  content: "alternate_email";
}
.button.tel::before {
  content: "phone";
}
.button.down::before {
  content: "south";
}
.button + .button {
  margin-left: 1rem;
}

.site-wrapper {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 100rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 1216px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.is-reversed {
  flex-direction: row-reverse;
}

.bg-light {
  background: #f2f2f2;
}

.content-block {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.content-block:not(.has-bg) + .content-block:not(.has-bg) {
  padding-top: 0;
}
.content-block p a:not(.button) {
  color: #1a1a1a;
  text-decoration: underline;
}
.content-block p a:not(.button):hover {
  color: #2a58a3;
}
@media screen and (min-width: 769px) {
  .content-block {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media screen and (min-width: 1216px) {
  .content-block {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.content-block__headline * {
  margin-bottom: 1.5em;
}

img,
video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

figure.video {
  position: relative;
  padding-bottom: 56.25%;
  /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
  height: 0;
  overflow: hidden;
}
figure.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .mt-4-mobile {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .mt-5-mobile {
    margin-top: 1.5rem;
  }
}

.is-shadow-box-white, .erlebniskurs-programm__ueberblick, .erlebniskurs-anfrage__next-steps {
  background: white;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
  border-radius: 20px;
  padding: 2rem;
}

.select:not(.is-multiple):not(.is-loading)::after {
  border-color: #2a58a3;
}

.banner-efre {
  background-color: white;
}
.banner-efre .is-flex {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.banner-efre a:first-child > img {
  max-width: 37.5rem;
}
.banner-efre a:last-child > img {
  max-width: 9.375rem;
  margin: 1rem 0;
}

.site-header {
  border-bottom: solid 1px #bbc9e1;
}

.site-header__stoerer {
  text-align: right;
  padding: 0.25em 0;
  background: rgba(42, 88, 163, 0.7);
}
.site-header__stoerer p,
.site-header__stoerer strong,
.site-header__stoerer a {
  color: white;
}
.site-header__stoerer a {
  text-decoration: underline;
  white-space: nowrap;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
@media screen and (max-width: 449px) {
  .site-header__stoerer span {
    display: none;
  }
}

.site-header__top {
  background: #2a58a3;
}
.site-header__top > .container > .is-flex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .site-header__top > .container > .is-flex {
    height: 4.375rem;
  }
}

.site-header__bottom {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .site-header__bottom .is-flex-tablet-only {
    display: flex;
    justify-content: flex-end;
  }
}
.site-header__bottom .is-flex-mobile {
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .site-header__bottom > .columns {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 549px) {
  .site-header__bottom .is-hidden-mobile-small {
    display: none !important;
  }
  .site-header__bottom .is-hidden-mobile-small-up {
    display: flex;
  }
}
@media screen and (min-width: 551px) {
  .site-header__bottom .is-hidden-mobile-small-up {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .site-header__bottom {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .site-header__bottom .button {
    min-width: 0;
    width: calc(50% - 0.5rem);
    text-align: center;
    margin: 0;
  }
}

.site-header__logo {
  width: 15.625rem;
  display: block;
  font-size: 0;
}
@media screen and (max-width: 599px) {
  .site-header__logo {
    width: 13.75rem;
  }
}
@media screen and (max-width: 499px) {
  .site-header__logo {
    width: 2.5rem;
  }
  .site-header__logo img:first-child {
    display: none;
  }
  .site-header__logo img:last-child {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .site-header__logo {
    width: 2.5rem;
  }
  .site-header__logo img:first-child {
    display: none;
  }
  .site-header__logo img:last-child {
    display: block !important;
  }
}
@media screen and (min-width: 1408px) {
  .site-header__logo {
    width: 15.625rem;
  }
  .site-header__logo img:first-child {
    display: block;
  }
  .site-header__logo img:last-child {
    display: none !important;
  }
}

.site-footer {
  background-color: #2a58a3;
  padding: 3rem 0;
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 2rem 0 1rem 0;
  }
}
@media screen and (max-width: 399px) {
  .site-footer .column {
    width: 100% !important;
  }
}
.site-footer .container {
  background-image: url("../images/bildmarke-lci-weiss.svg");
  background-size: 150px;
  background-position: right 2rem bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1023px) {
  .site-footer .container {
    background-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .container {
    padding-bottom: 6rem;
    background-position: center bottom;
    background-size: 3rem;
  }
}
.site-footer * {
  color: white;
}
.site-footer h4 {
  color: white;
  margin-bottom: 0.75em;
}
.site-footer p {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.site-footer p {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .site-footer p {
    font-size: calc(13px + 2 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .site-footer p {
    font-size: 15px;
  }
}
.site-footer a:hover {
  color: white;
  text-decoration: underline;
}

.site-footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  margin-top: 1rem;
}

@media screen and (min-width: 1024px) {
  .site-header__nav a {
    color: white;
    font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  }
  .site-header__nav a {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 320px) {
  .site-header__nav a {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1024px) and (min-width: 1600px) {
  .site-header__nav a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .site-header__nav > ul > li {
    height: 5rem;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  .site-header__nav > ul > li > a {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .site-header__nav > ul > li + li {
    margin-left: -4px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1216px) {
  .site-header__nav > ul > li {
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .site-header__nav > ul > li:hover {
    background: rgb(47.2243902439, 98.9463414634, 183.2756097561);
  }
  .site-header__nav > ul > li.has-dropdown a {
    position: relative;
  }
  .site-header__nav > ul > li.has-dropdown a::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.5rem;
    width: 1.5625rem;
    height: 1.5625rem;
    border-radius: 100%;
    background: white;
    display: none;
  }
  .site-header__nav > ul > li.has-dropdown:hover a::before {
    display: block;
  }
  .site-header__nav > ul > li.has-dropdown:hover .dropdown__wrapper {
    visibility: visible;
    opacity: 1;
    top: 5rem;
  }
}
@media screen and (max-width: 1023px) {
  .site-header__nav {
    position: absolute;
    top: 0;
    right: -21.875rem;
    z-index: 99;
    height: 100vh;
    width: 21.875rem;
    background: #2a58a3;
    box-shadow: inset 10px 0 10px rgba(26, 26, 26, 0.25);
    padding-top: 0.5rem;
    padding-bottom: 5rem;
    overflow-y: auto;
  }
  .site-header__nav li.has-dropdown {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .site-header__nav li.has-dropdown span {
    transition: all 0.5s;
    display: block !important;
  }
  .site-header__nav li.has-dropdown.nav-open span {
    transform: rotate(180deg);
  }
  .site-header__nav > ul > li > a {
    display: block;
    padding: 1rem 1rem 1rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
  }
  .site-header__nav a,
  .site-header__nav span {
    color: white;
  }
  .site-header__nav span {
    padding: 1.25rem 1rem 0.5rem 1rem;
    cursor: pointer;
  }
}

@media screen and (min-width: 1024px) {
  .dropdown__wrapper {
    transition: opacity 0.3s;
    background: white;
    position: absolute;
    width: 100vw;
    top: -9999px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    opacity: 0;
    box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
    z-index: 99;
  }
  .dropdown__wrapper .is-flex {
    align-items: stretch;
  }
}
@media screen and (max-width: 1023px) {
  .dropdown__wrapper {
    display: none;
    width: 100%;
  }
  .dropdown__wrapper .container {
    padding-left: 1.5rem;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
  }
  .dropdown__wrapper li + li {
    margin-top: 1.5rem;
  }
  .dropdown__wrapper a {
    font-size: 1.125rem;
  }
}

.dropdown__category {
  width: 40%;
  border-right: dotted 2px #2a58a3;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.dropdown__category span {
  display: block;
  font-style: italic;
  color: #2a93a3;
  line-height: 1;
}
.dropdown__category span {
  font-size: 32px;
}
@media screen and (min-width: 320px) {
  .dropdown__category span {
    font-size: calc(32px + 4 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .dropdown__category span {
    font-size: 36px;
  }
}

.dropdown__category-icon {
  position: relative;
  width: 9.375rem;
  height: 6.25rem;
  margin: 2rem auto 0 auto;
}
.dropdown__category-icon img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .dropdown__menu {
    padding-top: 4rem;
    padding-left: 4rem;
    padding-bottom: 4rem;
    width: 60%;
  }
  .dropdown__menu.has-columns {
    column-count: 2;
  }
  .dropdown__menu a {
    font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  }
  .dropdown__menu a {
    font-size: 15px;
  }
  .dropdown__menu a {
    color: #2a58a3;
  }
}
@media screen and (min-width: 1024px) and (min-width: 320px) {
  .dropdown__menu a {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1024px) and (min-width: 1600px) {
  .dropdown__menu a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .dropdown__menu a:hover {
    text-decoration: underline;
  }
  .dropdown__menu li + li {
    margin-top: 1.5em;
  }
}

.site-header__toggle-nav {
  cursor: pointer;
  display: none;
  width: 1.75rem;
  height: 1rem;
  position: relative;
  background: transparent;
  border: none;
  margin-top: 0.25rem;
  color: white;
  font-size: 1.125rem;
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  text-align: right;
}
.site-header__toggle-nav span {
  width: 1.75rem;
  height: 2px;
  display: block;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.site-header__toggle-nav span:nth-child(1) {
  top: 0;
}
.site-header__toggle-nav span:nth-child(2) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.site-header__toggle-nav span:nth-child(3) {
  bottom: 0;
}
@media screen and (max-width: 1023px) {
  .site-header__toggle-nav {
    display: block;
  }
}

.nav-open .site-header__toggle-nav span {
  transition: all 0.3s;
}
.nav-open .site-header__toggle-nav span:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transform: rotate(45deg);
}
.nav-open .site-header__toggle-nav span:nth-child(3) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transform: rotate(-45deg);
}
.nav-open .site-header__toggle-nav span:nth-child(2) {
  display: none;
}
@media screen and (max-width: 1023px) {
  .nav-open .site-wrapper {
    position: fixed;
    transform: translateX(-350px);
    overflow: visible;
    height: 100vh;
  }
}

.breadcrumb li {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.2;
}
.breadcrumb li + li {
  margin-left: 0.2rem;
}
.breadcrumb li:not(:first-child) + li::before {
  content: "»";
  color: #1a1a1a;
  margin-right: 0.4rem;
}
.breadcrumb a {
  color: #9c2932;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

a.lang-switcher {
  display: flex !important;
}
a.lang-switcher span:nth-child(2) {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  a.lang-switcher span:first-child {
    color: #9c2932;
  }
}

nav.languages {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  margin-right: -0.3125rem;
  margin-top: 0.3125rem;
  position: relative;
  white-space: nowrap;
}
nav.languages.open ul {
  display: block !important;
}
nav.languages a {
  color: #2a58a3;
  display: block;
}
nav.languages a:hover {
  color: #2a93a3;
}
nav.languages a.active {
  text-decoration: underline;
}
nav.languages ul {
  width: 100%;
  position: absolute;
  top: 2.25rem;
  z-index: 99;
  background: white;
  padding: 0.75em 1em 1em 1em;
  border-radius: 5px;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
}
@media screen and (max-width: 1639px) {
  nav.languages ul {
    right: 0;
    left: auto;
  }
}
nav.languages li + li {
  margin-top: 0.25em;
}
@media screen and (max-width: 768px) {
  nav.languages {
    margin: 0 0.5rem 0 0;
  }
  nav.languages > a {
    color: white;
  }
}

.infobox {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
}
.infobox ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.infobox ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .infobox ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .infobox ul {
    font-size: 18px;
  }
}
.infobox ul {
  list-style: none;
}
.infobox ul li {
  padding-left: 1em;
  position: relative;
  width: auto;
}
.infobox ul li + li {
  margin-top: 0.25em;
}
.infobox ul li:before {
  content: "–";
  margin-right: 0.5em;
  position: absolute;
  left: 0;
}
.infobox + blockquote {
  padding-top: 0 !important;
  width: 100% !important;
}
.infobox::before {
  content: "i";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.875rem;
  height: 1.875rem;
  color: white;
  background-color: #2a93a3;
  border-radius: 100%;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .infobox {
    padding: 2rem 1rem;
  }
  .infobox::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.25em;
  }
}

* + .infobox,
.infobox + * {
  margin-top: 3em;
}

.iconlist:not(.is-not-boxed) {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
}
@media screen and (max-width: 768px) {
  .iconlist:not(.is-not-boxed) {
    padding: 1.5rem 1rem;
  }
}
@media screen and (min-width: 500px) {
  .iconlist.has-two-columns ul {
    columns: 2;
    column-gap: 2em;
  }
}
.iconlist li {
  list-style: none;
  position: relative;
  padding-left: 2.5rem;
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.iconlist li {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .iconlist li {
    font-size: calc(13px + 2 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .iconlist li {
    font-size: 15px;
  }
}
.iconlist li + li {
  margin-top: 0.5em;
}
.iconlist span {
  color: #2a93a3;
  position: absolute;
  left: 0;
}

.uniform__potty {
  position: absolute;
  left: -9999px;
}

.uniform__errors {
  background: #9c2932;
  padding: 1rem;
}
.uniform__errors * {
  color: white;
}

.content-block form.has-bg-white input,
.content-block form.has-bg-white textarea {
  background-color: #f2f2f2;
}
.content-block form * + label {
  margin-top: 1em;
}
.content-block form label span {
  color: #9c2932;
}
.content-block form label.checkbox {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 2em;
}
.content-block form label.checkbox input {
  position: absolute;
  left: 0;
  top: 0.325em;
}
.content-block form label.checkbox a {
  color: #1a1a1a;
  text-decoration: underline;
}
.content-block form label.checkbox a:hover {
  color: #2a58a3;
}
.content-block form input[readonly] {
  cursor: not-allowed;
  text-overflow: ellipsis;
}
.content-block form .button {
  cursor: pointer;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  border: none;
  padding-bottom: 0.25em;
}

@media screen and (min-width: 769px) {
  .kurse-slider .swiper-slide > div {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.kurse-slider .kurse__swiper-pagination {
  display: flex;
  justify-content: center;
}
.kurse-slider .kurse__swiper-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #bbc9e1;
  margin: 1rem 0.33rem 0 0.33rem;
}
.kurse-slider .kurse__swiper-pagination span[aria-current=true] {
  background-color: #2a58a3;
}
@media screen and (max-width: 768px) {
  .kurse-slider .kurse__swiper-pagination {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.kurse-slider img,
.kurse-slider video {
  border-radius: 20px;
}
.kurse-slider button {
  all: unset;
  box-sizing: border-box;
  outline: revert;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #2a58a3;
  z-index: 999;
  cursor: pointer;
}
.kurse-slider button.kurse__swiper-button-next {
  right: 1rem;
}
.kurse-slider button.kurse__swiper-button-prev {
  left: 1rem;
}
@media screen and (min-width: 1216px) {
  .kurse-slider button.kurse__swiper-button-next {
    right: 2rem;
  }
  .kurse-slider button.kurse__swiper-button-prev {
    left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .kurse-slider button {
    transform: none;
    top: auto;
    bottom: 0;
  }
}

.template-home .niveaustufen__item {
  margin-bottom: 0;
}
@media screen and (max-width: 399px) {
  .template-home .niveaustufen__item {
    width: 50% !important;
  }
}
.template-home {
  /*main .banner-efre {
    @include from($desktop) {
      position: absolute;
      top: rem(50);

      img {
        width: rem(250);
      }
    }

    @include until($desktop) {
      border-bottom: solid 1px $grey;
    }
  }*/
}

.teaser-onlinekurse .columns + .columns {
  margin-top: 1rem;
}
@media screen and (min-width: 769px) {
  .teaser-onlinekurse .columns + .columns {
    margin-top: 2rem;
  }
}
.teaser-onlinekurse .modules__grid-item {
  cursor: default;
}
.teaser-onlinekurse .modules__grid-item.last {
  height: 100%;
  background-color: #2a93a3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.teaser-onlinekurse .modules__grid-item.last img {
  width: 75%;
  max-width: 12.5rem;
}
.teaser-onlinekurse .modules__grid-item.last .button-half-rounded {
  padding-top: 1em;
  background: white;
  color: #2a58a3;
}
.teaser-onlinekurse .modules__grid-item.last .button-half-rounded:hover {
  background: #2a58a3;
  color: white;
}
@media screen and (max-width: 768px) {
  .teaser-onlinekurse .modules__grid-item.last {
    min-height: 15.625rem;
    background-size: 40%;
  }
}
.teaser-onlinekurse .iconlist {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.teaser-deutschkurse .columns + .columns {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .teaser-deutschkurse .columns + .columns {
    margin-top: 1rem;
  }
}

.teaser-deutschkurse__item {
  background: white;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.teaser-deutschkurse__item.last {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3.125rem;
}
.teaser-deutschkurse__item.last span {
  color: #bbc9e1;
  font-size: 4.5rem;
}
.teaser-deutschkurse__item .button-half-rounded {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  padding-top: 0.5em;
  background-color: #2a58a3;
  text-align: center;
  font-size: 0.875rem;
  font-family: "IBM Plex Mono", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: white;
  transition: all ease-out 0.5s;
}
.teaser-deutschkurse__item .button-half-rounded span.material-icons {
  vertical-align: -7px;
}
.teaser-deutschkurse__item .button-half-rounded:hover {
  background-color: #2a93a3;
}
.teaser-deutschkurse__item .button-half-rounded {
  height: 3.75rem;
  line-height: 1.4;
}

.teaser-deutschkurse__item-img {
  background: #bbc9e1;
  height: 8.75rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teaser-deutschkurse__item-img img {
  height: 100%;
  width: auto;
  max-width: 9.375rem;
}

.teaser-deutschkurse__item-text {
  padding: 1rem;
}
.teaser-deutschkurse__item-text a {
  font-family: "IBM Plex Mono", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #9c2932;
  text-decoration: underline;
  font-size: 0.875rem;
}
.teaser-deutschkurse__item-text a:hover {
  color: #2a93a3;
}

.about-us__item {
  margin-top: 1rem;
}
.about-us__item h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .about-us__item h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .about-us__item h3 {
    font-size: 21px;
  }
}
.about-us__item h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #9c2932;
  font-weight: 400;
}
.about-us__item img {
  border-radius: 5px;
}
@media screen and (max-width: 399px) {
  .about-us__item {
    width: 100% !important;
  }
}

.table-upcoming-dates {
  background: white;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
  border-radius: 20px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
}
.table-upcoming-dates table {
  width: 100%;
}
.table-upcoming-dates tr:nth-of-type(even) {
  background: #f2f2f2;
}
.table-upcoming-dates td {
  padding: 0.5em;
}
.table-upcoming-dates td + td {
  text-align: right;
}

.job-banner {
  background-position: top center !important;
}
@media screen and (max-width: 768px) {
  .job-banner {
    background-position: top left 33% !important;
  }
}

.job-banner__text {
  background: rgba(156, 41, 50, 0.9);
  border-radius: 20px;
  padding: 1.75vw 2vw 2vw 2vw;
}
.job-banner__text * {
  color: white;
}
.job-banner__text ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.job-banner__text ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .job-banner__text ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .job-banner__text ul {
    font-size: 18px;
  }
}
.job-banner__text ul {
  list-style: none;
}
.job-banner__text ul li {
  padding-left: 1em;
  position: relative;
  width: auto;
}
.job-banner__text ul li + li {
  margin-top: 0.25em;
}
.job-banner__text ul li:before {
  content: "–";
  margin-right: 0.5em;
  position: absolute;
  left: 0;
}
.job-banner__text ul {
  margin: 1.5em 0;
}
.job-banner__text ul a {
  font-family: "IBM Plex Mono", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: white;
  text-decoration: underline;
}
.job-banner__text ul a:hover {
  color: #2a93a3;
}
@media screen and (max-width: 768px) {
  .job-banner__text {
    padding: 1rem 1rem;
  }
  .job-banner__text .button {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .content-block.termine-intro .column.is-narrow.is-flex {
    justify-content: center !important;
  }
}

.content-block.termine h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .content-block.termine h2 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.termine h2 {
    font-size: 26px;
  }
}
.content-block.termine h2 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1.5em;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .content-block.termine h2 {
    text-align: center;
  }
}

.termine__inner {
  background: #f2f2f2;
  border-radius: 20px;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .termine__inner {
    padding: 1.5rem 1rem;
  }
}

.termine__filter, .sprachkurse__filter {
  margin-bottom: 1rem;
}
.termine__filter .is-flex, .sprachkurse__filter .is-flex {
  justify-content: center;
  align-items: center;
}
.termine__filter .is-flex p, .sprachkurse__filter .is-flex p {
  margin: 0 1em 0 0;
}

.termine__item {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .termine__item {
    margin-bottom: 2rem;
  }
}
.termine__item:last-child {
  margin-bottom: 0;
}
.termine__item h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .termine__item h3 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .termine__item h3 {
    font-size: 26px;
  }
}
.termine__item h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  color: #2a58a3;
}
.termine__item h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .termine__item h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .termine__item h3 {
    font-size: 21px;
  }
}
.termine__item h3 {
  margin-bottom: 1em;
}

.termine__item-table {
  margin: 0 !important;
  overflow-x: auto;
}
.termine__item-table td.title {
  max-width: 450px;
}

.termine__item-infotext {
  margin-top: 1.5rem;
}
.termine__item-infotext > div {
  position: relative;
  padding-left: 2rem;
}
.termine__item-infotext span {
  position: absolute;
  left: 0;
  color: #2a93a3;
}
@media screen and (max-width: 768px) {
  .termine__item-infotext {
    padding: 1rem;
  }
}

.content-block.ansprechpartner img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .content-block.ansprechpartner img {
    margin-top: 1rem;
  }
}
.content-block.ansprechpartner h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .content-block.ansprechpartner h3 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.ansprechpartner h3 {
    font-size: 26px;
  }
}
.content-block.ansprechpartner h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  color: #2a58a3;
}
.content-block.ansprechpartner figcaption {
  margin-top: 1rem;
}
.content-block.ansprechpartner figcaption a {
  color: #1a1a1a;
  text-decoration: underline;
}
.content-block.ansprechpartner figcaption a:hover {
  color: #2a58a3;
}
@media screen and (min-width: 1216px) {
  .content-block.ansprechpartner figcaption {
    width: 66.6666666667%;
  }
}

.template-kontakt .column__inner {
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .template-kontakt .column__inner {
    padding: 1.5rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  .template-kontakt .column__inner {
    padding: 1.5rem 1rem;
  }
}
.template-kontakt .content-block p > a,
.template-kontakt .content-block label a {
  color: #1a1a1a;
  text-decoration: underline;
}
.template-kontakt .content-block p > a:hover,
.template-kontakt .content-block label a:hover {
  color: #2a58a3;
}
.template-kontakt .content-block h2,
.template-kontakt .content-block h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .template-kontakt .content-block h2,
  .template-kontakt .content-block h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .template-kontakt .content-block h2,
  .template-kontakt .content-block h3 {
    font-size: 21px;
  }
}
.template-kontakt .content-block h2,
.template-kontakt .content-block h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #2a58a3;
  font-weight: 600;
  margin-bottom: 1em;
}
.template-kontakt .messenger-link,
.template-kontakt .social-link {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.template-kontakt .messenger-link img,
.template-kontakt .social-link img {
  width: 1.5rem;
  margin-right: 0.5rem;
}

.map-container {
  height: 500px;
}
.map-container .uc-embedding-wrapper {
  width: 500px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
}

.template-default main h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .template-default main h2 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .template-default main h2 {
    font-size: 26px;
  }
}
.template-default main h2 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  color: #2a58a3;
}
.template-default main h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .template-default main h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .template-default main h3 {
    font-size: 21px;
  }
}
.template-default main h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #2a58a3;
  font-weight: 600;
}
.template-default main h4 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.template-default main h4 {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .template-default main h4 {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .template-default main h4 {
    font-size: 18px;
  }
}
.template-default main h4 {
  color: #1a1a1a;
}
.template-default main * + h2 {
  margin-top: 1.5em;
}
.template-default main * + h3,
.template-default main * + h4 {
  margin-top: 1.5em;
}

@media screen and (min-width: 1024px) {
  .hero-img__text {
    position: absolute;
    width: 100%;
    bottom: 7.5vw;
    right: 0;
  }
}
@media screen and (max-width: 1023px) {
  .hero-img__text .container {
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .hero-img__text .columns {
    background: #9c2932;
  }
}
@media screen and (min-width: 1024px) {
  .hero-img__text .columns {
    justify-content: flex-end;
  }
}
.hero-img__text .hero-img__text-inner {
  background: rgba(156, 41, 50, 0.9);
  border-radius: 20px;
  padding: 1.75vw 2vw 2vw 2vw;
}
.hero-img__text .hero-img__text-inner * {
  color: white;
}
@media screen and (max-width: 768px) {
  .hero-img__text .hero-img__text-inner {
    padding: 1rem 1rem;
  }
}
.hero-img__text h1:only-child {
  margin-bottom: 0;
}
.hero-img__text a[href*=\#] {
  color: white;
  position: relative;
  padding-right: 1.75em;
}
.hero-img__text a[href*=\#]:hover::before {
  transform: rotate(360deg);
}
.hero-img__text a[href*=\#]::before {
  content: "arrow_downward";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
  color: white;
  transition: transform 0.5s;
}

#anchor-scroll-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  color: white;
}
@media screen and (max-width: 1215px) {
  #anchor-scroll-down {
    display: none;
  }
}

.text-img-boxes .columns {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .text-img-boxes .columns {
    margin-top: 1.5rem;
  }
}

.text-img-box__inner {
  background: #f2f2f2;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.text-img-box__inner > div {
  padding: 3rem;
}
@media screen and (max-width: 1023px) {
  .text-img-box__inner > div {
    padding: 2rem 1.5rem;
  }
}
.text-img-box__inner h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .text-img-box__inner h3 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .text-img-box__inner h3 {
    font-size: 26px;
  }
}
.text-img-box__inner h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  color: #2a58a3;
}
.text-img-box__inner strong {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.text-img-box__inner strong {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .text-img-box__inner strong {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .text-img-box__inner strong {
    font-size: 18px;
  }
}
.text-img-box__inner strong {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  color: #9c2932;
  text-transform: uppercase;
  font-weight: 600;
}
.text-img-box__inner ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.text-img-box__inner ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .text-img-box__inner ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .text-img-box__inner ul {
    font-size: 18px;
  }
}
.text-img-box__inner ul {
  list-style: none;
}
.text-img-box__inner ul li {
  padding-left: 1em;
  position: relative;
  width: auto;
}
.text-img-box__inner ul li + li {
  margin-top: 0.25em;
}
.text-img-box__inner ul li:before {
  content: "–";
  margin-right: 0.5em;
  position: absolute;
  left: 0;
}
.text-img-box__inner p:last-child {
  text-align: center;
  margin-top: 2em;
}
.text-img-box__inner a[href*=\#] {
  color: #2a58a3;
  position: relative;
  padding-right: 1.75em;
  text-decoration: underline;
}
.text-img-box__inner a[href*=\#]:hover::before {
  transform: rotate(360deg);
}
.text-img-box__inner a[href*=\#]::before {
  content: "arrow_downward";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
  color: #2a93a3;
  transition: transform 0.5s;
}

.content-block.quote blockquote p {
  font-size: 21px;
}
@media screen and (min-width: 320px) {
  .content-block.quote blockquote p {
    font-size: calc(21px + 7 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.quote blockquote p {
    font-size: 28px;
  }
}
.content-block.quote blockquote p {
  font-style: italic;
  color: #2a93a3;
}
.content-block.quote .quote__author {
  position: relative;
}
.content-block.quote .quote__author p {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.content-block.quote .quote__author p {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .content-block.quote .quote__author p {
    font-size: calc(13px + 2 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.quote .quote__author p {
    font-size: 15px;
  }
}
.content-block.quote .quote__author p {
  margin-top: 1em;
  padding-top: 1em;
  position: relative;
}
.content-block.quote .quote__author::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 18.75rem;
  height: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='304' height='3.053' viewBox='0 0 304 3.053'%3E%3Cline id='Linie_15' data-name='Linie 15' y1='0.053' x2='301' transform='translate(1.5 1.5)' fill='none' stroke='%231a1a1a' stroke-linecap='round' stroke-width='3' stroke-dasharray='0 10'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
.content-block.quote:not(.zweispaltig) .quote__author::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-position: center;
}
.content-block.quote:not(.zweispaltig) .quote__author p {
  margin-top: 2em;
}

.sprachkurse__filter {
  margin-bottom: 4rem;
  margin-top: -1rem;
}

.sprachkurse__item {
  width: 100%;
}
.sprachkurse__item .iconlist {
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .sprachkurse__item:not(:last-child) {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .sprachkurse__item .iconlist {
    padding: 1.25rem;
  }
}
@media screen and (min-width: 769px) {
  .sprachkurse__item {
    width: 47.5%;
  }
  .sprachkurse__item:nth-child(n+3) {
    margin-top: 4rem;
  }
}

.sprachkurse__item-img {
  flex: 0 0 5rem;
  height: 5rem;
  margin-right: 2rem;
}
@media screen and (min-width: 1216px) {
  .sprachkurse__item-img {
    flex: 0 0 6.25rem;
    height: 5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .sprachkurse__item-img {
    flex: 0 0 3.75rem;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 399px) {
  .sprachkurse__item-img {
    flex: 0 0 3.125rem;
    margin-right: 1rem;
  }
}

.sprachkurse__item-text {
  flex-grow: 1;
}

.content-block.niveaustufen.onlinekurse .accordion__trigger {
  top: -85px;
}

.content-block.niveaustufen hr,
.content-block.kursdetails hr {
  margin-left: -4rem;
  margin-right: -4rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  height: 1px;
  background: transparent;
  border-top: dotted 1px #1a1a1a;
}
@media screen and (max-width: 1023px) {
  .content-block.niveaustufen hr,
  .content-block.kursdetails hr {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media screen and (max-width: 768px) {
  .content-block.niveaustufen hr,
  .content-block.kursdetails hr {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
.content-block.niveaustufen .accordion__trigger,
.content-block.kursdetails .accordion__trigger {
  color: #2a93a3;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
}
.content-block.niveaustufen .accordion__trigger.open,
.content-block.kursdetails .accordion__trigger.open {
  transform: rotate(45deg);
}
.content-block.niveaustufen .accordion__content,
.content-block.kursdetails .accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.content-block.niveaustufen.onlinekurse .toggle,
.content-block.kursdetails.onlinekurse .toggle {
  cursor: pointer;
}
.content-block.niveaustufen.onlinekurse .niveaustufen__item-title,
.content-block.kursdetails.onlinekurse .niveaustufen__item-title {
  background: #2a58a3 !important;
}
.content-block.niveaustufen.onlinekurse .accordion__content ul,
.content-block.kursdetails.onlinekurse .accordion__content ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.content-block.niveaustufen.onlinekurse .accordion__content ul,
.content-block.kursdetails.onlinekurse .accordion__content ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .content-block.niveaustufen.onlinekurse .accordion__content ul,
  .content-block.kursdetails.onlinekurse .accordion__content ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.niveaustufen.onlinekurse .accordion__content ul,
  .content-block.kursdetails.onlinekurse .accordion__content ul {
    font-size: 18px;
  }
}
.content-block.niveaustufen.onlinekurse .accordion__content ul,
.content-block.kursdetails.onlinekurse .accordion__content ul {
  list-style: none;
}
.content-block.niveaustufen.onlinekurse .accordion__content ul li,
.content-block.kursdetails.onlinekurse .accordion__content ul li {
  padding-left: 1em;
  position: relative;
  width: auto;
}
.content-block.niveaustufen.onlinekurse .accordion__content ul li + li,
.content-block.kursdetails.onlinekurse .accordion__content ul li + li {
  margin-top: 0.25em;
}
.content-block.niveaustufen.onlinekurse .accordion__content ul li:before,
.content-block.kursdetails.onlinekurse .accordion__content ul li:before {
  content: "–";
  margin-right: 0.5em;
  position: absolute;
  left: 0;
}
.content-block.niveaustufen.onlinekurse .accordion__content p + ul,
.content-block.kursdetails.onlinekurse .accordion__content p + ul {
  margin-top: 0;
}
.content-block.niveaustufen.onlinekurse .kursdetails__infobox,
.content-block.kursdetails.onlinekurse .kursdetails__infobox {
  background: #f2f2f2;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content-block.niveaustufen.onlinekurse .kursdetails__infobox p,
.content-block.kursdetails.onlinekurse .kursdetails__infobox p {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.content-block.niveaustufen.onlinekurse .kursdetails__infobox p,
.content-block.kursdetails.onlinekurse .kursdetails__infobox p {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .content-block.niveaustufen.onlinekurse .kursdetails__infobox p,
  .content-block.kursdetails.onlinekurse .kursdetails__infobox p {
    font-size: calc(13px + 2 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.niveaustufen.onlinekurse .kursdetails__infobox p,
  .content-block.kursdetails.onlinekurse .kursdetails__infobox p {
    font-size: 15px;
  }
}
@media screen and (max-width: 1215px) {
  .content-block.niveaustufen.onlinekurse .kursdetails__infobox,
  .content-block.kursdetails.onlinekurse .kursdetails__infobox {
    margin-top: 20px;
  }
}
.content-block.niveaustufen:not(.onlinekurse) .accordion__content ul,
.content-block.kursdetails:not(.onlinekurse) .accordion__content ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.content-block.niveaustufen:not(.onlinekurse) .accordion__content ul,
.content-block.kursdetails:not(.onlinekurse) .accordion__content ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .content-block.niveaustufen:not(.onlinekurse) .accordion__content ul,
  .content-block.kursdetails:not(.onlinekurse) .accordion__content ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.niveaustufen:not(.onlinekurse) .accordion__content ul,
  .content-block.kursdetails:not(.onlinekurse) .accordion__content ul {
    font-size: 18px;
  }
}
.content-block.niveaustufen:not(.onlinekurse) .accordion__content ul,
.content-block.kursdetails:not(.onlinekurse) .accordion__content ul {
  list-style: none;
}
.content-block.niveaustufen:not(.onlinekurse) .accordion__content ul li,
.content-block.kursdetails:not(.onlinekurse) .accordion__content ul li {
  padding-left: 1.75em;
  position: relative;
  width: auto;
}
.content-block.niveaustufen:not(.onlinekurse) .accordion__content ul li + li,
.content-block.kursdetails:not(.onlinekurse) .accordion__content ul li + li {
  margin-top: 0.5em;
}
.content-block.niveaustufen:not(.onlinekurse) .accordion__content ul li:before,
.content-block.kursdetails:not(.onlinekurse) .accordion__content ul li:before {
  position: absolute;
  left: 0;
  top: -0.1em;
  content: "check_circle";
  font-size: 1.2em;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
  color: #2a93a3;
}
.content-block.niveaustufen:not(.onlinekurse) .accordion__content *:first-child,
.content-block.kursdetails:not(.onlinekurse) .accordion__content *:first-child {
  margin-top: 0.5em;
}

.niveaustufen__inner,
.kursdetails__inner {
  padding: 3rem 4rem;
  border-radius: 20px;
}
@media screen and (max-width: 1023px) {
  .niveaustufen__inner,
  .kursdetails__inner {
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .niveaustufen__inner,
  .kursdetails__inner {
    padding: 2rem 1rem;
  }
}

.niveaustufen__item,
.kursdetails__item {
  margin-bottom: 2rem;
}
.niveaustufen__item h3,
.kursdetails__item h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .niveaustufen__item h3,
  .kursdetails__item h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .niveaustufen__item h3,
  .kursdetails__item h3 {
    font-size: 21px;
  }
}
.niveaustufen__item h3,
.kursdetails__item h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #2a58a3;
  font-weight: 600;
  margin-top: 0;
}
.niveaustufen__item .has-accordion,
.kursdetails__item .has-accordion {
  padding-right: 3.75rem;
}
@media screen and (max-width: 768px) {
  .niveaustufen__item,
  .kursdetails__item {
    margin-bottom: 1rem;
  }
}

.niveaustufen__item:nth-child(-n+2) .niveaustufen__item-title {
  background: #bbc9e1;
}
.niveaustufen__item:nth-child(n+3):nth-child(-n+4) .niveaustufen__item-title {
  background: rgba(42, 88, 163, 0.7);
}
.niveaustufen__item .is-flex {
  align-items: center;
  margin-bottom: 0.5rem;
}
.niveaustufen__item h3 {
  margin-left: 1em;
}

.niveaustufen__item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
  height: 6.25rem;
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
  font-family: "IBM Plex Mono", Helvetica, Arial, sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  background: #2a58a3;
  color: white;
  border-radius: 100%;
  flex: 0 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .niveaustufen__item-title {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.75rem;
    flex: 0 0 3.75rem;
    padding-bottom: 0.3125rem;
  }
}

.kursdetails__termine, .termine__item-table {
  background: white;
  border-radius: 20px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
}
@media screen and (max-width: 768px) {
  .kursdetails__termine, .termine__item-table {
    padding: 1rem;
  }
}
.kursdetails__termine a, .termine__item-table a {
  color: #9c2932;
}
.kursdetails__termine a:hover, .termine__item-table a:hover {
  text-decoration: underline;
}
.kursdetails__termine h3, .termine__item-table h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .kursdetails__termine h3, .termine__item-table h3 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .kursdetails__termine h3, .termine__item-table h3 {
    font-size: 26px;
  }
}
.kursdetails__termine h3, .termine__item-table h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  color: #2a58a3;
  margin-bottom: 1em;
}
.kursdetails__termine ul li + li, .termine__item-table ul li + li {
  margin-top: 1em;
}
.kursdetails__termine div:has(table), .termine__item-table div:has(table) {
  overflow-x: auto;
}
.kursdetails__termine table, .termine__item-table table {
  width: 100%;
  white-space: nowrap;
}
.kursdetails__termine th, .termine__item-table th {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.kursdetails__termine th, .termine__item-table th {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .kursdetails__termine th, .termine__item-table th {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .kursdetails__termine th, .termine__item-table th {
    font-size: 18px;
  }
}
.kursdetails__termine th, .termine__item-table th {
  color: #9c2932;
  padding: 0 0.25em 0.5em 0.25em;
  text-align: left !important;
}
.kursdetails__termine td, .termine__item-table td {
  padding: 0.25em 0.5em;
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.kursdetails__termine td, .termine__item-table td {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .kursdetails__termine td, .termine__item-table td {
    font-size: calc(13px + 2 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .kursdetails__termine td, .termine__item-table td {
    font-size: 15px;
  }
}
.kursdetails__termine td, .termine__item-table td {
  font-family: "IBM Plex Mono", Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 374px) {
  .kursdetails__termine td, .termine__item-table td {
    font-size: 0.75rem;
  }
}
.kursdetails__termine td.title, .termine__item-table td.title {
  max-width: 300px;
  white-space: wrap;
}
.kursdetails__termine td.booking, .termine__item-table td.booking {
  text-align: right !important;
}
@media screen and (max-width: 499px) {
  .kursdetails__termine td.booking, .termine__item-table td.booking {
    width: 4.0625rem;
    text-align: left;
  }
}
.kursdetails__termine td.no-wrap, .termine__item-table td.no-wrap {
  white-space: nowrap;
}
.kursdetails__termine tr:nth-of-type(even), .termine__item-table tr:nth-of-type(even) {
  background: #f2f2f2;
}

.niveaustufen-boxen__item {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.niveaustufen-boxen__item p:has(strong) {
  white-space: nowrap;
}
.niveaustufen-boxen__item strong {
  color: #2a93a3;
}

.content-block.text-imggrid h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .content-block.text-imggrid h3 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.text-imggrid h3 {
    font-size: 26px;
  }
}
.content-block.text-imggrid h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  color: #2a58a3;
  margin-bottom: 0.75em;
}
.content-block.text-imggrid figure {
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-block.text-imggrid img {
  border-radius: 20px;
  width: 100%;
  margin-bottom: 1rem;
}
.content-block.text-imggrid img:nth-of-type(2),
.content-block.text-imggrid img:nth-of-type(3),
.content-block.text-imggrid figcaption {
  width: calc(50% - 0.5rem);
}
@media screen and (max-width: 768px) {
  .content-block.text-imggrid figure {
    margin-top: 2rem;
  }
  .content-block.text-imggrid figcaption {
    width: 100%;
  }
}

.content-block.text-img .content-block__headline h1,
.content-block.text-img .content-block__headline h2,
.content-block.text-img .content-block__headline p {
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}
.content-block.text-img .content-block__headline:has(p) {
  margin-bottom: 50px;
}
.content-block.text-img .content-block__headline:has(p) h2 {
  margin-bottom: 0.5em;
}
.content-block.text-img:not(.has-video) .columns {
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .content-block.text-img:not(.has-video) .columns {
    align-items: flex-start !important;
  }
}
.content-block.text-img img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .content-block.text-img img {
    margin-top: 1rem;
  }
}
.content-block.text-img video {
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 400px) {
  .content-block.text-img video {
    max-height: 31.25rem;
  }
}
@media screen and (max-width: 768px) {
  .content-block.text-img video {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
.content-block.text-img ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.content-block.text-img ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .content-block.text-img ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.text-img ul {
    font-size: 18px;
  }
}
.content-block.text-img ul {
  list-style: none;
}
.content-block.text-img ul li {
  padding-left: 1.75em;
  position: relative;
  width: auto;
}
.content-block.text-img ul li + li {
  margin-top: 0.5em;
}
.content-block.text-img ul li:before {
  position: absolute;
  left: 0;
  top: -0.1em;
  content: "check_circle";
  font-size: 1.2em;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
  color: #2a93a3;
}
.content-block.text-img h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .content-block.text-img h3 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.text-img h3 {
    font-size: 26px;
  }
}
.content-block.text-img h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  color: #2a58a3;
}
.content-block.text-img figcaption {
  margin-top: 1rem;
}
.content-block.text-img figcaption .button {
  margin-top: 1em;
}
@media screen and (min-width: 1216px) {
  .content-block.text-img figcaption {
    width: 66.6666666667%;
  }
}
.content-block.text-img .infobox {
  background: #f2f2f2;
}

.text-zweispaltig-boxen__inner {
  background: #f2f2f2;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  padding: 3rem;
}
@media screen and (max-width: 1023px) {
  .text-zweispaltig-boxen__inner {
    padding: 2rem 1.5rem;
  }
}
.text-zweispaltig-boxen__inner h4 + .infobox {
  margin-top: 2rem;
}
.text-zweispaltig-boxen__inner .infobox p > .button {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.text-zweispaltig-boxen__inner ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.text-zweispaltig-boxen__inner ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .text-zweispaltig-boxen__inner ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .text-zweispaltig-boxen__inner ul {
    font-size: 18px;
  }
}
.text-zweispaltig-boxen__inner ul {
  list-style: none;
}
.text-zweispaltig-boxen__inner ul li {
  padding-left: 1em;
  position: relative;
  width: auto;
}
.text-zweispaltig-boxen__inner ul li + li {
  margin-top: 0.25em;
}
.text-zweispaltig-boxen__inner ul li:before {
  content: "–";
  margin-right: 0.5em;
  position: absolute;
  left: 0;
}

.content-block.img-banner, .content-block.job-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 15rem 0 3rem 0 !important;
}
@media screen and (min-width: 769px) {
  .content-block.img-banner, .content-block.job-banner {
    padding: 10rem 0 6rem 0 !important;
  }
}
@media screen and (min-width: 1216px) {
  .content-block.img-banner, .content-block.job-banner {
    padding: 12rem 0 8rem 0 !important;
  }
}

.img-banner__text {
  background: rgba(156, 41, 50, 0.9);
  border-radius: 20px;
  padding: 1.75vw 2vw 2vw 2vw;
}
.img-banner__text * {
  color: white;
}
.img-banner__text p {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .img-banner__text p {
    font-size: calc(18px + 14 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .img-banner__text p {
    font-size: 32px;
  }
}
.img-banner__text p {
  font-family: "IBM Plex Mono", Helvetica, Arial, sans-serif;
  font-style: italic;
  color: white;
}
@media screen and (max-width: 768px) {
  .img-banner__text {
    padding: 1rem 1rem;
  }
  .img-banner__text .button {
    margin-top: 0;
  }
}

.content-block.text ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.content-block.text ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .content-block.text ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .content-block.text ul {
    font-size: 18px;
  }
}
.content-block.text ul {
  list-style: none;
}
.content-block.text ul li {
  padding-left: 1em;
  position: relative;
  width: auto;
}
.content-block.text ul li + li {
  margin-top: 0.25em;
}
.content-block.text ul li:before {
  content: "–";
  margin-right: 0.5em;
  position: absolute;
  left: 0;
}

.team__item {
  background: white;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.team__item h2 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .team__item h2 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .team__item h2 {
    font-size: 21px;
  }
}
.team__item h2 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #9c2932;
  font-weight: 400;
  margin-bottom: 0.25em;
}

.team__item-text {
  padding: 1.5rem;
}
.team__item-text a {
  color: #1a1a1a;
  text-decoration: underline;
}
.team__item-text a:hover {
  color: #2a58a3;
}

.faq__item {
  background: white;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
}
.faq__item .button {
  margin-top: 0;
}

.partner__item {
  display: block;
  overflow: hidden;
  position: relative;
  background: white;
  box-shadow: 10px 16px 30px rgba(26, 26, 26, 0.15);
  border-radius: 20px;
}
.partner__item:hover .partner__item-text {
  opacity: 1;
  transform: none;
}

.partner__item-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #9c2932;
  padding: 1rem;
  opacity: 0;
  transform: translateY(5%);
  transition: all 0.3s;
  color: white;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .partner__item-text {
    padding: 2rem;
  }
}

.content-block.kontaktformular h4 {
  margin-bottom: 2em;
}
.content-block.kontaktformular .contact__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.content-block.kontaktformular .contact__items .contact__item {
  width: calc(50% - 1rem);
  margin-bottom: 1rem;
}
@media screen and (max-width: 399px) {
  .content-block.kontaktformular .contact__items .contact__item {
    width: 100%;
  }
}
.content-block.kontaktformular .contact__item img {
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
.content-block.kontaktformular .contact__item-text a {
  word-wrap: break-word;
}
.content-block.kontaktformular .alert.success {
  background: #2a58a3;
  border-radius: 20px;
  padding: 2rem;
}
.content-block.kontaktformular .alert.success * {
  color: white !important;
}

.erlebniskurs-einleitung p + h1 {
  margin-top: 0.2em;
}
.erlebniskurs-einleitung h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .erlebniskurs-einleitung h2 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .erlebniskurs-einleitung h2 {
    font-size: 26px;
  }
}
.erlebniskurs-einleitung h2 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-weight: 400;
  color: #1a1a1a;
}
.erlebniskurs-einleitung h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .erlebniskurs-einleitung h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .erlebniskurs-einleitung h3 {
    font-size: 21px;
  }
}
.erlebniskurs-einleitung h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #2a58a3;
  font-weight: 600;
  margin-bottom: 1.5em;
}
.erlebniskurs-einleitung img {
  border-radius: 20px;
}
.erlebniskurs-einleitung .iconlist li {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.erlebniskurs-einleitung .iconlist li {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .erlebniskurs-einleitung .iconlist li {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .erlebniskurs-einleitung .iconlist li {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023px) {
  .erlebniskurs-einleitung video {
    max-height: 600px;
    width: auto;
    margin: 3rem auto 2rem auto;
  }
}
@media screen and (max-width: 399px) {
  .erlebniskurs-einleitung video {
    max-height: none;
  }
}

.erlebniskurs-programm h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .erlebniskurs-programm h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .erlebniskurs-programm h3 {
    font-size: 21px;
  }
}
.erlebniskurs-programm h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #2a58a3;
  font-weight: 600;
}
.erlebniskurs-programm img {
  border-radius: 20px;
}
.erlebniskurs-programm .columns + .columns {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .erlebniskurs-programm .columns + .columns {
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .erlebniskurs-programm .columns + .columns {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1216px) {
  .erlebniskurs-programm .columns.is-variable.is-8 {
    --columnGap: 1rem;
  }
}

.erlebniskurs-programm__inner {
  background: #f2f2f2;
  border-radius: 20px;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 1024px) {
  .erlebniskurs-programm__inner {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .erlebniskurs-programm__inner {
    padding: 5rem 0;
  }
}

.erlebniskurs-programm__ueberblick, .erlebniskurs-anfrage__next-steps {
  position: relative;
  padding-top: 1.5rem;
}
.erlebniskurs-programm__ueberblick ul, .erlebniskurs-anfrage__next-steps ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.erlebniskurs-programm__ueberblick ul, .erlebniskurs-anfrage__next-steps ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .erlebniskurs-programm__ueberblick ul, .erlebniskurs-anfrage__next-steps ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .erlebniskurs-programm__ueberblick ul, .erlebniskurs-anfrage__next-steps ul {
    font-size: 18px;
  }
}
.erlebniskurs-programm__ueberblick ul, .erlebniskurs-anfrage__next-steps ul {
  list-style: none;
}
.erlebniskurs-programm__ueberblick ul li, .erlebniskurs-anfrage__next-steps ul li {
  padding-left: 1.75em;
  position: relative;
  width: auto;
}
.erlebniskurs-programm__ueberblick ul li + li, .erlebniskurs-anfrage__next-steps ul li + li {
  margin-top: 0.5em;
}
.erlebniskurs-programm__ueberblick ul li:before, .erlebniskurs-anfrage__next-steps ul li:before {
  position: absolute;
  left: 0;
  top: -0.1em;
  content: "check_circle";
  font-size: 1.2em;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
  color: #2a93a3;
}
.erlebniskurs-programm__ueberblick p:first-child, .erlebniskurs-anfrage__next-steps p:first-child {
  position: absolute;
  background: #2a93a3;
  color: white;
  font-weight: 600;
  padding: 0 1em;
  border-radius: 20px;
  top: 0;
  transform: translateY(-50%);
}

.paywall__item {
  height: 100%;
  border-radius: 20px;
  padding: 3rem 2rem;
}
@media screen and (max-width: 768px) {
  .paywall__item {
    padding: 2rem;
  }
}
.paywall__item h2 {
  text-align: center;
  margin-bottom: 1em;
}
.paywall__item ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.paywall__item ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .paywall__item ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .paywall__item ul {
    font-size: 18px;
  }
}
.paywall__item ul {
  list-style: none;
}
.paywall__item ul li {
  padding-left: 1.75em;
  position: relative;
  width: auto;
}
.paywall__item ul li + li {
  margin-top: 0.5em;
}
.paywall__item ul li:before {
  position: absolute;
  left: 0;
  top: -0.1em;
  content: "check_circle";
  font-size: 1.2em;
  font-family: "Material Icons";
  -webkit-font-feature-settings: "liga";
  color: #2a93a3;
}
.paywall__item ul strong {
  color: #2a58a3;
  display: block;
}
.paywall__item ul li + li {
  margin-top: 1em;
}
.paywall__item .is-disabled li:first-child {
  margin-top: 1em;
}
.paywall__item .is-disabled *,
.paywall__item .is-disabled li::before {
  color: #8c8c8c !important;
}
.paywall__item hr {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  height: 1px;
  background: transparent;
  border-top: dotted 1px #1a1a1a;
}
@media screen and (min-width: 1216px) {
  .paywall__item hr {
    margin-left: calc(-2.5rem - 8.3333333333%);
    margin-right: calc(-2.5rem - 8.3333333333%);
  }
}

.paywall__item-prices strong {
  color: #9c2932;
}

.paywall__item-cta strong {
  color: #2a58a3;
}

.erlebniskurs-text-img img {
  border-radius: 20px;
}

.erlebniskurs-anfrage__form {
  padding: 3.75rem 5rem;
}
.erlebniskurs-anfrage__form .label {
  font-weight: 400;
}
.erlebniskurs-anfrage__form label.checkbox a {
  color: #1a1a1a;
  text-decoration: underline;
}
.erlebniskurs-anfrage__form label.checkbox a:hover {
  color: #2a58a3;
}
.erlebniskurs-anfrage__form label.radio input {
  margin-right: 0.5em;
}

.erlebniskurs-anfrage__about {
  margin-top: 4rem;
}
.erlebniskurs-anfrage__about h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .erlebniskurs-anfrage__about h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .erlebniskurs-anfrage__about h3 {
    font-size: 21px;
  }
}
.erlebniskurs-anfrage__about h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #2a58a3;
  font-weight: 600;
}
.erlebniskurs-anfrage__about img {
  border-radius: 20px;
  margin-bottom: 1rem;
}

.erlebniskurse__inner {
  border-radius: 20px;
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}

.erlebniskurse__item:not(:last-child) {
  border-bottom: dotted 1px #1a1a1a;
  padding-bottom: 3.75rem;
  margin-bottom: 3.75rem;
}
.erlebniskurse__item h2 {
  text-align: center;
  margin-bottom: 1.5em;
}
.erlebniskurse__item h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .erlebniskurse__item h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .erlebniskurse__item h3 {
    font-size: 21px;
  }
}
.erlebniskurse__item h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #2a58a3;
  font-weight: 600;
  margin-bottom: 1em;
}
.erlebniskurse__item img {
  border-radius: 20px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .erlebniskurse__item img {
    margin-bottom: 1rem;
  }
}

.uebersicht-onlinekurse__intro p {
  font-size: 21px;
}
@media screen and (min-width: 320px) {
  .uebersicht-onlinekurse__intro p {
    font-size: calc(21px + 7 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .uebersicht-onlinekurse__intro p {
    font-size: 28px;
  }
}
.uebersicht-onlinekurse__intro p {
  font-style: italic;
  color: #2a93a3;
}

.konfigurator__sidebar {
  height: 100%;
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 2rem;
}
.konfigurator__sidebar h3 {
  margin-bottom: 1em;
}
.konfigurator__sidebar h4 {
  margin-top: 1em;
  margin-bottom: 0;
}
.konfigurator__sidebar h4 + ul {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.konfigurator__sidebar h4 + ul {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .konfigurator__sidebar h4 + ul {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .konfigurator__sidebar h4 + ul {
    font-size: 18px;
  }
}
.konfigurator__sidebar h4 + ul {
  margin-top: 0.5em;
}
.konfigurator__sidebar h4 + ul li {
  display: flex;
  justify-content: space-between;
}
.konfigurator__sidebar ol {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.konfigurator__sidebar ol {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  .konfigurator__sidebar ol {
    font-size: calc(15px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .konfigurator__sidebar ol {
    font-size: 18px;
  }
}
.konfigurator__sidebar ol {
  margin-top: 2em;
}
.konfigurator__sidebar ol li + li {
  margin-top: 0.5em;
}
.konfigurator__sidebar .total-price {
  font-size: 21px;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-top: 10px;
  border-top: solid 2px #1a1a1a;
}
.konfigurator__sidebar .total-price p + p {
  margin-top: 0;
}

@media screen and (max-width: 599px) {
  .konfigurator__items .column.is-6-mobile {
    width: 100%;
  }
}

.konfigurator__item h3 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .konfigurator__item h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .konfigurator__item h3 {
    font-size: 21px;
  }
}
.konfigurator__item h3 {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.25;
  color: #2a58a3;
  font-weight: 600;
}
.konfigurator__item p,
.konfigurator__item label {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
}
.konfigurator__item p,
.konfigurator__item label {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .konfigurator__item p,
  .konfigurator__item label {
    font-size: calc(13px + 2 * (100vw - 320px) / 1280);
  }
}
@media screen and (min-width: 1600px) {
  .konfigurator__item p,
  .konfigurator__item label {
    font-size: 15px;
  }
}
.konfigurator__item label {
  display: inline-flex;
  margin-top: 10px;
  cursor: pointer;
  line-height: 1;
  align-items: center;
}
.konfigurator__item input {
  all: unset;
  box-sizing: border-box;
  outline: revert;
  width: 18px;
  height: 18px;
  border: solid 2px #9c2932;
  margin-right: 5px;
  position: relative;
}
.konfigurator__item input[type=checkbox]:checked {
  background-color: #9c2932;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 11'%3E%3Cpath fill='%23fff' d='m14.096 1.737-8.5 8.5L.904 5.5l1.328-1.328 3.364 3.364L12.768.365l1.328 1.372Z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.konfigurator__item input[type=radio] {
  position: relative;
  border-radius: 100%;
}
.konfigurator__item input[type=radio]::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #9c2932;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.konfigurator__item input[type=radio]:checked::before {
  display: block;
}

.content-block.jobs h3 a {
  color: #1a1a1a;
}
.content-block.jobs .is-shadow-box-white, .content-block.jobs .erlebniskurs-programm__ueberblick, .content-block.jobs .erlebniskurs-anfrage__next-steps {
  height: 100%;
}

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