@charset "UTF-8";
:root {
  --fallback: Verdana, Arial, sans-serif;
  --mainFont: "Inter", var(--fallback);
  --headline: "Inter", var(--fallback);
  --fontColor: #363636;
  --primaryLight: #005277;
  --primaryVeryLight: #FF8080;
  --secondaryLight: #C8E4F0;
  --secondaryVeryLight: #80FF8C;
  --grey: #808080;
  --darkGrey: #404040;
  --veryLightGray: #F2F2F2;
  --backgroundColor: #ffffff;
  --backgroundColorRGB: 255,255,255;
  --backgroundColorDark: #b3b3b3;
  --warningColor: #FF8080;
  --formBorderColor: #808080;
  --mainGradient: linear-gradient(180deg, #FF8080 0%, #982323 100%);
  --secondaryGradient: linear-gradient(180deg, #80FF8C 0%, #00940F 100%);
  --contrastColor: #000;
  --contrastColorRGB: 0,0,0;
  --contrastColorLight: #1a1a1a;
  --contrastColorInverted: #fff;
  --contrastColorInvertedRGB: 255,255,255;
  --contrastColorDark: #e6e6e6;
  --baseFontSize: clamp(16px, 1.1vw, 20px);
  --baseLineheight: 150%;
  --miniFontSize: 12px;
  --baseBorderRadius: 10px;
  --top: 0px;
  --headerHeight: 165px;
  --spaceBetweenDefault: 20px;
  --spaceBetweenSlim: 10px;
  --spaceBetweenWide: autoClamp(40, 80);
  --baseTransition: all .3s ease-in-out;
  --baseWidth: 92%;
  --reducedWidth: 960px;
  --maxWidth: 1380px;
  --maxWidthBig: 1500px;
  --pageLimit: 1920px;
  --fl-frame-lightbgbox: var(--veryLightGray );
  --fl-frame-cibgbox: var(--main-color);
  --fl-layout-reduced: var(--reducedWidth);
  --margin-xs: 20px;
  --margin-s: clamp(30px, 2.7vw, 50px);
  --margin-m: clamp(60px, 5.3vw, 100px);
  --margin-l: clamp(100px, 9vw, 170px);
  --margin-xl: clamp(120px, 11vw, 200px);
  --fl-margin-before-extra-small: var(--margin-xs);
  --fl-margin-before-small: var(--margin-s);
  --fl-margin-before-medium: var(--margin-m);
  --fl-margin-before-large: var(--margin-l);
  --fl-margin-before-extra-large: var(--margin-xl);
  --fl-margin-after-extra-small: var(--margin-xs);
  --fl-margin-after-small: var(--margin-s);
  --fl-margin-after-medium: var(--margin-m);
  --fl-margin-after-large: var(--margin-l);
  --fl-margin-after-extra-large: var(--margin-xl);
}
@media screen and (max-width: 1199px) {
  :root {
    --stickyHeaderHeight: 80px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --stickyHeaderHeight: 154px;
  }
}

.admin-bar {
  --top: 46px;
}
@media screen and (min-width: 782px) {
  .admin-bar {
    --top: 32px;
  }
}

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* inter-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: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-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: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-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: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600italic - 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: "Inter";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - 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: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700italic - 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: "Inter";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html {
  box-sizing: border-box;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
html:not(.wp-toolbar) {
  font-size: var(--baseFontSize);
}

*, *:before, *:after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

::-moz-selection {
  background: var(--main-color);
  text-shadow: none;
  color: var(--contrastColorInverted);
}

::selection {
  background: var(--main-color);
  text-shadow: none;
  color: var(--contrastColorInverted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  background: var(--backgroundColor);
  font-family: var(--mainFont);
  color: var(--fontColor);
  line-height: var(--baseLineheight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
body:not(.wp-admin) {
  font-size: var(--baseFontSize);
}

hr {
  display: block;
  height: 1px;
  background: var(--backgroundColor);
  margin: 1em 0;
  border: none;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: var(--second-color);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--headline);
  line-height: normal;
  text-wrap: balance;
  color: #000;
}

h2 + p,
h2 + ul,
h2 + ol,
h2 + .wp-block-columns,
h2 + .wp-block-table,
h2 + .wp-block-image,
h2 + .wp-block-gallery,
h2 + .wp-block-buttons, h3 + p,
h3 + ul,
h3 + ol,
h3 + .wp-block-columns,
h3 + .wp-block-table,
h3 + .wp-block-image,
h3 + .wp-block-gallery,
h3 + .wp-block-buttons, h4 + p,
h4 + ul,
h4 + ol,
h4 + .wp-block-columns,
h4 + .wp-block-table,
h4 + .wp-block-image,
h4 + .wp-block-gallery,
h4 + .wp-block-buttons, h5 + p,
h5 + ul,
h5 + ol,
h5 + .wp-block-columns,
h5 + .wp-block-table,
h5 + .wp-block-image,
h5 + .wp-block-gallery,
h5 + .wp-block-buttons, h6 + p,
h6 + ul,
h6 + ol,
h6 + .wp-block-columns,
h6 + .wp-block-table,
h6 + .wp-block-image,
h6 + .wp-block-gallery,
h6 + .wp-block-buttons {
  margin-top: var(--fl-margin-before-extra-small);
}

h1 + p,
h1 + ul,
h1 + ol,
h1 + .wp-block-columns,
h1 + .wp-block-table,
h1 + .wp-block-image,
h1 + .wp-block-gallery,
h1 + .wp-block-buttons {
  margin-top: 0;
}

p:not([class*=roofline]) + h1, p:not([class*=roofline]) + h2, p:not([class*=roofline]) + h3, p:not([class*=roofline]) + h4, p:not([class*=roofline]) + h5, p:not([class*=roofline]) + h6, p:not([class*=roofline]) + p:not([data-margin-after]):not([data-margin-before]), p:not([class*=roofline]) + ul,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ul + p:not([data-margin-after]):not([data-margin-before]),
ul + ul,
ol + h1,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6,
ol + p:not([data-margin-after]):not([data-margin-before]),
ol + ul,
header + h1,
header + h2,
header + h3,
header + h4,
header + h5,
header + h6,
header + p:not([data-margin-after]):not([data-margin-before]),
header + ul,
.wp-block-columns + h1,
.wp-block-columns + h2,
.wp-block-columns + h3,
.wp-block-columns + h4,
.wp-block-columns + h5,
.wp-block-columns + h6,
.wp-block-columns + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-columns + ul,
.wp-block-table + h1,
.wp-block-table + h2,
.wp-block-table + h3,
.wp-block-table + h4,
.wp-block-table + h5,
.wp-block-table + h6,
.wp-block-table + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-table + ul,
.wp-block-image + h1,
.wp-block-image + h2,
.wp-block-image + h3,
.wp-block-image + h4,
.wp-block-image + h5,
.wp-block-image + h6,
.wp-block-image + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-image + ul,
.wp-block-gallery + h1,
.wp-block-gallery + h2,
.wp-block-gallery + h3,
.wp-block-gallery + h4,
.wp-block-gallery + h5,
.wp-block-gallery + h6,
.wp-block-gallery + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-gallery + ul,
.wp-block-buttons + h1,
.wp-block-buttons + h2,
.wp-block-buttons + h3,
.wp-block-buttons + h4,
.wp-block-buttons + h5,
.wp-block-buttons + h6,
.wp-block-buttons + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-buttons + ul {
  margin-top: var(--fl-margin-before-extra-small);
}
p:not([class*=roofline]) + p:not([data-margin-after]):not([data-margin-before]), p:not([class*=roofline]) + ul:not(.sub-menu), p:not([class*=roofline]) + ol,
ul + p:not([data-margin-after]):not([data-margin-before]),
ul + ul:not(.sub-menu),
ul + ol,
ol + p:not([data-margin-after]):not([data-margin-before]),
ol + ul:not(.sub-menu),
ol + ol,
header + p:not([data-margin-after]):not([data-margin-before]),
header + ul:not(.sub-menu),
header + ol,
.wp-block-columns + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-columns + ul:not(.sub-menu),
.wp-block-columns + ol,
.wp-block-table + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-table + ul:not(.sub-menu),
.wp-block-table + ol,
.wp-block-image + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-image + ul:not(.sub-menu),
.wp-block-image + ol,
.wp-block-gallery + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-gallery + ul:not(.sub-menu),
.wp-block-gallery + ol,
.wp-block-buttons + p:not([data-margin-after]):not([data-margin-before]),
.wp-block-buttons + ul:not(.sub-menu),
.wp-block-buttons + ol {
  margin-top: var(--fl-margin-before-extra-small);
}

.wp-block-heading + .wp-block-heading {
  margin-top: var(--fl-margin-before-extra-small);
}

h1 {
  font-size: clamp(32px, 2.8vw, 52px);
  font-weight: 700;
}

h2 {
  font-size: clamp(26px, 2.5vw, 48px);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 1.1226415094rem + 1.8867924528vw, 2.75rem);
  font-size: clamp(24px, 2.3vw, 44px);
  font-weight: 400;
}

h4 {
  font-size: clamp(22px, 2vw, 38px);
  font-weight: 400;
}

h5 {
  font-size: clamp(18px, 1.6vw, 30px);
  font-weight: 400;
}

h6 {
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 400;
}

p + p {
  margin-top: var(--fl-margin-before-small);
}

p[class*=roofline] {
  font-weight: 700;
}

.minitext, .is-style-minitext {
  font-size: var(--miniFontSize);
}

.bigtext, .is-style-bigtext {
  font-size: clamp(20px, 2.3vw, 44px);
  font-weight: 700;
  line-height: normal;
}

i, em {
  font-style: italic;
}

strong, b {
  font-weight: 700;
}

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

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

.cont a {
  text-decoration: none;
  color: var(--main-color);
  transition: var(--baseTransition);
  word-wrap: break-word;
}

.wp-block-buttons {
  row-gap: 0;
}

.wp-block-button:not([class*=-secondary]):not(.is-style-borderless):not(.is-style-outline) {
  --buttonBg: var(--main-color);
  --buttonColor: var(--contrastColorInverted);
  --buttonHoverBg: var(--primaryLight);
  --buttonHoverColor: var(--contrastColorInverted);
}
.wp-block-button.is-style-icon-location-secondary {
  --buttonBg: var(--second-color);
  --buttonColor: var(--main-color);
  --buttonHoverBg: var(--second-color);
  --buttonHoverColor: var(--fontColor);
}
.wp-block-button.is-style-fill-secondary {
  --buttonBg: var(--secondaryLight);
  --buttonColor: var(--fontColor);
  --buttonHoverBg: var(--second-color);
  --buttonHoverColor: var(--fontColor);
}
.wp-block-button.is-style-outline-secondary {
  --buttonBg: transparent;
  --buttonColor: var(--secondaryLight);
  --buttonHoverBg: var(--second-color);
  --buttonHoverColor: var(--fontColor);
}
.wp-block-button.is-style-outline {
  --buttonBg: transparent;
  --buttonColor: var(--fontColor);
  --buttonHoverBg: var(--main-color);
  --buttonHoverColor: var(--contrastColorInverted);
}

button.submit,
input[type=submit],
button[type=submit]:not(.wp-block-search__button) {
  padding: var(--margin-xs) var(--margin-s);
}

button.submit,
input[type=submit],
button[type=submit]:not(.wp-block-search__button),
a.btn,
button.btn {
  --buttonBg: var(--main-color);
  --buttonColor: var(--contrastColorInverted);
  --buttonHoverBg: var(--primaryLight);
  --buttonHoverColor: var(--contrastColorInverted);
}

.nav-links a {
  --buttonBg: transparent;
  --buttonColor: var(--fontColor);
  --buttonHoverBg: var(--main-color);
  --buttonHoverColor: var(--contrastColorInverted);
}

button.submit,
input[type=submit],
button[type=submit]:not(.wp-block-search__button),
a.btn,
button.btn,
.nav-links a,
.wp-block-button > .wp-block-button__link:not(.has-text-color) {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  margin-top: clamp(10px, 1.2vw, 20px);
  transition: var(--baseTransition);
  line-height: 120%;
  border-radius: 5px;
  font-size: 18px;
  color: var(--buttonColor);
  background: var(--buttonBg);
}
button.submit:hover,
input[type=submit]:hover,
button[type=submit]:not(.wp-block-search__button):hover,
a.btn:hover,
button.btn:hover,
.nav-links a:hover,
.wp-block-button > .wp-block-button__link:not(.has-text-color):hover {
  background: var(--buttonHoverBg);
  color: var(--buttonHoverColor);
}

.wp-block-button:not([class*=-icon-]) .wp-block-button__link:after {
  content: "";
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.21891 15.7127C4.81338 16.0958 4.19232 16.0958 3.81047 15.7127C3.42862 15.3295 3.42862 14.7064 3.81047 14.2995L10.089 8L3.81047 1.7005C3.42862 1.31737 3.42862 0.670474 3.81047 0.287346C4.19232 -0.0957825 4.81339 -0.0957826 5.21891 0.287346L12.1895 7.30558C12.5714 7.68871 12.5714 8.31186 12.1895 8.71874L5.21891 15.7127Z" fill="%2307374D"/></svg>');
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: currentColor;
  transition: 0.3s transform ease;
}
.wp-block-button:not([class*=-icon-]) .wp-block-button__link:hover:after {
  transform: translateX(calc(var(--margin-s) / 4));
}
@media screen and (max-width: 768px) {
  .wp-block-button:not(.is-style-borderless) .wp-block-button__link {
    padding: 15px 20px;
  }
}
@media screen and (min-width: 769px) {
  .wp-block-button:not(.is-style-borderless) .wp-block-button__link {
    padding: var(--margin-xs) var(--margin-s);
  }
}
.wp-block-button.is-style-borderless .wp-block-button__link {
  padding: 0;
}
.wp-block-button[class*=outline] > .wp-block-button__link:not(.has-text-color) {
  border: 1px solid var(--buttonHoverBg);
}
.wp-block-button[class*=-icon-] .wp-block-button__link:before {
  content: "";
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: currentColor;
}
.wp-block-button[class*=phone] .wp-block-button__link:before {
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M16 7.99962V11.1999C16 12.0797 15.28 12.7997 14.4002 12.7997V15.1997C14.4002 15.5995 14.08 16 13.5999 16H9.60013V14.4002H12.8004L12.7997 6.39985C12.7997 3.7598 10.6397 1.59977 7.99962 1.59977C5.35957 1.59977 3.19954 3.7598 3.19954 6.39985V12.7997H1.59977C0.720012 12.7997 0 12.0797 0 11.1999V7.99962C0 7.11986 0.720012 6.39985 1.59977 6.39985C1.59977 2.88005 4.47982 0 7.99962 0C11.5194 0 14.3995 2.88005 14.3995 6.39985C15.28 6.39985 16 7.11986 16 7.99962Z" fill="white"/></svg>');
}
.wp-block-button[class*=mail] .wp-block-button__link:before {
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M1.2 2.79999C1.04297 2.79999 0.89376 2.8328 0.75624 2.88749L7.54384 8.81869C7.8376 9.07493 8.15008 9.07493 8.44384 8.81869L15.2438 2.88749C15.1063 2.8328 14.9571 2.79999 14.8001 2.79999H1.2ZM0.0125 3.83123C0.0046876 3.88592 0 3.94295 0 3.99998V12C0 12.6648 0.53516 13.2 1.2 13.2H14.8C15.4648 13.2 16 12.6648 16 12V3.99998C16 3.94295 15.9953 3.88592 15.9875 3.83123L9.2313 9.72503C8.52662 10.3399 7.46098 10.3406 6.7563 9.72503L0.0125 3.83123Z" fill="white"/></svg>');
}
.wp-block-button[class*=location] .wp-block-button__link:before {
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8.77392 10.0188C8.8764 10.0188 8.97881 10.0873 9.04736 10.1545C9.11558 10.2232 9.13232 10.3423 9.13232 10.4446L8.36572 15.675C8.34841 15.8627 8.19499 16.0156 8.00732 15.9983C7.81977 15.9809 7.66719 15.8626 7.6499 15.675L6.8833 10.4446C6.88334 10.3422 6.90142 10.2224 6.96923 10.1545C7.03706 10.0524 7.13842 10.0188 7.24072 10.0188H8.77392ZM10.7417 0.0012207C11.3702 0.0317217 11.9114 0.520488 11.9438 1.15942C11.9777 1.70439 11.6534 2.16508 11.1929 2.38599C11.0228 2.45403 10.9028 2.64156 10.9028 2.81177L10.9038 6.83325C10.9038 7.03812 11.0229 7.19043 11.1938 7.25903C11.6709 7.46332 11.9777 7.94064 11.9438 8.4856C11.9092 9.16706 11.2972 9.67799 10.6157 9.67798L5.38427 9.69458C4.70283 9.69455 4.08941 9.18364 4.05615 8.5022C4.02225 7.9572 4.34564 7.4633 4.80615 7.27563C4.97643 7.2077 5.09619 7.02017 5.09619 6.84985V2.86353C5.09613 2.65871 4.97734 2.50602 4.82372 2.42017C4.34657 2.21586 4.03979 1.73863 4.07372 1.1936C4.10855 0.512326 4.7205 0.00121388 5.40185 0.0012207H10.7417Z" fill="%2307374D"/></svg>');
}
.wp-block-button.is-style-icon-location-secondary {
  font-weight: 700;
}

#allcont table {
  width: 100%;
  margin: 10px 0px 5px;
}
#allcont table tr th {
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  color: var(--main-color);
  padding: 10px 15px;
}
#allcont table tr td {
  padding: 5px 15px;
}
#allcont table thead tr th {
  border-bottom: 1px solid var(--main-color);
}

