@charset "UTF-8";
:root {
  --fallback: Verdana, Arial, sans-serif;
  --mainFont: "Inter", var(--fallback);
  --headline: "BauerBodoniStdRoman", var(--fallback);
  --fontColor: #000;
  --themeFontColor: #fff;
  --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: 170%;
  --miniFontSize: 15px;
  --baseBorderRadius: 10px;
  --stickyHeaderHeight: 125px;
  --stickyHeaderHeightMobile: 75px;
  --spaceBetweenDefault: 20px;
  --spaceBetweenSlim: 10px;
  --spaceBetweenWide: autoClamp(40, 80);
  --baseTransition: all .4s ease-in-out;
  --baseWidth: 92%;
  --reducedWidth: 960px;
  --maxWidth: 1200px;
  --maxWidthBig: 1504px;
  --pageLimit: 1920px;
  --fl-frame-lightbgbox: #dddddd;
  --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: 100px;
  --fl-margin-before-extra-large: 170px;
  --fl-margin-after-extra-small: 30px;
  --fl-margin-after-small: 50px;
  --fl-margin-after-medium: 80px;
  --fl-margin-after-large: 100px;
  --fl-margin-after-extra-large: 170px;
}
@media screen and (max-width: 960px) {
  :root {
    --fl-margin-before-extra-small: 20px;
    --fl-margin-before-small: 40px;
    --fl-margin-before-medium: 50px;
    --fl-margin-before-large: 60px;
    --fl-margin-before-extra-large: 70px;
    --fl-margin-after-extra-small: 20px;
    --fl-margin-after-small: 40px;
    --fl-margin-after-medium: 50px;
    --fl-margin-after-large: 60px;
    --fl-margin-after-extra-large: 70px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --fl-margin-before-extra-small: 20px;
    --fl-margin-before-small: 25px;
    --fl-margin-before-medium: 30px;
    --fl-margin-before-large: 35px;
    --fl-margin-before-extra-large: 40px;
    --fl-margin-after-extra-small: 20px;
    --fl-margin-after-small: 25px;
    --fl-margin-after-medium: 30px;
    --fl-margin-after-large: 35px;
    --fl-margin-after-extra-large: 40px;
  }
}

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

