a.primary-button {
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
  padding: 15px 20px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  cursor: pointer;
  border-radius: 0px;
  border-radius: var(--border_radius, 0px);
  color: #17161b;
  color: var(--secondary_color, #17161b);
  background-color: #febf32;
  background-color: var(--primary_color, #febf32);
}
a.primary-button:hover {
  background-color: #17161b;
  background-color: var(--secondary_color, #17161b);
  color: #febf32;
  color: var(--primary_color, #febf32);
}
a.secondary-button {
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
  padding: 15px 20px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  cursor: pointer;
  border-radius: 0px;
  border-radius: var(--border_radius, 0px);
  border: 2px solid;
  border-color: #17161b;
  border-color: var(--secondary_color, #17161b);
  background-color: transparent;
  color: #17161b;
  color: var(--secondary_color, #17161b);
}
a.secondary-button:hover {
  background-color: #17161b;
  background-color: var(--secondary_color, #17161b);
  color: white;
  color: var(--language_switcher_color, white);
}
a.secondary-light-button {
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
  padding: 15px 20px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  cursor: pointer;
  border-radius: 0px;
  border-radius: var(--border_radius, 0px);
  border: 2px solid;
  border-color: #eefafa;
  border-color: var(--language_switcher_color, #eefafa);
  background-color: transparent;
  color: #eefafa;
  color: var(--language_switcher_color, #eefafa);
}
a.secondary-light-button:hover {
  background-color: #eefafa;
  background-color: var(--language_switcher_color, #eefafa);
  color: #17161b;
  color: var(--secondary_color, #17161b);
}
a.cta-button-primary {
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
  padding: 15px 20px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  cursor: pointer;
  border-radius: 0px;
  border-radius: var(--border_radius, 0px);
  border: 2px solid;
  color: #17161b;
  color: var(--cta_button_secondary_color, #17161b);
  background-color: #febf32;
  background-color: var(--cta_button_primary_color, #febf32);
  border-color: #febf32;
  border-color: var(--cta_button_secondary_color, #febf32);
}
a.cta-button-primary:hover, a.cta-button-primary:focus {
  background-color: #17161b;
  background-color: var(--cta_button_secondary_color, #17161b);
  color: #febf32;
  color: var(--cta_button_primary_color, #febf32);
  border-color: #17161b;
  border-color: var(--cta_button_primary_color, #17161b);
}
a.cta-button-secondary {
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
  padding: 15px 20px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  cursor: pointer;
  border-radius: 0px;
  border-radius: var(--border_radius, 0px);
  border: 2px solid;
  color: #17161b;
  color: var(--cta_button_primary_color, #17161b);
  background-color: #febf32;
  background-color: var(--cta_button_secondary_color, #febf32);
  border-color: #febf32;
  border-color: var(--cta_button_primary_color, #febf32);
}
a.cta-button-secondary:hover, a.cta-button-secondary:focus {
  background-color: #17161b;
  background-color: var(--cta_button_primary_color, #17161b);
  color: #febf32;
  color: var(--cta_button_secondary_color, #febf32);
  border-color: #17161b;
  border-color: var(--cta_button_secondary_color, #17161b);
}

div#sliding-popup .eu-cookie-compliance-banner .popup-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content button {
  font-family: inherit;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message {
  margin: 5px 0;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message h2 {
  font-size: 20px;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message p {
  font-size: 16px;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message button {
  color: var(--cookies_text_color);
  font-size: 16px;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons {
  display: flex;
  flex-direction: row;
  margin-left: auto;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons .agree-button {
  order: 2;
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
  padding: 15px 20px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  cursor: pointer;
  border-radius: 0px;
  border-radius: var(--border_radius, 0px);
  border: 2px solid;
  border-color: #eefafa;
  border-color: var(--language_switcher_color, #eefafa);
  background-color: transparent;
  color: #eefafa;
  color: var(--language_switcher_color, #eefafa);
  color: var(--cookies_text_color);
  font-size: 20px;
  border-color: var(--cookies_text_color);
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons .agree-button:hover {
  background-color: #eefafa;
  background-color: var(--language_switcher_color, #eefafa);
  color: #17161b;
  color: var(--secondary_color, #17161b);
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons .agree-button:active {
  position: static;
  top: 0;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons .agree-button:hover {
  background-color: var(--cookies_text_color);
  color: var(--cookies_bg_color);
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons .decline-button {
  color: #ffffff;
  color: var(--cookies_text_color, #ffffff);
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  text-decoration: underline;
  text-shadow: none;
  font-weight: normal;
  border: none;
  box-shadow: none;
  font-size: 16px;
  margin-right: 20px;
  order: 1;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons .decline-button:hover {
  background-color: transparent;
  background-image: none;
  background-image: initial;
}
div#sliding-popup .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons .decline-button:active {
  position: static;
  top: 0;
}

.basic-page {
  max-width: 640px;
  margin: auto;
}
@media (max-width: 768px) {
  .basic-page {
    padding: 10px;
  }
}
.basic-page a {
  color: black;
  color: var(--text_link_color, black);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 17px;
  scroll-padding-top: 110px;
}
html.has-toolbar {
  scroll-padding-top: 189px !important;
}
@media (max-width: 992px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 14px;
  }
}

body {
  background-color: white;
  background-color: var(--global_background, white);
  color: black;
  color: var(--text_main_color, black);
  margin: 0;
  -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

h1 {
  font-size: 2.986rem;
  margin-bottom: 0.5em;
}
@media (max-width: 992px) {
  h1 {
    font-size: 2.3rem;
  }
}

h2 {
  font-size: 2.488rem;
  margin-bottom: 0.5em;
}
@media (max-width: 992px) {
  h2 {
    font-size: 2.15rem;
  }
}

h3 {
  font-size: 2.074rem;
  margin-bottom: 0.5em;
}

h4 {
  font-size: 1.728rem;
  margin-bottom: 0.5em;
}

h5 {
  font-size: 1.44rem;
  margin-bottom: 0.5em;
}

h6 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
}

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

ul {
  list-style: none;
  margin: 0;
}

.text-formatted a:not([class]),
.js-form-type-processed-text a:not([class]),
.js-form-type-checkbox a:not([class]) {
  color: #17161b;
  color: var(--text_link_color, #17161b);
}
.text-formatted a:not([class]):visited,
.js-form-type-processed-text a:not([class]):visited,
.js-form-type-checkbox a:not([class]):visited {
  color: #febf32;
  color: var(--text_link_visited_color, #febf32);
}
.text-formatted a:not([class]):hover, .text-formatted a:not([class]):focus,
.js-form-type-processed-text a:not([class]):hover,
.js-form-type-processed-text a:not([class]):focus,
.js-form-type-checkbox a:not([class]):hover,
.js-form-type-checkbox a:not([class]):focus {
  color: #febf32;
  color: var(--text_link_hover_color, #febf32);
}
.text-formatted ol li,
.text-formatted ul li,
.js-form-type-processed-text ol li,
.js-form-type-processed-text ul li,
.js-form-type-checkbox ol li,
.js-form-type-checkbox ul li {
  font-size: 17px;
}
@media (max-width: 768px) {
  .text-formatted ol li,
  .text-formatted ul li,
  .js-form-type-processed-text ol li,
  .js-form-type-processed-text ul li,
  .js-form-type-checkbox ol li,
  .js-form-type-checkbox ul li {
    font-size: 14px;
  }
}
.text-formatted ul li,
.js-form-type-processed-text ul li,
.js-form-type-checkbox ul li {
  position: relative;
  line-height: 1.5;
  margin-bottom: 8px;
}
.text-formatted ul li::before,
.js-form-type-processed-text ul li::before,
.js-form-type-checkbox ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -18px;
  width: 6px;
  height: 6px;
  background-color: #febf32;
  background-color: var(--bullet_points_color, #febf32);
}
.text-formatted ol li,
.js-form-type-processed-text ol li,
.js-form-type-checkbox ol li {
  line-height: 1.5;
  margin-top: 8px;
}
.text-formatted ol li::marker,
.js-form-type-processed-text ol li::marker,
.js-form-type-checkbox ol li::marker {
  color: inherit;
}

iframe {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 16/9;
}

[dir="ltr"] blockquote {
  padding-left: 40px;
}

[dir="rtl"] blockquote {
  padding-right: 40px;
}

[dir="ltr"] blockquote {
  margin-right: 0;
}

[dir="rtl"] blockquote {
  margin-left: 0;
}

blockquote {
  position: relative;
}
blockquote p {
  font-size: 21px;
  font-style: italic;
}
@media (max-width: 768px) {
  blockquote p {
    font-size: 18px;
  }
}
blockquote::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #febf32;
  background-color: var(--bullet_points_color, #febf32);
  border-radius: 2px;
}

table td {
  font-size: 17px;
}
@media (max-width: 768px) {
  table td {
    font-size: 14px;
  }
}
table td p {
  margin-top: 0;
}

.media {
  line-height: 0;
}
.media img,
.media video {
  width: 100%;
  height: 100%;
}

.layout-item-text-formatted {
  position: relative;
}

.circle-menu {
  position: fixed;
  z-index: 1000;
  display: none;
  pointer-events: none;
}
.circle-menu .menu-item {
  position: absolute;
  pointer-events: auto;
  display: flex;
}

.edit-button {
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1px solid black;
  border-radius: 90px;
  cursor: pointer;
  outline: none;
}
.edit-button::after {
  content: " ";
  display: block;
  height: 17px;
  width: 17px;
  background-color: black;
  -webkit-mask-image: url(../assets/svg/pencil.svg);
  mask-image: url(../assets/svg/pencil.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 5px;
}
.edit-button:hover, .edit-button:focus {
  background-color: black;
  outline: none;
}
.edit-button:hover::after, .edit-button:focus::after {
  background-color: white;
}
.edit-button.focus-visible {
  outline: none;
}
.edit-button:focus-visible {
  outline: none;
}

.circle-menu--radial {
  pointer-events: auto;
  position: fixed;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
}
.circle-menu--radial > .menu-center {
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1px solid black;
  border-radius: 90px;
  cursor: pointer;
  outline: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.circle-menu--radial > .menu-center::after {
  content: " ";
  display: block;
  height: 17px;
  width: 17px;
  background-color: black;
  -webkit-mask-image: url(../assets/svg/pencil.svg);
  mask-image: url(../assets/svg/pencil.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 5px;
}
.circle-menu--radial > .menu-center:hover, .circle-menu--radial > .menu-center:focus {
  background-color: black;
  outline: none;
}
.circle-menu--radial > .menu-center:hover::after, .circle-menu--radial > .menu-center:focus::after {
  background-color: white;
}
.circle-menu--radial > .menu-center.focus-visible {
  outline: none;
}
.circle-menu--radial > .menu-center:focus-visible {
  outline: none;
}
.circle-menu--radial .menu-item {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0) translate(0);
  transition: transform 0.25s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.circle-menu--radial .menu-item-label {
  text-indent: 0 !important;
}
.circle-menu--radial .menu-item-label {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 6px;
  border: 1px solid black;
  background: white;
  color: black;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 1;
}
.circle-menu--radial > .menu-count {
  position: absolute;
  left: calc(50% + 15px - 15px);
  top: calc(50% + 15px - 15px);
  transform: none;
  padding: 1px 6px;
  border: 1px solid black;
  background: white;
  color: black;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.2;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.15s ease;
  z-index: 1003;
}
.circle-menu--radial > .menu-center:hover + .menu-count,
.circle-menu--radial > .menu-center:focus + .menu-count {
  opacity: 0;
}
.circle-menu--radial.is-open > .menu-count {
  opacity: 0;
}
.circle-menu--radial.is-open.labels-on .menu-item-label {
  opacity: 1 !important;
}
.circle-menu--radial.is-open .menu-item {
  transform: translate(-50%, -50%) rotate(calc(360deg / var(--count) * var(--i))) translate(35px) rotate(calc(-360deg / var(--count) * var(--i)));
  transform: translate(-50%, -50%) rotate(calc(360deg / var(--count) * var(--i))) translate(var(--radius, 35px)) rotate(calc(-360deg / var(--count) * var(--i)));
  opacity: 1;
  pointer-events: auto;
}
.circle-menu--radial.is-open > .menu-center {
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.circle-menu--radial:not(.is-open) > .menu-center {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.circle-menu--radial > .menu-center:hover::after,
.circle-menu--radial > .menu-center:focus::after {
  opacity: 0;
  width: 0;
  height: 0;
  content: "";
}
.circle-menu--radial.is-open > .menu-center::after {
  opacity: 0;
  width: 0;
  height: 0;
  content: "";
}
.circle-menu--radial:not(.is-open) > .menu-center::after {
  opacity: 1;
  width: 17px;
  height: 17px;
  content: " ";
}

.circle-menu--radial.circle-menu--vertical {
  --gap: 40px;
  width: 120px;
  height: calc(var(--count) * var(--gap) + 120px);
}
.circle-menu--radial.circle-menu--vertical.is-open .menu-item {
  transform: translate(-50%, -50%) translateY(calc((var(--i) + 1) * var(--gap)));
  opacity: 1;
  pointer-events: auto;
}
.circle-menu--radial.circle-menu--vertical .menu-item-label {
  top: 50%;
  left: auto;
  right: calc(100% + 8px);
  transform: translateY(-50%);
  z-index: 2;
  max-width: 220px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.flexi-editable {
  /* @mixin edit-button($top, $right) {
    position: absolute;
    color: transparent;
    z-index: 12;
    top: $top;
    right: $right;
    text-indent: -9999px;
    width: 30px;
    height: 30px;
    display: none;
    justify-content: center;
    background-color: white;
    align-items: center;
    border: 1px solid;
    border-radius: 90px;
    box-shadow: 1px 1px #888888;
    cursor: pointer;

    &::after {
      content: " ";
      display: block;
      height: 17px;
      width: 17px;
      background-color: black;
      -webkit-mask-image: url(../assets/svg/pencil.svg);
      mask-image: url(../assets/svg/pencil.svg);
      background-position: center;
      background-size: contain;
      top: 5px;
      position: absolute;
    }

    &:hover,
    &:focus {
      background-color: black;

      &::after {
        background-color: white;
      }
    }
  }

  .inner-edit {
    >.edit-button {
      @include edit-button(20px, 20px)
    }
  }

  .inline-edit {
    >.edit-button {
      @include edit-button(-20px, -20px)
    }
  }

  .outer-edit {
    >.edit-button {
      @include edit-button(-20px, -15px)
    }
  } */
}
.flexi-editable .hover-border::after {
  z-index: 1;
  position: absolute;
  content: " ";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px dashed transparent;
  pointer-events: none;
}
.flexi-editable:hover, .flexi-editable:focus {
  /* .edit-button {
    display: flex;
  } */
}
.flexi-editable:hover .hover-border::after, .flexi-editable:focus .hover-border::after {
  border-color: black;
}

.grecaptcha-badge {
  display: none !important;
}

.scroll-up {
  z-index: 999 !important;
}

.scroll-up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  max-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #000000;
  border-radius: 0px;
  border-radius: var(--border_radius, 0px);
  transition: max-width 300ms ease-in-out;
}
.scroll-up .scroll-up-text {
  opacity: 0;
  width: 0;
  visibility: hidden;
  transition: visibility 300ms ease;
}
.scroll-up:hover, .scroll-up:focus {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 400px;
}
.scroll-up:hover .scroll-up-text, .scroll-up:focus .scroll-up-text {
  opacity: 1;
  width: 100%;
  visibility: visible;
}
.scroll-up:hover svg, .scroll-up:focus svg {
  margin-left: 10px;
  margin-right: 5px;
}
.scroll-up svg {
  min-width: 20px;
  width: 20px;
  min-height: 20px;
  height: 20px;
}
.scroll-up svg path {
  fill: #000000;
  transition: fill 300ms ease;
}

.hide-email {
  display: none;
}

.swiper-loading .swiper-slide:not(:last-child) {
  display: none;
}

.anchor-link {
  padding-top: 200px;
  margin-top: -200px;
}

@media (max-width: 500px) {
  .custom-layout--content > section:first-child .swiper-wrapper {
    min-height: 350px;
  }
  .custom-layout--content > section:first-child .swiper-wrapper .swiper-slide,
  .custom-layout--content > section:first-child .swiper-wrapper .slideshow-slide,
  .custom-layout--content > section:first-child .swiper-wrapper img {
    min-height: 350px;
  }
}

div#sliding-popup {
  background: #0779bf;
  background: var(--cookies_bg_color, #0779bf);
  color: white;
  color: var(--cookies_text_color, white);
}

.formatted-text figure,
.text-formatted figure {
  display: table;
  clear: both;
}
.formatted-text figure figcaption,
.text-formatted figure figcaption {
  font-size: 14px;
  text-align: center;
  margin: 0 auto;
}
.formatted-text .align-left,
.formatted-text .align-center,
.formatted-text .align-right,
.text-formatted .align-left,
.text-formatted .align-center,
.text-formatted .align-right {
  display: table;
}
.formatted-text .align-left,
.text-formatted .align-left {
  margin-right: auto;
  float: none;
}
.formatted-text .align-right,
.text-formatted .align-right {
  margin-left: auto;
  float: none;
}

.media-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 66;
}
.media-popup.opened {
  display: flex;
}
.media-popup__wrapper {
  position: relative;
  margin: auto;
  max-width: 920px;
  width: 100%;
  padding: 40px;
}
.media-popup iframe {
  aspect-ratio: 16/9;
}
.media-popup--close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.media-popup--close svg path {
  stroke: #2D2B50;
}