#site {
  width: 100%;
  margin: 0 auto;
  background: var(--contrastColorInverted);
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
#site .allcont {
  container-type: inline-size;
  position: relative;
  flex: 1 0 auto;
  overflow-x: clip;
}
#site .allcont .entry-content > form,
#site .allcont .entry-content > hr,
#site .allcont .entry-content > h1, #site .allcont .entry-content > h2, #site .allcont .entry-content > h3, #site .allcont .entry-content > h4, #site .allcont .entry-content > h5, #site .allcont .entry-content > h6,
#site .allcont .entry-content > p,
#site .allcont .entry-content > ul, #site .allcont .entry-content > ol,
#site .allcont .entry-content > table,
#site .allcont .entry-content > *[class*=wp-block-],
#site .allcont .entry-content > section.no-results.not-found {
  max-width: var(--maxWidth);
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1530px) {
  #site .allcont .entry-content > form,
  #site .allcont .entry-content > hr,
  #site .allcont .entry-content > h1, #site .allcont .entry-content > h2, #site .allcont .entry-content > h3, #site .allcont .entry-content > h4, #site .allcont .entry-content > h5, #site .allcont .entry-content > h6,
  #site .allcont .entry-content > p,
  #site .allcont .entry-content > ul, #site .allcont .entry-content > ol,
  #site .allcont .entry-content > table,
  #site .allcont .entry-content > *[class*=wp-block-],
  #site .allcont .entry-content > section.no-results.not-found {
    width: var(--baseWidth);
  }
}
#site .allcont .entry-content > section.no-results.not-found {
  margin: 100px auto;
  max-width: var(--maxWidth);
}
#site .allcont .entry-content > .wp-block-image > IMG {
  margin: 0 auto;
  display: block;
}
#site .allcont .entry-content > table td {
  padding: 16px;
  padding: 1rem;
}
#site .allcont .entry-content figure {
  max-width: 100%;
}
#site .allcont .entry-content figure img {
  max-width: 100%;
  display: block;
  height: auto;
}
#site .allcont .entry-content figure.alignright {
  float: right;
  margin-left: 20px;
}
#site .allcont .entry-content figure.alignleft {
  float: left;
  margin-right: 20px;
}
#site .allcont .entry-content .video-wrapper {
  position: relative;
}
#site .allcont .entry-content .video-wrapper video {
  max-width: 100%;
}
#site .allcont .entry-content .video-wrapper video:not(:hover):not(:focus) + button.video-pause-button:not(:hover):not(:focus) {
  opacity: 0;
}
#site .allcont .entry-content .video-wrapper video + button.video-pause-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  background: none;
  border: none;
}
#site .allcont .entry-content .video-wrapper video + button.video-pause-button:focus {
  outline: 2px solid var(--main-color);
}
#site .allcont .entry-content .video-wrapper video + button.video-pause-button + button.video-play-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  background: none;
  border: none;
}
#site .allcont .entry-content .video-wrapper video + button.video-pause-button + button.video-play-button:focus {
  outline: 2px solid var(--main-color);
}
#site .allcont .entry-content > h1:first-child {
  margin-top: var(--fl-margin-before-small);
}

