@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main,
input,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

/* HTML5 display-role reset for shitty browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

html {
  overflow-y: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

body * {
  outline: none;
  box-sizing: border-box;
}

.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}

.tns-slider>.tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel>.tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel>.tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery>.tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}

.tns-gallery>.tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery>.tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal,
.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix>div,
.tns-vpfix>li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct>div {
  width: 1.4285714286%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

/*! Hint.css (base version) - v2.7.0 - 2021-10-01
* https://kushagra.dev/lab/hint/
* Copyright (c) 2021 Kushagra Gour */
/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*=hint--] {
  position: relative;
  display: inline-block;
  /**
     * tooltip arrow
     */
  /**
     * tooltip body
     */
}

[class*=hint--]:before,
[class*=hint--]:after {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  transition-delay: 0ms;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  visibility: visible;
  opacity: 1;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  transition-delay: 100ms;
}

[class*=hint--]:before {
  content: "";
  position: absolute;
  background: transparent;
  border: 6px solid transparent;
  z-index: 1000001;
}

[class*=hint--]:after {
  background: #383838;
  color: white;
  padding: 8px 10px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 12px;
  white-space: nowrap;
}

[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}

[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:before,
[aria-label=""]:after,
[data-hint=""]:before,
[data-hint=""]:after {
  display: none !important;
}

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top-left:before {
  border-top-color: #383838;
}

.hint--top-right:before {
  border-top-color: #383838;
}

.hint--top:before {
  border-top-color: #383838;
}

.hint--bottom-left:before {
  border-bottom-color: #383838;
}

.hint--bottom-right:before {
  border-bottom-color: #383838;
}

.hint--bottom:before {
  border-bottom-color: #383838;
}

.hint--left:before {
  border-left-color: #383838;
}

.hint--right:before {
  border-right-color: #383838;
}

/**
 * top tooltip
 */
.hint--top:before {
  margin-bottom: -11px;
}

.hint--top:before,
.hint--top:after {
  bottom: 100%;
  left: 50%;
}

.hint--top:before {
  left: calc(50% - 6px);
}

.hint--top:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hint--top:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--top:hover:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px);
}

/**
 * bottom tooltip
 */
.hint--bottom:before {
  margin-top: -11px;
}

.hint--bottom:before,
.hint--bottom:after {
  top: 100%;
  left: 50%;
}

.hint--bottom:before {
  left: calc(50% - 6px);
}

.hint--bottom:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hint--bottom:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--bottom:hover:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px);
}

/**
 * right tooltip
 */
.hint--right:before {
  margin-left: -11px;
  margin-bottom: -6px;
}

.hint--right:after {
  margin-bottom: -14px;
}

.hint--right:before,
.hint--right:after {
  left: 100%;
  bottom: 50%;
}

.hint--right:hover:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px);
}

.hint--right:hover:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px);
}

/**
 * left tooltip
 */
.hint--left:before {
  margin-right: -11px;
  margin-bottom: -6px;
}

.hint--left:after {
  margin-bottom: -14px;
}

.hint--left:before,
.hint--left:after {
  right: 100%;
  bottom: 50%;
}

.hint--left:hover:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px);
}

.hint--left:hover:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px);
}

/**
 * top-left tooltip
 */
.hint--top-left:before {
  margin-bottom: -11px;
}

.hint--top-left:before,
.hint--top-left:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-left:before {
  left: calc(50% - 6px);
}

.hint--top-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}

.hint--top-left:after {
  margin-left: 12px;
}

.hint--top-left:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--top-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px);
}

/**
 * top-right tooltip
 */
.hint--top-right:before {
  margin-bottom: -11px;
}

.hint--top-right:before,
.hint--top-right:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-right:before {
  left: calc(50% - 6px);
}

.hint--top-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}

.hint--top-right:after {
  margin-left: -12px;
}

.hint--top-right:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--top-right:hover:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

/**
 * bottom-left tooltip
 */
.hint--bottom-left:before {
  margin-top: -11px;
}

.hint--bottom-left:before,
.hint--bottom-left:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-left:before {
  left: calc(50% - 6px);
}

.hint--bottom-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}

.hint--bottom-left:after {
  margin-left: 12px;
}

.hint--bottom-left:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--bottom-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px);
}

/**
 * bottom-right tooltip
 */
.hint--bottom-right:before {
  margin-top: -11px;
}

.hint--bottom-right:before,
.hint--bottom-right:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-right:before {
  left: calc(50% - 6px);
}

.hint--bottom-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}

.hint--bottom-right:after {
  margin-left: -12px;
}

.hint--bottom-right:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--bottom-right:hover:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 *
 */
.hint--small:after,
.hint--medium:after,
.hint--large:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word;
}

.hint--small:after {
  width: 80px;
}

.hint--medium:after {
  width: 150px;
}

.hint--large:after {
  width: 300px;
}

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after,
.hint--always:before {
  opacity: 1;
  visibility: visible;
}

.hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--always.hint--top:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px);
}

.hint--always.hint--top-left:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--always.hint--top-left:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px);
}

.hint--always.hint--top-right:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--always.hint--top-right:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--always.hint--bottom:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px);
}

.hint--always.hint--bottom-left:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--always.hint--bottom-left:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px);
}

.hint--always.hint--bottom-right:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--always.hint--bottom-right:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px);
}

.hint--always.hint--left:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px);
}

.hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px);
}

.hint--always.hint--right:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px);
}

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version %%INJECT_VERSION%%
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  transition: left 0.4s ease, transform 0.4s ease;
}

#baguetteBox-slider.bounce-from-right {
  animation: bounceFromRight 0.4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  animation: bounceFromLeft 0.4s ease-out;
}

@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }

  50% {
    margin-left: -30px;
  }

  100% {
    margin-left: 0;
  }
}

@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }

  50% {
    margin-left: 30px;
  }

  100% {
    margin-left: 0;
  }
}

.baguetteBox-button#previous-button,
.baguetteBox-button#next-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  transition: background-color 0.4s ease;
}

.baguetteBox-button:focus,
.baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
  right: 2%;
}

.baguetteBox-button#previous-button {
  left: 2%;
}

.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  animation-delay: -1s;
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

html {
  font-family: "FiraSans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-variant-ligatures: none;
}

html.rotis {
  font-family: "FiraSans", sans-serif;
}

html.fira {
  font-family: "FiraSans";
}

blockquote {
  position: relative;
  padding: 0.5rem 0 0.5rem 0.75rem;
  font-style: italic;
  font-variant-ligatures: none;
}

blockquote:before {
  font-family: Georgia, serif;
  content: "“";
  font-size: 6em;
  line-height: 0;
  color: rgba(0, 56, 130, 0.15);
  position: absolute;
  top: 2rem;
  left: -0.5rem;
}

details summary {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  line-height: 1.15;
}

h1 {
  margin-top: 0;
}

h1 {
  font-size: 1.5em;
}

h2 {
  font-size: 1.35em;
}

h3 {
  font-size: 1.25em;
}

h4 {
  font-size: 1.2em;
}

h5 {
  font-size: 1.125em;
}

h6 {
  font-size: 1.125em;
}

@media all and (min-width: 49rem) {
  h1 {
    font-size: 2.125em;
  }

  h2 {
    font-size: 1.602em;
  }

  h3 {
    font-size: 1.324em;
  }

  h4 {
    font-size: 1.266em;
  }

  h5 {
    font-size: 1.125em;
  }

  h6 {
    font-size: 1.125em;
  }
}

.hyphenate {
  hyphens: auto;
  word-break: break-word;
}

a {
  color: #003882;
  text-decoration: none;
}

a:focus,
a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: square;
  margin-bottom: 1.25em;
  margin-left: 1em;
}

@media all and (min-width: 49rem) {
  ul {
    margin-left: 0;
  }
}

.rte-content ul,
.rte-content ol {
  margin-left: 1em;
}

ol {
  list-style-type: decimal;
  margin-bottom: 1.25em;
}

dl:not([class]) {
  display: table;
}

dl:not([class]) div {
  display: table-row;
}

dl:not([class]) div:first-child dt,
dl:not([class]) div:first-child dd {
  border-top: 1px solid #ECECEC;
}

dl:not([class]) dt {
  display: table-cell;
  margin-right: 0.5em;
  border-bottom: 1px solid #ECECEC;
  padding: 0.625rem 0.75em 0.625rem 0;
}

dl:not([class]) dd {
  display: table-cell;
  padding: 0.625rem 0;
  font-weight: 700;
  border-bottom: 1px solid #ECECEC;
}

p {
  margin-bottom: 1.25em;
}

.price {
  font-weight: 700;
  font-size: 1.125em;
}

.price__currency {
  font-size: 0.9em;
}

.grant {
  font-weight: 400;
  font-size: 0.875rem;
  position: relative;
  top: -1px;
  color: #535353;
}

.grant a {
  color: inherit;
  text-decoration: underline;
}

.grant a:focus,
.grant a:hover {
  text-decoration: none;
}

.grant:not(:first-child) {
  margin-left: 0.75em;
}

.grant .icon--inline {
  top: 5px;
}

.cmnstr-table {
  width: 100%;
}

.cmnstr-table th {
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #CCC;
  padding: 0.25em 0.5em;
}

.cmnstr-table th:first-child {
  padding-left: 0;
}

.cmnstr-table th:last-child {
  padding-right: 0;
}

.cmnstr-table td {
  vertical-align: baseline;
  padding: 0.25em 0.5em;
  border-bottom: 1px dotted #CCC;
}

.cmnstr-table td:first-child {
  padding-left: 0;
}

.cmnstr-table td:last-child {
  padding-right: 0;
}

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

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

.video-link {
  display: inline-flex;
  font-weight: 700;
  align-items: center;
}

