:root {
  --fallback: Verdana, Arial, sans-serif;
  --mainFont: "Campton", var(--fallback);
  --headline: "Campton", var(--fallback);
  --buttonColor: #00afdd;
  --colorPurple: #8761eb;
  --colorGreen: #a1ed63;
  --colorGreenLight: #80ff8c;
  --colorGreenDark: #00c714;
  --fontColor: #14285a;
  --colorGray: #c2c2c2;
  --colorGrayDark: #404040;
  --colorGrayLight: #d8d8d8;
  --colorGrayVeryLight: #f2f2f2;
  --backgroundColor: #ffffff;
  --backgroundColorRGB: 255, 255, 255;
  --backgroundColorDark: #b3b3b3;
  --warningColor: #b10000;
  --formBorderColor: #b6b6b6;
  --lightGray: #f9f9f9;
  --mainGradient: linear-gradient(
    to bottom,
    var(--main-color) 0%,
    var(--second-color) 100%
  );
  --contrastColor: #000;
  --contrastColorRGB: 0, 0, 0;
  --contrastColorLight: #1a1a1a;
  --contrastColorInverted: #fff;
  --contrastColorInvertedRGB: 255, 255, 255;
  --contrastColorDark: #e6e6e6;
  --baseFontSize: 18px;
  --baseLineheight: 155%;
  --miniFontSize: 15px;
  --baseBorderRadius: 10px;
  --stickyHeaderHeight: 125px;
  --stickyHeaderHeightMobile: 75px;
  --spaceBetweenDefault: 20px;
  --spaceBetweenSlim: 10px;
  --spaceBetweenWide: autoClamp(40, 80);
  --baseTransition: all 0.3s ease-in-out;
  --baseWidth: 92%;
  --reducedWidth: 960px;
  --maxWidth: 1504px;
  --maxWidthBig: 1500px;
  --pageLimit: 1920px;
  --fl-frame-lightbgbox: #f2f2f2;
  --fl-frame-cibgbox: var(--main-color);
  --fl-layout-reduced: var(--reducedWidth);
  --fl-margin-before-extra-small: 30px;
  --fl-margin-before-small: 50px;
  --fl-margin-before-medium: 80px;
  --fl-margin-before-large: 180px;
  --fl-margin-before-extra-large: 200px;
  --fl-margin-after-extra-small: 30px;
  --fl-margin-after-small: 50px;
  --fl-margin-after-medium: 80px;
  --fl-margin-after-large: 180px;
  --fl-margin-after-extra-large: 200px;
}
@media screen and (max-width: 1024px) {
  :root {
    --fl-margin-before-medium: 60px;
    --fl-margin-before-large: 100px;
    --fl-margin-before-extra-large: 160px;
    --fl-margin-after-medium: 60px;
    --fl-margin-after-large: 100px;
    --fl-margin-after-extra-large: 160px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --fl-margin-before-small: 40px;
    --fl-margin-before-medium: 50px;
    --fl-margin-before-large: 80px;
    --fl-margin-before-extra-large: 130px;
    --fl-margin-after-small: 40px;
    --fl-margin-after-medium: 50px;
    --fl-margin-after-large: 80px;
    --fl-margin-after-extra-large: 130px;
  }
}
@media screen and (max-width: 450px) {
  :root {
    --fl-margin-before-small: 35px;
    --fl-margin-before-medium: 40px;
    --fl-margin-before-large: 60px;
    --fl-margin-before-extra-large: 100px;
    --fl-margin-after-small: 35px;
    --fl-margin-after-medium: 40px;
    --fl-margin-after-large: 60px;
    --fl-margin-after-extra-large: 100px;
  }
}

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

/* campton-light - latin */
@font-face {
  font-display: swap;
  font-family: "Campton";
  font-style: normal;
  font-weight: 300;
  src: local("Campton Light"), local("Campton-Light"), url("../fonts/campton-light.woff2") format("woff2"), url("../fonts/campton-light.woff") format("woff"); /* Modern Browsers */
}
/* campton-regular (Book) - latin */
@font-face {
  font-display: swap;
  font-family: "Campton";
  font-style: normal;
  font-weight: 400;
  src: local("Campton"), local("Campton-Book"), url("../fonts/campton-book.woff2") format("woff2"), url("../fonts/campton-book.woff") format("woff"); /* Modern Browsers */
}
/* campton-medium - latin */
@font-face {
  font-display: swap;
  font-family: "Campton";
  font-style: normal;
  font-weight: 500;
  src: local("Campton Medium"), local("Campton-Medium"), url("../fonts/campton-medium.woff2") format("woff2"), url("../fonts/campton-medium.woff") format("woff"); /* Modern Browsers */
}
/* campton-semibold - latin */
@font-face {
  font-display: swap;
  font-family: "Campton";
  font-style: normal;
  font-weight: 600;
  src: local("Campton SemiBold"), local("Campton-SemiBold"), url("../fonts/campton-semibold.woff2") format("woff2"), url("../fonts/campton-semibold.woff") format("woff"); /* Modern Browsers */
}
/* campton-bold - latin */
@font-face {
  font-display: swap;
  font-family: "Campton";
  font-style: normal;
  font-weight: 700;
  src: local("Campton Bold"), local("Campton-Bold"), url("../fonts/campton-bold.woff2") format("woff2"), url("../fonts/campton-bold.woff") format("woff"); /* Modern Browsers */
}
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(--buttonColor);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: var(--main-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  font-family: var(--headline);
  line-height: 120%;
  color: var(--main-color);
  text-wrap: balance;
}
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,
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);
}

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(1.6666666667rem, 1.2162162162rem + 2.5337837838vw, 3.3333333333rem);
}

h2 {
  font-size: clamp(1.4444444444rem, 1.0540540541rem + 2.1959459459vw, 2.8888888889rem);
}

h3 {
  font-size: clamp(1.3333333333rem, 1.033033033rem + 1.6891891892vw, 2.4444444444rem);
}

h4 {
  font-size: clamp(1.2222222222rem, 1.1321321321rem + 0.5067567568vw, 1.5555555556rem);
}

h5 {
  font-size: clamp(1rem, 0.9099099099rem + 0.5067567568vw, 1.3333333333rem);
}

h6 {
  font-size: clamp(0.8888888889rem, 0.8288288288rem + 0.3378378378vw, 1.1111111111rem);
}

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

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

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

i,
em {
  font-style: italic;
}

strong,
b {
  font-weight: 600;
}

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

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

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