/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v18-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Roboto"), local("Roboto-Regular"), url("../fonts/roboto-v18-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v18-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v18-latin-regular.woff") format("woff"), url("../fonts/roboto-v18-latin-regular.ttf") format("truetype"), url("../fonts/roboto-v18-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v18-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/roboto-v18-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v18-latin-700.woff2") format("woff2"), url("../fonts/roboto-v18-latin-700.woff") format("woff"), url("../fonts/roboto-v18-latin-700.ttf") format("truetype"), url("../fonts/roboto-v18-latin-700.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* Inter-400 */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  src: url("../fonts/Inter/Inter18pt-Regular.eot");
  src: local("Inter 18pt Regular"), local("Inter18pt-Regular"), url("../fonts/Inter/Inter18pt-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter/Inter18pt-Regular.woff2") format("woff2"), url("../fonts/Inter/Inter18pt-Regular.woff") format("woff"), url("../fonts/Inter/Inter18pt-Regular.ttf") format("truetype"), url("../fonts/Inter/Inter18pt-Regular.svg#Inter18pt-Regular") format("svg");
}
/* Inter-200 */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter18pt-ExtraLight.eot");
  src: local("Inter 18pt ExtraLight"), local("Inter18pt-ExtraLight"), url("../fonts/Inter/Inter18pt-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter/Inter18pt-ExtraLight.woff2") format("woff2"), url("../fonts/Inter/Inter18pt-ExtraLight.woff") format("woff"), url("../fonts/Inter/Inter18pt-ExtraLight.ttf") format("truetype"), url("../fonts/Inter/Inter18pt-ExtraLight.svg#Inter18pt-ExtraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
/* Inter-900 */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter18pt-Black.eot");
  src: local("Inter 18pt Black"), local("Inter18pt-Black"), url("../fonts/Inter/Inter18pt-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter/Inter18pt-Black.woff2") format("woff2"), url("../fonts/Inter/Inter18pt-Black.woff") format("woff"), url("../fonts/Inter/Inter18pt-Black.ttf") format("truetype"), url("../fonts/Inter/Inter18pt-Black.svg#Inter18pt-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Static";
  src: url("../fonts/Inter/Inter-Black.woff2") format("woff2");
  font-weight: 900;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni_moda/BodoniModa18pt-Regular.eot");
  src: local("Bodoni Moda Regular"), local("BodoniModa18pt-Regular"), url("../fonts/bodoni_moda/BodoniModa18pt-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bodoni_moda/BodoniModa18pt-Regular.woff2") format("woff2"), url("../fonts/bodoni_moda/BodoniModa18pt-Regular.woff") format("woff"), url("../fonts/bodoni_moda/BodoniModa18pt-Regular.ttf") format("truetype"), url("../fonts/bodoni_moda/BodoniModa18pt-Regular.svg#BodoniModa18pt-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/**
 * @license
 * MyFonts Webfont Build ID 3867246, 2020-12-16T11:57:38-0500
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: Bauer Bodoni Std Roman by Bitstream
 * URL: https://www.myfonts.com/collections/bitstream-foundry

 * © 2026 MyFonts Inc. */
@font-face {
  font-family: "BauerBodoniStdRoman";
  src: url("../fonts/BauerBodoniStdRoman/font.woff2") format("woff2"), url("../fonts/BauerBodoniStdRoman/font.woff") format("woff");
}
html {
  box-sizing: border-box;
  overflow-y: scroll;
  scroll-behavior: smooth;
  margin-top: 0 !important;
}
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: #1A1A1A;
  font-family: var(--mainFont);
  line-height: var(--baseLineheight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
body:not(.wp-admin) {
  font-size: var(--baseFontSize);
}

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

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

.error-404 {
  position: relative;
  isolation: isolate;
  width: var(--baseWidth);
  max-width: 860px;
  margin-inline: auto;
  padding-top: clamp(10rem, 8.4984984985rem + 8.4459459459vw, 15.5555555556rem);
  padding-bottom: clamp(3.8888888889rem, 2.6876876877rem + 6.7567567568vw, 8.3333333333rem);
  text-align: center;
}
.error-404::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(6.6666666667rem, 5.4654654655rem + 6.7567567568vw, 11.1111111111rem);
  left: 50%;
  translate: -50% 0;
  width: min(760px, 110%);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(167, 137, 73, 0.3) 0%, rgba(167, 137, 73, 0) 68%);
  pointer-events: none;
}
.error-404__inner {
  animation: error404FadeIn 0.8s ease-out both;
}
.error-404 p.error-404__code {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(7.2222222222rem, 4.6696696697rem + 14.3581081081vw, 16.6666666667rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: linear-gradient(100deg, #A78949 0%, #FBD585 25%, #AC873D 50%, #FBD585 75%, #A78949 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: error404Shine 12s linear infinite;
}
.error-404 h1.error-404__title {
  margin-top: clamp(0.5555555556rem, 0.3303303303rem + 1.2668918919vw, 1.3888888889rem);
  font-size: clamp(1.6666666667rem, 1.2162162162rem + 2.5337837838vw, 3.3333333333rem);
  line-height: 1.1;
}
.error-404 h1.error-404__title::before {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  margin: 0 auto clamp(1.1111111111rem, 0.8858858859rem + 1.2668918919vw, 1.9444444444rem);
  background: linear-gradient(to right, rgba(167, 137, 73, 0) 0%, var(--main-color) 50%, rgba(167, 137, 73, 0) 100%);
}
.error-404 p.error-404__text {
  margin-top: var(--fl-margin-before-extra-small);
  margin-inline: auto;
  max-width: 34em;
  font-size: clamp(0.9444444444rem, 0.8993993994rem + 0.2533783784vw, 1.1111111111rem);
  color: rgba(var(--contrastColorInvertedRGB), 0.75);
  text-wrap: pretty;
}
.error-404__path {
  margin-top: clamp(0.8333333333rem, 0.6831831832rem + 0.8445945946vw, 1.3888888889rem);
  margin-inline: auto;
  display: inline-block;
  max-width: 100%;
  padding: 8px 16px;
  border: 1px solid rgba(167, 137, 73, 0.35);
  border-radius: 2px;
  background: rgba(var(--contrastColorInvertedRGB), 0.03);
  font-size: var(--miniFontSize);
  line-height: 1.4;
  color: rgba(var(--contrastColorInvertedRGB), 0.6);
  word-break: break-all;
}
.error-404__path span {
  color: var(--main-color);
  margin-right: 6px;
}
.error-404__actions {
  margin-top: clamp(1.6666666667rem, 1.3663663664rem + 1.6891891892vw, 2.7777777778rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.error-404__nav {
  margin-top: clamp(2.5rem, 1.9744744745rem + 2.9560810811vw, 4.4444444444rem);
  padding-top: clamp(1.6666666667rem, 1.4414414414rem + 1.2668918919vw, 2.5rem);
  border-top: 1px solid rgba(var(--contrastColorInvertedRGB), 0.12);
}
.error-404 p.error-404__nav-title {
  margin: 0;
  font-size: var(--miniFontSize);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--contrastColorInvertedRGB), 0.55);
}
.error-404__menu {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
}
.error-404__menu li {
  margin: 0;
  padding: 0;
}
.error-404__menu li::before, .error-404__menu li::marker {
  content: none;
}
.error-404__menu a {
  position: relative;
  display: inline-block;
  font-family: var(--headline);
  font-size: clamp(1rem, 0.9399399399rem + 0.3378378378vw, 1.2222222222rem);
  line-height: 1.3;
  color: var(--contrastColorInverted);
}
.error-404__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--main-color);
  scale: 0 1;
  transform-origin: left center;
  transition: scale 0.3s ease-in-out;
}
.error-404__menu a:hover, .error-404__menu a:focus-visible {
  color: var(--main-color);
}
.error-404__menu a:hover::after, .error-404__menu a:focus-visible::after {
  scale: 1 1;
}

@keyframes error404Shine {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 250% 50%;
  }
}
@keyframes error404FadeIn {
  from {
    opacity: 0;
    translate: 0 25px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .error-404__inner,
  .error-404__code {
    animation: none;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  font-family: var(--headline);
  color: var(--themeFontColor);
  font-weight: 400;
  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);
}
h1 p,
h2 p,
h3 p,
h4 p,
h5 p,
h6 p {
  color: var(--themeFontColor);
}

p {
  color: var(--themeFontColor);
}

:where(.editor-styles-wrapper) :is(h1, h2, h3, h4, h5, h6, p) {
  color: var(--fontColor);
}

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);
  color: var(--themeFontColor);
}
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);
  color: var(--themeFontColor);
}

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

h1 {
  font-size: clamp(2.8888888889rem, 2.1681681682rem + 4.0540540541vw, 5.5555555556rem);
  line-height: 100%;
}

h2 {
  font-size: clamp(2.3333333333rem, 1.6126126126rem + 4.0540540541vw, 5rem);
  line-height: 100%;
}
h2 + .is-style-largetext {
  margin-top: 0;
}

h3 {
  font-size: clamp(1.7777777778rem, 1.2072072072rem + 3.2094594595vw, 3.8888888889rem);
  line-height: 1.2;
}

h4 {
  font-size: clamp(1.3333333333rem, 1.2432432432rem + 0.5067567568vw, 1.6666666667rem);
  line-height: 1.33;
}

h5 {
  font-size: clamp(1rem, 0.96996997rem + 0.1689189189vw, 1.1111111111rem);
}

h6 {
  font-size: clamp(0.8888888889rem, 0.8588588589rem + 0.1689189189vw, 1rem);
}

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

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

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

.is-style-largetext {
  font-size: clamp(1.1111111111rem, 1.006006006rem + 0.5912162162vw, 1.5rem);
  font-weight: 200;
  line-height: 1.37;
}

.is-style-h2 {
  font-size: clamp(2.3333333333rem, 1.6126126126rem + 4.0540540541vw, 5rem) !important;
  line-height: 100%;
}

.is-style-text-with-left-margin {
  width: fit-content;
  margin-inline: auto clamp(0rem, -1.0510510511rem + 5.9121621622vw, 3.8888888889rem);
}
@media only screen and (max-width: 960px) {
  .is-style-text-with-left-margin {
    margin-inline: auto;
  }
}

i,
em {
  font-style: italic;
}

strong,
b {
  font-weight: 700;
}

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

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

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