.video-link:before {
  content: "";
  width: 32px;
  height: 32px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolygon points='10 8 16 12 10 16 10 8'%3E%3C/polygon%3E%3C/svg%3E") no-repeat scroll center center;
  margin-right: 0.5em;
}

.button {
  transition: all 0.2s ease-in-out;
  display: inline-block;
  font-family: "FiraSans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  padding: 0.5em 1.5em;
  border-radius: 0;
  cursor: pointer;
}

.button:focus,
.button:hover {
  text-decoration: none;
}

.button--small {
  font-size: 0.75em;
}

.button--simple {
  padding: 0;
  background-color: transparent;
  color: currentcolor;
}

.button--simple:focus,
.button--simple:hover {
  color: #94C11C;
}

.button--primary {
  background-color: #94C11C;
  color: #FFF;
}

.button--primary:focus,
.button--primary:hover {
  background-color: #9ece1e;
}

.button--secondary,
.searchform .filter .button {
  background-color: #000;
  color: #FFF;
}

.button--secondary:focus,
.searchform .filter .button:focus,
.button--secondary:hover,
.searchform .filter .button:hover {
  background-color: #333333;
}

.button--blue {
  background-color: #0080C8;
  color: #FFF;
}

.button--blue:focus,
.button--blue:hover {
  background-color: #008ddc;
}

.button--orange {
  background-color: #EF7C00;
  color: #FFF;
}

.button--orange:focus,
.button--orange:hover {
  background-color: #ff8604;
}

.button-set {
  display: flex;
}

.button-set .button:nth-last-child(2):first-child,
.button-set .button:nth-last-child(2):first-child~.button {
  width: 49%;
  margin-right: 2%;
}

.button-set .button:last-child {
  margin-right: 0;
}

.breadcrumbs {
  font-size: 0.875em;
  margin-bottom: 1.25rem;
}

@media all and (min-width: 49rem) {
  .breadcrumbs {
    margin-bottom: 2rem;
  }
}

.breadcrumbs__item {
  display: none;
}

.breadcrumbs__item:before,
.breadcrumbs__item:after {
  font-size: 0.8rem;
  line-height: 1;
  color: #535353;
}

.breadcrumbs__item:nth-last-child(2) {
  display: block;
}

.breadcrumbs__item:nth-last-child(2):before {
  content: "❮";
}

.breadcrumbs__item a {
  color: #535353;
  text-decoration: underline;
}

.breadcrumbs__item a:focus,
.breadcrumbs__item a:hover {
  text-decoration: none;
}