.editor-styles-wrapper .block-editor-block-list__block ul:not(.wp-block-gallery):not(.is-style-list-check):not(.splide__pagination):not(#product-container):not(#shipping_method):not(.wc_payment_methods):not(.woocommerce-order-overview):not(.wc-bacs-bank-details):not(.splide__list):not(.wpc-filters-ul-list):not(.wpc-filter-chips-list):not(.woocommerce-error):not(.products):not(.info_box ul) li {
  position: relative;
  padding-left: 15px;
  margin: 10px 0;
}
.editor-styles-wrapper .block-editor-block-list__block ul:not(.wp-block-gallery):not(.is-style-list-check):not(.splide__pagination):not(#product-container):not(#shipping_method):not(.wc_payment_methods):not(.woocommerce-order-overview):not(.wc-bacs-bank-details):not(.splide__list):not(.wpc-filters-ul-list):not(.wpc-filter-chips-list):not(.woocommerce-error):not(.products):not(.info_box ul) li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: var(--second-color);
}
.editor-styles-wrapper .block-editor-block-list__block ol {
  counter-reset: index;
}
.editor-styles-wrapper .block-editor-block-list__block ol > li {
  counter-reset: index_sub;
  position: relative;
  padding-left: 25px;
  margin: 10px 0;
}
.editor-styles-wrapper .block-editor-block-list__block ol > li:before {
  counter-increment: index;
  content: counter(index) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--second-color);
}
.editor-styles-wrapper .block-editor-block-list__block ol > li:before li:before {
  counter-increment: index_sub;
  content: counter(index_sub) ".";
  color: var(--second-color);
}
.editor-styles-wrapper .wp-block-buttons .wp-block-button a.wp-block-button__link {
  text-align: center;
}
.editor-styles-wrapper .wp-block-buttons:where(.is-layout-flex) {
  gap: 1em !important;
}

.wp-block-buttons {
  margin-top: clamp(1.2222222222rem, 1.1021021021rem + 0.6756756757vw, 1.6666666667rem);
}
.wp-block-buttons.is-layout-flex {
  column-gap: 30px !important;
  row-gap: 10px !important;
}
.wp-block-buttons .wp-block-button a.wp-block-button__link {
  text-align: center;
}
.wp-block-buttons:where(.is-layout-flex) {
  row-gap: 10px !important;
  column-gap: 30px !important;
}

.nav-previous a,
.nav-next a {
  margin-top: 20px;
}

button.submit,
.gform_footer input[type=submit],
.gform_button[type=submit],
.map_btn button,
a.button,
a.btn,
.wp-block-button > .wp-block-button__link:not(.has-text-color),
.nav-previous a,
.nav-next a,
.hph-gpdr-google-maps .iframewrap BUTTON.loadiframebtn,
.hph-gpdr-google-maps BUTTON.button,
.px-iframe .button,
.px-iframe input[type=submit],
.px-iframe button,
.hover-box-label,
.btn.sticky-info__btn,
.hph-consent-btn {
  display: inline-block;
  width: auto;
  padding: 16px 40px;
  border: none;
  background: var(--second-color);
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  color: var(--fontColor);
  transition: var(--baseTransition);
  cursor: pointer;
}
button.submit:hover, button.submit:focus, button.submit:focus-visible,
.gform_footer input[type=submit]:hover,
.gform_footer input[type=submit]:focus,
.gform_footer input[type=submit]:focus-visible,
.gform_button[type=submit]:hover,
.gform_button[type=submit]:focus,
.gform_button[type=submit]:focus-visible,
.map_btn button:hover,
.map_btn button:focus,
.map_btn button:focus-visible,
a.button:hover,
a.button:focus,
a.button:focus-visible,
a.btn:hover,
a.btn:focus,
a.btn:focus-visible,
.wp-block-button > .wp-block-button__link:not(.has-text-color):hover,
.wp-block-button > .wp-block-button__link:not(.has-text-color):focus,
.wp-block-button > .wp-block-button__link:not(.has-text-color):focus-visible,
.nav-previous a:hover,
.nav-previous a:focus,
.nav-previous a:focus-visible,
.nav-next a:hover,
.nav-next a:focus,
.nav-next a:focus-visible,
.hph-gpdr-google-maps .iframewrap BUTTON.loadiframebtn:hover,
.hph-gpdr-google-maps .iframewrap BUTTON.loadiframebtn:focus,
.hph-gpdr-google-maps .iframewrap BUTTON.loadiframebtn:focus-visible,
.hph-gpdr-google-maps BUTTON.button:hover,
.hph-gpdr-google-maps BUTTON.button:focus,
.hph-gpdr-google-maps BUTTON.button:focus-visible,
.px-iframe .button:hover,
.px-iframe input[type=submit]:hover,
.px-iframe button:hover,
.px-iframe .button:focus,
.px-iframe input[type=submit]:focus,
.px-iframe button:focus,
.px-iframe .button:focus-visible,
.px-iframe input[type=submit]:focus-visible,
.px-iframe button:focus-visible,
.hover-box-label:hover,
.hover-box-label:focus,
.hover-box-label:focus-visible,
.btn.sticky-info__btn:hover,
.btn.sticky-info__btn:focus,
.btn.sticky-info__btn:focus-visible,
.hph-consent-btn:hover,
.hph-consent-btn:focus,
.hph-consent-btn:focus-visible {
  opacity: 1;
  color: #fff;
  outline: none;
  background: var(--main-color);
}

.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),
.btn.btn-border,
.hover-box-label,
.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color),
.btn.sticky-info__btn {
  background: transparent;
  color: var(--buttonColor);
  border: 0;
  border-radius: 0;
  padding: 0;
  outline: 0;
  background: transparent;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  gap: 15px;
  font-weight: 500;
  align-items: center;
  box-shadow: none;
  z-index: 1;
  transition: var(--baseTransition);
  transform: none;
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):after,
.btn.btn-border:after,
.hover-box-label:after,
.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color):after,
.btn.sticky-info__btn:after {
  content: "";
  border: solid var(--buttonColor);
  border-width: 0 2px 2px 0;
  display: block;
  padding: 3px;
  transition: var(--baseTransition);
  transform: rotate(-45deg) translateX(0);
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover, .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):focus, .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):focus-visible,
.btn.btn-border:hover,
.btn.btn-border:focus,
.btn.btn-border:focus-visible,
.hover-box-label:hover,
.hover-box-label:focus,
.hover-box-label:focus-visible,
.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color):hover,
.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color):focus,
.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color):focus-visible,
.btn.sticky-info__btn:hover,
.btn.sticky-info__btn:focus,
.btn.sticky-info__btn:focus-visible {
  transform: none;
  background: transparent;
  color: var(--buttonColor);
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover:after, .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):focus:after, .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):focus-visible:after,
.btn.btn-border:hover:after,
.btn.btn-border:focus:after,
.btn.btn-border:focus-visible:after,
.hover-box-label:hover:after,
.hover-box-label:focus:after,
.hover-box-label:focus-visible:after,
.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color):hover:after,
.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color):focus:after,
.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color):focus-visible:after,
.btn.sticky-info__btn:hover:after,
.btn.sticky-info__btn:focus:after,
.btn.sticky-info__btn:focus-visible:after {
  transform: translateX(6px) rotate(-45deg);
}