.single-event .entry-content > *:first-child,
.single-speaker .entry-content > *:first-child,
.page-template-page-nobanner .entry-content > *:first-child,
.search .entry-content > *:first-child,
.archive .entry-content > *:first-child {
  margin-top: var(--fl-margin-before-small);
}

.archive .search-field,
.search .search-field,
.single .search-field {
  max-width: 300px;
  padding: 15px 30px;
  margin-top: 20px;
}

.floating-label {
  position: relative;
}
.floating-label :is(input,
textarea) {
  padding: 20px 15px;
}
.floating-label label {
  display: block;
  transition: var(--baseTransition);
  position: absolute;
  top: 0;
  left: 15px;
  transform: translateY(1rem);
  pointer-events: none;
  margin-bottom: 0 !important;
}
.floating-label:focus-within label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:not(:placeholder-shown) + label,
.floating-label :-webkit-autofill + label {
  transform: translateY(0.25rem);
  font-size: 80% !important;
}
.floating-label:focus-within input, .floating-label:focus-within textarea,
.floating-label input:not(:placeholder-shown),
.floating-label textarea:not(:placeholder-shown),
.floating-label :-webkit-autofill {
  padding: 25px 15px 15px;
}
.floating-label ::-webkit-input-placeholder {
  color: transparent;
}
.floating-label :-moz-placeholder {
  opacity: 1;
  color: transparent;
}
.floating-label ::-moz-placeholder {
  opacity: 1;
  color: transparent;
}
.floating-label :-ms-input-placeholder {
  color: transparent;
}

.gform_wrapper.floating-labels input, .gform_wrapper.floating-labels textarea, .gform_wrapper.floating-labels select {
  padding: 30px 15px 20px !important;
}

input, select, textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  font-family: var(--mainFont);
  box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.1);
}
input:focus, select:focus, textarea:focus {
  border: 1px solid var(--second-color);
  outline: none;
}

input[type=submit] {
  width: auto;
  cursor: pointer;
}
input[type=submit]:focus {
  border: none;
  outline: none;
}

select {
  appearance: none;
  cursor: pointer;
  color: var(--fontColor);
  background: url("../img/select.svg") no-repeat center right 10px/15px auto;
}
select option {
  color: var(--fontColor);
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: none;
  height: 150px;
}

input[type=radio], input[type=checkbox] {
  width: auto;
  margin-right: 5px;
}

input:-webkit-autofill, textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--contrastColorInverted) inset;
  -webkit-text-fill-color: var(--contrastColor);
}

::-webkit-input-placeholder {
  color: var(--mainColorDark);
}

:-moz-placeholder {
  opacity: 1;
  color: var(--mainColorDark);
}

::-moz-placeholder {
  opacity: 1;
  color: var(--mainColorDark);
}

:-ms-input-placeholder {
  color: var(--mainColorDark);
}

.checkbox, .radio {
  padding: 10px;
}
.checkbox input, .radio input {
  cursor: pointer;
  appearance: none;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--contrastColorInverted);
  background-position: center;
  border: 1px solid var(--formBorderColor);
  transition: var(--baseTransition);
}
.checkbox input:hover, .radio input:hover {
  border-color: var(--main-color);
}
.checkbox input:checked, .radio input:checked {
  background: var(--contrastColorInverted) url("../Images/check.svg") no-repeat center center/80% auto;
  border: 1px solid var(--main-color);
}
.checkbox input[type=radio], .radio input[type=radio] {
  border-radius: 100%;
}

BODY.blog #allcont,
BODY.single #allcont,
BODY.archive #allcont,
BODY.search #allcont {
  padding-bottom: clamp(1.875rem, 0.554245283rem + 6.6037735849vw, 6.25rem);
}
BODY.blog span.edit-link,
BODY.single span.edit-link,
BODY.archive span.edit-link,
BODY.search span.edit-link {
  display: none;
}
BODY.blog .entry-content > header,
BODY.single .entry-content > header,
BODY.archive .entry-content > header,
BODY.search .entry-content > header {
  max-width: var(--maxWidth);
  margin: 0 auto;
}
@media (max-width: 1530px) {
  BODY.blog .entry-content > header,
  BODY.single .entry-content > header,
  BODY.archive .entry-content > header,
  BODY.search .entry-content > header {
    width: var(--baseWidth);
  }
}
BODY.blog header,
BODY.single header,
BODY.archive header,
BODY.search header {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
BODY.blog header > :last-child,
BODY.single header > :last-child,
BODY.archive header > :last-child,
BODY.search header > :last-child {
  margin-bottom: 40px;
}
BODY.blog header .page-title,
BODY.single header .page-title,
BODY.archive header .page-title,
BODY.search header .page-title {
  width: 100%;
  flex-basis: 100%;
}
BODY.blog header .archive-description,
BODY.single header .archive-description,
BODY.archive header .archive-description,
BODY.search header .archive-description {
  flex-basis: calc(75% - 40px);
  margin-bottom: 40px;
}
BODY.blog header .author-image,
BODY.single header .author-image,
BODY.archive header .author-image,
BODY.search header .author-image {
  flex-basis: 25%;
}
BODY.blog header .author-image img,
BODY.single header .author-image img,
BODY.archive header .author-image img,
BODY.search header .author-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
BODY.blog header .author-image.no-image,
BODY.single header .author-image.no-image,
BODY.archive header .author-image.no-image,
BODY.search header .author-image.no-image {
  background: #ddd;
}
BODY.blog .search-group,
BODY.single .search-group,
BODY.archive .search-group,
BODY.search .search-group {
  width: 100%;
  margin: 40px 0;
}
BODY.blog .search-group .search-group-title,
BODY.single .search-group .search-group-title,
BODY.archive .search-group .search-group-title,
BODY.search .search-group .search-group-title {
  margin-bottom: 20px;
}
BODY.blog .search-filter,
BODY.single .search-filter,
BODY.archive .search-filter,
BODY.search .search-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
@media (max-width: 640px) {
  BODY.blog .search-filter,
  BODY.single .search-filter,
  BODY.archive .search-filter,
  BODY.search .search-filter {
    flex-wrap: wrap;
  }
  BODY.blog .search-filter > span,
  BODY.single .search-filter > span,
  BODY.archive .search-filter > span,
  BODY.search .search-filter > span {
    width: 100%;
  }
}
BODY.blog .search-filter a,
BODY.single .search-filter a,
BODY.archive .search-filter a,
BODY.search .search-filter a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  background: var(--main-color);
  color: var(--contrastColorInverted);
  border-radius: 5px;
  transition: var(--baseTransition);
}
@media (max-width: 640px) {
  BODY.blog .search-filter a,
  BODY.single .search-filter a,
  BODY.archive .search-filter a,
  BODY.search .search-filter a {
    width: calc(50% - 5px);
  }
}
BODY.blog .search-filter a:hover,
BODY.single .search-filter a:hover,
BODY.archive .search-filter a:hover,
BODY.search .search-filter a:hover {
  background: var(--second-color);
}
BODY.blog .search-filter a.active,
BODY.single .search-filter a.active,
BODY.archive .search-filter a.active,
BODY.search .search-filter a.active {
  background: var(--second-color);
}
BODY.blog .post-navigation,
BODY.single .post-navigation,
BODY.archive .post-navigation,
BODY.search .post-navigation {
  max-width: var(--maxWidthBig);
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
}
@media (max-width: 1530px) {
  BODY.blog .post-navigation,
  BODY.single .post-navigation,
  BODY.archive .post-navigation,
  BODY.search .post-navigation {
    width: var(--baseWidth);
  }
}
BODY.blog .post-navigation .nav-links,
BODY.single .post-navigation .nav-links,
BODY.archive .post-navigation .nav-links,
BODY.search .post-navigation .nav-links {
  display: flex;
  gap: 20px;
  margin: 40px 0;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 450px) {
  BODY.blog .post-navigation .nav-links,
  BODY.single .post-navigation .nav-links,
  BODY.archive .post-navigation .nav-links,
  BODY.search .post-navigation .nav-links {
    flex-direction: column;
  }
}
BODY.blog .post-navigation .nav-links a,
BODY.single .post-navigation .nav-links a,
BODY.archive .post-navigation .nav-links a,
BODY.search .post-navigation .nav-links a {
  padding: 20px;
}
BODY.blog .post-navigation .nav-links .nav-previous a::before,
BODY.single .post-navigation .nav-links .nav-previous a::before,
BODY.archive .post-navigation .nav-links .nav-previous a::before,
BODY.search .post-navigation .nav-links .nav-previous a::before {
  content: "«";
  font-weight: 900;
  margin-right: 10px;
}
BODY.blog .post-navigation .nav-links .nav-next a::after,
BODY.single .post-navigation .nav-links .nav-next a::after,
BODY.archive .post-navigation .nav-links .nav-next a::after,
BODY.search .post-navigation .nav-links .nav-next a::after {
  content: "»";
  font-weight: 900;
  margin-left: 10px;
}
BODY.blog .allcont .cont > .item,
BODY.single .allcont .cont > .item,
BODY.archive .allcont .cont > .item,
BODY.search .allcont .cont > .item {
  display: flex;
  flex-direction: column;
  margin: 40px auto;
  gap: 40px;
}
@media (max-width: 1200px) {
  BODY.blog .allcont .cont > .item,
  BODY.single .allcont .cont > .item,
  BODY.archive .allcont .cont > .item,
  BODY.search .allcont .cont > .item {
    flex-wrap: wrap;
  }
}
BODY.blog .allcont .cont > .item .entry-content,
BODY.single .allcont .cont > .item .entry-content,
BODY.archive .allcont .cont > .item .entry-content,
BODY.search .allcont .cont > .item .entry-content {
  flex: 1 1 75%;
  max-width: 100%;
}
BODY.blog .allcont .cont > .item .entry-content article.post,
BODY.single .allcont .cont > .item .entry-content article.post,
BODY.archive .allcont .cont > .item .entry-content article.post,
BODY.search .allcont .cont > .item .entry-content article.post {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--main-color);
}
BODY.blog .allcont .cont > .item .entry-content article.post .entry-header,
BODY.single .allcont .cont > .item .entry-content article.post .entry-header,
BODY.archive .allcont .cont > .item .entry-content article.post .entry-header,
BODY.search .allcont .cont > .item .entry-content article.post .entry-header {
  margin-bottom: 30px;
}
BODY.blog .allcont .cont > .item .entry-content article.post:last-of-type,
BODY.single .allcont .cont > .item .entry-content article.post:last-of-type,
BODY.archive .allcont .cont > .item .entry-content article.post:last-of-type,
BODY.search .allcont .cont > .item .entry-content article.post:last-of-type {
  border: none;
}
BODY.blog .allcont .cont > .item .entry-content .text,
BODY.single .allcont .cont > .item .entry-content .text,
BODY.archive .allcont .cont > .item .entry-content .text,
BODY.search .allcont .cont > .item .entry-content .text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
BODY.blog .allcont .cont > .item .entry-content .text .post-thumb,
BODY.single .allcont .cont > .item .entry-content .text .post-thumb,
BODY.archive .allcont .cont > .item .entry-content .text .post-thumb,
BODY.search .allcont .cont > .item .entry-content .text .post-thumb {
  flex: 1 1 150px;
}
BODY.blog .allcont .cont > .item .entry-content .text .post-thumb + P,
BODY.single .allcont .cont > .item .entry-content .text .post-thumb + P,
BODY.archive .allcont .cont > .item .entry-content .text .post-thumb + P,
BODY.search .allcont .cont > .item .entry-content .text .post-thumb + P {
  flex: 1 1 calc(100% - 150px - 40px);
  margin: 0 20px;
}
BODY.blog .allcont .cont > .item #secondary,
BODY.single .allcont .cont > .item #secondary,
BODY.archive .allcont .cont > .item #secondary,
BODY.search .allcont .cont > .item #secondary {
  flex: 1 1 25%;
  padding: 25px;
  border: 1px solid var(--lightGray);
}
BODY.blog .allcont .cont > .item #secondary .widget,
BODY.single .allcont .cont > .item #secondary .widget,
BODY.archive .allcont .cont > .item #secondary .widget,
BODY.search .allcont .cont > .item #secondary .widget {
  margin-bottom: 30px;
}