@media only screen and (max-width: 1024px) {
  .has-text-align-right {
    text-align: start !important;
  }
}

@media only screen and (max-width: 1024px) {
  .is-content-justification-right {
    justify-content: flex-start !important;
  }
}

button.submit,
input[type=submit],
button[type=submit]:not(.wp-block-search__button),
a.btn,
button.btn,
.nav-links a,
.wp-block-button > .wp-block-button__link:not(.has-text-color) {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  border: none;
  cursor: pointer;
  padding: 12px 15px;
  color: var(--dark-text);
  font-size: clamp(0.9444444444rem, 0.9144144144rem + 0.1689189189vw, 1.0555555556rem);
  font-family: var(--headline);
  border-radius: 2px;
  background-color: transparent;
  position: relative;
  transition: var(--baseTransition);
}
button.submit::before,
input[type=submit]::before,
button[type=submit]:not(.wp-block-search__button)::before,
a.btn::before,
button.btn::before,
.nav-links a::before,
.wp-block-button > .wp-block-button__link:not(.has-text-color)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg at 92.9% 0%, #AC873D 53.6538469791deg, #FBD585 210deg, #A78949 290deg);
  border-radius: inherit;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
button.submit span.arrow-icon,
input[type=submit] span.arrow-icon,
button[type=submit]:not(.wp-block-search__button) span.arrow-icon,
a.btn span.arrow-icon,
button.btn span.arrow-icon,
.nav-links a span.arrow-icon,
.wp-block-button > .wp-block-button__link:not(.has-text-color) span.arrow-icon {
  width: 25px;
  height: auto;
}
button.submit:hover,
input[type=submit]:hover,
button[type=submit]:not(.wp-block-search__button):hover,
a.btn:hover,
button.btn:hover,
.nav-links a:hover,
.wp-block-button > .wp-block-button__link:not(.has-text-color):hover {
  background-color: rgba(167, 137, 73, 0.8);
  color: var(--themeFontColor);
}
button.submit:hover::before,
input[type=submit]:hover::before,
button[type=submit]:not(.wp-block-search__button):hover::before,
a.btn:hover::before,
button.btn:hover::before,
.nav-links a:hover::before,
.wp-block-button > .wp-block-button__link:not(.has-text-color):hover::before {
  opacity: 0;
}