.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color) {
  margin-top: 0;
  padding-left: 2em;
  position: relative;
  white-space: nowrap;
  word-break: keep-all;
}
.wp-block-button.is-style-icon-apply > .wp-block-button__link:not(.has-text-color):before {
  content: "";
  background: url("../img/apply.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.33em;
  height: 1.33em;
}

p[class*=is-style-icon]:not(footer.foot p[class*=is-style-icon]) {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  position: relative;
  margin-top: 0.83em;
}
@media all and (max-width: 460px) {
  p[class*=is-style-icon]:not(footer.foot p[class*=is-style-icon]) {
    font-size: 18px !important;
  }
}
p[class*=is-style-icon]:not(footer.foot p[class*=is-style-icon]).has-text-align-center {
  justify-content: center;
}
p[class*=is-style-icon]:not(footer.foot p[class*=is-style-icon]):before {
  content: "";
  position: relative;
  display: block;
  flex: 0 0 1.33em;
  width: 1.33em;
  height: 1.33em;
}
p[class*=is-style-icon]:not(footer.foot p[class*=is-style-icon]) a {
  color: var(--fontColor);
  transition: var(--baseTransition);
}
p[class*=is-style-icon]:not(footer.foot p[class*=is-style-icon]) a:hover {
  text-decoration: underline;
}
p[class*=is-style-icon]:not(footer.foot p[class*=is-style-icon]) + p[class*=is-style-icon] {
  margin-top: 0.7em !important;
}

.is-style-icon-mail:before {
  background: url("../img/mail.svg") no-repeat center/contain;
}

.is-style-icon-tel:before {
  background: url("../img/tel.svg") no-repeat center/contain;
}

.is-style-icon-webpage:before {
  background: url("../img/web.svg") no-repeat center/contain;
}

.wp-block-image.is-style-rounded img {
  border-radius: 10px;
}

figure.aligncenter .wp-element-caption {
  text-align: center;
}

.is-style-subtitle {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 18px !important;
  font-weight: 500;
}
.is-style-subtitle + h1,
.is-style-subtitle + h2,
.is-style-subtitle + h3,
.is-style-subtitle + h4,
.is-style-subtitle + h5,
.is-style-subtitle + h6 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.px-info-card__content .wp-block-heading.has-direct-image {
  display: flex;
  gap: 16px;
  align-items: center;
}
.px-info-card__content .wp-block-heading.has-direct-image > img {
  flex: 0 0 50px;
  width: 50px !important;
  height: 50px;
}

#allcont .wp-block-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#allcont .wp-block-table table {
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  background: transparent;
  table-layout: auto;
  min-width: 100%;
  width: 100%;
}
#allcont .wp-block-table table tr {
  background: transparent;
}
#allcont .wp-block-table table tr th,
#allcont .wp-block-table table tr td {
  padding: 10px 20px !important;
  min-width: 200px;
  border: 0;
  word-break: keep-all;
  border-bottom: 1.5px solid var(--second-color);
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: normal;
}
#allcont .wp-block-table table thead,
#allcont .wp-block-table table tfoot {
  border: none;
}
#allcont .wp-block-table table tfoot td {
  font-weight: normal;
  border-bottom: 1px solid var(--colorGrayVeryLight);
}
#allcont .wp-block-table.is-style-stripes td,
#allcont .wp-block-table.is-style-stripes th {
  border-bottom: none;
}
#allcont .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: rgba(51, 209, 250, 0.1) !important;
}

#site {
  max-width: var(--pageLimit);
  width: 100%;
  margin: 0 auto;
  background: var(--contrastColorInverted);
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  box-shadow: 0 4px 15px 0 rgba(113, 99, 169, 0.3);
}
#site .allcont {
  container-type: inline-size;
  position: relative;
  flex: 1 0 auto;
  overflow-x: clip;
}
#site .allcont .type-page .entry-content > form,
#site .allcont .type-page .entry-content > hr,
#site .allcont .type-page .entry-content > h1,
#site .allcont .type-page .entry-content > h2,
#site .allcont .type-page .entry-content > h3,
#site .allcont .type-page .entry-content > h4,
#site .allcont .type-page .entry-content > h5,
#site .allcont .type-page .entry-content > h6,
#site .allcont .type-page .entry-content > p,
#site .allcont .type-page .entry-content > ul,
#site .allcont .type-page .entry-content > ol,
#site .allcont .type-page .entry-content > table,
#site .allcont .type-page .entry-content > *[class*=wp-block-],
#site .allcont .type-page .entry-content > section.no-results.not-found {
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin-right: auto;
  margin-left: auto;
}
#site .allcont .type-page .entry-content > section.no-results.not-found {
  margin: 100px auto;
  max-width: var(--maxWidthBig);
}
#site .allcont .type-page .entry-content > .wp-block-image > IMG {
  margin: 0 auto;
  display: block;
}
#site .allcont .type-page .entry-content > table td {
  padding: 16px;
  padding: 0.8888888889rem;
}
#site .allcont .type-page .entry-content figure {
  max-width: 100%;
}
#site .allcont .type-page .entry-content figure img {
  max-width: 100%;
  display: block;
  height: auto;
}
#site .allcont .type-page .entry-content figure.alignright {
  float: right;
  margin-left: 20px;
}
#site .allcont .type-page .entry-content figure.alignleft {
  float: left;
  margin-right: 20px;
}
#site .allcont .type-page .entry-content .video-wrapper {
  position: relative;
}
#site .allcont .type-page .entry-content .video-wrapper video {
  max-width: 100%;
}
#site .allcont .type-page .entry-content .video-wrapper video:not(:hover):not(:focus) + button.video-pause-button:not(:hover):not(:focus) {
  opacity: 0;
}
#site .allcont .type-page .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 .type-page .entry-content .video-wrapper video + button.video-pause-button:focus {
  outline: 2px solid var(--main-color);
}
#site .allcont .type-page .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 .type-page .entry-content .video-wrapper video + button.video-pause-button + button.video-play-button:focus {
  outline: 2px solid var(--main-color);
}