@media (max-width: 1530px) {
  .px-news {
    width: var(--baseWidth);
    margin: 0 auto;
  }
}
.px-news .news-inner {
  max-width: var(--maxWidthBig);
  margin: 0 auto;
}
.px-news .postsloop {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.px-news .postsloop article {
  flex-basis: calc(33.3333333333% - 30px);
  min-width: 300px;
}
.px-news .postsloop article > a {
  display: block;
  height: 100%;
}
.px-news .postsloop .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.px-news .postsloop .content .main-content {
  width: 100%;
}
.px-news .postsloop .content .button, .px-news .postsloop .content input[type=submit], .px-news .postsloop .content button {
  margin-top: auto;
}
.px-news .postsloop .content .date {
  font-size: 15px;
  color: var(--fontColor);
}
.px-news .postsloop .content .entry-title {
  margin-bottom: clamp(0.9375rem, 0.6544811321rem + 1.4150943396vw, 1.875rem);
  margin-top: 5px;
}
.px-news .postsloop .content .excerpt {
  color: var(--fontColor);
  margin-bottom: clamp(0.9375rem, 0.6544811321rem + 1.4150943396vw, 1.875rem);
}
.px-news .postsloop .content .post-thumbnail {
  position: relative;
  min-height: clamp(9.375rem, 7.4316037736rem + 9.7169811321vw, 15.8125rem);
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: clamp(1.25rem, 0.8726415094rem + 1.8867924528vw, 2.5rem);
  width: 100%;
}
.px-news .postsloop .content .post-thumbnail.no-image {
  background: #ddd;
}
.px-news .postsloop .content .post-thumbnail img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}
.px-news .postsloop .content .post-category {
  padding: 11px 20px;
  border-bottom-left-radius: 8px;
  background: var(--second-color);
  color: var(--contrastColorInverted);
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: none;
  font-size: 15px;
}