.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color) {
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0);
  background: transparent;
  box-shadow: inset rgba(255, 255, 255, 0.2) 1px 1px 0px 0px, rgba(255, 255, 255, 0.2) 1px 1px 0px 0px, inset rgba(255, 255, 255, 0.05) 0px -5px 10px 0px, inset rgba(0, 0, 0, 0.08) 5px 5px 10px 0px;
  position: relative;
  backdrop-filter: blur(25px);
  color: var(--contrastColorInverted);
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 31px;
  height: 9px;
  border-radius: 5px;
  background: var(--main-color);
  filter: blur(5.5px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 6;
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 105px;
  height: 1px;
  border-radius: 5px;
  background: var(--main-color);
  filter: blur(1px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 6;
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color) span.dot {
  position: absolute;
  width: 5px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  background: var(--main-color);
  filter: blur(2px);
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover::before {
  opacity: 0.5;
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover::after {
  opacity: 1;
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover span.dot {
  opacity: 1;
}
.wp-block-button.is-style-bordered-double > .wp-block-button__link {
  margin: 0;
  overflow: visible;
  text-transform: none;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  transition: 0.17s ease-in-out;
  transition-property: color, background-color, background-position, border-color, box-shadow;
  font-weight: 300;
  background-origin: border-box;
  background-size: 200%;
  background-position-x: 100%;
  background-color: transparent;
  color: #a78949;
  border: 2px solid #a78949;
  background-image: none;
  background-color: transparent;
}
.wp-block-button.is-style-bordered-double > .wp-block-button__link::before {
  content: "";
  display: block;
  border: 1px solid #a78848;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  width: unset;
  height: unset;
  background: none;
  z-index: 0;
  opacity: 1 !important;
}
.wp-block-button.is-style-bordered-double > .wp-block-button__link:hover {
  background-color: transparent;
  color: #fff;
  border-color: #a78949;
  background-image: linear-gradient(90deg, #a78949 50%, transparent 50%);
  background-position-x: 0;
}
.wp-block-button.is-style-bordered-double > .wp-block-button__link:hover::before {
  border: 1px solid #fff;
}

.wp-block-button:is(.is-style-telefon, .is-style-email, .is-style-contact) {
  display: flex !important;
  align-items: center;
}
.wp-block-button:is(.is-style-telefon, .is-style-email, .is-style-contact) > .wp-block-button__link:not(.has-text-color) {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding: 0;
  margin: 0;
  color: var(--main-color);
  background: transparent;
  background-color: transparent;
  font-family: var(--mainFont);
  font-size: clamp(0.9444444444rem, 0.9294294294rem + 0.0844594595vw, 1rem);
  line-height: 1.61;
  border-radius: 0;
  box-shadow: none;
}
.wp-block-button:is(.is-style-telefon, .is-style-email, .is-style-contact) > .wp-block-button__link:not(.has-text-color)::before {
  content: "";
  position: relative;
  display: inline-block;
  min-width: 50px;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  opacity: 1 !important;
}
.wp-block-button:is(.is-style-telefon, .is-style-email, .is-style-contact) > .wp-block-button__link:not(.has-text-color):hover {
  text-decoration: underline;
}
.wp-block-button.is-style-telefon > .wp-block-button__link::before {
  background-image: url(../img/phone.svg);
}
.wp-block-button.is-style-email > .wp-block-button__link::before {
  background-image: url(../img/mail.svg);
  -webkit-background-image: url(../img/mail.svg);
}
.wp-block-button.is-style-contact > .wp-block-button__link::before {
  background-image: url(../img/calendar.svg);
  -webkit-background-image: url(../img/calendar.svg);
}

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

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

#mpc-iframe-guestlist_embedded html {
  background-color: transparent !important;
}

.floating-label {
  position: relative;
}
.floating-label :is(input,
textarea) {
  padding: 20px 15px;
}
.floating-label label {
  display: block;
  color: #fff;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  transition: var(--baseTransition);
  position: absolute;
  top: 0;
  left: 20px;
  transform: translateY(25px);
  pointer-events: none;
  margin-bottom: 0 !important;
}
.floating-label:focus-within label, .floating-label.isfilled label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:not(:placeholder-shown) + label,
.floating-label :-webkit-autofill + label {
  transform: translateY(6px);
  font-size: 80% !important;
}
.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_heading {
  display: none;
}

.gfield_required {
  color: #808080 !important;
  padding-inline-start: 0 !important;
}

.gform_wrapper.gravity-theme .gfield_error legend .gfield_required {
  color: #c02b0a !important;
}
.gform_wrapper.gravity-theme .gfield_error label .gfield_required {
  color: #c02b0a !important;
}

.gform_wrapper.gravity-theme .gfield--type-fileupload .gfield_label {
  font-size: clamp(0.8888888889rem, 0.8588588589rem + 0.1689189189vw, 1rem) !important;
  font-weight: 400 !important;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 15px;
  font-size: 18px !important;
  line-height: 1.55em !important;
  font-family: var(--mainFont);
  padding: 27px 20px 20px !important;
  color: #fff;
  outline: none !important;
  background: rgba(12, 12, 12, 0.3);
  box-shadow: 0 0 50px 0 rgba(255, 207, 139, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.gfield--type-consent legend {
  color: #fff;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: normal !important;
}
.gfield--type-consent label {
  color: #fff;
  font-size: 15px;
  font-weight: 500 !important;
  line-height: normal !important;
}
.gfield--type-consent label a {
  color: var(--main-color);
}
.gfield--type-consent label a:hover {
  text-decoration: underline;
}

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

.gform_wrapper.gravity-theme .gfield_label,
.gform_wrapper.gravity-theme legend.gfield_label {
  color: #fff;
  font-family: var(--mainFont);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 12px;
}
.gform_wrapper.gravity-theme select {
  color: #fff;
}
.gform_wrapper.gravity-theme select option {
  color: var(--fontColor);
}
.gform_wrapper.gravity-theme .ginput_complex .gform-grid-col.ginput_container_date {
  flex: 1 1 0;
  max-width: none;
}
.gform_wrapper.gravity-theme .ginput_complex .gform-grid-col.ginput_container_time {
  flex: 0 1 auto;
  min-width: 90px;
  max-width: 110px;
}
.gform_wrapper.gravity-theme .ginput_complex .gform-grid-col.ginput_container_date select,
.gform_wrapper.gravity-theme .ginput_complex .gform-grid-col.ginput_container_time input {
  width: 100%;
  min-width: 0;
  padding: 20px 15px !important;
}
.gform_wrapper.gravity-theme .ginput_complex .gform-grid-col.ginput_container_date select {
  padding-right: 34px !important;
}
.gform_wrapper.gravity-theme .ginput_complex .gform-grid-col.ginput_container_time input {
  text-align: center;
}
.gform_wrapper.gravity-theme .hour_minute_colon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 5px;
  color: #fff;
}
.gform_wrapper.gravity-theme .gchoice,
.gform_wrapper.gravity-theme .ginput_container_consent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.gform_wrapper.gravity-theme input[type=checkbox],
.gform_wrapper.gravity-theme input[type=radio] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0 !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(12, 12, 12, 0.3);
  box-shadow: none;
  transition: var(--baseTransition);
}
.gform_wrapper.gravity-theme input[type=checkbox]:hover,
.gform_wrapper.gravity-theme input[type=radio]:hover {
  border-color: var(--main-color);
}
.gform_wrapper.gravity-theme input[type=checkbox]:checked,
.gform_wrapper.gravity-theme input[type=radio]:checked {
  border-color: var(--main-color);
  background-color: var(--main-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3.5 3.5L13 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% auto;
}
.gform_wrapper.gravity-theme input[type=checkbox]:focus-visible,
.gform_wrapper.gravity-theme input[type=radio]:focus-visible {
  outline: 2px solid var(--main-color) !important;
  outline-offset: 2px;
}
.gform_wrapper.gravity-theme input[type=radio] {
  border-radius: 50%;
}
.gform_wrapper.gravity-theme .gchoice label,
.gform_wrapper.gravity-theme .gfield_consent_label {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}
.gform_wrapper.gravity-theme .gform_footer {
  margin-top: 20px;
  padding: 0;
}
.gform_wrapper.gravity-theme .gform_button {
  width: auto;
}

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

@media (max-width: 1534.08px) {
  .px-news {
    width: var(--baseWidth);
    margin: 0 auto;
  }
}
.px-news .news-inner {
  max-width: var(--maxWidthBig);
  margin: 0 auto;
}
.px-news .postsloop {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.px-news .postsloop article {
  flex-basis: calc(33.3333333333% - 30px);
  min-width: 300px;
  flex-grow: 1;
}
.px-news .postsloop article > a {
  display: block;
}
.px-news .postsloop .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.px-news .postsloop .content .button, .px-news .postsloop .content input[type=submit],
.px-news .postsloop .content button {
  margin-top: auto;
}
.px-news .postsloop .content .date {
  font-size: 15px;
  color: var(--fontColor);
}
.px-news .postsloop .content .entry-title {
  margin-bottom: clamp(0.8333333333rem, 0.6081081081rem + 1.2668918919vw, 1.6666666667rem);
  margin-top: 5px;
}
.px-news .postsloop .content .excerpt {
  color: var(--fontColor);
  margin-bottom: clamp(0.8333333333rem, 0.6081081081rem + 1.2668918919vw, 1.6666666667rem);
}
.px-news .postsloop .content .post-thumbnail {
  position: relative;
  min-height: clamp(8.3333333333rem, 6.7867867868rem + 8.6993243243vw, 14.0555555556rem);
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  width: 100%;
}
.px-news .postsloop .content .post-thumbnail.no-image {
  background: #ddd;
}
.px-news .postsloop .content .post-thumbnail img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}
.px-news .postsloop .content .post-category {
  padding: 11px 20px;
  border-bottom-left-radius: 8px;
  background: var(--second-color);
  color: var(--contrastColorInverted);
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: none;
  font-size: 15px;
}

body.single h1 {
  margin-bottom: var(--fl-margin-after-small);
}
body.single .post-meta {
  max-width: var(--maxWidthBig);
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
}
@media (max-width: 1534.08px) {
  body.single .post-meta {
    width: var(--baseWidth);
  }
}
body.single .post-meta .post-meta-inner {
  background: var(--lightGray);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  body.single .post-meta .post-meta-inner {
    gap: 10px;
    justify-content: space-around;
  }
}
body.single .post-meta .post-meta-inner .post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.single .post-meta .post-meta-inner .post-categories a {
  padding: 5px 10px;
  background: var(--second-color);
  color: var(--contrastColorInverted);
  border-radius: 5px;
}
body.single .post-author {
  max-width: var(--maxWidthBig);
  margin: clamp(2.2222222222rem, 1.3213213213rem + 5.0675675676vw, 5.5555555556rem) auto;
}
@media (max-width: 1534.08px) {
  body.single .post-author {
    width: var(--baseWidth);
  }
}
body.single .post-author .post-author-inner {
  padding: 40px;
  border: 3px solid var(--lightGray);
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  body.single .post-author .post-author-inner {
    flex-direction: column;
  }
}
body.single .post-author .post-author-inner .left {
  flex-basis: 128px;
}
body.single .post-author .post-author-inner .left .post-author-image {
  width: clamp(3.5555555556rem, 2.5945945946rem + 5.4054054054vw, 7.1111111111rem);
  height: clamp(3.5555555556rem, 2.5945945946rem + 5.4054054054vw, 7.1111111111rem);
  border-radius: 50%;
  overflow: hidden;
}
body.single .post-author .post-author-inner .left .post-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.single .post-author .post-author-inner .left .post-author-image.no-image {
  background: #ddd;
}
body.single .post-author .post-author-inner .right {
  flex-basis: calc(100% - 128px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.single .post-author .post-author-inner .right .info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
body.single .post-author .post-author-inner .right .info .author {
  display: flex;
  flex-direction: column;
}
body.single .post-author .post-author-inner .right .info a {
  margin: 0;
}
body.single .post-author .post-author-inner .right .post-author-name {
  font-size: clamp(0.8888888889rem, 0.7687687688rem + 0.6756756757vw, 1.3333333333rem);
  font-weight: bold;
}
body.single .post-author .post-author-inner .right .post-author-position {
  color: var(--fontColor);
}
body.single .post-author .post-author-inner .right .post-author-description {
  color: var(--fontColor);
}

.event-hero-banner {
  width: 100%;
  height: calc(-343px + 100vh);
  overflow: hidden;
}
.event-hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .event-hero-banner {
    max-height: 320px;
  }
}

.event-details-page {
  max-width: 1200px !important;
  width: var(--baseWidth);
  margin: 213px auto !important;
  padding: 40px 0;
}
@media only screen and (max-width: 1200px) {
  .event-details-page {
    margin-top: 140px !important;
  }
}
.event-details-page .event-details-header {
  margin-bottom: 50px;
  flex-direction: column;
  align-items: center;
}
.event-details-page .event-details-header .entry-title {
  font-size: clamp(2.8888888889rem, 2.5885885886rem + 1.6891891892vw, 4rem);
  text-align: center;
  color: var(--contrastColorInverted);
  margin: 0 0 10px 0;
}
.event-details-page .event-details-header .event-details-date {
  display: block;
  font-size: 20px;
  color: var(--main-color);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}
.event-details-page .event-details-blocks {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .event-details-page .event-details-blocks {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .event-details-page .event-details-blocks .col.right {
    grid-row: 1;
  }
}
.event-details-page .event-details-blocks .col.right .event-navigation-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.event-details-page .event-details-blocks .col.right .all-events-link:hover {
  color: var(--gold-gradient);
}
.event-details-page .event-details-blocks .col.right .featured-img {
  width: 100%;
  height: 375px;
  margin-bottom: 30px;
}
.event-details-page .event-details-blocks .col.right .featured-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: lightgray;
}
.event-details-page .event-details-blocks .col.right .location-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background-color: transparent;
  border: 2px solid var(--main-color);
  width: fit-content;
  color: var(--main-color);
  text-decoration: none;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.event-details-page .event-details-blocks .col.right .location-button svg {
  fill: transparent;
  stroke: var(--main-color);
  transition: stroke 0.3s ease-in-out;
}
.event-details-page .event-details-blocks .col.right .location-button:hover {
  background-color: var(--main-color);
  color: var(--contrastColorInverted);
}
.event-details-page .event-details-blocks .col.right .location-button:hover svg {
  stroke: var(--contrastColorInverted);
}
.event-details-page .event-details-blocks p,
.event-details-page .event-details-blocks li {
  line-height: 1.65;
  margin-bottom: 20px;
}
.event-details-page .event-details-blocks .wp-block-image {
  margin: 0 0 20px 0;
}
.event-details-page .event-details-blocks .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.event-details-page .event-details-blocks .wp-block-embed > * {
  color: var(--contrastColorInverted);
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-style-gap-zero {
  gap: 0 !important;
}

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

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

.is-style-gap-large {
  column-gap: clamp(2.2222222222rem, 0.7207207207rem + 8.4459459459vw, 7.7777777778rem) !important;
}

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

.wp-block-columns {
  position: relative;
  z-index: 2;
}

.wp-block-columns.is-layout-flex.is-style-space-between {
  column-gap: 50px !important;
  justify-content: space-between;
}
@media only screen and (max-width: 960px) {
  .wp-block-columns.is-layout-flex.is-style-space-between {
    flex-direction: column;
    row-gap: 40px !important;
  }
  .wp-block-columns.is-layout-flex.is-style-space-between .wp-block-column {
    flex-basis: auto !important;
    width: 100% !important;
  }
}

@media (max-width: 1024px) {
  body .wp-block-columns {
    flex-wrap: wrap !important;
  }
  body .wp-block-column {
    flex-basis: 100% !important;
  }
  body .wp-block-column.is-vertically-aligned-bottom {
    align-self: flex-start;
  }
  body .wp-block-column:not(:has(> :not(.wp-block-heading,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  .wp-block-buttons,
  .wp-block-list,
  ul,
  ol,
  .list))) {
    max-width: 700px;
  }
  body .wp-block-columns:has(> .wp-block-column:first-child > .px-videoplayer) .wp-block-column:not(:has(> :not(.wp-block-heading,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  .wp-block-buttons,
  .wp-block-list,
  ul,
  ol,
  .list))) {
    margin-inline: 4vw;
  }
}

.wp-block-buttons {
  gap: 30px;
}

ul.wp-block-list li {
  position: relative;
  padding-left: 20px;
  margin: 10px 0;
}
ul.wp-block-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: radial-gradient(912.31% 68.22% at 44.97% 64.63%, #9c7e3d 4.97%, #fbd585 90.87%, #a78949 100%);
}

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

li {
  color: #fff;
}

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 only screen and (max-width: 1024px) {
  .gaga360-map {
    height: 400px !important;
  }
}

.wp-block-table {
  color: #fff;
}

.iframe-scroll-guard {
  position: relative;
}
.iframe-scroll-guard > iframe {
  display: block;
  max-width: 100%;
}
.iframe-scroll-guard.is-active > .iframe-scroll-guard__shield {
  opacity: 0;
  pointer-events: none;
}

.iframe-scroll-guard__shield {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 15px 20px;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
}
.iframe-scroll-guard__shield:focus-visible {
  outline: 3px solid var(--main-color) !important;
  outline-offset: -3px;
}
.iframe-scroll-guard__shield:hover .iframe-scroll-guard__hint, .iframe-scroll-guard__shield:focus-visible .iframe-scroll-guard__hint {
  opacity: 1;
}

.iframe-scroll-guard__hint {
  display: inline-block;
  max-width: 100%;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.85);
  color: #fff;
  font-family: var(--mainFont);
  font-size: 0.85rem;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: none) {
  .iframe-scroll-guard__hint {
    opacity: 0.9;
  }
}
@media (prefers-reduced-motion: reduce) {
  .iframe-scroll-guard__hint {
    transition: none;
  }
}

header.head {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: var(--pageLimit);
  z-index: 99;
}
header.head .inner {
  width: var(--baseWidth);
  max-width: var(--maxWidthBig);
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  gap: 0 clamp(0rem, -0.5255255255rem + 2.9560810811vw, 1.9444444444rem);
  transition: var(--baseTransition);
  padding-block: 0;
  padding-inline: 0;
}
@media only screen and (max-width: 1200px) {
  header.head .inner {
    margin: 15px auto 0;
    justify-content: space-between;
    background: rgba(12, 12, 12, 0.8);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
  }
}
header.head .inner #logo {
  display: none;
  transition: var(--baseTransition);
  background-image: var(--website-logo-image-url);
  background-repeat: no-repeat;
  background-size: contain;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1200px) {
  header.head .inner #logo {
    background-image: var(--website-logo-sticky-image-url);
    display: block;
    width: 62px;
    aspect-ratio: 32/42;
  }
}
@media only screen and (max-width: 768px) {
  header.head .inner #logo {
    width: 50px;
  }
}
header.head .inner #logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header.head .inner #logo span {
  display: none;
}
header.head .inner .nav-wrapper {
  display: flex;
  align-items: center;
  gap: 35px;
  min-width: 0;
  transition: var(--baseTransition);
}
header.head .inner #site-navigation.main-navigation {
  width: fit-content;
  margin: 0 auto;
  transition: var(--baseTransition);
  flex: 1;
}
header.head .inner #site-navigation.main-navigation #mega-menu-primary > li.mega-menu-item a.mega-menu-link .mega-menu-logo,
header.head .inner #site-navigation.main-navigation #mega-menu-unterseiten-menu > li.mega-menu-item a.mega-menu-link .mega-menu-logo {
  background-image: var(--website-logo-image-url) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 170px;
  aspect-ratio: 170/190;
  transition: var(--baseTransition);
  backface-visibility: hidden;
}
header.head .inner #site-navigation.main-navigation #mega-menu-primary > li.mega-menu-item a.mega-menu-link .mega-menu-logo img,
header.head .inner #site-navigation.main-navigation #mega-menu-unterseiten-menu > li.mega-menu-item a.mega-menu-link .mega-menu-logo img {
  display: none;
}
@media only screen and (max-width: 1504px) {
  header.head .inner #site-navigation.main-navigation #mega-menu-primary > li.mega-menu-item a.mega-menu-link .mega-menu-logo,
  header.head .inner #site-navigation.main-navigation #mega-menu-unterseiten-menu > li.mega-menu-item a.mega-menu-link .mega-menu-logo {
    width: 135px;
  }
  header.head .inner #site-navigation.main-navigation #mega-menu-primary > li.mega-menu-item a.mega-menu-link .mega-menu-logo img,
  header.head .inner #site-navigation.main-navigation #mega-menu-unterseiten-menu > li.mega-menu-item a.mega-menu-link .mega-menu-logo img {
    width: 100%;
  }
}
header.head .inner .language-switcher {
  position: absolute;
  right: 3.4vw;
  top: 50%;
  transition: var(--baseTransition);
}
@media only screen and (max-width: 1504px) {
  header.head .inner .language-switcher {
    right: 4vw;
  }
}
@media only screen and (max-width: 1200px) {
  header.head .inner .language-switcher {
    position: static;
    transform: translateY(0);
  }
}
header.head .inner .language-switcher img,
header.head .inner .language-switcher .wp-block-navigation__submenu-icon {
  display: none;
}
header.head .inner .language-switcher .wpml-ls-dropdown > ul > li .current-language-item {
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: inset rgba(255, 255, 255, 0.2) 1px 1px 0px 0px, rgba(255, 255, 255, 0.2) 1px 1px 0px 0px;
  border: none;
  transition: color 0.3s ease-in-out;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--baseTransition);
}
header.head .inner .language-switcher .wpml-ls-dropdown > ul > li .current-language-item [data-wpml=label] {
  color: var(--themeFontColor);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  transition: var(--baseTransition);
}
header.head .inner .language-switcher .wpml-ls-dropdown > ul > li .current-language-item:hover [data-wpml=label] {
  background: radial-gradient(912.31% 68.22% at 44.97% 64.63%, #9c7e3d 4.97%, #fbd585 90.87%, #a78949 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1200px) {
  header.head.is-sticky {
    background: none;
    box-shadow: none;
  }
}
header.head.is-sticky > .inner {
  position: relative;
  margin: 15px auto;
  background: rgba(12, 12, 12, 0.5);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3);
  padding-block: 14px;
  padding-inline: clamp(1.1111111111rem, -0.7207207207rem + 10.3040540541vw, 7.8888888889rem) 20px;
}
header.head.is-sticky > .inner:hover {
  background: rgba(12, 12, 12, 0.8);
}
@media only screen and (max-width: 1200px) {
  header.head.is-sticky > .inner {
    margin-bottom: 0;
    padding-inline: 20px;
  }
}
header.head.is-sticky > .inner .nav-wrapper {
  min-width: 100%;
}
@media only screen and (max-width: 1200px) {
  header.head.is-sticky > .inner .nav-wrapper {
    min-width: auto;
  }
}
header.head.is-sticky > .inner #site-navigation.main-navigation {
  width: 100%;
}
header.head.is-sticky > .inner #site-navigation.main-navigation #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:has(.mega-menu-logo),
header.head.is-sticky > .inner #site-navigation.main-navigation #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item:has(.mega-menu-logo),
header.head.is-sticky > .inner #site-navigation.main-navigation #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item:has(.mega-menu-logo),
header.head.is-sticky > .inner #site-navigation.main-navigation #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item:has(.mega-menu-logo) {
  flex: 1;
}
header.head.is-sticky > .inner #site-navigation.main-navigation #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item a.mega-menu-link .mega-menu-logo,
header.head.is-sticky > .inner #site-navigation.main-navigation #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item a.mega-menu-link .mega-menu-logo,
header.head.is-sticky > .inner #site-navigation.main-navigation #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item a.mega-menu-link .mega-menu-logo,
header.head.is-sticky > .inner #site-navigation.main-navigation #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item a.mega-menu-link .mega-menu-logo {
  background-image: var(--website-logo-sticky-image-url) !important;
  width: 32px;
  margin-inline: auto;
  aspect-ratio: 32/42;
}
header.head.is-sticky > .inner .language-switcher {
  position: static;
}
header.head.is-sticky > .inner .language-switcher .wpml-ls-dropdown > ul > li .current-language-item {
  box-shadow: none;
  border: 1px solid #fff;
}
header.head.is-sticky > .inner .language-switcher .wpml-ls-dropdown > ul > li .current-language-item:hover {
  border: 1px solid var(--gold-gradient);
}