BODY.error404 #site {
  min-height: 100vh;
  background: var(--colorGrayVeryLight);
}
BODY.error404 .allcont {
  height: 100%;
  display: grid;
  place-content: center;
  padding: 0 4% 4%;
}
BODY.error404 .cont {
  max-width: 900px;
  margin: 0 auto;
}
BODY.error404 .cont h1 {
  margin: 0;
  margin-bottom: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  font-size: clamp(5.5555555556rem, 4.0540540541rem + 8.4459459459vw, 11.1111111111rem) !important;
  text-align: center;
  animation: idle 2s infinite alternate;
}
BODY.error404 .cont p {
  text-align: center;
  font-size: 20px;
}
BODY.error404 .cont .buttons {
  margin-top: clamp(1.6666666667rem, 1.2162162162rem + 2.5337837838vw, 3.3333333333rem);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@keyframes idle {
  to {
    transform: translateY(10px);
  }
}

Body.search #allcont .entry-content,
BODY.error404 #allcont .entry-content {
  margin: 0 auto;
  width: var(--baseWidth);
  max-width: var(--maxWidth);
}
Body.search #allcont .search-form,
BODY.error404 #allcont .search-form {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 33px;
  margin: 30px 0 !important;
  max-width: 500px !important;
  width: 100%;
}
Body.search #allcont .search-submit,
BODY.error404 #allcont .search-submit {
  color: transparent;
  font-size: 0px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url("../img/search.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
  cursor: pointer;
}
Body.search #allcont input[type=search],
BODY.error404 #allcont input[type=search] {
  border-radius: 1px;
  border: 1px solid var(--main-color);
  font-size: 16px !important;
  color: var(--fontColor);
  padding: 15px !important;
  background: transparent !important;
  min-width: 260px;
  width: 100%;
}
@media all and (max-width: 400px) {
  Body.search #allcont input[type=search],
  BODY.error404 #allcont input[type=search] {
    min-width: 100%;
  }
}
Body.search #allcont input[type=search]:focus, Body.search #allcont input[type=search]:active,
BODY.error404 #allcont input[type=search]:focus,
BODY.error404 #allcont input[type=search]:active {
  outline: 0;
  border: 1px solid var(--second-color);
}
Body.search #allcont label,
BODY.error404 #allcont label {
  width: 100%;
}

BODY.search.search-results .item .entry-content .page-title,
BODY.search.search-no-results .item .entry-content .page-title {
  margin-bottom: 50px;
}
BODY.search.search-results .item .entry-content article,
BODY.search.search-no-results .item .entry-content article {
  padding-bottom: 10px;
  margin: 30px 0 20px;
  border-bottom: 1px solid var(--second-color);
}
BODY.search.search-results .item .entry-content article:last-child,
BODY.search.search-no-results .item .entry-content article:last-child {
  border-bottom: 0;
  border-bottom: none;
}
BODY.search.search-results .item .entry-content article p,
BODY.search.search-no-results .item .entry-content article p {
  margin-bottom: 10px;
}
BODY.search.search-results .item .entry-content article .entry-title,
BODY.search.search-no-results .item .entry-content article .entry-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--fontColor);
}
BODY.search.search-results .item .entry-content article .entry-title > a,
BODY.search.search-no-results .item .entry-content article .entry-title > a {
  color: var(--fontColor);
}
@media all and (max-width: 768px) {
  BODY.search.search-results .item .entry-content article .entry-title,
  BODY.search.search-no-results .item .entry-content article .entry-title {
    font-size: 18px;
  }
}
BODY.search.search-results .item .entry-content article .linktoarticle,
BODY.search.search-no-results .item .entry-content article .linktoarticle {
  word-break: break-word;
  color: var(--buttonColor);
}
BODY.search.search-results .item .entry-content article .linktoarticle:hover,
BODY.search.search-no-results .item .entry-content article .linktoarticle:hover {
  color: var(--secondColor);
}
BODY.search.search-results .item .entry-content article .content_section > a,
BODY.search.search-no-results .item .entry-content article .content_section > a {
  word-break: break-word;
}

.sticky-info {
  position: fixed;
  z-index: 98;
  top: 50%;
  right: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  transform: translateY(-50%) translateX(min(80vw, 694px));
  transition: transform 0.3s ease;
}
.sticky-info.is-open {
  align-items: stretch;
  transform: translateY(-50%) translateX(0);
}
.sticky-info__trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: clamp(0.6666666667rem, 0.5465465465rem + 0.6756756757vw, 1.1111111111rem) 12px;
  border: none;
  border-radius: 10px 0 0 10px;
  background: var(--main-color);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.sticky-info__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.sticky-info__trigger-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
}
@media all and (max-height: 760px) {
  .sticky-info__trigger-text {
    font-size: 16px;
  }
}
@media all and (max-width: 420px) {
  .sticky-info__trigger-text {
    font-size: 16px;
  }
}
.sticky-info__panel {
  width: min(80vw, 694px);
  max-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--main-color);
  border-radius: 0 10px 10px 0;
  flex-shrink: 0;
  border-left: 1px solid #fff;
}
.sticky-info__inner {
  display: flex;
  gap: clamp(0.8333333333rem, 0.6081081081rem + 1.2668918919vw, 1.6666666667rem);
  padding: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  overflow: auto;
  height: 100%;
}
@media all and (max-height: 760px) {
  .sticky-info__inner {
    flex-direction: column;
  }
}
@media all and (max-width: 420px) {
  .sticky-info__inner {
    flex-direction: column;
  }
}
.sticky-info__media {
  flex: 0 0 30%;
}
@media all and (max-height: 760px) {
  .sticky-info__media {
    flex: 0 0 auto;
  }
}
@media all and (max-width: 420px) {
  .sticky-info__media {
    flex: 0 0 auto;
  }
}
.sticky-info__image {
  width: 100%;
  height: auto;
  max-width: 200px;
  max-height: 150px;
  display: block;
}
.sticky-info__content, .sticky-info__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
}
.sticky-info__content *, .sticky-info__text * {
  margin: 0 !important;
}
.sticky-info__text {
  flex: 1;
  color: #fff;
}
.sticky-info__text p:last-child {
  margin-bottom: 0;
}
.sticky-info__btn {
  color: var(--second-color) !important;
}
.sticky-info__btn:after {
  border-color: var(--second-color) !important;
}