body.single h1 {
  margin-bottom: var(--fl-margin-after-small);
}
body.single .post-meta {
  max-width: var(--maxWidth);
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
}
@media (max-width: 1530px) {
  body.single .post-meta {
    width: var(--baseWidth);
  }
}
body.single .post-meta .post-meta-inner {
  background: var(--lightGray);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  body.single .post-meta .post-meta-inner {
    gap: 10px;
    justify-content: space-around;
  }
}
body.single .post-meta .post-meta-inner .post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.single .post-meta .post-meta-inner .post-categories a {
  padding: 5px 10px;
  background: var(--second-color);
  color: var(--contrastColorInverted);
  border-radius: 5px;
}
body.single .post-author {
  max-width: var(--maxWidthBig);
  margin: clamp(2.5rem, 1.3679245283rem + 5.6603773585vw, 6.25rem) auto;
}
@media (max-width: 1530px) {
  body.single .post-author {
    width: var(--baseWidth);
  }
}
body.single .post-author .post-author-inner {
  padding: 40px;
  border: 3px solid var(--lightGray);
  display: flex;
  column-gap: 40px;
  row-gap: 20px;
}
@media (max-width: 768px) {
  body.single .post-author .post-author-inner {
    flex-direction: column;
  }
}
body.single .post-author .post-author-inner .left {
  flex-basis: 128px;
  max-height: clamp(4rem, 2.7924528302rem + 6.0377358491vw, 8rem);
}
body.single .post-author .post-author-inner .left .post-author-image {
  width: clamp(4rem, 2.7924528302rem + 6.0377358491vw, 8rem);
  height: clamp(4rem, 2.7924528302rem + 6.0377358491vw, 8rem);
  border-radius: 50%;
  overflow: hidden;
}
body.single .post-author .post-author-inner .left .post-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.single .post-author .post-author-inner .left .post-author-image.no-image {
  background: #ddd;
}
body.single .post-author .post-author-inner .right {
  flex-basis: calc(100% - 128px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.single .post-author .post-author-inner .right .info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
body.single .post-author .post-author-inner .right .info .author {
  display: flex;
  flex-direction: column;
}
body.single .post-author .post-author-inner .right .info a {
  margin: 0;
  padding: 15px 20px;
}
body.single .post-author .post-author-inner .right .post-author-name {
  font-size: clamp(1rem, 0.8490566038rem + 0.7547169811vw, 1.5rem);
  font-weight: bold;
}
body.single .post-author .post-author-inner .right .post-author-position {
  color: var(--fontColor);
}
body.single .post-author .post-author-inner .right .post-author-description {
  color: var(--fontColor);
}

/******************
* HPH Animation JS *
*******************/
@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  html.js:not(:has(body[data-accessibility-animations=false])) {
    /***********
    * bounceIn *
    ************/
    /****************
    * bounceInRight *
    ****************/
    /******************
    * Bounce in left *
    *******************/
    /******************
    * Bounce in up *
    *******************/
    /******************
    * Bounce in down *
    *******************/
    /**********
    * Fade In *
    **********/
    /*********************
    * fadeInUp
    *********************/
    /*********************
    * fadeInDown
    *********************/
    /*********************
    * fadeInRight
    *********************/
    /*********************
    * fadeInLeft
    *********************/
    /*********************
    * appear
    *********************/
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation]:not(.animate-parent) {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate.animate-parent .col {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceIn]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceInRight]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceInLeft]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceInUp]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceInDown]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeIn]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInRight]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInLeft]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInUp]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInDown]:not(.animate-parent),
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=appear]:not(.animate-parent) {
    opacity: 0;
    transform: none;
  }
  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      transform: scale(1.05);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceIn].go:not(.animate-parent) {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceIn] .col {
    opacity: 0;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceIn] .col.go {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
  }
  @keyframes bounceInRight {
    0% {
      opacity: 0;
      transform: translateX(250px);
    }
    60% {
      transform: translateX(-30px);
    }
    80% {
      transform: translateX(10px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceInRight].go:not(.animate-parent) {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceInRight] .col {
    opacity: 0;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceInRight] .col.go {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
  }
  @keyframes bounceInLeft {
    0% {
      opacity: 0;
      transform: translateX(-250px);
    }
    60% {
      transform: translateX(30px);
    }
    80% {
      transform: translateX(-10px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceInLeft].go:not(.animate-parent) {
    animation-name: bounceInLeft;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceInLeft] .col {
    opacity: 0;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceInLeft] .col.go {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
  }
  @keyframes bounceInUp {
    0% {
      opacity: 0;
      transform: translateY(250px);
    }
    60% {
      transform: translateY(-30px);
    }
    80% {
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceInUp].go:not(.animate-parent) {
    animation-name: bounceInUp;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceInUp] .col {
    opacity: 0;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceInUp] .col.go {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
  }
  @keyframes bounceInDown {
    0% {
      opacity: 0;
      transform: translateY(-250px);
    }
    60% {
      transform: translateY(30px);
    }
    80% {
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=bounceInDown].go:not(.animate-parent) {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceInDown] .col {
    opacity: 0;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=bounceInDown] .col.go {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
      display: block;
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeIn]:not(.animate-parent) {
    transform: none;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeIn].go:not(.animate-parent) {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeIn] .col {
    opacity: 0;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeIn] .col.go {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInUp]:not(.animate-parent) {
    opacity: 0;
    transform: translateY(20px);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInUp].go:not(.animate-parent) {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeInUp] .col {
    opacity: 0;
    transform: translateY(20px);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeInUp] .col.go {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInDown]:not(.animate-parent) {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInDown].go:not(.animate-parent) {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeInDown] .col {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeInDown] .col.go {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInRight]:not(.animate-parent) {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInRight].go:not(.animate-parent) {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeInRight] .col {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeInRight] .col.go {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInLeft]:not(.animate-parent) {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=fadeInLeft].go:not(.animate-parent) {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeInLeft] .col {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent[data-animation=fadeInLeft] .col.go {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
  @keyframes appear {
    from {
      opacity: 0;
      transform: scale(1.2);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=appear]:not(.animate-parent) {
    opacity: 0;
    transform: scale(1.2);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) [data-animation=appear].go:not(.animate-parent) {
    -webkit-animation-name: appear;
    animation-name: appear;
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent.appear .col {
    opacity: 0;
    transform: scale(1.2);
  }
  html.js:not(:has(body[data-accessibility-animations=false])) .animate-parent.appear .col.go {
    -webkit-animation-name: appear;
    animation-name: appear;
  }
}

*[data-margin-before=extra-small] {
  margin-top: var(--fl-margin-before-extra-small);
}

*[data-margin-before=small] {
  margin-top: var(--fl-margin-before-small);
}

*[data-margin-before=medium] {
  margin-top: var(--fl-margin-before-medium);
}

*[data-margin-before=large] {
  margin-top: var(--fl-margin-before-large);
}

*[data-margin-before=extra-large] {
  margin-top: var(--fl-margin-before-extra-large);
}

*[data-margin-after=extra-small] {
  margin-bottom: var(--fl-margin-after-extra-small);
}

*[data-margin-after=small] {
  margin-bottom: var(--fl-margin-after-small);
}

*[data-margin-after=medium] {
  margin-bottom: var(--fl-margin-after-medium);
}

*[data-margin-after=large] {
  margin-bottom: var(--fl-margin-after-large);
}

*[data-margin-after=extra-large] {
  margin-bottom: var(--fl-margin-after-extra-large);
}

:root {
  --is-style-gap-small: 10px;
  --is-style-gap-large: 80px;
  --is-style-gap-default: 2em;
}

.is-style-gap-small {
  column-gap: var(--is-style-gap-small) !important;
}

.is-style-gap-large {
  column-gap: var(--is-style-gap-large) !important;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

@media (max-width: 1024px) {
  body .wp-block-columns {
    flex-wrap: wrap !important;
  }
  body .wp-block-columns:not(.is-style-gap-small) .wp-block-column {
    min-width: calc(50% - var(--is-style-gap-default));
  }
  body .wp-block-columns.is-style-gap-small .wp-block-column:first-child {
    min-width: fit-content;
  }
}

ul.wp-block-list li {
  position: relative;
  margin: 10px 0;
}
ul.wp-block-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--baseFontSize) * 0.75);
  transform: translateY(-50%);
}
ul.wp-block-list:not(.is-style-checklist) li {
  padding-left: 15px;
}
ul.wp-block-list:not(.is-style-checklist) li:before {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: currentColor;
}
ul.wp-block-list.is-style-checklist li {
  padding-left: 50px;
}
ul.wp-block-list.is-style-checklist li:before {
  width: 20px;
  height: 15px;
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="15" viewBox="0 0 20 15" fill="none"><path d="M18.53 0.000669968C18.1599 0.0107038 17.8076 0.164558 17.5489 0.428784C17.1799 0.797818 14.6058 3.44328 11.9657 6.15467C9.7382 8.44239 8.06133 10.157 7.28331 10.953L2.29749 7.1536C1.99647 6.92282 1.61519 6.82135 1.23837 6.87265C0.862653 6.92282 0.521503 7.12127 0.291834 7.4234C0.0621681 7.72554 -0.038156 8.10682 0.0131149 8.48253C0.0655132 8.85935 0.263964 9.19939 0.567209 9.42795L6.5608 13.9945C7.12828 14.4271 7.92877 14.3736 8.4338 13.8696C8.80284 13.5006 11.3769 10.8551 14.017 8.14375C16.657 5.43236 19.3627 2.65533 19.5648 2.45326C19.9884 2.04409 20.1166 1.41531 19.8881 0.872345C19.6584 0.32941 19.1198 -0.0171681 18.53 0.000669968Z" fill="%2307374D"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: var(--main-color);
}

ol.wp-block-list {
  counter-reset: index;
}
ol.wp-block-list > li {
  counter-reset: index_sub;
  position: relative;
  padding-left: 25px;
  margin: 10px 0;
}
ol.wp-block-list > li:before {
  counter-increment: index;
  content: counter(index) ".";
  position: absolute;
  left: 0;
  top: 0;
}
ol.wp-block-list > li:before li:before {
  counter-increment: index_sub;
  content: counter(index_sub) ".";
}

hr.wp-block-separator {
  border: none;
  background: var(--main-color);
  width: 20%;
  max-width: var(--maxWidthBig);
  margin-top: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem);
  margin-bottom: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem);
  max-width: var(--maxWidthBig);
  margin-right: auto;
  margin-left: auto;
}
hr.wp-block-separator.is-style-wide {
  width: 60%;
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open:after {
  display: none !important;
}

.mega-menu-primary-mobile-open header.head#masthead.is-sticky > .inner #logo {
  background-color: var(--contrastColorInverted);
  z-index: 999999;
}
.mega-menu-primary-mobile-open #site-navigation {
  z-index: 999998;
}

@media screen and (max-width: 1599px) {
  .error404 #masthead:not(.is-sticky),
  .page-template-page-sitemap #masthead:not(.is-sticky),
  .page-template-page-nobanner #masthead:not(.is-sticky),
  .search #masthead:not(.is-sticky),
  .archive #masthead:not(.is-sticky),
  .single #masthead:not(.is-sticky),
  .page-template-hph-event-cancellation #masthead:not(.is-sticky),
  .single-event #masthead:not(.is-sticky),
  .single-speaker #masthead:not(.is-sticky),
  .post-type-archive-event #masthead:not(.is-sticky) {
    background-color: var(--main-color);
  }
}
@media screen and (min-width: 1600px) {
  .error404 #masthead:not(.is-sticky) .inner,
  .page-template-page-sitemap #masthead:not(.is-sticky) .inner,
  .page-template-page-nobanner #masthead:not(.is-sticky) .inner,
  .search #masthead:not(.is-sticky) .inner,
  .archive #masthead:not(.is-sticky) .inner,
  .single #masthead:not(.is-sticky) .inner,
  .page-template-hph-event-cancellation #masthead:not(.is-sticky) .inner,
  .single-event #masthead:not(.is-sticky) .inner,
  .single-speaker #masthead:not(.is-sticky) .inner,
  .post-type-archive-event #masthead:not(.is-sticky) .inner {
    background-color: var(--main-color);
  }
}

html.mega-menu-primary-off-canvas-open body {
  overflow: unset !important;
}

header.head#masthead {
  position: sticky;
  top: var(--top);
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 999;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0.01%, rgba(0, 0, 0, 0.6) 100.01%);
}
header.head#masthead .inner {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  backface-visibility: hidden;
  gap: 0 40px;
}
@media screen and (max-width: 1599px) {
  header.head#masthead .inner {
    width: var(--baseWidth);
  }
}
@media screen and (min-width: 1600px) {
  header.head#masthead .inner {
    box-sizing: content-box;
    border-radius: 30px;
    max-width: var(--maxWidth);
    width: var(--baseWidth);
  }
}
@media screen and (min-width: 1200px) {
  header.head#masthead .inner {
    padding: 0 clamp(10px, 6vw, 100px);
  }
}
header.head#masthead .inner #logo {
  transition: var(--baseTransition);
  mask-image: var(--website-logo-image-url);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--contrastColorInverted);
  width: 240px;
  height: 65px;
  margin: 30px 0;
  backface-visibility: hidden;
}
header.head#masthead .inner #logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header.head#masthead .inner #logo span {
  display: none;
}
header.head#masthead div#page-scroll-position {
  height: 5px;
  width: 100%;
  display: block;
  background: var(--formBorderColor);
  position: absolute;
  top: 100%;
  transition: width 0.1s;
}
header.head#masthead div#page-scroll-position #indicator-bar {
  height: 100%;
  width: 0;
  display: block;
  background: var(--main-color);
}
header.head#masthead:not(.is-sticky) {
  height: var(--headerHeight);
}
@media screen and (max-width: 1199px) {
  header.head#masthead:not(.is-sticky) #mega-menu-wrap-primary .mega-toggle-block .mega-toggle-animated-inner,
  header.head#masthead:not(.is-sticky) #mega-menu-wrap-primary .mega-toggle-block .mega-toggle-animated-inner::before,
  header.head#masthead:not(.is-sticky) #mega-menu-wrap-primary .mega-toggle-block .mega-toggle-animated-inner::after,
  header.head#masthead:not(.is-sticky) #mega-menu-wrap-unterseiten-menu .mega-toggle-block .mega-toggle-animated-inner,
  header.head#masthead:not(.is-sticky) #mega-menu-wrap-unterseiten-menu .mega-toggle-block .mega-toggle-animated-inner::before,
  header.head#masthead:not(.is-sticky) #mega-menu-wrap-unterseiten-menu .mega-toggle-block .mega-toggle-animated-inner::after {
    background-color: var(--contrastColorInverted);
  }
}
header.head#masthead.is-sticky {
  height: var(--stickyHeaderHeight);
  max-width: var(--maxWidthBig);
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: transparent;
  box-shadow: none;
}
header.head#masthead.is-sticky .inner {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12.5px);
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1);
}
@media screen and (min-width: 1200px) {
  header.head#masthead.is-sticky .inner {
    border-radius: 30px;
  }
  header.head#masthead.is-sticky #mega-menu-primary > li > a,
  header.head#masthead.is-sticky #mega-menu-unterseiten-menu > li > a {
    color: var(--main-color) !important;
  }
}
@media screen and (max-width: 1199px) {
  header.head#masthead.is-sticky .inner {
    width: 100%;
    padding-left: clamp(10px, 3vw, 50px);
    padding-right: clamp(10px, 3vw, 50px);
  }
}
header.head#masthead.is-sticky > .inner #logo {
  mask-image: var(--website-logo-sticky-image-url);
  background-color: var(--main-color);
  width: clamp(40px, 3.5vw, 63px);
  height: clamp(40px, 3.5vw, 63px);
  margin: 20px 0;
}