footer.foot {
  width: 100%;
  max-width: var(--pageLimit);
  margin: 0 auto;
  padding: clamp(2.2222222222rem, 1.3213213213rem + 5.0675675676vw, 5.5555555556rem) 0 clamp(1.1111111111rem, 0.6606606607rem + 2.5337837838vw, 2.7777777778rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(#1A1A1A, transparent);
}
footer.foot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/footer-bg.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
footer.foot .inner {
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin: 0 auto;
}
footer.foot .inner .footer-heading {
  margin-bottom: clamp(2.2222222222rem, 1.7717717718rem + 2.5337837838vw, 3.8888888889rem);
}
footer.foot .inner .footer-heading .wp-block-heading {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
footer.foot .inner .footer-heading .wp-block-heading::after {
  content: "";
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  background-color: #fff;
  -webkit-mask-image: url(../img/right-arrow.svg);
  mask-image: url(../img/right-arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  transition: background-color 0.3s ease-in-out;
}
footer.foot .inner .footer-heading .wp-block-heading:hover::after {
  background-color: var(--main-color);
}
footer.foot .inner .footer-heading .wp-block-heading a {
  color: #fff;
  transition: color 0.3s ease-in-out;
}
footer.foot .inner .footer-heading .wp-block-heading:hover a {
  color: var(--main-color);
}
footer.foot .inner .wp-block-heading,
footer.foot .inner h4 {
  margin-bottom: 20px;
}
footer.foot .inner p {
  color: var(--themeFontColor);
}
footer.foot .inner .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(1.6666666667rem, 1.5165165165rem + 0.8445945946vw, 2.2222222222rem);
}
@media only screen and (max-width: 1200px) {
  footer.foot .inner .row {
    flex-wrap: wrap;
  }
}
footer.foot .inner .row ul.wp-block-social-links {
  gap: 36px;
}
footer.foot .inner .row ul.wp-block-social-links li.wp-social-link {
  box-shadow: none;
  transition: var(--baseTransition);
}
footer.foot .inner .row ul.wp-block-social-links li.wp-social-link a.wp-block-social-link-anchor {
  border: 1px solid var(--gold-gradient, #9C7E3D);
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  padding: 10px;
}
footer.foot .inner .row ul.wp-block-social-links li.wp-social-link a.wp-block-social-link-anchor svg {
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
}
footer.foot .inner .row ul.wp-block-social-links li.wp-social-link:hover {
  transform: scale(1);
  box-shadow: 0 0 50px 0 rgba(255, 207, 139, 0.15);
}
footer.foot .inner .row ul.wp-block-social-links li.wp-social-link.wp-social-link-custom-share-gradient a.wp-block-social-link-anchor svg {
  transform: rotate(-45deg) translateX(-2px);
}
footer.foot .inner .row ul.menu {
  display: flex;
  gap: 20px;
}
footer.foot .inner .row ul.menu li.menu-item a {
  color: var(--themeFontColor);
  font-size: 15px;
  font-weight: 200;
  line-height: 1.67;
  transition: color 0.3s ease-in-out;
}
footer.foot .inner .row ul.menu li.menu-item a:hover {
  color: var(--main-color);
}
footer.foot .inner .row.row-1 {
  padding: 40px;
  background: rgba(12, 12, 12, 0.3);
  box-shadow: 0 0 50px 0 rgba(255, 207, 139, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@media only screen and (max-width: 450px) {
  footer.foot .inner .row.row-1 {
    padding: 30px;
  }
}
footer.foot .inner .row.row-1 .col {
  max-width: 350px;
  width: 100%;
}
footer.foot .inner .row.row-1 .col.col-1 .widget .wp-block-columns {
  gap: 5px !important;
}
footer.foot .inner .row.row-1 .col.col-1 .is-style-minitext {
  margin-top: 20px;
}
footer.foot .inner .row.row-1 ul li {
  display: block;
}
footer.foot .inner .row.row-1 .wp-block-buttons {
  gap: 15px;
}
footer.foot .inner .row.row-2 {
  margin-top: clamp(2.2222222222rem, 1.7717717718rem + 2.5337837838vw, 3.8888888889rem);
  align-items: baseline;
}
footer.foot .inner .row.row-2 .col.col-3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer.foot .inner .row.row-2 .col.col-3 h4 {
  margin-bottom: 0;
}
footer.foot .inner .row.row-2 .col.col-3 p.is-style-minitext {
  font-weight: 200;
}

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

#masthead #mega-menu-wrap-primary .mega-menu-toggle,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle {
  background-color: transparent;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner,
#masthead #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner::before,
#masthead #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner::after,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner::before,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle .mega-toggle-block .mega-toggle-animated-inner::after {
  background-color: var(--main-color);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu {
  gap: 0;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link {
  font-size: var(--baseFontSize);
  line-height: normal;
  padding: 10px;
  transition: var(--baseTransition);
  border: 1px solid transparent;
  background: var(--themeFontColor);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link:hover, #masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link:focus,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link:hover,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link:focus,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item a.mega-menu-link:hover,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item a.mega-menu-link:focus,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link:hover,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link:focus {
  background: radial-gradient(912.31% 68.22% at 44.97% 64.63%, #9C7E3D 4.97%, #FBD585 90.87%, #A78949 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--gold-gradient);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.logo-wrapper a,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item.logo-wrapper a,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item.logo-wrapper a,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item.logo-wrapper a {
  border: none !important;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item .mega-menu-logo,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item .mega-menu-logo,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item .mega-menu-logo,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item .mega-menu-logo {
  padding: 0;
  margin-inline: clamp(50px, 50px + 85px * (100vw - 1200px) / 720px, 135px) clamp(50px, 50px + 85px * (100vw - 1200px) / 720px, 100px);
  background: none;
  background-clip: unset !important;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:not(:first-child):not(.logo-wrapper) > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item:not(:first-child):not(.logo-wrapper) > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item:not(:first-child):not(.logo-wrapper) > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item:not(:first-child):not(.logo-wrapper) > a.mega-menu-link {
  margin-left: clamp(0rem, -0.5255255255rem + 2.9560810811vw, 1.9444444444rem);
}
@media only screen and (max-width: 1200px) {
  #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:not(:first-child):not(.logo-wrapper) > a.mega-menu-link,
  #masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item:not(:first-child):not(.logo-wrapper) > a.mega-menu-link,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item:not(:first-child):not(.logo-wrapper) > a.mega-menu-link,
  #masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item:not(:first-child):not(.logo-wrapper) > a.mega-menu-link {
    margin-left: 0;
  }
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:has(.mega-menu-logo) + li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item:has(.mega-menu-logo) + li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item:has(.mega-menu-logo) + li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item:has(.mega-menu-logo) + li.mega-menu-item a.mega-menu-link {
  margin-left: 0;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon {
  padding: 15px 30px 14px;
  background-color: var(--main-color);
  color: var(--contrastColorInverted);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon::before,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon::before,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon::before,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon::before {
  filter: brightness(0) invert(1) !important;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon:hover,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon:hover,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item > a.mega-menu-link.mega-custom-icon:hover,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item > a.mega-menu-link.mega-custom-icon:hover {
  background-color: var(--second-color);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  background: radial-gradient(912.31% 68.22% at 44.97% 64.63%, #9C7E3D 4.97%, #FBD585 90.87%, #A78949 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--gold-gradient);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children a.mega-menu-link > span.mega-indicator::after {
  content: "\f140";
  transition: var(--baseTransition);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu {
  min-width: 250px;
  background: rgba(12, 12, 12, 0.85);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3);
  padding: 10px;
  gap: 5px;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu a.mega-menu-link > span.mega-indicator::after,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu li.mega-menu-item.mega-menu-item-has-children ul.mega-sub-menu a.mega-menu-link > span.mega-indicator::after {
  content: "\f139";
}
#masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu {
  background-color: var(--contrastColorInverted);
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1);
}
#masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  padding: 10px 14px;
  border: none;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
  background: radial-gradient(912.31% 68.22% at 44.97% 64.63%, #9C7E3D 4.97%, #FBD585 90.87%, #A78949 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: none;
}
#masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #masthead #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu #mega-menu-unterseiten-menu ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  background: radial-gradient(912.31% 68.22% at 44.97% 64.63%, #9C7E3D 4.97%, #FBD585 90.87%, #A78949 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1200px) {
  #masthead #mega-menu-wrap-primary .mega-menu-toggle,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle {
    background: transparent;
  }
  #masthead #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary,
  #masthead #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-unterseiten-menu,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle + #mega-menu-primary,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle + #mega-menu-unterseiten-menu {
    max-height: calc(100dvh - 132px);
    overflow-y: auto;
    padding: 20px 40px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 140px;
    max-width: var(--maxWidthBig);
    width: 92%;
    background: rgba(12, 12, 12, 0.99);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3);
  }
  #masthead #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary li.mega-menu-item a.mega-menu-link:focus,
  #masthead #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link:focus,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle + #mega-menu-primary li.mega-menu-item a.mega-menu-link:focus,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle + #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link:focus {
    border-color: transparent;
    border-bottom-color: var(--gold-gradient);
  }
  #masthead #mega-menu-wrap-primary .mega-toggle-block .mega-toggle-animated-inner,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-toggle-block .mega-toggle-animated-inner {
    background-color: var(--text-color);
  }
  #masthead #mega-menu-wrap-primary .mega-toggle-block .mega-toggle-animated-inner::before, #masthead #mega-menu-wrap-primary .mega-toggle-block .mega-toggle-animated-inner::after,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-toggle-block .mega-toggle-animated-inner::before,
  #masthead #mega-menu-wrap-unterseiten-menu .mega-toggle-block .mega-toggle-animated-inner::after {
    background-color: var(--text-color);
  }
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu {
  gap: 0;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item a.mega-menu-link {
  padding: 15px 20px 14px;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  border-color: transparent;
  border-bottom-color: var(--gold-gradient);
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu {
  box-shadow: none;
  background: transparent;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  padding: 10px 20px 10px 40px;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  padding: 10px 20px 10px 60px;
}
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#masthead #mega-menu-wrap-unterseiten-menu .mega-menu-toggle.mega-menu-open + #mega-menu-unterseiten-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  border-bottom-color: transparent;
}

#masthead #mega-menu-wrap-primary .mega-menu-toggle ~ button.mega-close:before {
  content: "\f335";
  background-color: var(--main-color);
  font-size: 30px;
}

.entry-content > *[class*=px-] {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.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 100px;
  width: var(--baseWidth);
}

.fl[data-layout=layout-full-reduced-lg] .gform_wrapper, .fl[data-layout=layout-full-reduced] .gform_wrapper {
  width: 100%;
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-figure figure {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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