.hph-consent-popup-wrap {
  position: relative;
  max-width: 960px;
  width: 90%;
  max-height: 80vh;
  overflow: auto;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--main-color);
  text-align: center;
  box-shadow: 0 4px 15px 0 rgba(113, 99, 169, 0.3);
  color: #fff;
  border-radius: var(--baseBorderRadius);
}
.hph-consent-popup-wrap .logo-section {
  background-image: var(--website-logo-image-url);
  background-repeat: no-repeat;
  background-size: contain;
  width: 180px;
  height: 35px;
  backface-visibility: hidden;
  background-position: center;
  filter: brightness(0) invert(1);
  display: block;
  margin: 0 auto 30px;
}
.hph-consent-popup-wrap .hph-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.hph-consent-popup-wrap .hph-consent-buttons .hph-consent-btn:hover {
  opacity: 0.7;
  background: var(--buttonColor);
  color: var(--fontColor);
}
.hph-consent-popup-wrap .hph-consent-buttons .hph-consent-btn.hph-consent-btn-deny {
  background: #fff;
  color: var(--fontColor);
}
.hph-consent-popup-wrap .hph-consent-buttons .hph-consent-btn.hph-consent-btn-deny:hover {
  opacity: 0.7;
  background: #fff;
  color: var(--fontColor);
}
.hph-consent-popup-wrap h1,
.hph-consent-popup-wrap h2,
.hph-consent-popup-wrap h3,
.hph-consent-popup-wrap h4,
.hph-consent-popup-wrap h5,
.hph-consent-popup-wrap h6,
.hph-consent-popup-wrap p,
.hph-consent-popup-wrap ul,
.hph-consent-popup-wrap ol {
  color: #fff;
}

.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: 1px solid var(--formBorderColor);
  border-radius: 6px;
  font-family: var(--mainFont);
}
input:focus, select:focus, textarea:focus {
  border: 1px solid var(--main-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);
}

:focus {
  outline: rgba(var(--contrastColorInvertedRGB), 0);
}

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

.allcont .cont > .type-post,
.allcont .cont > .type-team,
.allcont .cont > .type-projekt,
.allcont .cont > .type-download,
.allcont .cont > .item.inner,
.personio-single-job {
  margin: clamp(8.3333333333rem, 7.5825825826rem + 4.222972973vw, 11.1111111111rem) auto 100px;
  max-width: var(--maxWidth);
  width: var(--baseWidth);
}

BODY.blog .allcont .cont > .type-post,
BODY.blog .allcont .cont > .type-team,
BODY.blog .allcont .cont > .type-download,
BODY.blog .allcont .cont > .item.inner {
  margin: clamp(2.2222222222rem, 1.3213213213rem + 5.0675675676vw, 5.5555555556rem) auto clamp(2.2222222222rem, 1.3213213213rem + 5.0675675676vw, 5.5555555556rem);
}

BODY.archive .postsloop {
  margin-top: 40px;
}
@media all and (max-width: 450px) {
  BODY.archive .postsloop {
    margin-top: 30px;
  }
}