footer.foot {
  width: 100%;
  margin: 0 auto;
  color: var(--contrastColorInverted);
  padding-bottom: 30px;
  background-image: url("../img/footer-bg.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
  --overlapSize: clamp(30px, 4vw, 70px);
  margin-top: var(--overlapSize);
}
footer.foot strong {
  color: var(--contrastColorInverted);
}
footer.foot .overlapImg {
  margin-top: calc(var(--overlapSize) * -1);
  max-width: 60vw;
}
footer.foot .inner {
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin: 0 auto;
}
footer.foot .inner a {
  color: var(--contrastColorInverted);
  text-decoration: none;
}
footer.foot .inner h1, footer.foot .inner h2, footer.foot .inner h3, footer.foot .inner h4, footer.foot .inner h5, footer.foot .inner h6 {
  color: var(--contrastColorInverted);
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  padding-top: 40px;
  margin-bottom: 35px;
}
footer.foot .inner ul li {
  display: inline-block;
}
footer.foot .inner .col {
  flex-basis: 300px;
  flex-grow: 1;
}
footer.foot .inner .col-2 {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 30px);
}
footer.foot .inner .is-style-bigtext {
  max-width: 490px;
}
footer.foot .inner .row {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
footer.foot .inner .row:not(:last-of-type) {
  margin-bottom: var(--fl-margin-after-small);
}
footer.foot .inner .row.row-1 ul li {
  display: block;
}
footer.foot .inner .row.row-2 {
  align-items: baseline;
}
footer.foot .inner .row.row-2 a, footer.foot .inner .row.row-2 p {
  font-size: 15px;
  font-weight: 400;
}
footer.foot .inner .row.row-2 .col-2 .widget {
  display: inline-block;
}
footer.foot .inner .row.row-2 ul li:not(:last-of-type) {
  margin-right: clamp(10px, 1.6vw, 30px);
}

.backtotop {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 75px;
  height: 75px;
  display: block;
  transform: rotate(180deg);
  background: var(--main-color);
  opacity: 0;
  pointer-events: none;
  transform: translateY(75px) rotate(180deg);
  transition: var(--baseTransition);
}
.backtotop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: block;
  background: url("../img/backtotop.svg") no-repeat center center/16px auto;
  transition: var(--baseTransition);
}
.backtotop:hover::after {
  animation: bounce 1s infinite;
}
.backtotop span {
  display: none;
}
.backtotop:hover {
  background-color: var(--second-color);
}
.backtotop.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0%) rotate(180deg);
}

#masthead #mega-menu-wrap-primary .mega-menu-toggle,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle {
  background-color: transparent;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner,
#masthead #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner::before,
#masthead #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner::after,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner::before,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner::after {
  background-color: var(--main-color);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu {
  gap: clamp(1.25rem, 0.6839622642rem + 2.8301886792vw, 3.125rem);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu a.mega-menu-link {
  position: relative;
}
@media screen and (min-width: 1201px) {
  #masthead #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:hover, #masthead #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:focus,
  #masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu a.mega-menu-link:hover,
  #masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu a.mega-menu-link:focus,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary a.mega-menu-link:hover,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary a.mega-menu-link:focus,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu a.mega-menu-link:hover,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu a.mega-menu-link:focus {
    background-color: transparent;
  }
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item {
  color: var(--contrastColorInverted);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  background-color: transparent !important;
  color: var(--second-color);
  font-size: var(--baseFontSize);
  font-family: var(--headline);
  font-weight: 600;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item a.mega-menu-link {
  font-size: var(--baseFontSize);
  font-family: var(--headline);
  color: var(--contrastColorInverted);
  font-weight: 600;
  padding: 0;
  transition: var(--baseTransition);
}
@media screen and (min-width: 1201px) {
  #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus,
  #masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link:hover,
  #masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link:focus,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link:hover,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link:focus {
    color: var(--second-color) !important;
  }
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon {
  padding: 15px 30px 14px;
  background-color: currentColor;
  color: var(--contrastColorInverted);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon::before,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon::before,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon::before,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon::before {
  filter: brightness(0) invert(1) !important;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item li.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item li.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
  transform: rotate(90deg);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item li.mega-current-menu-item > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item li.mega-toggle-on > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item li.mega-current-menu-ancestor > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item li.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item li.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item li.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item li.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item li.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item li.mega-current-page-ancestor > a.mega-menu-link {
  background-color: var(--second-color) !important;
  font-size: var(--baseFontSize);
  font-family: var(--headline);
  font-weight: 600;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item li a,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item li a,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item li a,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item li a {
  margin: 0 !important;
  padding: 10px 20px !important;
}
@media screen and (min-width: 1201px) {
  #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item li a:hover, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item li a:focus,
  #masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item li a:hover,
  #masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item li a:focus,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item li a:hover,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item li a:focus,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item li a:hover,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item li a:focus {
    background-color: var(--second-color) !important;
  }
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:not(.mega-toggle-on) > a.mega-menu-link > span.mega-indicator:after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item:not(.mega-toggle-on) > a.mega-menu-link > span.mega-indicator:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item:not(.mega-toggle-on) > a.mega-menu-link > span.mega-indicator:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item:not(.mega-toggle-on) > a.mega-menu-link > span.mega-indicator:after {
  transform: rotate(-90deg);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link > span.mega-indicator::after {
  content: "\f140";
  transition: var(--baseTransition);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu a.mega-menu-link > span.mega-indicator::after {
  content: "\f139";
}
#masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu {
  background-color: var(--primaryLight);
  border-radius: 5px;
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  background-color: transparent;
  color: var(--contrastColorInverted);
  font-weight: 400;
  margin: 10px 20px;
  flex-direction: row;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  color: var(--contrastColorInverted);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:after, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link:after, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:after, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link:after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link:after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link:after {
  transform: scaleX(1);
}

#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu {
  gap: 0;
  background-color: var(--main-color);
  padding-top: var(--stickyHeaderHeight);
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link {
  padding: 15px 20px 14px;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  background-color: var(--second-color);
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-toggle-on,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-toggle-on,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-toggle-on,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-toggle-on {
  background-color: var(--primaryLight);
  color: var(--contrastColorInverted);
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu {
  box-shadow: none;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  padding: 10px 20px 10px 40px;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  padding: 10px 20px 10px 60px;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  color: var(--contrastColorInverted);
  background-color: transparent;
}

@media screen and (max-width: 1200px) {
  #masthead #mega-menu-wrap-primary .mega-menu-toggle ~ button.mega-close,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle ~ button.mega-close {
    background-color: var(--main-color);
    width: 100%;
    border-bottom: 1px solid var(--contrastColorInverted);
    height: var(--stickyHeaderHeight);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    right: 0;
    left: auto;
  }
  #masthead #mega-menu-wrap-primary .mega-menu-toggle ~ button.mega-close:before,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle ~ button.mega-close:before {
    content: "\f335";
    font-size: 30px;
  }
}
body .at-accessibility-toolbar .at-toolbar-link {
  justify-content: flex-start;
}
body .at-accessibility-toolbar .reset_all button {
  padding: 12px;
  gap: 12px;
}
body .at-accessibility-toolbar .accesibility_title {
  margin-bottom: 20px;
}

.entry-content > *[class*=px-] {
  position: relative;
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  width: var(--baseWidth);
}

.image-credits {
  column-count: 3;
}
@media screen and (max-width: 1200px) {
  .image-credits {
    column-count: 2;
  }
}
@media screen and (max-width: 960px) {
  .image-credits {
    column-count: 1;
  }
}

#site .gform_confirmation_message {
  max-width: var(--reducedWidth);
  width: var(--baseWidth);
  margin: var(--fl-margin-before-medium) auto;
}

#site .gform_wrapper.gravity-theme {
  max-width: var(--maxWidth);
  margin: 0 auto 100px;
  width: var(--baseWidth);
}
#site .gform_wrapper.gravity-theme .gform_required_legend {
  font-size: var(--miniFontSize);
  text-align: right;
}
#site .gform_wrapper.gravity-theme input[type=text], #site .gform_wrapper.gravity-theme input[type=email], #site .gform_wrapper.gravity-theme textarea, #site .gform_wrapper.gravity-theme select {
  padding: clamp(0.625rem, 0.4363207547rem + 0.9433962264vw, 1.25rem);
}
#site .gform_wrapper.gravity-theme .gfield_required {
  color: var(--second-color);
}
#site .gform_wrapper.gravity-theme .gfield_consent_label {
  font-size: 16px;
}
#site .gform_wrapper.gravity-theme .gfield-choice-input {
  top: 8px;
  position: relative;
  height: fit-content;
  vertical-align: top;
}
#site .gform_wrapper.gravity-theme .validation_message {
  background-color: var(--veryLightGray);
  color: var(--main-color);
  border-radius: var(--baseBorderRadius);
  border: none;
  outline: none;
}
#site .gform_wrapper.gravity-theme .gfield_error label {
  color: currentColor;
}
#site .gform_wrapper.gravity-theme .gfield_error .gfield-choice-image-wrapper::before {
  display: none;
}
#site .gform_wrapper.gravity-theme .gfield_error legend {
  color: var(--main-color);
}
#site .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
  border-color: var(--main-color);
}
#site .gform_wrapper.gravity-theme .gform_validation_errors {
  border: none;
  outline: none;
  background-color: var(--veryLightGray);
  border-radius: var(--baseBorderRadius);
  box-shadow: none;
}
#site .gform_wrapper.gravity-theme .gform_validation_errors .gform-icon--circle-error:before,
#site .gform_wrapper.gravity-theme .gform_validation_errors h2 {
  color: var(--main-color);
}
#site .gform_wrapper.gravity-theme .gform_validation_errors h2 {
  font-size: 16px;
}
#site .gform_wrapper.gravity-theme .gfield--type-radio .gfield_radio {
  display: flex;
  gap: 20px;
}
#site .gform_wrapper.gravity-theme .gfield--type-radio .gfield_radio .gchoice label {
  border-radius: 5px;
  background: rgba(234, 230, 226, 0.04);
  max-width: none;
  padding: 14px 23px;
  cursor: pointer;
  transition: 0.3s background-color ease;
}
#site .gform_wrapper.gravity-theme .gfield--type-radio .gfield_radio .gchoice input:checked + label {
  background: rgba(234, 230, 226, 0.2);
}
#site .gform_wrapper.gravity-theme .gfield--type-radio .gfield_radio .gchoice:hover label {
  background: rgba(234, 230, 226, 0.1);
}
#site .gform_wrapper.gravity-theme .gfield--type-radio .gfield_radio input {
  display: none;
}
#site .gform_wrapper.gravity-theme .gform_button:focus,
#site .gform_wrapper.gravity-theme .gform_button:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
  border: 1px solid #000;
}

#site .gform_confirmation_wrapper {
  max-width: var(--maxWidth);
  margin: 0 auto;
  width: var(--baseWidth);
}

.hph-event-closed-notice {
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  width: var(--baseWidth);
  background-color: var(--secondaryLight);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: var(--fl-margin-after-medium);
}

.hph-cancellation {
  margin-top: var(--fl-margin-before-medium);
}