@media all and (min-width: 49rem) {
  .breadcrumbs ol {
    display: flex;
  }

  .breadcrumbs__item {
    display: flex;
    align-items: center;
  }

  .breadcrumbs__item:nth-last-child(2) {
    display: flex;
  }

  .breadcrumbs__item:nth-last-child(2):before {
    content: "";
    display: none;
  }

  .breadcrumbs__item:not(:last-child):after {
    content: "❯";
    margin: 0 0.5em;
  }

  .breadcrumbs__item a {
    display: block;
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .breadcrumbs__item--current a {
    text-decoration: none;
  }

  .breadcrumbs__item--current a:focus,
  .breadcrumbs__item--current a:hover {
    text-decoration: underline;
  }
}

.poc:before {
  content: attr(title);
  display: block;
  font-size: 0.875em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.poc__image {
  display: block;
  max-width: 100%;
  height: auto;
}

.poc__details {
  position: relative;
  font-size: 1rem;
}

.poc__name {
  position: absolute;
  top: -2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.poc__name>span {
  display: inline;
  background-color: #003882;
  color: #FFF;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.1em;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5rem 0 0 #003882, -0.75rem 0 0 #003882;
}

.poc__name--blue>span {
  background-color: #0080C8;
  box-shadow: 0.5rem 0 0 #0080C8, -0.75rem 0 0 #0080C8;
}

.poc__name--orange>span {
  background-color: #EF7C00;
  box-shadow: 0.5rem 0 0 #EF7C00, -0.75rem 0 0 #EF7C00;
}

.poc__name--violet>span {
  background-color: #A52D67;
  box-shadow: 0.5rem 0 0 #A52D67, -0.75rem 0 0 #A52D67;
}

.poc__contact {
  padding-top: 1em;
}

.grid-list .poc__name,
.grid-list .poc__details {
  font-size: 0.875rem;
}

.booking {
  background-color: #ECECEC;
  padding: 4.5em 0.75em 0.75em;
  position: relative;
}

@media all and (min-width: 600px) {
  .booking {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.booking p {
  margin: 0;
}

.booking__essentials {
  color: #FFF;
  font-weight: 700;
  padding: 0.25em 0.5em 0.25em 1.75em;
  line-height: 1.4;
  position: absolute;
  top: 0.75em;
  left: -1em;
}

.booking__essentials a {
  font-size: 0.875em;
  font-weight: 400;
  color: #FFF;
  text-decoration: underline;
}

.booking__essentials a:focus,
.booking__essentials a:hover {
  text-decoration: none;
}

.booking__place {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking__place a {
  font-size: 0.875em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #FFF;
  text-decoration: underline;
  margin-left: 0.5em;
  position: relative;
  top: -1px;
}

.booking__place a:focus,
.booking__place a:hover {
  text-decoration: none;
}

.booking__status {
  margin-bottom: 1em;
  font-size: 0.875em;
  font-weight: 700;
}

.booking__status>.indicator {
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  top: 2px;
}

@media all and (min-width: 520px) {
  .booking__status {
    margin-bottom: 0;
    position: absolute;
    top: 1em;
    right: 0.75em;
    text-align: right;
  }
}

.booking__notice {
  display: block;
  color: #FFF;
  background-color: #94C11C;
  font-weight: 400;
  font-size: 0.75rem;
  padding: 0.125em 0.5em 0;
  margin-top: 0.25rem;
}

.booking .info-icon {
  border-radius: 50%;
  display: inline-block;
  height: 1rem;
  width: 1rem;
  text-align: center;
  border: 1px solid currentColor;
  font-size: 0.6rem;
  cursor: pointer;
  font-weight: 700;
  margin-left: 0.5em;
}

.booking .info-icon:before {
  border-bottom-color: #FFF;
}

.booking .info-icon:after {
  font-family: "FiraSans", sans-serif;
  color: #000;
  background-color: #FFF;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  text-align: left;
  font-weight: 400;
  word-wrap: normal;
  hyphens: none;
  width: 180px;
}

.booking__late-entry {
  background: #94C11C;
  display: block;
  margin-top: 0.5em;
  color: #FFF;
  font-size: 0.8em;
  padding: 0 0.5em;
}

.booking--available .booking__status>.indicator {
  background-color: #79D34E;
}

.booking--sparse .booking__status>.indicator {
  background-color: #ECDD12;
}

.booking--full .booking__status>.indicator {
  background-color: #F1614D;
}

.booking--available {
  border-right: #98dd77 4px solid;
}

.booking--sparse {
  border-right: #f0e441 4px solid;
}

.booking--full {
  border-right: #f58b7c 4px solid;
}

.booking__facts {
  font-size: 0.875em;
  width: 100%;
  display: table;
  overflow: hidden;
}

@media all and (min-width: 600px) {
  .booking__facts {
    max-width: 50%;
    width: 100%;
    margin-right: auto;
  }
}

.booking__facts div {
  display: table-row;
}

.booking__facts dt {
  display: table-cell;
  white-space: nowrap;
  hyphens: initial;
  word-break: initial;
  width: 25%;
  padding-right: 5px;
}

.booking__facts dd {
  display: table-cell;
}

.booking__action {
  text-align: right;
  margin-top: 1.25rem;
  white-space: nowrap;
}

.booking__action p {
  line-height: 1.25;
}

.booking__action .button {
  margin-top: 0.5em;
}

@media all and (min-width: 600px) {
  .booking__action {
    margin-left: 1.25em;
  }
}

.booking--theme-blue .booking__essentials {
  background-color: #0080C8;
}

.booking--theme-orange .booking__essentials {
  background-color: #EF7C00;
}

.booking--theme-violet .booking__essentials {
  background-color: #A52D67;
}

.booking .fees {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.booking .fees:hover .fees__bubble {
  z-index: 2;
  opacity: 1;
}

.booking .fees__bubble {
  position: absolute;
  z-index: -1;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  font-size: 0.75rem;
  width: 300px;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translateY(-99%);
  transition: opacity 0.3s ease;
}

.booking .fees__bubble:before {
  content: "";
  position: absolute;
  background: transparent;
  border: 8px solid transparent;
  border-top-color: #FFF;
  z-index: 1000001;
  bottom: 2px;
  right: 80px;
  transform: translateY(100%);
}

.booking .fees__bubble p {
  white-space: normal;
  text-align: left;
  hyphens: none;
  line-height: 1.5;
}

.booking .fees__bubble p:not(:last-child) {
  margin-bottom: 0.5rem;
}

.booking .fees__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  line-height: 1;
  cursor: help;
}

.booking .fees__icon>svg {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
}

.booking-list {
  list-style-type: none;
  margin: 1.25em 0;
}

.booking-list__item {
  margin-bottom: 1.25rem;
}

.booking-wrapper {
  position: relative;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=date],
input[type=password],
input[type=search],
input[type=url] {
  transition: all 0.2s ease-in-out;
  display: block;
  width: 100%;
  border: 1px solid #ECECEC;
  border-radius: 0;
  padding: 0.25em 0.5em;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

input[type=text]:focus,
input[type=text]:hover,
input[type=tel]:focus,
input[type=tel]:hover,
input[type=email]:focus,
input[type=email]:hover,
input[type=number]:focus,
input[type=number]:hover,
input[type=date]:focus,
input[type=date]:hover,
input[type=password]:focus,
input[type=password]:hover,
input[type=search]:focus,
input[type=search]:hover,
input[type=url]:focus,
input[type=url]:hover {
  border-color: #535353;
}

label {
  display: inline-block;
  font-size: 0.875em;
  font-weight: 700;
  cursor: pointer;
}

.inputfield {
  margin-bottom: 1em;
}

.inputfield p {
  margin-bottom: 0;
}

.inputfield__note {
  font-size: 0.875em;
  color: #535353;
  margin: 0.25em 0 0;
}

.inputfield__status {
  font-size: 0.875em;
  margin: 0.25em 0 0;
  display: inline-block;
  padding: 0 0.75em;
}

.inputfield__status--error {
  background-color: rgba(241, 97, 77, 0.2);
  border-left: 3px solid #F1614D;
}

.inputfield__status--warning {
  background-color: rgba(236, 221, 18, 0.2);
  border-left: 3px solid #ECDD12;
}

.inputfield__status--success {
  background-color: rgba(121, 211, 78, 0.2);
  border-left: 3px solid #79D34E;
}

.inputfield__optionlist {
  list-style-type: none;
}

.inputfield__optionlist li {
  margin-bottom: 0.25em;
}

.inputfield__heading {
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 0.75rem !important;
}

.birthday-input {
  display: flex;
  gap: 5px;
}

.birthday-input label {
  font-weight: 400;
}

.Inputfields {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.Inputfields .Inputfield {
  width: 100%;
  display: block;
  margin-bottom: 0.75em;
  flex-grow: 0;
}

.Inputfields .InputfieldSubmit {
  margin-top: 1em;
}

.Inputfields .Inputfield .description {
  font-size: 0.875em;
  margin-bottom: 0.5em;
}

.InputfieldError {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: #F1614D;
}

.InputfieldStateRequired>label:after {
  content: "*";
  margin-left: 0.25em;
  color: #F1614D;
}

.InputfieldCheckbox.InputfieldStateRequired>.InputfieldContent>label>span.pw-no-select::after {
  content: "";
  display: none;
}

.InputfieldContent p.detail {
  padding: 0.25em 0.75em;
  font-size: 0.875rem;
  background-color: rgba(236, 221, 18, 0.2);
}

.FormBuilder.InputfieldForm fieldset.InputfieldFieldset .InputfieldFieldset {
  border: none;
  padding: 0;
  margin: 1.5rem 0;
}

#Inputfield_angaben_zur_rechnung legend::after,
#Inputfield_teilnehmerdaten_hinweis label:after,
#Inputfield_teilnehmerdaten_firma_hinweis label:after,
#Inputfield_telefonnummer_hinweis label:after {
  content: "*";
  color: red;
  margin-left: 0.25em;
}

label[for=Inputfield_re_email_persoenlich]:after,
label[for=Inputfield_re_email_firma]:after,
label[for=Inputfield_teilnehmerdaten_mobil]:after,
label[for=Inputfield_teilnehmerdaten_telefon]:after,
label[for=Inputfield_teilnehmerdaten_firma_tn_mobil]:after,
label[for=Inputfield_teilnehmerdaten_firma_tn_telefon]:after,
label[for=Inputfield_mobil]:after,
label[for=Inputfield_telefon]:after {
  content: "";
  display: none;
}

.package-options {
  margin-top: 0.75rem;
}

.package-options .InputfieldRadios {
  border: 1px solid #003882;
  display: block;
  width: 100%;
}

.package-options label.InputfieldHeader {
  color: #FFF;
  background-color: #003882;
  width: 100%;
  display: block;
  padding: 0.5rem;
  margin-bottom: 1.25em;
}

.package-options ul.InputfieldRadiosStacked {
  display: flex;
  text-align: center;
  justify-content: space-between;
}

.package-options ul.InputfieldRadiosStacked>li {
  width: 31%;
}

.package-options ul.InputfieldRadiosStacked label {
  display: block;
  width: 100%;
}

.package-options ul.InputfieldRadiosStacked input[type=radio] {
  margin: 0 0 0.25rem;
}

.package-options ul.InputfieldRadiosStacked input[type=radio]:checked~span {
  color: #003882;
}

.package-options ul.InputfieldRadiosStacked span {
  display: block;
  min-height: 1.5em;
}

.package-options ul.InputfieldRadiosStacked .pw-no-select {
  font-size: 1.125rem;
}

.package-options ul.InputfieldRadiosStacked .price-option {
  font-size: 0.875rem;
  font-weight: 400;
}

fieldset {
  width: 100%;
}

.form-success-newsletter {
  margin-top: 5rem;
}

.feedback__intro {
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.feedback__category {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.feedback__course {
  margin-bottom: 0rem;
}

.feedback__lecturer {
  margin-bottom: 0;
}

.feedback__rating {
  margin: 1.5rem 0;
  list-style-type: none;
  display: flex;
  gap: 1rem;
}

.feedback__rating label {
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.2s ease;
  display: block;
}

.feedback__rating label img {
  display: block;
}

.feedback__rating input[type=radio] {
  display: none;
}

.feedback__rating input[type=radio]:checked+label {
  opacity: 1;
  transform: none;
}

.feedback__rating input[type=radio]:not(:disabled)+label:hover {
  opacity: 1;
  transform: none;
}

.feedback__comment {
  margin-bottom: 1.5rem;
}

.feedback__comment textarea {
  transition: all 0.2s ease-in-out;
  display: block;
  width: 100%;
  border: 1px solid #ECECEC;
  border-radius: 0;
  padding: 0.25em 0.5em;
  min-height: 10rem;
  resize: none;
}

.feedback__comment textarea:disabled {
  background-color: #f1f1f1;
}

.feedback__comment textarea:not(:disabled):focus,
.feedback__comment textarea:not(:disabled):hover {
  border-color: #535353;
}

.filter {
  margin-bottom: 1.25rem;
}

.filter:after {
  content: "";
  display: table;
  clear: both;
}

.filter details {
  margin-top: 1rem;
}

.filter details summary {
  background-color: #003882;
  color: #FFF;
  padding: 0 0.3em;
}

.filter details[open] summary {
  margin-bottom: 0.5rem;
}

.filter input[type=number],
.filter input[type=date] {
  display: inline-block;
  width: 100%;
  min-height: 35.6px;
  max-width: 100%;
}

@media all and (min-width: 49rem) {

  .filter input[type=number],
  .filter input[type=date] {
    width: auto;
    max-width: 150px;
  }
}

.filter input[type=number]:not(:last-child),
.filter input[type=date]:not(:last-child) {
  margin-right: 1rem;
}

.filter__wrapper {
  display: block;
}

@media all and (min-width: 49rem) {
  .filter__wrapper {
    display: flex;
  }
}

.filter__label {
  margin-bottom: 0.75em;
  border-bottom: lightgray solid 1px;
  font-size: 0.875rem;
}

.filter label small {
  display: block;
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: 400;
}

.filter__element,
.filter__wrapper>div {
  flex-grow: 1;
}

.filter__wrapper>div .filter__element {
  margin-right: 0;
}

.filter__element {
  margin: 1rem;
  background-color: #ECECEC;
  padding: 0.5rem;
}

.filter__element:first-child {
  margin-right: 0;
}

.filter__element:first-child {
  margin-top: 0;
}

.filter__flex {
  display: flex;
  align-items: baseline;
}

.filter__flex:not(:last-child) {
  margin-bottom: 0.75rem;
}

.filter__flex input {
  margin-right: 0.5rem;
}

.filter button {
  float: right;
}

.page-header {
  position: relative;
  background-size: 100%;
  padding-top: 1.25rem;
  margin-bottom: 1.25rem;
}

@media all and (min-width: 49rem) {
  .page-header {
    margin-bottom: 2rem;
  }
}

.page-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #FFF;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  padding-top: 0.5em;
}

.page-header--sticky .logo,
.page-header--sticky .logo>img {
  max-height: 2.25rem;
}

.page-header--sticky .logo>img:not(.logo__alt) {
  display: none;
}

.page-header--sticky .logo__alt {
  display: block !important;
  width: auto;
  height: 2.25rem;
}

.page-header--sticky .searchform {
  padding-top: 2.75em;
}

.page-header--sticky .searchform__label {
  display: none;
}

.page-header--sticky .searchform button {
  top: 0.5em;
}

@media (min-width: 49rem) {
  .page-header--sticky .searchform__form {
    top: 0;
    left: 220px;
    width: 270px;
  }
}

@media (min-width: 70rem) {
  .page-header--sticky .searchform__form {
    width: 350px;
  }
}

.page-header--sticky .meta {
  display: none;
}

.page-header--sticky .meta__icons {
  display: none !important;
}

@media (min-width: 480px) {
  .page-header--sticky .meta {
    display: block;
    top: 0.5rem;
  }

  .page-header--sticky .meta ul {
    display: flex;
  }

  .page-header--sticky .meta ul li:not(:first-child) {
    margin-left: 1em;
  }
}

@media (min-width: 49rem) and (max-height: 800px) {
  .page-header--sticky .menu ul.menu__theme {
    max-height: 60vh;
    overflow: auto;
    padding-bottom: 30px;
  }

  .page-header--sticky .menu .menu__align {
    position: relative;
  }

  .page-header--sticky .menu .menu__align:after {
    display: block;
    content: "";
    background: linear-gradient(rgba(0, 0, 0, 0), black);
    height: 30px;
    width: 100%;
    position: absolute;
    bottom: 3px;
    left: 0;
  }
}

.page-header .wrapper {
  position: relative;
}

.logo {
  position: absolute;
  left: 1.25rem;
  top: 0rem;
}

.logo__alt {
  display: none !important;
}

.logo img {
  display: block;
}

.meta {
  position: absolute;
  top: 0;
  right: 1.25rem;
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.meta ul {
  text-align: right;
  margin: 0;
  list-style-type: none;
}

.meta ul li {
  margin-bottom: 0.35rem;
}

.meta__icons {
  display: none;
}

@media (min-width: 49rem) {
  .meta__icons {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.75rem !important;
    /*.icon, .icon path {
    	fill: $corporateBlue;
    }*/
  }

  .meta__icons .icon {
    height: 20px;
    width: auto;
    max-width: 25px;
  }
}

@media all and (min-width: 49rem) {
  .meta ul {
    display: flex;
  }

  .meta ul li {
    margin-bottom: 0.25rem;
  }

  .meta ul li:not(:first-child) {
    margin-left: 1em;
  }
}

.searchform {
  padding-top: 6em;
}

.searchform__trigger {
  display: block;
  color: #FFF;
  position: absolute;
  right: 1.25rem;
  top: -2px;
  z-index: 10;
}

.searchform__trigger label {
  cursor: pointer;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1;
  padding: 0.75em 0;
}

.searchform__trigger svg {
  position: relative;
  top: 2px;
  margin-left: 0.5em;
}

@media (min-width: 49rem) {
  .searchform__trigger {
    display: none;
  }
}

.searchform__checkbox {
  display: none;
}

.searchform__checkbox:checked+.searchform__form {
  max-height: 800px;
  margin-bottom: 1em;
}

.searchform__form {
  transition: max-height 0.2s ease-in-out;
  position: relative;
  max-height: 0;
  overflow: hidden;
}

@media (min-width: 49rem) {
  .searchform__form {
    overflow: visible;
  }
}

.searchform__label {
  color: #535353;
  font-weight: 700;
  font-size: 0.875em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.searchform input[type=search] {
  border: none;
  border-bottom: 1px solid #ECECEC;
  padding: 0.25em 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.searchform input[type=search]:focus,
.searchform input[type=search]:hover {
  border-bottom-color: #535353;
}

.searchform button {
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 0;
  top: 2em;
  z-index: 10;
}

@media all and (min-width: 49rem) {
  .searchform__form {
    max-height: none;
    position: absolute;
    top: 20px;
    left: 180px;
    width: 350px;
  }
}

.searchform .filter {
  background-color: #FFF;
  z-index: 100000;
  padding: 1rem 0;
}

.searchform .filter__element {
  margin-left: 0;
}

@media (min-width: 49rem) {
  .searchform .filter {
    display: none;
    position: relative;
    padding: 1rem 1rem 1rem 0;
    left: -1rem;
    width: 600px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  }

  .searchform .filter--active {
    display: block;
  }

  .searchform .filter__element {
    margin-left: 1rem;
  }
}

.searchform .filter .button {
  position: static;
  padding: 0.5em 1.5em;
}

.menu {
  background-color: #000;
  color: #FFF;
  font-size: 0.875em;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
}

@media all and (min-width: 70rem) {
  .menu {
    font-size: 1em;
  }
}

.menu a {
  color: #FFF;
}

.menu a:focus,
.menu a:hover {
  color: #9ece1e;
  text-decoration: none;
}

.menu .menu__indicator+a:hover,
.menu .menu__indicator+a:focus {
  color: #000;
}

@media all and (min-width: 49rem) {

  .menu .menu__indicator+a:hover,
  .menu .menu__indicator+a:focus {
    color: #FFF;
  }
}

.menu ul {
  list-style-type: none;
  margin: 0;
}

.menu__trigger {
  background-color: #000;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #000;
  cursor: pointer;
  line-height: 1;
  padding: 0.75em;
  display: block;
  position: relative;
  font-size: 1em;
}

@media all and (min-width: 49rem) {
  .menu__trigger {
    display: none !important;
  }
}

.menu__trigger svg {
  position: relative;
  margin-right: 0.5em;
  stroke: #000;
}

.menu__trigger--close,
.menu__trigger--prev,
.menu__trigger--next {
  background: transparent;
}

.menu__trigger--open {
  padding: 0.75em 0;
  color: #FFF;
}

.menu__trigger--open svg {
  top: 1px;
  stroke: #FFF;
}

.menu__trigger--close {
  font-size: 0.75em;
}

.menu__trigger--close svg {
  top: 5px;
}

.menu__trigger--prev {
  font-size: 0.75em;
}

.menu__trigger--prev svg {
  top: 4px;
}

.menu__trigger--next {
  width: 40px;
  text-align: center;
  flex-grow: 0;
}

.menu__trigger--next svg {
  position: relative;
  top: 2px;
}

.menu__checkbox {
  display: none;
}

.menu__checkbox:checked+.menu__wrapper,
.menu__checkbox:checked+.menu__wrapper--inner {
  right: 0;
  z-index: 100;
}

.menu__wrapper {
  transition: all 0.2s ease-in-out;
  background-color: #FFF;
  position: fixed;
  width: 100%;
  max-width: 500px;
  height: 100%;
  left: auto;
  right: -100%;
  top: 0;
  z-index: 10;
  overflow-y: auto;
}

.menu__wrapper a {
  color: #000;
}

@media all and (min-width: 49rem) {
  .menu__wrapper {
    background-color: #000;
    position: static;
    max-width: none;
  }

  .menu__wrapper a {
    color: #FFF;
  }
}

.menu__wrapper ul li {
  text-transform: uppercase;
  line-height: 1;
  border-bottom: 1px solid #535353;
  display: flex;
  justify-content: space-between;
}

.menu__wrapper ul li:first-child {
  margin-top: 0.5em;
  border-top: 1px solid #535353;
}

.menu__wrapper ul li a,
.menu__wrapper ul li span {
  flex-grow: 1;
  display: block;
  padding: 0.75em 0.75em 0.5em;
  line-height: 1.5;
  color: #000;
}

.menu__wrapper ul li span:hover {
  cursor: default;
}

@media all and (min-width: 49rem) {
  .menu__wrapper ul li {
    border: none;
    margin: 0;
    display: block;
  }

  .menu__wrapper ul li.menu-divider {
    margin-left: auto;
  }

  .menu__wrapper ul li:first-child {
    margin: 0;
    border: none;
  }

  .menu__wrapper ul li a,
  .menu__wrapper ul li span {
    color: #FFF;
  }
}

@media all and (min-width: 49rem) {
  .menu__wrapper {
    overflow: visible;
    height: auto;
  }

  .menu .wrapper>.menu__wrapper>ul {
    display: flex;
  }

  .menu .wrapper>.menu__wrapper>ul>li {
    position: relative;
  }

  .menu .wrapper>.menu__wrapper>ul>li>.menu__wrapper {
    display: none;
    padding: 1em;
  }

  .menu .wrapper>.menu__wrapper>ul>li>.menu__wrapper li {
    text-transform: none !important;
  }

  .menu .wrapper>.menu__wrapper>ul>li>.menu__wrapper a {
    display: inline;
    padding: 0;
  }

  .menu .wrapper>.menu__wrapper>ul>li:hover>.menu__wrapper {
    display: block;
    position: absolute;
    right: auto;
    left: 0;
    top: 100%;
    width: auto;
  }

  .menu .wrapper>.menu__wrapper>ul>li>.menu__wrapper>ul {
    flex-wrap: wrap;
  }

  .menu .wrapper>.menu__wrapper>ul>li>.menu__wrapper>ul>li {
    display: block;
    white-space: nowrap;
    width: 100%;
  }

  .menu .wrapper>.menu__wrapper>ul>li>.menu__wrapper>ul>li>.menu__wrapper {
    display: block;
  }

  .menu .menu__align--horizontal {
    display: flex;
    flex-wrap: nowrap !important;
  }

  .menu .menu__align--horizontal>li {
    width: auto !important;
  }

  .menu .menu__align--horizontal li {
    width: auto;
  }

  .menu .menu__align--horizontal li:not(:last-child) {
    margin-right: 1.25rem;
  }
}

.menu__theme--blue {
  border-left: 2px solid #0080C8;
}

.menu__theme--blue a:hover,
.menu__theme--blue a:focus {
  color: #0080C8;
}

.menu__theme--orange {
  border-left: 2px solid #EF7C00;
}

.menu__theme--orange a:hover,
.menu__theme--orange a:focus {
  color: #EF7C00;
}

.menu__theme--violet {
  border-left: 2px solid #A52D67;
}

.menu__theme--violet a:hover,
.menu__theme--violet a:focus {
  color: #A52D67;
}

@media all and (min-width: 49rem) {
  .menu__theme {
    border-left: none;
  }
}

.menu__indicator {
  flex-grow: 0;
  width: 0px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.menu__indicator .indicator {
  height: 100%;
  width: 2px;
}

.menu__indicator .indicator--blue {
  background-color: #0080C8;
}

.menu__indicator .indicator--orange {
  background-color: #EF7C00;
}

.menu__indicator .indicator--violet {
  background-color: #A52D67;
}

@media all and (min-width: 49rem) {
  .menu__indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
  }

  .menu__indicator .indicator {
    height: 3px;
    width: auto;
    flex-grow: 1;
  }
}

.menu .separator {
  display: none;
  height: 0;
  border-bottom: 1px solid currentcolor;
  margin: 0.625rem 0 !important;
}

@media all and (min-width: 49rem) {
  .menu .separator {
    display: block;
  }
}

.menu .menu__theme--blue .separator {
  border-bottom: 1px solid #0080C8;
}

.menu .menu__theme--orange .separator {
  border-bottom: 1px solid #EF7C00;
}

.menu .menu__theme--violett .separator {
  border-bottom: 1px solid #A52D67;
}

.menu__description {
  line-height: 1.4;
  text-transform: none;
  margin-top: 0.5em;
  margin-bottom: 0;
}

@media all and (min-width: 49rem) {
  .menu__category {
    font-weight: 700;
    line-height: 1.15 !important;
  }

  .menu__category .menu__description {
    font-weight: 400;
    margin: 0.5rem 0 1.25rem;
  }

  .menu__category--blue {
    color: #0080C8 !important;
  }

  .menu__category--orange {
    color: #EF7C00 !important;
  }

  .menu__category--violet {
    color: #A52D67 !important;
  }
}

.page-header--event {
  background: transparent;
}

.page-header--event .wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.page-header--event .logo {
  display: block;
  float: right;
  position: static;
  width: 60px;
  margin-left: 1rem;
}

@media all and (min-width: 49rem) {
  .page-header--event .logo {
    width: auto;
  }
}

.page-header--event .logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media all and (min-width: 49rem) {
  .page-header--event .event-header {
    max-width: 50%;
  }
}

.page-header--event .event-header__title {
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.25rem;
}

@media all and (min-width: 49rem) {
  .page-header--event .event-header__title {
    font-size: 2rem;
  }
}

.page-header--event .event-header__title>span {
  background-color: #003882;
  color: #FFF;
  padding: 0.1em 0 0;
  margin-left: 0.75rem;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5rem 0 0 #003882, -0.75rem 0 0 #003882;
}

.page-header--event .event-header__subtitle {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

@media all and (min-width: 49rem) {
  .page-header--event .event-header__subtitle {
    font-size: 1.25rem;
  }
}

.page-header--event .event-header__subtitle>span {
  background-color: #000;
  color: #FFF;
  padding: 0.1em 0 0;
  margin-left: 0.75rem;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5rem 0 0 #000, -0.75rem 0 0 #000;
}

.page-header--event .menu--event {
  margin-top: 1.25rem;
  background-color: #003882;
}

.page-header--event .menu--event .menu__trigger--open {
  background-color: #003882;
}

@media all and (min-width: 49rem) {
  .page-header--event .menu--event .menu__wrapper {
    background-color: #003882;
  }
}

.page-header--bgimage {
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.page-header--bgimage:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

.page-header--bgimage .menu {
  margin-top: 12rem;
}

@media all and (min-width: 49rem) {
  .page-header--bgimage .menu {
    margin-top: 24rem;
  }
}

.page-footer {
  background-color: #000;
  color: #FFF;
  font-size: 0.875em;
  padding: 2rem 0 3rem;
  margin-top: 5rem;
}

.page-footer h6:first-of-type {
  margin-top: 0;
}

.page-footer h6 {
  margin-top: 1rem;
}

.page-footer a {
  color: #FFF;
}

.page-footer__block:not(:last-child) {
  margin-bottom: 3.75rem;
}

.page-footer__block *:last-child {
  margin-bottom: 0;
}

.page-footer__block .linklist--inline li {
  white-space: nowrap;
}

@media all and (min-width: 49rem) {
  .page-footer .wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .page-footer__block {
    flex-shrink: 1;
    flex-grow: 1;
    max-width: 30%;
    margin-bottom: 0 !important;
  }

  .page-footer__block:last-of-type {
    text-align: right;
  }

  .page-footer__block:last-of-type .linklist--inline {
    justify-content: end;
    margin-inline-start: auto;
  }

  .page-footer__block .linklist--inline {
    display: flex;
    flex-flow: row wrap;
    gap: 0.75em;
    max-inline-size: 85%;
  }

  .page-footer__block .linklist--inline>li:not(:last-child) {
    margin-inline-end: 0;
  }
}

.linklist {
  margin: 1.25em 0;
  list-style-type: none;
}

.linklist a small {
  color: #535353;
  line-height: 1;
}

.linklist:not(.linklist--inline) li {
  margin-bottom: 0.5em;
}

.linklist--inline li {
  display: inline;
}

.linklist--inline li:not(:last-child) {
  margin-right: 0.75em;
}

.linklist .booking__late-entry {
  display: inline-block;
  margin-right: 0.5em;
  margin-top: 0;
}

.grid-list {
  list-style-type: none;
}

.grid-list li {
  margin-bottom: 1.25rem;
}

@media all and (min-width: 49rem) {
  .grid-list {
    display: flex;
    flex-wrap: wrap;
  }

  .grid-list li {
    width: 46%;
    flex-shrink: 1;
    margin-bottom: 2.5rem;
    margin-right: 8%;
  }

  .grid-list li:nth-child(2n+2) {
    margin-right: 0;
  }

  .grid-list--thirds li {
    width: 31%;
    margin-right: 3.5%;
  }

  .grid-list--thirds li:nth-child(2n+2) {
    margin-right: 3.5%;
  }

  .grid-list--thirds li:nth-child(3n+3) {
    margin-right: 0;
  }
}

.icon--inline {
  margin-right: 0.15em;
  position: relative;
  top: 2px;
}

.cta--banner {
  position: relative;
}

.cta--banner a {
  color: inherit;
}

.cta--banner a:focus,
.cta--banner a:hover {
  text-decoration: none;
}

.cta--banner img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cta--banner .cta__content {
  position: absolute;
  bottom: 1.25rem;
}

.cta--banner .cta__title {
  transition: all 0.2s ease-in-out;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  display: inline-block;
  padding: 0.25rem 0.5rem 0.25rem 1.75rem;
  background-color: #000;
  color: #FFF;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
  margin-left: -1rem;
}

.cta--banner .cta__description {
  transition: all 0.2s ease-in-out;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  background-color: #000;
  color: #FFF;
  margin: 0;
  padding: 0.25rem 0.5rem 0.25rem 0.75rem;
  max-width: 80%;
}

.cta--banner a:hover .cta__description,
.cta--banner a:focus .cta__description {
  background-color: #333333;
}

.cta--olc .cta__content {
  position: relative;
  margin-bottom: 1.25rem;
}

.cta--olc .cta__content:after {
  content: "";
  display: table;
  clear: both;
}

.cta--olc h2 {
  margin-top: 0;
}

.cta--olc img {
  float: right;
  width: 130px;
  shape-outside: polygon(59px 0px, 45px 68px, 16px 102px, 3px 132px, 1px 175px, 25px 212px, 26px 243px, 130px 242px, 130px 0px);
}

.cta--olc .cta__description {
  margin-bottom: 0;
}

.cta--theme-blue .cta__title {
  background-color: #0080C8;
}

.cta--theme-blue a:focus .cta__title,
.cta--theme-blue a:hover .cta__title {
  background-color: #00a1fb;
}

.cta--theme-orange .cta__title {
  background-color: #EF7C00;
}

.cta--theme-orange a:focus .cta__title,
.cta--theme-orange a:hover .cta__title {
  background-color: #ff9523;
}

.cta--theme-violet .cta__title {
  background-color: #A52D67;
}

.cta--theme-violet a:focus .cta__title,
.cta--theme-violet a:hover .cta__title {
  background-color: #ca3b80;
}

.course a {
  transition: all 0.2s ease-in-out;
  color: inherit;
  display: block;
  padding: 1.25rem 0.5rem;
}

.course a:focus,
.course a:hover {
  text-decoration: none;
}

.course p {
  margin: 0;
}

.course__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.course__date,
.course__location {
  color: #535353;
  line-height: 1.4;
}

.course__description {
  color: #535353;
}

.course__price {
  text-align: right;
}

.course__status>.indicator {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  position: relative;
  top: 2px;
}

.course__late-entry {
  display: inline-block;
  color: #FFF;
  font-size: 0.8em;
  line-height: 1.25;
}

.course__late-entry>span {
  display: inline;
  background-color: #94C11C;
  color: #FFF;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.05em;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5em 0 0 #94C11C, -0.5em 0 0 #94C11C;
}

.course__status--available .indicator {
  background-color: #79D34E;
}

.course__status--sparse .indicator {
  background-color: #ECDD12;
}

.course__status--full .indicator {
  background-color: #F1614D;
}

.course .event-table {
  display: block;
  margin-bottom: 1.25rem;
  border-top: 1px solid #ECECEC;
  width: 100%;
}

.course .event-table tr {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 0 4px;
  border-bottom: 1px solid #ECECEC;
}

.course .event-table td {
  display: block;
  width: 50%;
}

.course .event-table__location,
.course .event-table__price {
  text-align: right;
}

@media all and (min-width: 670px) {
  .course .event-table {
    display: table;
  }

  .course .event-table tr {
    display: table-row;
  }

  .course .event-table td:not(:last-child) {
    padding-right: 1em;
  }

  .course .event-table td {
    display: table-cell;
    width: auto;
    vertical-align: baseline;
    padding-top: 5px;
    padding-bottom: 4px;
    border-bottom: 1px solid #ECECEC;
  }

  .course .event-table__date {
    width: 27% !important;
  }

  .course .event-table__location {
    text-align: left;
    width: 25% !important;
  }

  .course .event-table__status {
    width: 35% !important;
  }

  .course .event-table__price {
    text-align: right;
  }
}

.course--theme-blue {
  border-color: rgba(0, 128, 200, 0.3) !important;
}

.course--theme-blue a:focus,
.course--theme-blue a:hover {
  background-color: rgba(0, 128, 200, 0.1);
}

.course--theme-blue .course__title {
  color: #0080C8;
}

.course--theme-orange {
  border-color: rgba(239, 124, 0, 0.3) !important;
}

.course--theme-orange a:focus,
.course--theme-orange a:hover {
  background-color: rgba(239, 124, 0, 0.1);
}

.course--theme-orange .course__title {
  color: #EF7C00;
}

.course--theme-violet {
  border-color: rgba(165, 45, 103, 0.3) !important;
}

.course--theme-violet a:focus,
.course--theme-violet a:hover {
  background-color: rgba(165, 45, 103, 0.1);
}

.course--theme-violet .course__title {
  color: #A52D67;
}

.course-list {
  list-style-type: none;
  margin: 1.25rem 0;
}

.course-list li {
  border-bottom: 1px solid #ECECEC;
}

.course-list li:first-child {
  border-top: 1px solid #ECECEC;
}

.course-list.main-category h3 {
  margin: 0;
}

.course-list.course--theme-blue .course__title,
.course-list.course--theme-orange .course__title,
.course-list.course--theme-violet .course__title {
  color: #000;
}

.hero a {
  color: #FFF;
}

.hero a:focus,
.hero a:hover {
  color: #FFF;
  text-decoration: none;
}

.hero__item {
  overflow: visible !important;
  position: relative;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero__video {
  display: block;
  max-width: 100%;
  height: auto;
}

@media all and (min-width: 49rem) {
  .hero__content {
    position: absolute;
    left: 0;
    bottom: 1.25rem;
  }
}

.hero__title {
  margin: 0 0 0.25em;
  color: #FFF;
  text-transform: uppercase;
  line-height: 1.35;
}

.hero__title>span {
  display: inline;
  background-color: #003882;
  color: #FFF;
  padding-top: 0.25em;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.1em;
  margin-left: 0.5rem;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5rem 0 0 #003882, -0.5rem 0 0 #003882;
}

@media all and (min-width: 49rem) {
  .hero__title {
    font-size: 2em;
  }
}

.hero__item.blue .hero__title>span {
  background-color: #0080C8;
  box-shadow: 0.5rem 0 0 #0080C8, -0.5rem 0 0 #0080C8;
}

.hero__item.orange .hero__title>span {
  background-color: #EF7C00;
  box-shadow: 0.5rem 0 0 #EF7C00, -0.5rem 0 0 #EF7C00;
}

.hero__item.violet .hero__title>span {
  background-color: #A52D67;
  box-shadow: 0.5rem 0 0 #A52D67, -0.5rem 0 0 #A52D67;
}

.hero__description {
  margin: 0;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-size: 0.85em;
}

.hero__description>span {
  display: inline;
  background-color: #000;
  color: #FFF;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.2em;
  margin-left: 0.5rem;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5rem 0 0 #000, -0.5rem 0 0 #000;
}

@media all and (min-width: 49rem) {
  .hero__description {
    font-size: 1.25em;
    line-height: 1.35;
  }
}

.hero__item--theme-blue .hero__title span {
  background-color: #0080C8;
}

.hero__item--theme-orange .hero__title span {
  background-color: #EF7C00;
}

.hero__item--theme-violet .hero__title span {
  background-color: #A52D67;
}

.carousel {
  list-style-type: none;
}

.carousel__galleryslide {
  max-width: 100%;
  height: 62.97vw;
  position: relative;
}

@media screen and (min-width: 49rem) {
  .carousel__galleryslide {
    height: 43.44vw;
  }
}

@media screen and (min-width: 70rem) {
  .carousel__galleryslide {
    height: 29.125rem;
  }
}

.carousel__galleryimage {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tns-horizontal.tns-subpixel {
  white-space: normal;
}

.tns-outer {
  position: relative;
}

.tns-controls {
  height: 0;
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.tns-controls button {
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  border: none;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  width: 40px;
  height: 40px;
}

.tns-controls button:hover,
.tns-controls button:focus {
  background-color: rgba(255, 255, 255, 0.9);
}

.tns-controls button[data-controls=prev] {
  margin-left: -25px;
}

.tns-controls button[data-controls=next] {
  margin-right: -25px;
}

.tns-nav {
  display: flex;
  margin-top: 1.25rem;
}

.tns-nav button {
  transition: all 0.2s ease-in-out;
  background-color: rgba(0, 56, 130, 0.2);
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border-radius: none;
  -webkit-appearance: none;
  border: none;
}

.tns-nav button:not(:last-of-type) {
  margin-right: 0.5em;
}

.tns-nav button:focus,
.tns-nav button:hover,
.tns-nav button.tns-nav-active {
  background-color: #003882;
}

.subject-list__item-wrapper {
  /*
  		display: flex;
  		flex-wrap: wrap;
  */
}

.subject-list__item {
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #FFF;
  display: block;
}

.subject-list__item a {
  transition: all 0.2s ease-in-out;
  display: block;
  position: relative;
  color: #FFF;
  height: 100%;
  min-height: 5rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2em 0;
}

@media all and (min-width: 49rem) {
  .subject-list__item a {
    padding: 4em 0;
  }
}

.subject-list__item a:focus,
.subject-list__item a:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.subject-list__item a span {
  width: 90%;
  line-height: 1.15;
  font-size: 0.875em;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

@media all and (min-width: 49rem) {
  .subject-list__item a span {
    width: 80%;
  }
}

.subject-list__item--theme-blue a:focus,
.subject-list__item--theme-blue a:hover {
  background-color: rgba(0, 128, 200, 0.7);
}

.subject-list__item--theme-orange a:focus,
.subject-list__item--theme-orange a:hover {
  background-color: rgba(239, 124, 0, 0.7);
}

.subject-list__item--theme-violet a:focus,
.subject-list__item--theme-violet a:hover {
  background-color: rgba(165, 45, 103, 0.7);
}

.feature__icon {
  display: block;
  margin: 0 auto 0.75em;
  width: 30%;
}

.feature__icon--large {
  height: 4.5rem;
  width: auto;
  margin: 0 auto 1em;
}

.feature__title {
  font-size: 1.5em;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  margin: 0.25rem;
}

.feature__title--small {
  font-size: 1em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.feature__title--multiline {
  line-height: 1.4;
}

.feature__stat {
  line-height: 1;
  float: left;
  font-weight: 700;
  font-size: 3em;
  letter-spacing: -2px;
  margin: 0 0.75rem 0 0;
  color: #94C11C;
}

.feature__stat .unit {
  margin-left: 0.25rem;
  font-size: 0.65em;
}

.feature__description {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 1em;
  margin: 0;
}

.feature__content summary {
  padding-top: 1rem;
  list-style: none;
  text-align: center;
  font-weight: 700;
  display: block;
}

.feature__content summary::-webkit-details-marker {
  display: none;
}

.feature__content summary:before {
  font-size: 1.25rem;
  position: relative;
  left: 1em;
  content: "〉" !important;
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: top left;
}

.feature__content[open] summary:before {
  content: "〈" !important;
}

.feature cite {
  color: #535353;
  font-size: 0.75em;
  line-height: 1;
}

.feature-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.feature-list__item {
  width: 100%;
  margin-bottom: 2.5rem;
}

@media (min-width: 500px) {
  .feature-list__item {
    width: 50%;
  }
}

@media all and (min-width: 49rem) {

  .feature-list__item:nth-child(3),
  .feature-list__item:nth-child(4) {
    margin-bottom: 0;
  }
}

.feature-list__item--full {
  width: 100%;
}

@media all and (min-width: 49rem) {
  .feature-list__item--full:last-child {
    margin-bottom: 0;
  }
}

@media all and (min-width: 49rem) {

  .feature-list--continuous .feature-list__item:nth-child(3),
  .feature-list--continuous .feature-list__item:nth-child(4) {
    margin-bottom: 2.5rem;
  }
}

.news__date {
  font-size: 0.875em;
  color: #535353;
}

.news__title {
  margin-top: 0;
}

.news__lede {
  margin-bottom: 0;
}

.news-list {
  list-style-type: none;
}

.news-list__item {
  margin-bottom: 1.25rem;
}

body {
  overflow-x: hidden;
}

html.listing {
  background: transparent url("../img/bg_main_demo.png") no-repeat scroll right top;
  background-size: 45vw auto;
}

.background-image {
  width: 45rem;
  height: 100%;
  position: fixed;
  z-index: -1;
  top: 0;
  right: -22.5rem;
  opacity: 0.175;
  overflow: hidden;
}

@supports (clip-path: polygon(20% 0, 100% 0%, 100% 100%, 80% 100%)) {
  .background-image {
    right: 0;
    clip-path: polygon(20% 0, 100% 0%, 100% 100%, 80% 100%);
  }
}

.background-image__image {
  position: absolute;
  width: 45rem;
  height: 100%;
  background-position: right top;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-image:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
}

.background-image--theme-blue:after {
  background-color: rgba(0, 128, 200, 0.4);
}

.background-image--theme-orange:after {
  background-color: rgba(239, 124, 0, 0.4);
}

.background-image--theme-violet:after {
  background-color: rgba(165, 45, 103, 0.4);
}

@media all and (min-width: 49rem) {
  .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .grid__col--full {
    width: 100%;
    margin-right: 0;
  }

  .grid__col--half {
    width: 45%;
  }

  .grid__col--twothirds {
    width: 60%;
  }

  .grid__col--onethird {
    width: 30%;
  }
}

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

.page-content {
  margin-bottom: 3.75rem;
}

@media all and (min-width: 49rem) {
  .page-content {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 32rem;
    margin-right: 2.5rem;
  }
}

@media all and (min-width: 70rem) {
  .page-content {
    margin-right: 3.75rem;
  }
}

@media all and (min-width: 49rem) {
  .page-content--full {
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
  }
}

.page-content__header .grant {
  color: #535353;
}

.page-content__title {
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin: 0 0 0.75rem;
}

.page-content__title>span {
  display: inline;
  background-color: #003882;
  color: #FFF;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.05em;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5rem 0 0 #003882, -1.25rem 0 0 #003882;
}

.page-content__subtitle {
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin: 0 0 0.75rem;
}

.page-content__subtitle>span {
  display: inline;
  background-color: #000;
  color: #FFF;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.1em;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5rem 0 0 #000, -1.25rem 0 0 #000;
}

.page-content__main h2 {
  font-size: 1.25em;
}

.page-content__main h3 {
  font-size: 1.125em;
}

@media all and (min-width: 49rem) {
  .page-content__main h2 {
    font-size: 1.324em;
  }

  .page-content__main h3 {
    font-size: 1.125em;
  }
}

.page-content__main ul {
  margin-left: 1em;
}

.page-content--header-extended {
  position: relative;
  padding-top: 20rem;
}

.page-content--header-extended .page-content__header {
  width: calc(100vw - 2.5rem);
  position: absolute;
  top: 0;
  left: 0;
  height: 18rem;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-content--header-extended .page-content__header .overlay {
  position: absolute;
  left: 0;
  top: 1.25rem;
}

.page-content--header-extended .page-content__header .overlay.bottom {
  top: auto;
  bottom: 1.25rem;
}

.page-content--header-extended .page-content__header .overlay.black .page-content__title>span {
  background-color: #000;
  box-shadow: 0.5rem 0 0 #000, -1.25rem 0 0 #000;
}

.page-content--header-extended .page-content__header .overlay.blue .page-content__title>span {
  background-color: #0080C8;
  box-shadow: 0.5rem 0 0 #0080C8, -1.25rem 0 0 #0080C8;
}

.page-content--header-extended .page-content__header .overlay.orange .page-content__title>span {
  background-color: #EF7C00;
  box-shadow: 0.5rem 0 0 #EF7C00, -1.25rem 0 0 #EF7C00;
}

.page-content--header-extended .page-content__header .overlay.violet .page-content__title>span {
  background-color: #A52D67;
  box-shadow: 0.5rem 0 0 #A52D67, -1.25rem 0 0 #A52D67;
}

.page-content--header-extended+.page-sidebar {
  padding-top: 0;
}

@media all and (min-width: 49rem) {
  .page-content--header-extended+.page-sidebar {
    padding-top: 18rem;
  }
}

@media all and (min-width: 70rem) {
  .page-content--header-extended {
    padding-top: 28rem;
  }

  .page-content--header-extended .page-content__header {
    width: 67.5rem;
    height: 26rem;
  }

  .page-content--header-extended .page-content__header .overlay {
    max-width: 60%;
  }

  .page-content--header-extended+.page-sidebar {
    padding-top: 26rem;
  }
}

.page-content--theme-blue .page-content__title>span {
  background-color: #0080C8;
  box-shadow: 0.5rem 0 0 #0080C8, -1.25rem 0 0 #0080C8;
}

.page-content--theme-orange .page-content__title>span {
  background-color: #EF7C00;
  box-shadow: 0.5rem 0 0 #EF7C00, -1.25rem 0 0 #EF7C00;
}

.page-content--theme-violet .page-content__title>span {
  background-color: #A52D67;
  box-shadow: 0.5rem 0 0 #A52D67, -1.25rem 0 0 #A52D67;
}

.page-section>h2,
.page-section>h3 {
  margin-top: 0;
}

.page-section:not(:last-child) {
  margin-bottom: 3.75rem;
}

@media all and (min-width: 49rem) {
  .page-sidebar {
    margin-top: 3.75rem;
  }
}

.page-sidebar__block {
  margin-bottom: 3.75rem;
}

@media all and (min-width: 49rem) {
  .page-sidebar {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 16rem;
    max-width: 20rem;
  }
}

.page-sidebar--event {
  margin-top: 1.25rem;
}

.page-sidebar .event-infobox {
  background-color: #003882;
  color: #FFF;
  padding: 1.25rem;
}

.page-sidebar .event-infobox h2,
.page-sidebar .event-infobox h3,
.page-sidebar .event-infobox h4 {
  margin-top: 0;
  font-size: 1.602em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-sidebar .event-infobox ul {
  margin: 0 0 0 1em;
}

.page-sidebar .event-infobox *:last-child {
  margin-bottom: 0;
}

.page-sidebar .event-infobox a {
  color: #FFF;
  text-decoration: underline;
}

.page-sidebar .event-infobox a:focus,
.page-sidebar .event-infobox a:hover {
  color: #FFF;
  text-decoration: none;
}

@media all and (min-width: 49rem) {
  .main-wrapper {
    display: flex;
    justify-content: space-between;
  }
}

.wrapper {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.themed h1,
.themed h2,
.themed h3,
.themed h4,
.themed h5,
.themed h6 {
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.themed--blue h1,
.themed--blue h2,
.themed--blue h3,
.themed--blue h4,
.themed--blue h5,
.themed--blue h6 {
  color: #FFF;
  background-color: #0080C8;
  display: inline-block;
  line-height: 1;
  padding: 0.25em 0.5em 0.25em 1em;
  margin-left: -1em;
}

.themed--blue a {
  color: #0080C8;
}

.themed--blue .button--blue {
  color: #FFF;
}

.themed--orange h1,
.themed--orange h2,
.themed--orange h3,
.themed--orange h4,
.themed--orange h5,
.themed--orange h6 {
  color: #FFF;
  background-color: #EF7C00;
  display: inline-block;
  line-height: 1;
  padding: 0.25em 0.5em 0.25em 1em;
  margin-left: -1em;
}

.themed--orange a {
  color: #EF7C00;
}

.themed--orange .button--orange {
  color: #FFF;
}

.themed--violet h1,
.themed--violet h2,
.themed--violet h3,
.themed--violet h4,
.themed--violet h5,
.themed--violet h6 {
  color: #FFF;
  background-color: #A52D67;
  display: inline-block;
  line-height: 1;
  padding: 0.25em 0.5em 0.25em 1em;
  margin-left: -1em;
}

.themed--violet a {
  color: #A52D67;
}

.testimonial p {
  margin-bottom: 0;
}

.testimonial__personal {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.testimonial__avatar {
  flex-shrink: 0;
  margin-right: 1.25rem;
}

.testimonial__name {
  font-weight: 700;
  font-size: 1.125em;
}

.testimonial__position {
  font-size: 0.875em;
  color: #535353;
}

.testimonial-list {
  list-style-type: none;
}

.accordion {
  list-style-type: none;
  margin: 0;
}

.accordion summary:hover {
  color: #003882;
}

.accordion summary {
  font-weight: 700;
}

.accordion summary h1,
.accordion summary h2,
.accordion summary h3,
.accordion summary h4,
.accordion summary p {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.accordion summary p {
  font-weight: 400;
}

.accordion details {
  border-bottom: 1px solid #ECECEC;
  padding: 0.625rem 0;
}

.accordion details div {
  margin: 0.625rem 1rem 0.625rem;
}

.accordion>li {
  position: relative;
}

.accordion li:first-child details {
  border-top: 1px solid #ECECEC;
}

.accordion__fragment-link {
  position: absolute;
  left: -30px;
  top: 12px;
  width: 25px;
  padding-right: 5px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.accordion__fragment-link svg {
  stroke: #535353;
}

.accordion__fragment-link:hover svg {
  stroke: #000;
}

.accordion>li:hover .accordion__fragment-link {
  opacity: 1;
}

.content-block {
  margin: 1.75rem 0 3.25rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block-disclosure {
  margin: 1.75rem 0 3.25rem;
}

.content-block-disclosure>summary {
  font-weight: 700;
  padding: 1em 0;
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
  display: block;
  text-align: center;
  margin-bottom: 3.25rem;
  list-style: none;
}

.content-block-disclosure>summary::-webkit-details-marker {
  display: none;
}

.content-block-disclosure>summary:after {
  font-size: 1.25rem;
  position: relative;
  left: 1em;
  content: "〉";
  display: inline-block;
  transform: rotate(90deg);
  content: "〉";
}

.content-block-disclosure[open]>summary:after {
  content: "〈";
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe,
.video-embed object,
.video-embed embed,
.video-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-embed video {
  max-width: 100%;
  display: block;
}

.figure:after {
  content: "";
  display: table;
  clear: both;
}

.figure__image {
  margin-bottom: 1.25rem;
}

@media all and (min-width: 49rem) {
  .figure__image {
    width: 40%;
  }

  .figure__image--left {
    float: left;
    margin-right: 1.25rem;
  }

  .figure__image--right {
    float: right;
    margin-left: 1.25rem;
  }
}

.figure__image img {
  display: block;
  width: 100%;
}

.figure__image figcaption {
  font-size: 0.875em;
  font-style: italic;
  margin-top: 0.675rem;
  font-variant-ligatures: none;
}

.figure__title {
  line-height: 1.35;
}

.figure__title>span {
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #FFF;
  padding: 0.1em 0 0;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
}

.figure__title>span a {
  color: #FFF;
}

.figure__title--blue>span {
  background-color: #0080C8;
  box-shadow: 0.5em 0 0 #0080C8, -0.5em 0 0 #0080C8;
}

.figure__title--orange>span {
  background-color: #EF7C00;
  box-shadow: 0.5em 0 0 #EF7C00, -0.5em 0 0 #EF7C00;
}

.figure__title--violet>span {
  background-color: #A52D67;
  box-shadow: 0.5em 0 0 #A52D67, -0.5em 0 0 #A52D67;
}

.gallery__row {
  display: flex;
  flex-wrap: wrap;
}

.gallery__tile {
  flex: 1 0%;
  width: 100%;
  margin: 1px;
}

.gallery__image {
  display: block;
  width: 100%;
  height: auto;
}

.process-steps {
  list-style-type: none;
  margin: 1.5rem 0;
}

.process-steps>li {
  margin-bottom: 2rem;
}

.process-steps>li:first-child .process-steps__title:before {
  display: none;
}

.process-steps>li:last-child .process-steps__title:after {
  display: none;
}

.process-steps__title {
  background-color: #A52D67;
  color: #FFF;
  position: relative;
  padding: 1.125rem 1.5rem 0.5rem;
  text-align: center;
  font-size: 1.125rem;
}

.process-steps__title p {
  margin-bottom: 0;
}

.process-steps__title:before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translate(-50%, -100%);
  height: 0;
  width: 0;
  border-left: 1rem solid #A52D67;
  border-right: 1rem solid #A52D67;
  border-top: 0.75rem solid #FFF;
}

.process-steps__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  height: 0;
  width: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 0.75rem solid #A52D67;
}

.process-steps__subtitle {
  font-size: 0.75em;
}

.process-steps__content {
  position: relative;
  border-left: 1px solid #A52D67;
  border-right: 1px solid #A52D67;
  border-bottom: 1px solid #A52D67;
  padding: 2rem 1rem 0.5rem;
}

.process-steps__content ul,
.process-steps__content ol {
  list-style-position: outside;
  margin-left: 1rem;
}

@media (min-width: 70rem) {
  .process-steps>li {
    display: flex;
    align-items: stretch;
  }

  .process-steps__title {
    width: 22%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 22%;
    min-width: 22%;
  }

  .process-steps__content {
    flex-grow: 1;
    border-left: none;
    border-top: 1px solid #A52D67;
    padding: 2.5rem 1.5rem 1rem;
  }
}

.program {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.program li {
  padding: 0.625rem 0;
  border-bottom: 1px solid #ECECEC;
}

.program li:first-child {
  border-top: 1px solid #ECECEC;
}

@media all and (min-width: 49rem) {
  .program li {
    display: flex;
  }
}

.program__time {
  font-size: 0.875em;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.program__time>span {
  display: inline-block;
  font-weight: 700;
  padding-top: 0.075em;
}

@media all and (min-width: 49rem) {
  .program__time {
    flex: 0 0 20%;
  }
}

.program__title {
  margin-bottom: 0;
  font-weight: 700;
}

.tile-grid {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@media all and (min-width: 49rem) {
  .tile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.tile-grid p {
  margin-bottom: 0.625em;
}

.tile-grid__element {
  border: 1px solid #ECECEC;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.tile-grid__element *:last-child {
  margin-bottom: 0;
}

@media all and (min-width: 49rem) {
  .tile-grid__element {
    width: 49%;
  }
}

.tile-grid__element--blue {
  background-color: #0080C8;
  color: #FFF;
  border: none;
}

.tile-grid__element--orange {
  background-color: #EF7C00;
  color: #FFF;
  border: none;
}

.tile-grid__element--violet {
  background-color: #A52D67;
  color: #FFF;
  border: none;
}

.tile-grid__element a {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}

.tile-grid__element[style^=background-image] {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 12rem;
  color: #FFF;
  position: relative;
}

.tile-grid__element[style^=background-image]>a {
  transition: all 0.2s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
}

.tile-grid__element[style^=background-image]>a:hover,
.tile-grid__element[style^=background-image]>a:focus {
  background-color: rgba(0, 0, 0, 0.6);
}

.tile-grid__element[style^=background-image].tile-grid__element--blue>a:hover,
.tile-grid__element[style^=background-image].tile-grid__element--blue>a:focus {
  background-color: rgba(0, 128, 200, 0.7);
}

.tile-grid__element[style^=background-image].tile-grid__element--Orange>a:hover,
.tile-grid__element[style^=background-image].tile-grid__element--Orange>a:focus {
  background-color: rgba(239, 124, 0, 0.7);
}

.tile-grid__element[style^=background-image].tile-grid__element--violet>a:hover,
.tile-grid__element[style^=background-image].tile-grid__element--violet>a:focus {
  background-color: rgba(165, 45, 103, 0.7);
}

@media (min-width: 49rem) {
  .tile-grid--three-items {
    justify-content: flex-start;
    gap: 2.75%;
  }
}

@media (min-width: 49rem) {
  .tile-grid--three-items .tile-grid__element {
    width: 31.5%;
  }
}

.tile-grid--three-items .tile-grid__element .tile-grid__title {
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  font-size: 1rem;
}

@media (min-width: 49rem) {
  .tile-grid--four-items {
    justify-content: flex-start;
    gap: 2%;
  }
}

@media (min-width: 49rem) {
  .tile-grid--four-items .tile-grid__element {
    width: 23.5%;
  }
}

.tile-grid--four-items .tile-grid__element .tile-grid__title {
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
}

.tile-grid__title {
  margin: 0 0 0.625rem;
  font-size: 1.125em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.event-page .tile-grid__element .button {
  transition: all 0.2s ease-in-out;
  background-color: #003882;
  color: #FFF;
  display: inline-block;
  width: auto;
}

.event-page .tile-grid__element .button:focus,
.event-page .tile-grid__element .button:hover {
  background-color: #0047a6;
}

.event-page .tile-grid__title {
  color: #003882;
}

.formsteps ol {
  margin-left: 1em;
}

.formsteps ol li:not(:last-child) {
  margin-bottom: 0.25em;
}

.formsteps__title {
  margin: 0 0 1.25rem -5em;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-left: -1.25rem;
}

.formsteps--theme-blue {
  padding: 1.25rem;
  background-color: rgba(0, 128, 200, 0.1);
}

.formsteps--theme-blue a {
  color: #0080C8;
}

.formsteps--theme-blue .formsteps__title>span {
  background-color: #0080C8;
  color: #FFF;
  padding: 0.1em 0 0;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5em 0 0 #0080C8, -0.5em 0 0 #0080C8;
}

.formsteps--theme-orange {
  padding: 1.25rem;
  background-color: rgba(239, 124, 0, 0.1);
}

.formsteps--theme-orange a {
  color: #EF7C00;
}

.formsteps--theme-orange .formsteps__title>span {
  background-color: #EF7C00;
  color: #FFF;
  padding: 0.1em 0 0;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5em 0 0 #EF7C00, -0.5em 0 0 #EF7C00;
}

.formbanner {
  padding: 1.25rem;
  margin-bottom: 2.5rem;
}

.formbanner__title {
  margin: 0 0 1.25rem -5em;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-left: -1.25rem;
}

.formbanner__content p:last-child,
.formbanner__content ul:last-child {
  margin-bottom: 0;
}

.formbanner__content ul,
.formbanner__content ol {
  margin-left: 1em;
}

.formbanner--theme-blue {
  padding: 1.25rem;
  background-color: rgba(0, 128, 200, 0.1);
}

.formbanner--theme-blue a {
  color: #0080C8;
}

.formbanner--theme-blue .formbanner__title>span {
  background-color: #0080C8;
  color: #FFF;
  padding: 0.1em 0 0;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5em 0 0 #0080C8, -0.5em 0 0 #0080C8;
}

.formbanner--theme-orange {
  padding: 1.25rem;
  background-color: rgba(239, 124, 0, 0.1);
}

.formbanner--theme-orange a {
  color: #EF7C00;
}

.formbanner--theme-orange .formbanner__title>span {
  background-color: #EF7C00;
  color: #FFF;
  padding: 0.1em 0 0;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0.5em 0 0 #EF7C00, -0.5em 0 0 #EF7C00;
}

.u-align-right {
  text-align: right;
}

.hide-mobile {
  display: none;
}

@media all and (min-width: 49rem) {
  .hide-mobile {
    display: inherit;
  }
}

.hjp-teaser__title {
  margin-top: 0;
}

.hjp-teaser__content:after {
  content: "";
  display: table;
  clear: both;
}

.hjp-teaser__cover {
  float: right;
  width: 40%;
  transform: rotate(2deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-left: 1em;
}

@media all and (min-width: 49rem) {
  .hjp-teaser__cover {
    margin-right: -1em;
  }
}

.badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.5em;
}

.badge__content {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 3px 3px 3px 1px;
  color: #FFF;
  background-color: #e73904;
}

.badge__content:before {
  content: "";
  display: block;
  border-left: 9px solid #e73904;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: rotate(180deg);
  position: absolute;
  left: -9px;
  top: 0;
}

.course__title .badge {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  margin-left: 1em;
  top: -3px;
}

.course__title .badge__content {
  padding: 4px 3px 2px 1px;
}

.seal img {
  display: block;
  margin: 0 auto 0.625rem;
}

.seal figcaption {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.booking-wrapper .seal {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-80%);
}

.notification {
  font-size: 0.875em;
  padding: 0.25em 0.75em;
}

.notification--error {
  background-color: rgba(241, 97, 77, 0.2);
  border-left: 3px solid #F1614D;
}

.notification--warning {
  background-color: rgba(236, 221, 18, 0.2);
  border-left: 3px solid #ECDD12;
}

.notification--success {
  background-color: rgba(121, 211, 78, 0.2);
  border-left: 3px solid #79D34E;
}

.account-widget {
  display: flex;
  font-size: 0.875rem;
  background-color: #ECECEC;
  padding: 0.5rem;
}

.account-widget__user {
  margin: 0;
}

.account-widget__user>span {
  font-weight: 700;
}

.account-widget__links {
  list-style-type: none;
  margin: 0 0 0 auto;
  padding: 0;
}

@media print {
  @page {
    size: A4;
    margin: 0 0.75cm 0.75cm 1.25cm;
  }

  html {
    font-size: 8pt;
  }

  .page-header .meta,
  .page-header .searchform {
    display: none;
  }

  .page-header .logo {
    position: static;
  }

  .menu,
  .breadcrumbs,
  .page-footer,
  .page-sidebar__block .cta {
    display: none;
  }

  .wrapper {
    max-width: 100%;
  }

  .main-wrapper {
    page-break-inside: auto;
  }
}

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