BODY.blog .news-inner,
BODY.single .news-inner,
BODY.archive .news-inner,
.px-news .news-inner {
  max-width: var(--maxWidth);
  width: var(--baseWidth);
  margin: 0 auto;
}
@media all and (min-width: 651px) {
  BODY.blog .news-inner > .postsloop > article:first-child,
  BODY.single .news-inner > .postsloop > article:first-child,
  BODY.archive .news-inner > .postsloop > article:first-child,
  .px-news .news-inner > .postsloop > article:first-child {
    grid-row-end: span 2;
    flex-direction: column;
    align-items: flex-start;
  }
  BODY.blog .news-inner > .postsloop > article:first-child .postimagesection,
  BODY.single .news-inner > .postsloop > article:first-child .postimagesection,
  BODY.archive .news-inner > .postsloop > article:first-child .postimagesection,
  .px-news .news-inner > .postsloop > article:first-child .postimagesection {
    flex: 0 0 340px;
  }
}
BODY.blog .postsloop,
BODY.single .postsloop,
BODY.archive .postsloop,
.px-news .postsloop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  gap: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  width: 100%;
}
@media all and (max-width: 650px) {
  BODY.blog .postsloop,
  BODY.single .postsloop,
  BODY.archive .postsloop,
  .px-news .postsloop {
    display: block;
  }
}
BODY.blog .postsloop > article,
BODY.single .postsloop > article,
BODY.archive .postsloop > article,
.px-news .postsloop > article {
  box-sizing: border-box;
  display: flex;
  gap: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  overflow: hidden;
  align-items: center;
}
@media all and (max-width: 650px) {
  BODY.blog .postsloop > article,
  BODY.single .postsloop > article,
  BODY.archive .postsloop > article,
  .px-news .postsloop > article {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
BODY.blog .postsloop > article .postimagesection,
BODY.single .postsloop > article .postimagesection,
BODY.archive .postsloop > article .postimagesection,
.px-news .postsloop > article .postimagesection {
  flex: 0 0 45%;
  position: relative;
  margin: 0;
  width: 100%;
  min-height: 230px;
  border-radius: var(--baseBorderRadius);
  transition: var(--baseTransition);
  overflow: hidden;
  background: var(--main-color);
}
@media all and (max-width: 650px) {
  BODY.blog .postsloop > article .postimagesection,
  BODY.single .postsloop > article .postimagesection,
  BODY.archive .postsloop > article .postimagesection,
  .px-news .postsloop > article .postimagesection {
    flex: 0 0 200px;
    min-height: 200px;
  }
}
BODY.blog .postsloop > article .postimagesection > a,
BODY.single .postsloop > article .postimagesection > a,
BODY.archive .postsloop > article .postimagesection > a,
.px-news .postsloop > article .postimagesection > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
BODY.blog .postsloop > article .postimagesection img,
BODY.single .postsloop > article .postimagesection img,
BODY.archive .postsloop > article .postimagesection img,
.px-news .postsloop > article .postimagesection img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: var(--baseTransition);
}
BODY.blog .postsloop > article .postimagesection:hover img, BODY.blog .postsloop > article .postimagesection:focus img,
BODY.single .postsloop > article .postimagesection:hover img,
BODY.single .postsloop > article .postimagesection:focus img,
BODY.archive .postsloop > article .postimagesection:hover img,
BODY.archive .postsloop > article .postimagesection:focus img,
.px-news .postsloop > article .postimagesection:hover img,
.px-news .postsloop > article .postimagesection:focus img {
  transform: scale(1.1);
}
BODY.blog .postsloop > article .postimagesection .cat-list,
BODY.single .postsloop > article .postimagesection .cat-list,
BODY.archive .postsloop > article .postimagesection .cat-list,
.px-news .postsloop > article .postimagesection .cat-list {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}
BODY.blog .postsloop > article .postimagesection .cat-list > a,
BODY.single .postsloop > article .postimagesection .cat-list > a,
BODY.archive .postsloop > article .postimagesection .cat-list > a,
.px-news .postsloop > article .postimagesection .cat-list > a {
  display: inline-block;
  margin: 10px;
  background: #fff;
  padding: 2px 10px;
  font-size: 15px;
  color: var(--fontColor);
  font-weight: 700;
  border-radius: 10px;
}
BODY.blog .postsloop > article .postimagesection .cat-list > a:hover,
BODY.single .postsloop > article .postimagesection .cat-list > a:hover,
BODY.archive .postsloop > article .postimagesection .cat-list > a:hover,
.px-news .postsloop > article .postimagesection .cat-list > a:hover {
  color: var(--buttonColor);
}
BODY.blog .postsloop > article .content,
BODY.single .postsloop > article .content,
BODY.archive .postsloop > article .content,
.px-news .postsloop > article .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
BODY.blog .postsloop > article .content .meta-info,
BODY.single .postsloop > article .content .meta-info,
BODY.archive .postsloop > article .content .meta-info,
.px-news .postsloop > article .content .meta-info {
  color: var(--buttonColor);
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 2px;
}
BODY.blog .postsloop > article .content .entry-header h3,
BODY.single .postsloop > article .content .entry-header h3,
BODY.archive .postsloop > article .content .entry-header h3,
.px-news .postsloop > article .content .entry-header h3 {
  font-size: clamp(1rem, 0.96996997rem + 0.1689189189vw, 1.1111111111rem);
  font-weight: 600;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
BODY.blog .postsloop > article .content .entry-header h3 a,
BODY.single .postsloop > article .content .entry-header h3 a,
BODY.archive .postsloop > article .content .entry-header h3 a,
.px-news .postsloop > article .content .entry-header h3 a {
  color: var(--fontColor);
}
BODY.blog .postsloop > article .content .btn_section,
BODY.single .postsloop > article .content .btn_section,
BODY.archive .postsloop > article .content .btn_section,
.px-news .postsloop > article .content .btn_section {
  margin-top: 15px;
}
BODY.blog .postsloop > article .content .introtext,
BODY.single .postsloop > article .content .introtext,
BODY.archive .postsloop > article .content .introtext,
.px-news .postsloop > article .content .introtext {
  font-size: 17px;
  line-height: 140%;
  margin-top: 0;
  margin-bottom: 0;
}
BODY.blog .navigation.pagination,
BODY.single .navigation.pagination,
BODY.archive .navigation.pagination,
.px-news .navigation.pagination {
  max-width: var(--maxWidth);
  width: var(--baseWidth);
  margin: 0 auto;
}
BODY.blog .navigation.pagination .nav-links,
BODY.single .navigation.pagination .nav-links,
BODY.archive .navigation.pagination .nav-links,
.px-news .navigation.pagination .nav-links {
  margin: 20px 0;
  text-align: right;
}
BODY.blog .navigation.pagination .nav-links > a + a,
BODY.single .navigation.pagination .nav-links > a + a,
BODY.archive .navigation.pagination .nav-links > a + a,
.px-news .navigation.pagination .nav-links > a + a {
  margin-left: 5px;
  margin-top: 0;
}
BODY.blog .navigation.pagination .nav-links span.current,
BODY.single .navigation.pagination .nav-links span.current,
BODY.archive .navigation.pagination .nav-links span.current,
.px-news .navigation.pagination .nav-links span.current {
  display: inline-block;
  background: var(--main-color);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
}

BODY.single-post .title-with-thumbnail, BODY.single-projekt .title-with-thumbnail {
  box-sizing: border-box;
  display: flex;
  gap: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  overflow: hidden;
}
@media all and (max-width: 900px) {
  BODY.single-post .title-with-thumbnail, BODY.single-projekt .title-with-thumbnail {
    flex-direction: column;
  }
}
BODY.single-post .title-with-thumbnail .thumbnail, BODY.single-projekt .title-with-thumbnail .thumbnail {
  flex: 0 0 30%;
  position: relative;
  margin: 0;
  width: 100%;
  min-height: 250px;
  border-radius: var(--baseBorderRadius);
  transition: var(--baseTransition);
  overflow: hidden;
  background: var(--main-color);
}
@media all and (max-width: 900px) {
  BODY.single-post .title-with-thumbnail .thumbnail, BODY.single-projekt .title-with-thumbnail .thumbnail {
    flex: 0 0 250px;
    max-width: 400px;
  }
}
BODY.single-post .title-with-thumbnail .thumbnail img, BODY.single-projekt .title-with-thumbnail .thumbnail img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
BODY.single-post .title-with-thumbnail .title, BODY.single-projekt .title-with-thumbnail .title {
  display: flex;
  align-self: center;
}

.author-header {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
}
@media all and (max-width: 640px) {
  .author-header {
    flex-direction: column;
  }
}

.author-avatar {
  flex: 0 0 clamp(7.7777777778rem, 5.975975976rem + 10.1351351351vw, 14.4444444444rem);
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--baseBorderRadius);
  background: var(--main-color);
}
.author-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media all and (max-width: 640px) {
  .author-avatar {
    flex: 0 0 auto;
    width: 200px;
    max-width: 60%;
  }
}

.author-header__body {
  flex: 1;
  min-width: 0;
}

.author-name {
  margin: 0 0 10px;
}

.author-position {
  margin: 0 0 6px;
  color: var(--buttonColor);
  font-weight: 700;
  font-size: clamp(0.8333333333rem, 0.8033033033rem + 0.1689189189vw, 0.9444444444rem);
  line-height: 150%;
}

.author-claim {
  margin: 0;
  font-size: clamp(0.9444444444rem, 0.8993993994rem + 0.2533783784vw, 1.1111111111rem);
  font-style: italic;
}

.author-contact {
  list-style: none;
  margin: clamp(1rem, 0.8798798799rem + 0.6756756757vw, 1.4444444444rem) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.6666666667rem, 0.5765765766rem + 0.5067567568vw, 1rem) clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
}
.author-contact li {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  word-break: break-word;
}

.author-contact__label {
  font-size: var(--miniFontSize);
  font-weight: 700;
  line-height: 130%;
  color: var(--colorGrayDark);
}

.author-description,
.author-credentials,
.author-contributions {
  margin-top: clamp(1.6666666667rem, 1.3663663664rem + 1.6891891892vw, 2.7777777778rem);
}
.author-description > h2,
.author-credentials > h2,
.author-contributions > h2 {
  font-size: clamp(1.2222222222rem, 1.1021021021rem + 0.6756756757vw, 1.6666666667rem);
  margin: 0 0 clamp(0.6666666667rem, 0.5765765766rem + 0.5067567568vw, 1rem);
}
.author-description > h3,
.author-credentials > h3,
.author-contributions > h3 {
  font-size: clamp(1rem, 0.9399399399rem + 0.3378378378vw, 1.2222222222rem);
  margin: clamp(1rem, 0.8798798799rem + 0.6756756757vw, 1.4444444444rem) 0 10px;
}

.author-credentials ul,
.author-contributions ul {
  margin: 0;
  padding: 0;
}
.author-credentials ul li,
.author-contributions ul li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
}
.author-credentials ul li:before,
.author-contributions ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--second-color);
}

.author-contributions__publisher {
  display: block;
  font-size: var(--miniFontSize);
  line-height: 130%;
  color: var(--colorGrayDark);
}