.single-speaker .images {
  display: grid;
  grid-template-columns: 49% 16% 27%;
  grid-template-rows: clamp(20px, 4.2vw, 80px) auto;
  width: 380px;
  max-width: 100%;
  margin-bottom: var(--fl-margin-after-small);
  margin-left: max(4%, (100% - var(--maxWidth)) / 2);
}
.single-speaker .images .partner-image,
.single-speaker .images .speaker-image {
  border-radius: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.single-speaker .images .speaker-image {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
  background-color: var(--second-color);
}
.single-speaker .images .speaker-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.single-speaker .images .speaker-image:empty {
  background-image: url(../img/placeholder-person.svg);
}
.single-speaker .images .partner-image {
  grid-column: 2/span 2;
  grid-row: 2;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-speaker .images .partner-image img {
  max-height: 65px;
  max-width: 78%;
  width: 100%;
  height: auto;
}

.hph-event-partners-wrap #hph-partnerData {
  justify-content: center;
  border-radius: 10px;
}
.hph-event-partners-wrap #hph-partnerData:not(.is-empty) {
  background-color: var(--veryLightGray);
  padding: 20px;
}
.hph-event-partners-wrap .partner-logo {
  aspect-ratio: 1/1;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  max-width: 150px;
}
.hph-event-partners-wrap .partner-logo img {
  object-fit: contain;
  width: 60%;
  height: 60%;
}
.hph-event-partners-wrap .partner-name {
  text-align: center;
  margin-top: var(--fl-margin-before-extra-small);
  color: var(--main-color);
  font-size: 16px;
}

.px-agenda .agenda-time {
  border-bottom: 1px solid var(--light-gray);
  font-size: clamp(16px, 2vw, 35px);
}
.px-agenda .agenda-time .description {
  margin-top: 0;
}
.px-agenda .agenda-time,
.px-agenda .agenda-partner {
  padding-bottom: clamp(20px, 2.1vw, 40px);
  padding-top: clamp(20px, 2.1vw, 40px);
}
@media screen and (max-width: 640px) {
  .px-agenda .agenda-time,
  .px-agenda .agenda-partner {
    flex-wrap: wrap;
  }
}
.px-agenda .agenda-partner {
  border-bottom: 1px solid var(--light-gray);
  align-items: flex-start !important;
}
.px-agenda .agenda-partner .speaker {
  font-weight: 700;
  margin-top: var(--fl-margin-before-extra-small);
}
.px-agenda .agenda-partner .speaker a {
  font-weight: normal;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.px-agenda .agenda-partner .speaker a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: center;
  transition: transform 0.25s ease;
}
.px-agenda .agenda-partner .speaker a:hover:after {
  transform: scaleX(0.92);
}
.px-agenda .partner-image,
.px-agenda .speaker-image {
  border-radius: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.px-agenda .partner-image img,
.px-agenda .speaker-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.px-agenda .speaker-image {
  background-color: var(--second-color);
}
.px-agenda .speaker-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.px-agenda .speaker-image:empty {
  background-image: url("../img/placeholder-person.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.px-agenda .partner-image {
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.px-agenda .partner-image img {
  max-height: 65px;
  max-width: 78%;
}
.px-agenda .agenda-partner__speaker {
  display: grid;
  grid-template-columns: 1fr 49% 16% 27%;
  grid-template-rows: clamp(20px, 4.2vw, 80px) auto;
}
@media screen and (max-width: 640px) {
  .px-agenda .agenda-partner__speaker {
    max-width: 300px;
    margin: 20px auto 0 auto;
  }
}
.px-agenda .agenda-partner__speaker .speaker-image {
  grid-column: 2/span 2;
  grid-row: 1/span 2;
}
.px-agenda .agenda-partner__speaker .partner-image {
  grid-column: 3/span 2;
  grid-row: 2;
}

.pxs-event-teaser {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(30px, 3.2vw, 61px);
  position: relative;
  padding-right: max(4%, (100% - var(--maxWidth)) / 2);
  padding-left: max(4%, (100% - var(--maxWidth)) / 2);
}
@media screen and (max-width: 1200px) {
  .pxs-event-teaser {
    flex-direction: column;
  }
}
.pxs-event-teaser aside {
  flex-basis: 360px;
  display: flex;
  flex-direction: column;
  position: sticky;
  padding-top: var(--fl-margin-before-small);
  top: calc(var(--stickyHeaderHeight) + var(--top));
  transition: all 0.3s ease-in-out;
  z-index: 96;
  border-radius: 10px;
}
@media screen and (min-width: 641px) {
  .pxs-event-teaser aside {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1200px) {
  .pxs-event-teaser aside {
    flex-basis: auto;
    width: 100%;
    order: -1;
  }
  .pxs-event-teaser aside .event-teaser-nav {
    background-color: var(--contrastColorInverted);
  }
}
@media screen and (max-width: 1200px) {
  .pxs-event-teaser aside.is-collapsed .event-teaser-nav {
    display: none;
  }
  .pxs-event-teaser aside.is-collapsed .event-teaser-nav-toggle svg {
    transform: rotate(180deg);
  }
}
.pxs-event-teaser .event-teaser-nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--contrastColorInverted);
  background-color: var(--main-color);
  padding: 10px;
  border-radius: 5px;
}
.pxs-event-teaser .event-teaser-nav-toggle svg {
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .pxs-event-teaser .event-teaser-nav-toggle {
    display: flex;
  }
}
.pxs-event-teaser .event-teaser-nav .event-teaser-nav-title {
  font-size: clamp(22px, 2vw, 38px);
  font-weight: 700;
  margin-bottom: clamp(20px, 2vw, 40px);
  display: block;
}
@media screen and (max-width: 1200px) {
  .pxs-event-teaser .event-teaser-nav .event-teaser-nav-title {
    display: none;
  }
}
.pxs-event-teaser .event-teaser-nav ul.tours {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1vw, 20px);
}
@media screen and (max-width: 1200px) {
  .pxs-event-teaser .event-teaser-nav ul.tours {
    padding: 10px;
  }
}
.pxs-event-teaser .event-teaser-nav ul.tours li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pxs-event-teaser .event-teaser-nav ul.tours .tour-link {
  text-decoration: none;
  font-weight: 700;
  background-color: var(--main-color);
  color: var(--contrastColorInverted);
  padding: 10px 20px;
  border-radius: 5px;
  width: 100%;
  transition: 0.3s background-color ease, 0.3s color ease;
}
.pxs-event-teaser .event-teaser-nav ul.tours .tour-link:hover, .pxs-event-teaser .event-teaser-nav ul.tours .tour-link:focus-visible {
  background-color: var(--second-color);
  color: var(--fontColor);
}
.pxs-event-teaser .event-teaser-nav ul.tours .tour-link:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}
.pxs-event-teaser .event-teaser-nav ul.tours .tour-nav-description {
  margin-top: 10px;
}
.pxs-event-teaser .event-teaser-nav ul.tours .tour-nav-description p:last-child {
  margin-bottom: 0;
}
.pxs-event-teaser .event-teaser-content {
  flex-grow: 1;
  padding-top: var(--fl-margin-before-small);
}
.pxs-event-teaser .event-teaser-content .tour-section:not(:last-child) {
  margin-bottom: clamp(30px, 3.2vw, 60px);
}
.pxs-event-teaser .event-teaser-content .tour-title {
  font-size: var(--baseFontSize);
  font-weight: 700;
}
.pxs-event-teaser .event-teaser-content ul.tour-events {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}
@media screen and (max-width: 1200px) {
  .pxs-event-teaser .event-teaser-content ul.tour-events {
    justify-content: space-around;
  }
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event {
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  .pxs-event-teaser .event-teaser-content ul.tour-events .tour-event {
    flex-grow: 1;
    flex-basis: 250px;
  }
}
@media screen and (min-width: 1201px) {
  .pxs-event-teaser .event-teaser-content ul.tour-events .tour-event {
    flex-grow: 0;
    flex-basis: 299px;
    aspect-ratio: 300/400;
  }
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-link {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: var(--fontColor);
  justify-self: end;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  padding: 20px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-link:hover .tour-event-title, .pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-link:focus-visible .tour-event-title {
  text-decoration: underline;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-link:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-link:has(.event-is-full)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 450px) {
  .pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-link {
    gap: 12px;
  }
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event:hover {
  transform: translateY(-30px);
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event:hover .tour-event-body {
  opacity: 0;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event:hover .event-hover-content {
  transform: translateY(50px);
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event.is-keyboard-expanded {
  transform: translateY(-30px);
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event.is-keyboard-expanded .tour-event-body {
  opacity: 0;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event.is-keyboard-expanded .tour-event-hover {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event.is-keyboard-expanded .tour-event-hover .title-wrapper {
  transform: translateY(0);
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event.is-keyboard-expanded .event-hover-content {
  transform: translateY(50px);
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-body {
  position: relative;
  height: fit-content;
  flex-grow: 1;
  z-index: 1;
  top: 100%;
  transform: translateY(-100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.5s opacity ease;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event:not(:hover):not(.is-keyboard-expanded) .tour-event-hover {
  transform: translateY(20%);
  opacity: 0;
  pointer-events: none;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event:not(:hover):not(.is-keyboard-expanded) .tour-event-hover .title-wrapper {
  transform: translateY(200px);
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-hover {
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  transition: transform 1s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 1s ease;
  padding: 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-hover .title-wrapper {
  transition: transform 1s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-hover .event-hover-content {
  background-color: var(--contrastColorInverted);
  box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.1);
  height: fit-content;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-hover .event-hover-content .wp-block-button__link {
  justify-content: center;
  padding: var(--margin-xs) 10px;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-hover .event-hover-content .wp-block-button__link:focus, .pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-hover .event-hover-content .wp-block-button__link:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-hover .event-hover-content .is-style-fill-secondary .wp-block-button__link {
  margin-top: 5px;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-title {
  font-weight: 700;
  background-color: var(--main-color);
  color: var(--contrastColorInverted);
  border-radius: 5px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-title:before {
  content: "";
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M13.1608 15.0277C13.3143 15.0277 13.4672 15.1301 13.57 15.2308C13.6728 15.3336 13.6979 15.5127 13.6979 15.6664L12.5485 23.5131C12.5225 23.7944 12.2927 24.0242 12.0114 23.9984C11.73 23.9725 11.5003 23.7944 11.4743 23.5131L10.3249 15.6674C10.3249 15.5137 10.351 15.3336 10.4528 15.2318C10.5546 15.0784 10.7074 15.0278 10.861 15.0277H13.1608ZM16.113 0.00231934C17.0553 0.0483379 17.8658 0.780679 17.9147 1.73865C17.9656 2.55619 17.4805 3.24709 16.7897 3.57849C16.5342 3.68031 16.3542 3.96259 16.3542 4.21814L16.3561 10.2504C16.3562 10.5577 16.5343 10.7862 16.7907 10.889C17.5064 11.1955 17.9666 11.9113 17.9157 12.7289C17.8637 13.751 16.9457 14.5179 15.9235 14.5179L8.07584 14.5424C7.05384 14.5421 6.13354 13.7753 6.08366 12.7533C6.03291 11.9359 6.51798 11.1949 7.20866 10.9135C7.46421 10.8116 7.6442 10.5303 7.6442 10.2748V4.29529C7.64405 3.98817 7.46539 3.75999 7.23502 3.63123C6.51936 3.3248 6.05924 2.60882 6.11002 1.79138C6.16195 0.769211 7.08004 0.00234331 8.10221 0.00231934H16.113Z" fill="white"/></svg>');
  mask-position: bottom;
  mask-repeat: no-repeat;
  mask-size: contain;
  height: 24px;
  width: 24px;
  display: inline-block;
  background: white;
}
.pxs-event-teaser .event-teaser-content ul.tour-events .tour-event .tour-event-date {
  color: var(--grey);
}
.pxs-event-teaser .event-teaser-content .tour-event-availability {
  border-radius: 5px;
  padding: 10px 20px;
  width: fit-content;
}
.pxs-event-teaser .event-teaser-content .tour-event-availability.event-has-places {
  background-color: var(--contrastColorInverted);
}
.pxs-event-teaser .event-teaser-content .tour-event-availability.event-is-full {
  background-color: var(--secondaryLight);
}
.pxs-event-teaser .event-teaser-content .event-teaser-empty {
  font-style: italic;
  opacity: 0.8;
}
@media screen and (min-width: 1201px) {
  .pxs-event-teaser .bg-image {
    position: absolute;
    z-index: 0;
    width: clamp(100px, 17vw, 320px);
    bottom: 20px;
    left: 0;
  }
  .pxs-event-teaser .bg-image ~ * {
    z-index: 1;
  }
  .pxs-event-teaser .bg-image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1200px) {
  .pxs-event-teaser .bg-image {
    display: none;
  }
}

body .special-effect {
  color: var(--light-gray);
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Slider */
.slick-slider {
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 20px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 20px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 20px;
}
[dir=rtl] .slick-next {
  left: 20px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  justify-content: center;
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border-radius: 50%;
  border: 0;
  background: var(--main-color);
  display: block;
  height: 100%;
  width: 100%;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  opacity: 0.25;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
  opacity: 1;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}
.slick-dots li::before {
  content: none !important;
}

#site .sidebar-wrapper {
  z-index: 99;
  right: 0;
}
@media screen and (min-width: 769px) {
  #site .sidebar-wrapper .sidebar {
    top: 33%;
  }
}
#site .sidebar-wrapper .sidebar:not(:hover):not(:focus-within) .stickyElement {
  align-items: center;
  padding: 25px 14px;
  overflow: hidden;
}
#site .sidebar-wrapper .sidebar:not(:hover):not(:focus-within) .stickyElement .options {
  width: 40px;
  box-sizing: content-box;
  align-items: center;
  gap: 0;
}
#site .sidebar-wrapper .sidebar:not(:hover):not(:focus-within) .stickyElement .options > .option:not(.hidden):not(:last-child) {
  margin-bottom: 35px;
}
#site .sidebar-wrapper .sidebar:hover .stickyElement, #site .sidebar-wrapper .sidebar:focus-within .stickyElement {
  padding: 25px 40px 25px 23px;
}
#site .sidebar-wrapper .sidebar:hover .stickyElement .options, #site .sidebar-wrapper .sidebar:focus-within .stickyElement .options {
  gap: 25px;
}
#site .sidebar-wrapper .sidebar:hover .stickyElement .option .hidden, #site .sidebar-wrapper .sidebar:focus-within .stickyElement .option .hidden {
  padding-left: 15px;
}
#site .sidebar-wrapper .stickyElement {
  border-radius: 5px 0 0 5px;
  background-color: var(--main-color);
  gap: 40px;
  border: none;
  box-shadow: 0 0px 5px 0 rgba(255, 255, 255, 0.5);
}
#site .sidebar-wrapper .stickyElement .head:not(:has(img)) {
  display: none;
}
#site .sidebar-wrapper .stickyElement .head:not(:has(img)) ~ .options > .option.divider:first-child {
  display: none;
}
#site .sidebar-wrapper .stickyElement .head .image {
  width: 40px;
  height: 40px;
}
#site .sidebar-wrapper .stickyElement .link,
#site .sidebar-wrapper .stickyElement .title {
  color: var(--contrastColorInverted);
  font-size: var(--baseFontSize);
}
#site .sidebar-wrapper .stickyElement .options > .option:last-child {
  margin-bottom: 0;
}
#site .sidebar-wrapper .stickyElement .options .icon {
  padding: 0;
  align-items: center;
}
#site .sidebar-wrapper .stickyElement .options .icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
#site .sidebar-wrapper .stickyElement .options .option > a {
  gap: 0;
}
#site .sidebar-wrapper .wysiwyg {
  color: var(--contrastColorInverted);
  padding: 0;
}

BODY.single-product .cont,
BODY.woocommerce-cart .cont,
BODY.woocommerce-checkout .cont,
BODY.woocommerce-page.search .cont,
BODY.woocommerce-page.archive .cont,
BODY.woocommerce-account .cont {
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin: 0 auto;
  padding-bottom: 100px;
  padding-top: 100px;
}

BODY.woocommerce-page #allcont .head {
  z-index: 9999;
}
BODY.woocommerce-page #allcont .cont #primary {
  flex: 1 1 65%;
}
BODY.woocommerce-page #allcont .cont #secondary {
  flex: 1 1 30%;
  padding: 25px;
  background: var(--backgroundColor);
}
BODY.woocommerce-page #allcont .cont #secondary .widget {
  margin-bottom: 30px;
}

BODY.woocommerce-page:not(.woocommerce-cart) .cont {
  display: flex;
  flex-direction: row-reverse;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce button, .woocommerce input.button, .woocommerce input[type=submit], .woocommerce span.onsale {
  background-color: var(--main-color);
  color: var(--contrastColorInverted);
}
.woocommerce #respond input#submit.alt:hover, .woocommerce #respond input#submit.alt:focus, .woocommerce a.button.alt:hover, .woocommerce a.button.alt:focus, .woocommerce button.button.alt:hover, .woocommerce button.button.alt:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce a.button:hover, .woocommerce a.button:focus, .woocommerce button.button:hover, .woocommerce button:hover, .woocommerce button.button:focus, .woocommerce button:focus, .woocommerce input.button:hover, .woocommerce input[type=submit]:hover, .woocommerce input.button:focus, .woocommerce input[type=submit]:focus, .woocommerce span.onsale:hover, .woocommerce span.onsale:focus {
  background-color: rgba(var(--main-color), 0.5);
  color: var(--contrastColorInverted);
}
.woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce ul.products li.product .price {
  color: var(--main-color);
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce button, .woocommerce input.button, .woocommerce input[type=submit], .woocommerce span.onsale {
  border-radius: 0;
}
.woocommerce input.button:disabled, .woocommerce input[type=submit]:disabled, .woocommerce input.button:disabled[disabled] {
  color: var(--contrastColorInverted);
}

.woocommerce-message {
  border-top-color: var(--main-color);
}

.woocommerce-message::before {
  color: var(--main-color);
}

.woocommerce-checkout .woocommerce {
  width: var(--baseWidth);
  margin: auto;
  max-width: var(--maxWidth);
}
.woocommerce-checkout .woocommerce .checkout.woocommerce-checkout {
  margin-top: 60px;
}
.woocommerce-checkout .woocommerce #order_review_heading {
  margin-top: 30px;
}

small.wgm-info.wgm-extra-costs-eu {
  line-height: normal;
  display: none;
}

.products > li.product {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.woocommerce ul.products li.product .price {
  flex: 1 1 100%;
  font-size: 18px;
  font-weight: bold;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-weight: normal;
  font-size: 14px;
  margin: 10px 0;
}

.woocommerce ul.products li.product .button, .woocommerce ul.products li.product input[type=submit], .woocommerce ul.products li.product button {
  flex: 1 1 100%;
  align-self: flex-end !important;
  align-content: flex-end !important;
  background: var(--main-color);
  opacity: 0.8;
  color: white;
  transition: var(--baseTransition);
}
.woocommerce ul.products li.product .button:hover, .woocommerce ul.products li.product input[type=submit]:hover, .woocommerce ul.products li.product button:hover {
  opacity: 1;
}

.woocommerce ul.products {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

li.product .wgm-info {
  flex: 1 1 100%;
  margin: -5px 0 !important;
}

td.product-subtotal span.wdr_you_saved_con {
  display: block;
  font-size: 14px;
}

.wdr_you_saved_con {
  color: var(--main-color);
}

.woocommerce ul.products li.product .button, .woocommerce ul.products li.product input[type=submit], .woocommerce ul.products li.product button {
  text-align: center;
}
.woocommerce ul.products li.product .button.added, .woocommerce ul.products li.product input.added[type=submit], .woocommerce ul.products li.product button.added {
  opacity: 0.3;
}

.woocommerce a.added_to_cart {
  background: var(--main-color);
  display: inline-block;
  padding: 0.618em 1em;
  line-height: 1;
  margin-top: -35.75px;
  width: 100%;
  text-align: center;
  color: white;
  font-weight: bold;
  opacity: 1;
  position: relative;
  z-index: 1;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product h3 {
  font-size: var(--baseFontSize);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  font-weight: 700;
}

.woocommerce ul.products li.product .onsale {
  margin: 0;
  padding: 5px 10px;
  min-height: 0;
  height: auto;
  line-height: normal;
  font-size: var(--baseFontSize);
}

.wgm-info {
  display: block;
  margin-bottom: -8px;
  font-size: 80%;
}

button#place_order {
  float: right;
}

a:focus-visible {
  outline: 2px solid var(--contrastColorInverted, #fff);
  outline-offset: 2px;
  border-radius: 4px;
}

a:focus {
  outline: 2px solid var(--contrastColorInverted, #fff);
  outline-offset: 2px;
  border-radius: 4px;
}

#masthead #logo:focus-within {
  background-color: var(--second-color, #000) !important;
  transform: scale(1.04);
}

@supports selector(.x:has(a)) {
  #masthead .inner:has(#logo > a:focus-visible) {
    box-shadow: 0 0 0 2px var(--contrastColorInverted, #fff), 0 0 0 5px var(--main-color, #000);
    border-radius: 30px;
  }
}