.author-posts-title {
  font-size: clamp(1.2222222222rem, 1.1021021021rem + 0.6756756757vw, 1.6666666667rem);
  margin: clamp(2.2222222222rem, 1.7717717718rem + 2.5337837838vw, 3.8888888889rem) 0 0;
}

/******************
* 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: 20px;
  --is-style-gap-medium: 80px;
  --is-style-gap-large: 200px;
}

#site #allcont .wp-block-columns {
  display: flex;
  flex-wrap: wrap !important;
  column-gap: 140px !important;
  row-gap: 50px !important;
}
#site #allcont .wp-block-columns .px-download.px-download--standard .px-download-inner {
  gap: 20px;
}
@media all and (max-width: 1290px) {
  #site #allcont .wp-block-columns.has-2-columns .wp-block-column.custom-width-personio {
    flex-basis: 60% !important;
  }
}
#site #allcont .wp-block-columns .wp-block-columns .wp-block-column {
  min-width: 120px;
}
#site #allcont .wp-block-columns.is-style-gap-small {
  column-gap: var(--is-style-gap-small) !important;
  row-gap: var(--is-style-gap-small) !important;
}
#site #allcont .wp-block-columns.is-style-gap-medium {
  column-gap: var(--is-style-gap-medium) !important;
  row-gap: var(--is-style-gap-medium) !important;
}
#site #allcont .wp-block-columns.is-style-gap-large {
  column-gap: var(--is-style-gap-large) !important;
  row-gap: var(--is-style-gap-large) !important;
}
@media all and (max-width: 1200px) {
  #site #allcont .wp-block-columns {
    column-gap: 50px !important;
    row-gap: 50px !important;
  }
  #site #allcont .wp-block-columns.is-style-gap-small {
    column-gap: var(--is-style-gap-small) !important;
    row-gap: var(--is-style-gap-small) !important;
  }
  #site #allcont .wp-block-columns.is-style-gap-large, #site #allcont .wp-block-columns.is-style-gap-medium {
    column-gap: 50px !important;
    row-gap: 50px !important;
  }
}
@media all and (max-width: 781px) {
  #site #allcont .wp-block-columns {
    column-gap: 0 !important;
    row-gap: 0 !important;
  }
  #site #allcont .wp-block-columns.is-style-gap-small {
    column-gap: 0 !important;
    row-gap: 0 !important;
  }
  #site #allcont .wp-block-columns.is-style-gap-large, #site #allcont .wp-block-columns.is-style-gap-medium {
    column-gap: 0 !important;
    row-gap: 0 !important;
  }
  #site #allcont .wp-block-columns .wp-block-column {
    margin-bottom: 30px;
  }
  #site #allcont .wp-block-columns .wp-block-column .wp-block-columns .wp-block-column:last-child {
    margin-bottom: 0;
  }
}

ul.wp-block-list li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
}
ul.wp-block-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--second-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;
  color: var(--second-color);
  left: 0;
  top: 0;
}
ol.wp-block-list > li:before li:before {
  counter-increment: index_sub;
  content: counter(index_sub) ".";
  color: var(--second-color);
}

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

@media (max-width: 781px) {
  .wp-block-buttons.is-content-justification-right {
    justify-content: flex-start !important;
  }
  #site .allcont .entry-content figure.alignright {
    float: none !important;
  }
}
footer.foot {
  width: 100%;
  max-width: var(--pageLimit);
  margin: 0 auto;
  background: #fff;
  position: relative;
}
footer.foot .inner {
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin: 0 auto;
}
footer.foot .inner h1,
footer.foot .inner h2,
footer.foot .inner h3,
footer.foot .inner h4,
footer.foot .inner h5,
footer.foot .inner h6 {
  font-size: 18px;
  font-size: 1rem;
  margin-bottom: 25px;
}
footer.foot .inner a {
  color: var(--fontColor);
  transition: var(--baseTransition);
}
footer.foot .inner a:hover {
  text-decoration: underline;
}
footer.foot .inner .row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
}
footer.foot .inner .row.row-1 {
  border-top: 1px solid var(--colorGray);
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(2.2222222222rem, 1.3213213213rem + 5.0675675676vw, 5.5555555556rem) 0;
}
footer.foot .inner .row.row-1 .col {
  max-width: 400px;
}
footer.foot .inner .row.row-1 ul li {
  display: block;
}
footer.foot .inner .row.row-2 {
  padding: clamp(1.6666666667rem, 1.3663663664rem + 1.6891891892vw, 2.7777777778rem) 0;
  font-size: 15px;
}
footer.foot .inner .row.row-2 .col-3 {
  margin-left: auto;
}
footer.foot .inner .row.row-2 ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
}
footer.foot p[class*=is-style-icon] {
  display: block;
  text-decoration: none;
  padding-left: 30px;
  position: relative;
  margin-top: 10px;
}
footer.foot p[class*=is-style-icon]:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 700;
  background: none !important;
}
footer.foot p[class*=is-style-icon] a {
  color: var(--fontColor);
  transition: var(--baseTransition);
}
footer.foot p[class*=is-style-icon] a:hover {
  text-decoration: underline;
}
footer.foot .is-style-icon-mail:before {
  content: "E";
}
footer.foot .is-style-icon-tel:before {
  content: "T";
}
footer.foot .is-style-icon-webpage:before {
  content: "W";
}

header.head {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--pageLimit);
  z-index: 99;
  background: transparent;
  transition: var(--baseTransition);
}
header.head .inner {
  width: var(--baseWidth);
  max-width: var(--maxWidthBig);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  backface-visibility: hidden;
  gap: 0 40px;
  padding: 50px 0;
  transition: var(--baseTransition);
  background: transparent;
  border: none;
  box-shadow: none;
}
@media all and (max-width: 1450px) {
  header.head .inner {
    gap: 0 20px;
  }
}
@media all and (max-width: 600px) {
  header.head .inner {
    padding: 12px 15px;
  }
}
@media all and (max-width: 400px) {
  header.head .inner {
    gap: 0 10px;
  }
}
header.head .inner #logo {
  transition: var(--baseTransition);
  background-image: var(--website-logo-image-url);
  background-repeat: no-repeat;
  background-size: contain;
  width: 180px;
  height: 35px;
  backface-visibility: hidden;
  background-position: center left;
}
@media all and (min-width: 1201px) {
  header.head .inner #logo {
    filter: brightness(0) invert(1);
  }
}
@media all and (max-width: 600px) {
  header.head .inner #logo {
    width: 140px;
    height: 35px;
  }
}
@media all and (max-width: 400px) {
  header.head .inner #logo {
    width: 100px;
  }
}
header.head .inner #logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header.head .inner #logo span {
  display: none;
}
header.head .inner .wpml-ls {
  width: auto;
}
header.head .inner .wpml-ls a.wpml-ls-item-toggle {
  border-radius: var(--baseBorderRadius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3.75px);
  border: 1px solid #fff;
  padding: 18px 20px;
  box-shadow: 0 4px 15px 0 rgba(113, 99, 169, 0.3);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: row-reverse;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
@media all and (max-width: 768px) {
  header.head .inner .wpml-ls a.wpml-ls-item-toggle {
    padding: 12px;
  }
}
header.head .inner .wpml-ls a.wpml-ls-item-toggle:after {
  display: none;
  content: none;
}
header.head .inner .wpml-ls .wpml-ls-sub-menu:not(.is-empty) {
  border-radius: var(--baseBorderRadius);
  color: var(--main-color);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3.75px);
  overflow: hidden;
  box-shadow: 0 4px 15px 0 rgba(113, 99, 169, 0.3);
  margin-top: 6px;
  padding: 10px;
}
header.head .inner .wpml-ls .wpml-ls-sub-menu:not(.is-empty) a {
  font-weight: 500;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
header.head .inner .wpml-ls .wpml-ls-sub-menu:not(.is-empty) a:focus-visible, header.head .inner .wpml-ls .wpml-ls-sub-menu:not(.is-empty) a:hover {
  color: var(--buttonColor);
}
header.head.is-sticky, header.head.no-banner {
  top: 15px;
}
header.head.is-sticky > .inner, header.head.no-banner > .inner {
  padding: 20px 15px;
  border-radius: var(--baseBorderRadius);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3.75px);
  box-shadow: 0 4px 15px 0 rgba(113, 99, 169, 0.3);
}
@media all and (max-width: 600px) {
  header.head.is-sticky > .inner, header.head.no-banner > .inner {
    padding: 12px 15px;
  }
}
header.head.is-sticky > .inner #logo, header.head.no-banner > .inner #logo {
  filter: none;
}
header.head.is-sticky > .inner .wpml-ls a.wpml-ls-item-toggle, header.head.no-banner > .inner .wpml-ls a.wpml-ls-item-toggle {
  color: var(--main-color);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3.75px);
}
header.head div#page-scroll-position {
  height: 5px;
  width: 100%;
  display: block;
  background: var(--formBorderColor);
  position: absolute;
  top: 100%;
  transition: width 0.1s;
}
header.head div#page-scroll-position #indicator-bar {
  height: 100%;
  width: 0;
  display: block;
  background: var(--main-color);
}

@media all and (min-width: 1201px) {
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #fff;
    font-weight: 600 !important;
    background: transparent !important;
    background-color: transparent !important;
  }
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: var(--baseTransition);
  }
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    background: transparent !important;
    background-color: transparent !important;
    color: #fff;
  }
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before,
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before,
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link:before {
    width: 100%;
  }
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover,
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus {
    background-color: transparent !important;
    background: transparent !important;
    color: #fff;
  }
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover:before,
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus:before {
    width: 100%;
  }
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link, #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: var(--main-color);
    font-weight: 600;
    background: transparent !important;
    background-color: transparent !important;
  }
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:before, #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--buttonColor);
    transition: var(--baseTransition);
  }
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link, #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
  #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
  #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--buttonColor);
  }
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before,
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before,
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link:before, #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before,
  #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before,
  #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link:before {
    width: 100%;
  }
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover,
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus, #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover,
  #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus {
    background-color: transparent !important;
    background: transparent !important;
    color: var(--buttonColor);
  }
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover:before,
  #site #masthead.is-sticky #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus:before, #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover:before,
  #site #masthead.no-banner #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus:before {
    width: 100%;
  }
}
#site #masthead #mega-menu-wrap-primary #mega-menu-primary {
  gap: 45px;
}
@media all and (max-width: 1450px) {
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary {
    gap: 20px;
  }
}
@media all and (max-width: 1260px) {
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary {
    gap: 15px;
  }
}
#site #masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link {
  transition: var(--baseTransition);
  font-weight: 500;
}
@media all and (min-width: 1201px) {
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
    position: relative;
    background-color: transparent;
    background: transparent;
  }
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    background-color: transparent;
    background: transparent;
    font-weight: 500;
    font-size: 18px;
    color: var(--main-color);
  }
}
@media all and (min-width: 1201px) {
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    background: rgba(255, 255, 255, 0.95);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3.75px);
    box-shadow: 0 4px 15px 0 rgba(113, 99, 169, 0.3);
    border-radius: var(--baseBorderRadius);
  }
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    color: var(--buttonColor);
  }
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout > ul.mega-sub-menu {
    top: calc(100% + 30px);
    min-width: 300px;
    padding: 25px 15px;
  }
}
@media all and (max-width: 1200px) {
  #site #masthead #site-navigation {
    margin-left: auto;
  }
  #site #masthead #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block {
    border-radius: 6px;
  }
  #site #masthead #mega-menu-wrap-primary #mega-menu-primary {
    top: calc(100% + 40px);
    background: rgba(255, 255, 255, 0.95);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3.75px);
    box-shadow: 0 4px 15px 0 rgba(113, 99, 169, 0.3);
    padding: 20px 15px;
    border-radius: var(--baseBorderRadius);
    z-index: 999;
  }
}
#site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  padding: 0 20px;
}
#site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus,
#site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-current_page_item a.mega-menu-link,
#site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor a.mega-menu-link,
#site #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor a.mega-menu-link {
  position: relative;
  color: var(--buttonColor);
}

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

.gform_wrapper {
  max-width: var(--maxWidthBig);
  margin: 0 auto;
  width: var(--baseWidth);
}

.wp-block-column .gform_wrapper {
  width: 100%;
}

.gform_confirmation_wrapper {
  background: var(--main-color);
  padding: 20px;
  color: #fff;
  font-weight: bold;
  position: relative;
  max-width: var(--maxWidth);
  width: var(--baseWidth);
  margin: 30px auto;
  text-align: center;
  z-index: 3;
}

.gform_wrapper.gravity-theme .gfield_required {
  font-size: 18px !important;
  color: var(--main-color) !important;
}

/* 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;
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 1;
}

.splide__arrow:disabled {
  opacity: 0.8;
}

.splide__arrow:focus-visible {
  outline: 3px solid #005fa7;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #005fa7;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #005fa7;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #005fa7;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #005fa7;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #005fa7;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #005fa7;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #005fa7;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #005fa7;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #005fa7;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #005fa7;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  position: relative;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  opacity: 0.3;
  z-index: 3;
}

.splide__track--nav > .splide__list > .splide__slide.is-active:before {
  display: none;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

a:focus {
  outline: var(--main-color, #000) solid 2px;
}