@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-ExtraBold.woff2') format('woff2'),
        url('../fonts/Outfit-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Light.woff2') format('woff2'),
        url('../fonts/Outfit-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Black.woff2') format('woff2'),
        url('../fonts/Outfit-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-SemiBold.woff2') format('woff2'),
        url('../fonts/Outfit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Thin.woff2') format('woff2'),
        url('../fonts/Outfit-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Bold.woff2') format('woff2'),
        url('../fonts/Outfit-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
        url('../fonts/Outfit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-ExtraLight.woff2') format('woff2'),
        url('../fonts/Outfit-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Medium.woff2') format('woff2'),
        url('../fonts/Outfit-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



:root {
  --ww-primary-color: #005F99;
  --ww-primary-color-dark: #004887;
  --ww-secondary-color: #f4ea5e;
  --ww-text-color: #222222;
  --ww-text-color-light: #a59e99;
  --ww-text-color-bright: #FFFFFF;
  --ww-background-color-primary: #57934b;
  --ww-background-color-secondary: #c4e3ff;
  --ww-background-color-dark: #1D1D1B;
  --ww-background-color-light: #efefef;
  --ww-background-color-bright: #ffffff;
  --ww-form-color: #ffffff;
  --ww-border-radius: .5rem;
  --ww-border-radius-button: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-color: var(--ww-background-color-dark) var(--ww-background-color-bright);
  scrollbar-width: thin;
}

html::-webkit-scrollbar,
html::-webkit-scrollbar-track {
  width: 8px;
  background-color: var(--ww-background-color-bright);
  background-color: transparent;
}

html::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: none;
  background-color: var(--ww-background-color-dark);
}

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  background-color: var(--ww-background-color-bright);
  position: relative;
  padding: 0;
  margin: 0;
  color: var(--ww-primary-text-color);
  max-width: 100vW;
  overflow-x: hidden;
  overflow-y: visible;    
  scrollbar-color: var(--ww-background-color-dark) var(--ww-background-color-bright);
  scrollbar-width: thin;  
}

  /* use html > body to have overrides working, otherwise we have to use ugly important */
html > body {
  /* wordpress overrides */
  --wp--preset--color--vivid-red: var(var(--ww-primary-color));
  --wp--preset--color--vivid-green-cyan: var(--ww-primary-color);
  --wp--preset--color--cyan-bluish-gray: var(--ww-text-color-light);
  --wp--preset--color--vivid-cyan-blue: var(--ww-primary-color-dark);
  --wp--preset--font-size--x-large: clamp(1.75vW, 7vW, 3rem);
  --wp--preset--font-size--large: clamp(1.75rem, 1.67vW, 3rem);
  
}

body::-webkit-scrollbar,
body::-webkit-scrollbar-track {
  width: 8px;
  background-color: var(--ww-background-color-bright);
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: none;
  background-color: var(--ww-background-color-dark);
}

html>body {
  font-size: 16px;
  font-size: 1rem;
}

body.loading {
  /* overflow: hidden; */
}

body.is-fixed,
body.page-template-template-fixed-page,
.is-navi-active,
.is-subnavi-active {
  width: 100%;
  height: 100vH;
  overflow: hidden;
}

html,
body,
article,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
figure,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
footer,
input,
textarea,
select {
  border: 0 none;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

h1,
h3,
h3 a,
h4,
h4 a,
nav[role="navigation"] a,
blockquote p,
blockquote + p > em,
blockquote > cite,
p,
ul,
ol,
label,
input,
select,
textarea,
dd,
dt,
td,
th,
a,
caption,
span,
h3,
h4,
h5,
h6,
figcaption,
legend,
option,
button,
strong,
.cli-privacy-content-text,
.wt-cli-cookie-description,
.wpcf7-response-output,
em {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--ww-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
nav[role="navigation"] a {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: normal;
  color: var(--ww-text-color);
}

.wp-block-quote p {
  font-family: 'Unna', serif;
  font-size: 2rem;
}

@media screen and (min-width: 48rem) {
  .wp-block-quote p {
    font-size: 4rem;
  }
}

strong,
a {
  color: inherit;
  font-size: inherit;
}

ol li {
  line-height: 1.2;
}

em {
  font-style: italic;
}

strong,
strong a {
  font-weight: 700;
  color: inherit;
}

h1 {
  font-size: 2.75rem;
}

@media screen and (min-width: 25rem) {
  h1 {
    font-size: 5rem;
  }  
}

h2,
h2 a,
h2 span,
h2 strong {
  font-size: clamp(1.875vW, 5vW, 4rem);
}                

/* @media screen and (min-width: 64rem) {
  h2,
  h2 a,
  h2 span,
  h2 strong {
    font-size: 2.5rem;
  }                
} */

h3,
h3 a,
h3 span,
h3 strong {
  font-size: 1.5625rem;
  font-size: clamp(1.5625rem, 3rem, 5vW);
}

h4,
h4 a,
h4 span,
h4 strong {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.375rem;
  font-weight: 700;
}

@media screen and (min-width: 85.375rem) {


  /* h2,
  h2 a,
  h2 span,
  h2 strong {
    font-size: 3.125rem;
  } */

  /* h3,
  h3 a,
  h3 span,
  h3 strong {
      font-size: 2.5rem;
      line-height: 1;
  } */
  
  h4,
  h4 a,
  h4 span,
  h4 strong {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  h5 {
    font-size: 1.875rem;
    font-weight: 700;
  }
    
}

.loading--overlay.is-active {
  z-index: 1000;
  transition: opacity 500ms ease;
  opacity: 1;
}

.loading--overlay.is-fadeout {
  z-index: 1000;
  transition: opacity 800ms ease;
  opacity: 0;
}

img,
i,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: all 300ms ease-out;
  color: var(--ww-primary-color);
}

a:hover {
  text-decoration: underline;
}

.is-hidden {
  display: none;
}

.wp-block-embed__wrapper{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

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

/*------------------------------------------------------------------------------------------------------------------ wordpress editor */

.justify--center .wp-block-image {
  margin-left: auto;
  margin-right: auto;
}

.has-text-align-center,
.aligncenter,
.aligncenter img,
.aligncenter svg {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.align-center .wp-block-group__inner-container {
  text-align: center;
}

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

@media screen and (min-width: 48rem) {
  .has-text-align-right {
    text-align: right;
  }
}

.wp-block-image.is-style-rounded {
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

/*------------------------------------------------------------------------------------------------------------------ wordpress editor */

/*------------------------------------------------------------------------------------------------------------------ header*/

.togglenav {
  position: absolute;
  text-transform: uppercase;
  color: var(--ww-background-color-dark);
  display: block;
  text-decoration: none;
  width: 2rem;
  height: 1.75rem;
  z-index: 21;
  top: 1rem;
  right: max(1rem, 1.67vW);
  /* display: block; */
  display: none;
  transition: all 300ms ease-out; 
}

@media screen and (min-width: 64rem) {
  .togglenav {
    display: none;
  }  
}

.togglenav__inner {
  width: 2rem;
  height: 2px;
  top: 6px;
  right: 0;
  display: block;
  background-color: var(--ww-background-color-light);
  position: absolute;
  transition: all 300ms ease;
}

.has-darkheader .togglenav__inner,
.no-hero .togglenav__inner {
  background-color: var(--ww-background-color-dark);
}

.togglenav__inner:before,
.togglenav__inner:after {
  content: "";
  height: 2px;
  width: 2rem;
  position: absolute;
  right: 0;
  top: 8px;
  background-color: var(--ww-background-color-light);
  transition: all 300ms ease;
}

.has-darkheader .togglenav__inner:before,
.has-darkheader .togglenav__inner:after,
.no-hero .togglenav__inner:before,
.no-hero .togglenav__inner:after {
  background-color: var(--ww-background-color-dark); 
}

.togglenav__inner:after {
  width: 2rem;
  top: -8px;
}

.togglenav.active .togglenav__inner,
.togglenav.active:before {
  background-color: transparent;
}

.togglenav.active .togglenav__inner:before {
  transform: rotate(-135deg);
  top: 0;
  left: 0;
  background-color: var(--ww-background-color-light);
}

.togglenav.active .togglenav__inner:after {
  transform: rotate(135deg);
  top: 0;
  left: 0px;
  background-color: var(--ww-background-color-light);
}

.wrapper-header {
  position: fixed;
  top: 0;
  z-index: 210;
  width: 100%;
  left: 0;
  transition: transform 300ms ease-out, background-color 300ms ease-out;
}

body.has-darkheader.has-scroll-up .wrapper-header {
  background-color: var(--ww-background-color-bright);
}

body.has-darkheader:not(.has-scroll-up) .wrapper-header {
  transform: translate(0,-100%);
  /* background-color: var(--ww-background-color-dark); */
}

header[role="banner"] {
  width: 100%;
  z-index: 210;
}

.header__language {
  background-color: var(--ww-background-color-primary);
}

@media screen and (min-width: 64rem) {
  .header__language {
    height: 2.5rem;
  }
}

.header__logo-navigation {
  background-color: var(--ww-background-color-bright);
  -webkit-transition: all 300ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.is-navi-active .header__logo-navigation {
  background-color: var(--ww-background-color-primary);
}

.is-navi-active .header__logo-navigation .cls-5 {
  fill: var(--ww-background-color-bright);
}

.header__inner {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  /* width: min(100% - 2.5rem, 100rem); */
  /* TODO check if spacing is relative to screen width or fix with 1.25rem - 20px / 5.12% */
  padding-left: max(1rem, 1.67vW);
  padding-right: max(1rem, 1.67vW);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}

.header__logo-navigation .header__inner {
  padding: 1rem 0;
}

@media screen and (min-width: 64rem) {

  .header__inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header__logo-navigation .header__inner {
    padding: 1rem 0;
  }
}

/* @media screen and (min-width: 102rem) {
  .header__logo-navigation .header__inner {
    padding: 1rem 0;
  }
} */

.logo-general {
  z-index: 200;
  position: relative;
  width: 7.625rem;
  transition: width 300ms ease-out;
  margin: 0.25rem auto 0.25rem 0;
}

@media screen and (min-width: 64rem) {
  .logo-general {
    width: 12.625rem;
  }
}

.logo-general a,
.logo-general svg {
  display: block;
}

.no-hero .logo-general path, 
.no-hero .logo-general polygon {
  fill: var(--ww-text-color);
}

.no-hero.is-navi-active .logo-general path, 
.no-hero.is-navi-active .logo-general polygon {
  fill: var(--ww-text-color-bright);
}

.has-darkheader.has-scroll-up .logo-general path, 
.has-darkheader.has-scroll-up .logo-general polygon {
  fill: var(--ww-primary-color);
}

.header__language .menu {
  list-style-type: none;
}

.header__language .menu a {
  font-size: 1rem;
}

.header__language .menu a img {
  display: none;
}

.wrapper--navigation {
  position: fixed;
  width: 100vW;
  z-index: 10;
  height: 0;
  top: 0;
  right: 0;
  overflow: hidden;
  transition: all 300ms ease-out;
  scrollbar-color: var(--ww-background-color-dark) var(--ww-background-color-primary);
  scrollbar-width: thin;
}

.wrapper--navigation.active {
  background-color: var(--ww-background-color-primary);
  height: 100vH;
}

.wrapper--navigation .menu {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: calc(100vH - 6.425rem);
  overflow-y: auto;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  justify-content: flex-start;
}

.wrapper--navigation::-webkit-scrollbar,
.wrapper--navigation::-webkit-scrollbar-track {
  width: 8px;
  background-color: var(--ww-background-color-bright);
  background-color: transparent;
}

.wrapper--navigation::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: none;
  background-color: var(--ww-background-color-dark);
}

nav[role="navigation"] {
  position: fixed;
  top: 6.425rem;
  left: 0;
  width: 100vW;
  height: calc(100vH - 6.425rem);
  transform: translate(0,135%); /* since header flies out on scrolling down give more space */
  z-index: -1;
  transition: all 300ms ease-out;
}

.wrapper--navigation.active nav[role="navigation"] {
  transform: translate(0,0);
  transition-delay: 150ms;
  z-index: 100;
}

nav[role="navigation"] .menu > li {
  margin: 0.5rem 5vW;
}

nav[role="navigation"] .sub-menu > li {
  margin: 0.5rem 1rem;
}

@media screen and (min-width: 64rem) {
  nav[role="navigation"] .menu > li {
    margin: 0.5rem 8.5vW;
  }
}

nav[role="navigation"] .menu > li {
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--ww-form-color);  
}

nav[role="navigation"] .menu > li:last-child {
  border-bottom: 0;
}

nav[role="navigation"] a {
  display: block;
  color: var(--ww-text-color-bright);
  font-size: 1.5rem;
  padding: 0.25rem 0;
  position: relative;
}

nav[role="navigation"] .subnav-opener {
  position: absolute;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  top: 0.5rem;
}

nav[role="navigation"] .subnav-opener .svgicon--minus {
  display: none;
}

nav[role="navigation"] li.active .subnav-opener .svgicon--minus {
  display: block;
}

nav[role="navigation"] li.active .subnav-opener .svgicon--plus {
  display: none;
}

nav[role="navigation"] .non-clickable > a:hover {
  cursor: default;
}

nav[role="navigation"] .sub-menu {
  list-style-type: none;
}

nav[role="navigation"] .sub-menu a {
  font-size: 1.25rem;
  padding: 0.5rem 0;
  color: var(--ww-text-color);
}

nav[role="navigation"] li.current-menu-item > a,
nav[role="navigation"] li.current-menu-ancestor > a {
  font-weight: 600; 
}

nav[role="navigation"] a:hover {
  text-decoration: none;
}

.wrapper--navigation.active nav[role="navigation"] li {
  opacity: 1;
  transform: translate(0,0);
}

.sub-menu {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 300ms ease-out;
}

.sub-menu {
  display: block;
  text-align: left;
}

.wrapper--navigation li.active .sub-menu {
  height: auto;
}

@media screen and (min-width: 64rem) {
  .wrapper--navigation {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    overflow: initial;
  }

  .wrapper--navigation .menu {
    height: auto;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: row;
    text-align: center;
    align-items: center;
  }

  nav[role="navigation"] {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    transform: translate(0,0);
    z-index: 100;
  }

  nav[role="navigation"] .menu > li,
  nav[role="navigation"] .sub-menu > li {
    margin: 0 2rem 0 0;
  }

  nav[role="navigation"] .menu > li {  
    padding-bottom: 0;
    border-bottom: 0;
  }

  nav[role="navigation"] li:last-child {
    margin: 0;
  }

  nav[role="navigation"] a {
    font-size: 1.125rem;
    padding: 1rem 0 0.75rem;
  }

  body.has-darkheader.has-scroll-up nav[role="navigation"] a,
  .no-hero nav[role="navigation"] a {
    color: var(--ww-text-color);
  }

  nav[role="navigation"] .subnav-opener {
    display: none;
  }

  nav[role="navigation"] .sub-menu a {
    font-size: 1.125rem;
    padding: 1rem 0 0.75rem;
    text-align: left;
  }

  nav[role="navigation"] a:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%; 
    left: 0;
    bottom: 0.5rem;
    background-color: var(--ww-background-color-bright);
    opacity: 0;
    transition: opacity 300ms ease-out;
  }

  body.has-darkheader.has-scroll-up nav[role="navigation"] a:after,
  .no-hero nav[role="navigation"] a:after {
    background-color: var(--ww-background-color-dark);
  }
   
  nav[role="navigation"] .sub-menu a:after {
     bottom: 0.25rem;
     background-color: var(--ww-background-color-dark);
  }
  
  nav[role="navigation"] a:hover:after {
    opacity: 1;
  }

  .sub-menu {
    position: absolute;
    height: 0;
    overflow: hidden;
    background-color: var(--ww-background-color-bright);
  }  

  nav[role="navigation"] .sub-menu li {
    margin: 0;
    padding: 0 1rem;
  }

  nav[role="navigation"] .sub-menu li:first-child {
    margin-top: 1rem;
  }

  nav[role="navigation"] .sub-menu li:last-child {
    margin-bottom: 1rem;
  }

  nav[role="navigation"] .sub-menu a {
    padding: 0.5rem 0;
    display: inline-block;
    white-space: nowrap;
  }
}

/* .btn-header-search,
.btn-search {
  margin-right: 0;
  margin-left: 1.75rem; 
  margin-right: 55px;
  background-color: transparent;
}

@media screen and (min-width: 75rem) {
  .btn-header-search,
  .btn-search {
    margin-left: 1.75rem;
    margin-right: 0;
  }  
}

.btn-header-search i,
.btn-search i {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem 0 0.5rem 0.5rem;
}

.btn-header-search path {
  fill: var(--ww-text-color-dark);
}

.btn-header-search line {
  stroke: var(--ww-text-color-dark);
}

.btn-header-search i.svgicon--close {
  display: none;
}

.btn-header-search.active i.svgicon--close {
  display: block;
}

.btn-header-search.active i.svgicon--search {
  display: none;
}

.btn-header-search:hover,
.btn-search:hover {
  cursor: pointer;
}

.btn-header-search:focus,
.btn-search:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.wrapper--search {
  background-color: var(--ww-background-color-bright);
  height: 0;
  overflow: hidden;
}

.wrapper--search.active {
  height: auto;
} */

/* .searchform {
  width: min(90vW, 100rem);
  margin: 0 auto;
  padding: 1.75rem 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
}

@media screen and (min-width: 64rem) {
  .searchform {
    width: min(83vW, 100rem);
  }
}

.searchform input {
  border: 1px solid var(--ww-form-color);
  padding: 1rem 2rem;
  flex: 0 0 calc(100% - 55px);
  max-width: calc(100% - 55px);
}

.searchform input:focus {
  outline: none;
  border-color: var(--ww-form-color);
  box-shadow: none;
}

.searchform button {
  margin-left: auto;
  margin-right: 0;
} */

/*------------------------------------------------------------------------------------------------------------------ header */

/* ----------------------------------------------------------------------------------------------------------- grid */

.row,
.wp-block-columns,
.wp-block-group-boxes .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.col-2,
.col-3,
.col-4,
.col-6,
.col-5,
.col-8,
.col-12 {
  position: relative;
  flex: 0 0 100%;
}

.entry-content .col-2,
.entry-content .col-3,
.entry-content .col-4,
.entry-content .col-6,
.entry-content .col-5,
.entry-content .col-8,
.entry-content .col-12 {
  max-width: 100%;
}

.col-6 + .col-6,
.col-4 + .col-4,
.col-3 + .col-3 {
  margin-top: 2rem;
}

.col-8:last-child,
.col-4 {
  padding-top: 4rem;
}

.col-4:first-child {
  padding-top: 0;
}

@media screen and (min-width: 64rem) {
  .entry-content .wp-block-column.has-mobile-margin-large {
    margin-top: 30vW;
  }
}

.wp-block-columns.reverse-order-mobile .col-6:first-child {
  order: 1;
  margin-top: 2rem;
}

.row--end {
  justify-content: flex-end;
}

.align--center,
.vertical-align-center {
  align-items: center;
}

.align--flex-start {
  align-items: flex-start;
}

.col--start {
  justify-self: flex-start;
}

.col--end {
  justify-self: flex-end;
}

.col-auto {
  flex: 0 0 auto;
  max-width: 100%;
}

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

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

.justify--space-between {
  justify-content: space-between;
}

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

.align-self--end {
  align-self: flex-end;
}

.justify--center {
  justify-content: center;
}

.justify-flex-end {
  justify-content: flex-end;
}

.align-flex-end {
  align-items: flex-end;
}

@media screen and (min-width: 48rem) {
  .col-3 {
    flex: 0 0 50%;
  }

  .col-3:first-child + .col-3 {
    margin-top: 0;
  }

  .entry-content .col-3:not(:first-child) {
    margin-top: 0;
  }  
}

@media screen and (min-width: 64rem) {
  
  .entry-content .wp-block-columns[data-columns="3"] .col-4 {
    flex: 0 0 33.33%;
  }

}

@media screen and (min-width: 85.375rem) {
  
  .row,
  .wp-block-columns {
    flex-wrap: nowrap;
  }

  .entry-content .col-4 {
    flex: 0 0 33.33%;
  }

  .entry-content .col-8 + .col-4,
  .entry-content .col-4 + .col-8,
  .entry-content .col-3:not(:first-child),
  .entry-content .col-4:not(:first-child),
  .entry-content .wp-block-column.has-mobile-margin-large {
    margin-top: 0;
  }

  .col-6 {
    flex: 0 0 50%;
  }

  .wp-block-columns.reverse-order-mobile .col-6:first-child {
    order: initial;
    margin-top: 0;
  }


  .col-6 + .col-6 {
    margin-top: 0;
  }

  .col-6:first-child {
    padding-right: 4.25rem;
  }

  .col-6:last-child {
    padding-left: 4.25rem;
  }

  .wrapper-footer .form-property.col-6 {
    flex: 0 0 calc(50% - 1rem);
  }

  .wrapper-footer .form-property.col-6:first-child {
    padding-right: 0;
  }

  .wrapper-footer .form-property.col-6:last-child {
    padding-left: 0;
  }

  .col-6:last-child,
  .col-8:last-child,
  .col-4 {
    padding-top: 0;
  }  

  .has-col-8 .col-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .has-col-8 .col-8 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .has-col-8 > *:first-child {
    padding-right: 4.25rem;
  }

  .has-col-8 > *:last-child {
    padding-left: 4.25rem;
  }

  .col-8 + .col-4,
  .col-4 + .col-4 {
    margin-top: 0;
  }

  .col-2 {
    flex: 0 0 16%;
  }
  
  .col-4 {
    margin-bottom: 0;
  }

  .col-5 {
    flex: 0 0 40%;
  }

  .col-7 {
    flex: 0 0 60%;
  }

  .col-9 {
    flex: 0 0 74%;
  }

  .col-10 {
    flex: 0 0 82%;
  }

}

@media screen and (min-width: 85.375rem) {
  .wp-block-columns[data-columns="4"] {
    flex-wrap: nowrap;
  }

  .col-3 {
    flex: 0 0 25%;
    margin-bottom: 0;
  }

  .col-3 + .col-3 {
    margin-top: 0;
  }

}

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

/* ----------------------------------------------------------------------------------------------------------- grid */

/* ------------------------------------------------------------------------------------------------------------------ pageheader */

/* .pageheader {
  position: relative;
}

.pageheader__inner {
  position: relative;
}

.pageheader__content-wrapper {
  position: relative;
  z-index: 1;
}

.pageheader__content {
  margin-bottom: 2rem;
}

.pageheader__hero-image {
  position: relative;
  z-index: 0;
  max-height: 100vH;
  overflow: hidden;
}

.pageheader__hero-image img {
  width: 100%;
}

.pageheader__logo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  z-index: 1;
  max-width: 33vW;
}

.pageheader__logo svg {
  width: 100%;
}

.pageheader__content-wrapper {
  width: min(100vW, 120rem);
}

.pageheader__content-wrapper h1 {
  text-decoration: underline;
}

@media screen and (min-width: 85.375rem) {
 
  .pageheader__content-wrapper {
    position: absolute;
    left: 50%;
    top: 0; 
    transform: translate(-50%, 0);
    width: min(100vW, 120rem);
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .pageheader__content {
    padding-bottom: 0;
  }

  .pageheader__content-wrapper h1,
  .pageheader__content-wrapper h2,
  .pageheader__content-wrapper p {
    color: var(--ww-text-color-bright);
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
  }

}

@media screen and (min-width: 85.375rem) {
  .pageheader__headline {
    position: absolute;
    left: 4.25rem;
    top: 27.5vH;
    z-index: 1;
    padding-top: 0;
  }
}

.pageheader__headline h1 {
  font-size: 3.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--ww-text-color-bright);
  line-height: 1;
}

.pageheader__content--mobile {
  display: block;
  padding-top: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 85.375rem) {  
  .pageheader__headline h1 {
    font-size: 8rem;
    padding-left: 0;
    padding-right: 0;
  }

}

.pageheader__content p,
.pageheader__content-bottom p,
.pre-headline {
  font-size: 2.25rem;
}

.pre-headline {
  color: var(--ww-primary-color);
}

@media screen and (min-width: 85.375rem) {
  .pageheader__content p,
  .pageheader__content-bottom p,
  .pre-headline {
    font-size: 2rem;
  }
}

@media screen and (min-width: 105rem) {
  .pageheader__content p,
  .pageheader__content-bottom p,
  .pre-headline {
    font-size: 2.5rem;
  }
}

.pageheader h2 {
  padding-bottom: 1rem;
} */

.pageheader {
  position: relative;
  height: 100vH;
  width: 100vW;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.pageheader.no-hero {
  height: 50vH;
}

.pageheader-hero-video,
.pageheader-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vW;
  height: 100vH;
  overflow: hidden;
}

.pageheader-hero-video:after,
.pageheader-hero-image:after {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,0,0,0.4);
  position: absolute;
}

.pageheader-hero-image figure {
  width: 100%;
  height: 100%;
}

.pageheader-hero-video video,
.pageheader-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageheader video {
  pointer-events: none;
}

.pageheader video::-webkit-media-controls {
  display: none;
}

video::-webkit-media-controls-panel {
  display: none !important;
  opacity: 1 !important;
}

.pageheader-content-bottom-wrapper {
  flex: 0 0 100%;
  position: relative;
  z-index: 1;
  padding-left: max(1rem, 1.67vW);
  padding-right: max(1rem, 1.67vW);  
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.pageheader-content-bottom {
  flex: 1 0 100%;
  padding-bottom: 8rem;
}

.no-hero .pageheader-content-bottom {
  padding-bottom: 8rem;
}

@media screen and (min-width: 64rem) {

  .pageheader-content-bottom-wrapper {
    flex-wrap: nowrap;
  }

  .pageheader-content-bottom {
    flex: 1 0 auto;
    padding-bottom: 2rem;
    max-width: 80%;
  }

  .no-hero .pageheader-content-bottom {
    max-width: 100%;
  }
}

@media screen and (min-width: 85.375rem) {
  .pageheader-content-bottom {
    max-width: 55%;
  }

  .no-hero .pageheader-content-bottom {
    padding-bottom: 0;
  }
}

.pageheader .pageheader-intro-text {
  color: var(--ww-text-color-bright);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.pageheader.no-hero .pageheader-intro-text {
  color: var(--ww-text-color-light);
}

.pageheader h1 {
  font-size: clamp(1.5vW, 7.5rem, 12vW);
  font-weight: normal;
  color: var(--ww-text-color-bright);
  line-height: 1.2;
  letter-spacing: 0.1rem;
  opacity: 1;
}

.pageheader.no-hero h1 {
  color: var(--ww-text-color);
}

.pageheader h1 + h1 {
  line-height: 1.2;
  position: relative;
}

@media screen and (min-width: 64rem) {
  .pageheader h1 + h1 {
    margin-top: -1rem;
    font-size: clamp(1.5vW, 8.75rem, 6vW);
  }

}

.pageheader .checkfold h1 {
  opacity: 0;
}

/*------------------------------------------------------------------------------------------------------------------ pageheader */

/*---------------------------------------------------------------------------------------------------------------------------------------- animated text lines */

.animated-lines .reveal-wrapper {
  display: block;
  overflow: hidden;
}

.animated-lines .reveal-wrapper > div {
  transition: all 500ms ease-out;
  transition-delay: 0s;
  opacity: 1;
  transform: translate3d(0,0,0);
  /* white-space: nowrap; */
}

.checkfold .animated-lines .reveal-wrapper > div {
  opacity: 0;
  transform: translate3d(0,100%,0);
}

/*---------------------------------------------------------------------------------------------------------------------------------------- animated text lines */

/* ----------------------------------------------------------------------------------------------------------- content */

section.page {
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: visible;
}

section.page.has-background-color-dark .entry-content__inner {
  background-color: var(--ww-background-color-primary);
}

.entry-content__inner > * {
  padding-left: max(1rem, 1.67vW);
  padding-right: max(1rem, 1.67vW);
}

.entry-content__inner > .wp-block-group.has-background,
.wp-block-columns > .wp-block-column.has-primary-background {
  position: relative;
} 

.entry-content__inner > .wp-block-group.has-background:before,
.entry-content__inner > .wp-block-group.has-background:after,
.wp-block-columns > .wp-block-column.has-primary-background:after,
.wp-block-columns > .wp-block-column.has-primary-background:before {
  content: "";
  position: absolute;
  width: 150vW;
  height: 100%;
  top: 0;
  left: 50%;
  display: block;
}

.wp-block-columns > .wp-block-column.has-primary-background:last-child:after {
  display: none;
}

.wp-block-columns > .wp-block-column.has-primary-background:first-child:before {
  display: none;
}

.entry-content__inner > .wp-block-group.has-background:after,
.wp-block-columns > .wp-block-column.has-primary-background:after {
  left: auto;
  right: 50%;
}

.wp-block-columns > .wp-block-column.has-primary-background:before {
  left: 0;
}

.wp-block-columns > .wp-block-column.has-primary-background:after {
  right: 0;
}

.wp-block-columns > .wp-block-column.has-primary-background:after,
.wp-block-columns > .wp-block-column.has-primary-background:before {
  background-color: var(--ww-background-color-primary);
}

.entry-content__inner > .wp-block-group.has-background.has-vivid-green-cyan-background-color:before,
.entry-content__inner > .wp-block-group.has-background.has-vivid-green-cyan-background-color:after {
  background-color: var(--wp--preset--color--vivid-green-cyan);
}

.entry-content__inner > .wp-block-group > .wp-block-group__inner-container {
  position: relative;
  z-index: 1;
}

.wp-block-columns > .wp-block-column.has-primary-background > * {
  position: relative;
  z-index: 1;
}

.wp-block-columns > .wp-block-column.has-primary-background h1 {
  color: var(--ww-text-color-bright);
}

.entry-content__inner .stick-on-top {
  overflow: hidden;
}

.entry-content__inner > .wp-block-group > .wp-block-group__inner-container,
.entry-content__inner .stick-on-top .wp-block-column:last-child .wp-block-group__inner-container,
.footer-contact {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

.padding-top-small {
  padding-top: 3rem;
}

.padding-top-medium {
  padding-top: 4rem;
}

.padding-top-large {
  padding-top: 8rem;
}

.entry-content__inner > .wp-block-group > .wp-block-group__inner-container:after,
.entry-content__inner > .wp-block-group > .wp-block-group__inner-container:before,
.entry-content__inner .stick-on-top .wp-block-column:last-child .wp-block-group__inner-container:after,
.entry-content__inner .stick-on-top .wp-block-column:last-child .wp-block-group__inner-container:before,
.footer-contact:before,
.footer-contact:after {
  content: "";
  width: 100%;
  height: 1px;
  top: 4rem;
  z-index: 1;
  display: block;
  position: absolute;
  background-color: var(--ww-background-color-light);
  transition: width 2000ms ease-out;
}

/* .entry-content__inner > .wp-block-group.container-accordeons > .wp-block-group__inner-container:before, */
.entry-content__inner > .wp-block-group.container-accordeons > .wp-block-group__inner-container:after {
  background-color: var(--ww-background-color-dark);
}

.entry-content__inner .stick-on-top .wp-block-column:last-child {
  /* padding-bottom: 25vH; */
}

.entry-content__inner > .wp-block-group > .wp-block-group__inner-container:after,
.entry-content__inner .stick-on-top .wp-block-column:last-child .wp-block-group__inner-container:after,
.footer-contact:after {
  background-color: var(--ww-primary-color);
  z-index: 2;
}

/* .entry-content__inner > .wp-block-group.checkfold > .wp-block-group__inner-container:after,
.entry-content__inner .stick-on-top .wp-block-column:last-child .wp-block-group__inner-container:after,
.footer-contact.checkfold:after {
  width: 0;
} */

.entry-content__inner .stick-on-top .wp-block-column:last-child .wp-block-group.active .wp-block-group__inner-container:after,
.footer-contact:after {
  width: 100%;
}

.entry-content__inner > .wp-block-group.has-no-padding > .wp-block-group__inner-container {
  padding-top: 0;
  padding-bottom: 0;
}

.entry-content__inner > .wp-block-group.has-no-padding-top > .wp-block-group__inner-container {
  padding-top: 0;
}

.entry-content__inner > .wp-block-group.has-no-padding-bottom > .wp-block-group__inner-container {
  padding-bottom: 0;
}

.entry-content__inner .wp-block-group.has-max-width .wp-block-group__inner-container,
.entry-content__inner p.has-max-width,
.entry-content__inner ul.has-max-width {
  width: 100%;
}

.entry-content__inner .has-margin-top-medium {
  margin-top: 5rem;
}

@media screen and (min-width: 85.375rem) {
  .entry-content__inner .wp-block-group.has-max-width .wp-block-group__inner-container,
  .entry-content__inner p.has-max-width,
  .entry-content__inner ul.has-max-width {
    width: min(78.75rem, 65.625vW);
    /* width: clamp(66.67%, 65.625vW, 78.75rem);*/
  }
}

.entry-content .wp-block-group__inner-container {
  position: relative;
}

@media screen and (min-width: 85.375rem) {

  .padding-top-small {
    padding-top: 4rem;
  }
  
  .padding-top-medium {
    padding-top: 8rem;
  }
  
  .padding-top-large {
    padding-top: 10rem;
  }
  
  .entry-content__inner > .wp-block-group > .wp-block-group__inner-container,
  .entry-content__inner .stick-on-top .wp-block-column:last-child .wp-block-group__inner-container,
  .footer-contact {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .entry-content__inner > .wp-block-group.container-accordeons > .wp-block-group__inner-container {
    padding-top: 6rem;
    padding-bottom: 9rem;
  }

  .entry-content__inner > .wp-block-group > .wp-block-group__inner-container:after,
  .entry-content__inner > .wp-block-group > .wp-block-group__inner-container:before,
  .entry-content__inner .stick-on-top .wp-block-column:last-child .wp-block-group__inner-container:after, 
  .entry-content__inner .stick-on-top .wp-block-column:last-child .wp-block-group__inner-container:before {
    top: 6rem;
  }
  
  .entry-content .full-height .wp-block-group__inner-container {
    height: 100%;
  }

  .entry-content .flex-column .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
  } 
  
}

.entry-content .justify-flex-end .wp-block-group {
  margin-left: auto;
  margin-right: 0;
}

.entry-content .wp-block-group.vertical-align-center { 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.entry-content .wp-block-group.vertical-align-flex-end .wp-block-columns {
  align-items: flex-end;
}

.entry-content .wp-block-group-boxes .wp-block-group__inner-container {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
  
.entry-content .wp-block-group-boxes .wp-block-group__inner-container .wp-block-group {
  flex: 0 0 100%;
}

@media screen and (min-width: 48rem) {
  .entry-content .wp-block-group-boxes .wp-block-group__inner-container .wp-block-group {
    flex: 0 0 calc(50% - 4rem);
  }
}

@media screen and (min-width: 64rem) {
  .entry-content .wp-block-group-boxes .wp-block-group__inner-container .wp-block-group {
    flex: 0 0 calc(33.33% - 2.67rem);
  }
}

@media screen and (min-width: 85.375rem) {

  /* .entry-content__inner > .wp-block-group {
    height: 100%;
  } */

  .entry-content .wp-block-group-boxes .wp-block-group__inner-container .wp-block-group {
    flex: 0 0 calc(20% - 3.2rem);
  }  
}

.box-icon.wp-block-group {
  padding-top: 4rem;
}

.box-icon .wp-block-image:first-child {
  background-color: var(--ww-background-color-bright);
  margin-top: -4rem;
  margin-bottom: 3rem;
  height: 4rem;
  width: 4rem;
  padding: 1rem 1rem 1rem 0;
}

.box-icon .wp-block-group__inner-container {
  position: relative;
}

.box-icon .wp-block-group__inner-container:before {
  content: "";
  width: 4rem;
  height: 1px;
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--ww-background-color-light);
  display: block;
  z-index: 0;
}

.box-icon .wp-block-image:first-child svg {
  width: 100%;
  z-index: 1;
  position: relative;
}

.box-icon .wp-block-image:first-child svg path,
.box-icon .wp-block-image:first-child svg line,
.box-icon .wp-block-image:first-child svg rect,
.box-icon .wp-block-image:first-child svg polyline {
  stroke: var(--ww-primary-color);
}

.pin-counter {
  font-size: clamp(12vW, 40vW, 32rem);
  line-height: 0.8;
  color: var(--ww-primary-color);
  opacity: 0.8;
  height: 70%;
  margin-top: 4rem;
  display: none;
}

.wp-block-preheading {
  font-size: clamp(6vW, 20rem, 20vW);
  color: var(--ww-primary-color);
  opacity: 0.8;
}

@media screen and (min-width: 85.375rem) {
  .wp-block-preheading {
    display: none;
  }

  .pin-counter {
    display: block;
  }
}

.pin-counter span {
  font-size: inherit;
  color: inherit;
  height: auto;
  line-height: 0.8;
  display: inline-block;
}

.pin-counter span.carousel-outer {
  overflow: hidden;
  vertical-align: top;
  position: relative;
}

.pin-counter .placeholder {
  opacity: 0;
}

.pin-counter span.carousel {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 500ms ease-out;
}

.pin-counter .carousel-item {
  display: block;
  opacity: 0;
  transition: opacity 500ms ease-out
}

.pin-counter .carousel-item.active {
  opacity: 1;
}

.wp-block-media-text {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 4rem;
}

.wp-block-media-text:last-child {
  margin-bottom: 0;
}

.wp-block-media-text__media {
  flex: 0 1 50%;
}

.wp-block-media-text__content {
  flex: 1 0 50%;
}

.wp-block-gallery {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.wp-block-gallery .wp-block-image {
  flex: 0 0 calc(50% - 1rem);
}

@media screen and (min-width: 42.5rem) {
  /* .wp-block-gallery {
    flex-wrap: nowrap;
  } */
}

.entry-content .has-background {
  padding: 1rem;
}
  
@media screen and (min-width: 85.375rem) {
  .entry-content .has-background {
    padding: 4rem;
  }
}

/* .entry-content .wp-block-column.has-background {
  position: relative;
}

.entry-content .wp-block-column.has-background:before {
  content: "";
  position: absolute;
  width: 100vW;
  right: 0;
  height: 100%;
}

@media screen and (min-width: 85.375rem) {
  .entry-content .wp-block-column.has-background:before {
    width: 200vW;
  }  
}

.entry-content .wp-block-column.has-background:last-child:before {
  right: auto;
  left: 0;
}

.entry-content .wp-block-column.has-background.has-luminous-vivid-amber-background-color:before {
  background-color: var(--ww-background-color-primary);
}

.entry-content .wp-block-column.has-background.has-black-background-color:before {
  background-color: var(--ww-background-color-secondary);
}
*/
.wp-block-columns-pageheader h1 {
  font-size: 2.5rem;
}

@media screen and (min-width: 48rem) {
  .wp-block-columns-pageheader h1 {
    font-size: 3.75rem;
  }
}

.entry-content h2 {
  padding-bottom: 2rem;
}

.entry-content .align-flex-end h2:last-child {
  padding-bottom: 0;
}

.entry-content h3 {
  padding-bottom: 1rem;
}

.entry-content p:not(:last-child) {
  margin-bottom: 1rem;
}

.entry-content ul li {
  margin-left: 1.5rem;
}

.entry-content ol li {
  margin-left: 2rem;
}

.wp-block-gallery figcaption {
  text-align: center;
}

.page.has-background-color-dark .entry-content__inner h2,
.page.has-background-color-dark .entry-content__inner h3,
.page.has-background-color-dark .entry-content__inner p,
.page.has-background-color-dark .entry-content__inner li,
.entry-content__inner > .wp-block-group.has-background h2,
.entry-content__inner > .wp-block-group.has-background h3,
.entry-content__inner > .wp-block-group.has-background h4,
.entry-content__inner > .wp-block-group.has-background p,
.entry-content__inner > .wp-block-group.has-background li,
.entry-content__inner > .wp-block-group.has-background cite,
.entry-content__inner > .wp-block-group.has-background td,
.entry-content .has-white-color h2,
.entry-content .has-white-color h3,
.entry-content .has-white-color p,
.entry-content .has-white-color li {
  color: var(--ww-text-color-bright);
}

/* .has-background *:not(.map) path,
.has-background *:not(.map) polyline,
.has-background *:not(.map) line
.has-background *:not(.map) rect {
  fill: #ffffff;
} */

@media screen and (min-width: 85.375rem) {
  .entry-content__inner .wp-block-group .has-padding-bottom {
    padding-bottom: 33vH;
  }
}

.has-background path[stroke="#000000"],
.has-background polyline[stroke="#000000"],
.has-background line[stroke="#000000"],
.has-background rect[stroke="#000000"] {
  stroke: #ffffff;
  fill: none;
}

.wp-block-table table {
  width: 100%;
}

.wp-block-table.table-price {
  padding: 2rem 0;
}

.wp-block-table.table-price tr {
  border-bottom: 1px solid var(--ww-background-color-light);
}

.wp-block-table.table-price tr:last-child {
  border-bottom-color: transparent;
}

.wp-block-table table td {
  padding: 0.5rem 1rem;
}

.wp-block-table.table-price table td {
  padding: 1rem;
}

.wp-block-table.table-price td:first-child {
  padding-left: 0;
}

.wp-block-table.table-price td:last-child {
  padding-right: 0;
}

.wp-block-table.table-price.all-highlight td:last-child {
  color: var(--ww-primary-color);
}

.wp-block-table.table-price.last-highlight tr:last-child td:last-child {
  color: var(--ww-primary-color);
}

.wp-block-table.table-price table td:last-child {
  white-space: nowrap;
  font-size: var(--wp--preset--font-size--large);
}

.wp-block-table.table-price td em {
  font-size: 1rem;
  font-style: normal;
}

.wp-block-table.table-price td.has-inline-svg.has-text-align-center svg {
  display: block;
  margin: 0 auto 0.5rem;
}

.container-accordeons .entry-collapse-accordeon {
  padding-bottom: 2rem;
  padding-top: 2rem;
  border-bottom: 1px solid var(--ww-background-color-dark);
}

.has-background.container-accordeons .entry-collapse-accordeon { 
  border-color: var(--ww-background-color-bright);
}

.container-accordeons .wp-block-group:last-child .entry-collapse-accordeon {
  border-bottom: 0;
}

.entry-collapse-accordeon .collapse-permanent {
  padding-right: 4rem;
}

.entry-collapse-accordeon .collapse-flexible {
  height: 0;
  overflow: hidden;
}

@media screen and (min-width: 75.75rem) {
  .entry-collapse-accordeon .collapse-flexible {
    padding-right: 4rem;
  }  
}

.entry-collapse-accordeon.active .collapse-flexible {
  height: auto;
}

.entry-collapse-accordeon .collapse-flexible.has-transition {
  transition: all 300ms ease-out;
}

.entry-collapse-accordeon .collapse-permanent {
  position: relative;
  cursor: pointer;
}

.entry-collapse-accordeon .collapse-permanent i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
}

.entry-collapse-accordeon .collapse-permanent i svg {
  transition: transform 300ms ease-out;
}

.entry-collapse-accordeon .collapse-permanent i.svgicon--minus {
  display: none;
}

/*.entry-collapse-accordeon.active .collapse-permanent i.svgicon--minus {
  visibility: visible;
} */

.entry-collapse-accordeon.active .collapse-permanent i.svgicon--plus svg {
  transform: rotate(-135deg);
}

.wp-block-image.full-width img {
  width: 100%;
}

/* ----------------------------------------------------------------------------------------------------------- content */

/* ----------------------------------------------------------------------------------------------------------- links & buttons */

.link-more,
.link-contact {
  display: inline-block;
  margin-top: 4rem;
}

.link-more:first-child:last-child,
.link-contact:first-child:last-child {
  margin-top: 0;
}

.pageheader-cta, 
.header-cta,
.link-more a,
.link-contact a,
.btn-login.menu-item a {
  flex: 0 0 auto;
  background-color: var(--ww-primary-color);
  display: flex;
  flex-wrap: nowrap;
  color: var(--ww-background-color-bright);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding: 1rem 3rem;
  /* white-space: nowrap; */
  align-items: center;
  font-weight: bold;
  border-radius: var(--ww-border-radius-button);
}

.btn-login.menu-item a {
  padding: 0.5rem 1rem;
  border-radius: var(--ww-border-radius-button);
  background-color: var(--ww-background-color-bright);
  display: flex;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
  font-weight: normal;
  color: var(--ww-primary-color);
  margin-top: 2rem;
}

.btn-login.menu-item a i {
  margin-right: 0.25rem;
  flex: 0 0 1.5rem;
}

.btn-login.menu-item a i circle,
.btn-login.menu-item a i path {
  stroke: var(--ww-primary-color);
  stroke-width: 1.5px;
}

.btn-login.menu-item a:after {
  display: none;
}

@media screen and (min-width: 64rem) {
  .pageheader-cta, 
  .header-cta,
  .link-more a,
  .link-contact a,
  .btn-login.menu-item a {
    white-space: nowrap;
  }
}

.pageheader-cta,
.header-cta {
  flex: 0 0 100%;
  position: absolute;
  right: max(1rem, 1.67vW);
  white-space: nowrap;
  /* margin-right: min(-1rem, -1.67vW); */
}

.header-cta {
  flex: 0 0 auto;
  position: relative;
  padding: 0.5rem 1rem;
  right: auto;
}

.header-cta span {
  color: inherit;
  display: none;
}

.header-cta i.svgicon--arrow {
  display: none;
}

@media screen and (min-width: 48rem) {

  .header-cta {
    padding: 0.5rem 3rem;
  }

  .header-cta span {
    display: initial;
  }

  .header-cta i.svgicon--email {
    display: none;
  }

  .header-cta i.svgicon--arrow {
    display: initial;
  }

}

@media screen and (min-width: 64rem) {
  .pageheader-cta {
    flex: 0 0 auto;
    max-width: 33%;
    bottom: 2rem;
    /* position: relative;
    right: auto; */
  }
}

.no-hero .pageheader-cta {
  background-color: var(--ww-background-color-dark);
  border-radius: var(--ww-border-radius-button);
  right: max(1rem, 1.67vW);
  margin-bottom: 1rem;
}

.link-more a,
.link-contact a {
  border-radius: var(--ww-border-radius-button);
}

.pageheader-cta:hover,
.header-cta:hover,
.link-more a:hover,
.link-contact a:hover,
.btn-login.menu-item a:hover {
  background-color: var(--ww-primary-color-dark);
  /* color: var(--ww-primary-color); */
  text-decoration: none;
}

.no-hero .pageheader-cta:hover {
  background-color: #3b3b36;
}

.pageheader-cta i,
.header-cta i.svgicon--arrow,
.link-more a i,
.link-contact a i {
  flex: 0 0 2rem;
  margin-left: 2rem;
}

.pageheader-cta svg,
.header-cta i.svgicon--arrow svg,
.link-more a svg,
.link-contact a svg {
  transform: rotate(180deg);
  width: 100%;
}

.pageheader-cta svg path,
.header-cta svg path,
.link-more a svg path,
.link-contact a svg path {
  stroke: var(--ww-background-color-bright);
}

@media screen and (min-width: 64rem) {
  .btn-login.menu-item a {
    background-color: var(--ww-primary-color);
    color: var(--ww-background-color-bright);
    margin-top: 0;
  }

  body.has-darkheader.has-scroll-up nav[role="navigation"] .btn-login.menu-item a, 
  .no-hero nav[role="navigation"] .btn-login.menu-item a {
    color: var(--ww-background-color-bright);
  }

  .btn-login.menu-item a i circle,
  .btn-login.menu-item a i path {
    stroke: var(--ww-background-color-bright);
    stroke-width: 1.5px;
  }

  .btn-login.menu-item a:hover {
    background-color: var(--ww-primary-color-dark);
  }
}

.pageheader-cta:hover svg path,
.link-more a:hover svg path,
.link-contact a:hover svg path {
  /* stroke: var(--ww-primary-color); */
}

/* ----------------------------------------------------------------------------------------------------------- links & buttons */

/*---------------------------------------------------------------------------------------------------------------------------------------- dragslide */

.wp-block-columns--dragslide {
  margin-top: 8rem;
  margin-bottom: 8rem; 
}

.entry-content__inner > .wp-block-columns--dragslide {
  padding-left: 0;
  padding-right: 0;
}

.wp-block-columns--dragslide .wp-block-column:last-of-type {
  position: relative;
  overflow: hidden;
}

.wp-block-columns--dragslide .wp-block-column:last-of-type {
  margin-left: 3.125rem;
}

.wp-block-columns--dragslide .wp-block-column:first-child {
  padding-left: max(1rem, 1.67vW);
}

@media screen and (min-width: 85.375rem) {
  .wp-block-columns--dragslide .wp-block-column:first-child {
      flex: 0 0 40%;
      max-width: 40%;
      padding-right: 2rem;
  }

  .wp-block-columns--dragslide .wp-block-column:last-child {
    flex: 0 0 60%;
    max-width: 60%;
  }
  
  .wp-block-columns--dragslide .wp-block-column:last-of-type {
    padding-left: 0;
  }
}

@media screen and (min-width: 90rem) {
  .wp-block-columns--dragslide .wp-block-column:first-child {
      flex: 0 0 40%;
      max-width: 40%;
      padding-right: 4.25rem;
  }

  /* .wp-block-columns--dragslide .wp-block-column:last-child {
    flex: 0 0 60%;
    max-width: 60%;
  }
  
  .wp-block-columns--dragslide .wp-block-column:last-of-type {
    padding-left: 0;
  } */
}

.wp-block-columns--dragslide p.has-medium-font-size {
  max-width: 27.5rem;
}

.tab.wp-block-group {
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.tab .wp-block-group__inner-container {
  position: relative; /* this mus be set to relative, otherwise offsetLeft isnt' correctly calculated IMPORTANT */
}

.wp-block-group__inner-container.dragslide .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.dragslide {
  overflow-x: auto;  
  scrollbar-color: var(--ww-background-color-dark) var(--ww-background-color-bright);
  scrollbar-width: none;    
  display: flex;
  flex-wrap: nowrap;
}

.dragslide.has-gap {
  gap: 2rem;
}

.dragslide::-webkit-scrollbar,
.dragslide::-webkit-scrollbar-track {
  width: 0;
  height: 0;
  background-color: transparent;
  background-color: var(--ww-background-color-bright);
}

.dragslide::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: none;
  background-color: var(--ww-background-color-dark);
}

.dragslide.has-dragslide {
  cursor: ew-resize;
}

.dragslide.has-dragslide:not(.is-moving) {
  scroll-behavior: smooth;
}

.dragslide .dragslide-item {
  flex: 0 0 min(67.2vW, 18.125rem);
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

@media screen and (min-width: 85.375rem) {
  .dragslide .dragslide-item {
    flex: 0 0 min(22.9vW, 27.5rem);
  }  
}

.dragslide-item .item-number {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  z-index: 1;
}

.dragslide .wp-block-image {
  position: relative;
}

.wp-block-gallery figcaption {
  text-align: left;
  position: absolute;
  top: 50%;
  left: 1rem;
  /* padding: 0 1rem; */
  width: calc(100% - 2rem);
  color:var(--ww-text-color-bright);
  font-size: clamp(1.5625rem, 3vW, 3rem);
}

.entry-content__inner .dragslide .dragslide-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  background-color: transparent;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dragslide-slide {
  position: absolute;
  bottom: 1rem;
  left: -3.25rem;
  padding: 0;
  width: 0.875rem;
  height: 2.75rem;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
}

.dragslide-slide.in-parent {
  left: 1rem;
  bottom: 2.25rem;
}

.dragslide-slide.is-active {
  display: block;
}

.dragslide-slide--next {
  bottom: 4.25rem;
}

.dragslide-slide--next.in-parent {
  bottom: 5.5rem;
}

@media screen and (min-width: 85.375rem) {
  .dragslide-slide {
    width: 2rem;
    height: 2rem;
    left: -18rem;
    bottom: 0;
  }

  .dragslide-slide.in-parent {
    left: 24.5%;
    bottom: 0;
  }

  .dragslide-slide--next {
    left: -8.25rem;
  }

  .dragslide-slide--next.in-parent {
    left: calc(40% - 6.25rem);
    bottom: 0;
  }

  /* .wp-block-columns--dragslide .dragslide-slide {
    left: 24%;
  }

  .wp-block-columns--dragslide .dragslide-slide--next {
    left: 32%;
  } */

}

.dragslide-slide:focus,
.dragslide-slide:hover {
  outline: none;
}

.dragslide-slide:hover {
  cursor: pointer;
}

.dragslide-slide svg {
  display: block;
  width: 100%;
}

.dragslide-slide--next i svg {
  transform: rotate(180deg);
}

.wp-block-columns--dragslide .dragslide-slide path {
  fill: var(--ww-background-color-black);
}
/*---------------------------------------------------------------------------------------------------------------------------------------- dragslide */


/*---------------------------------------------------------------------------------------------------------------------------------------- form */

.wpcf7-form .row {
  column-gap: 2rem; 
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form .form-property {
  width: 100%;
  margin-bottom: 1.875rem;
}

.wpcf7-form .form-property-action {
  margin-bottom: 0;
}

.wpcf7-form label,
.wpcf7-form select,
.wpcf7-form textarea,
.wpcf7-form input {
  color: var(--ww-text-color);
}

.wpcf7-form label {
  display: none;
}

.wpcf7-form .altcha-label label {
  display: block;
  font-size: min(max(1rem, 0.9375vW), 1.125rem);
}

.wpcf7-form .altcha-label span {
  font-size: min(max(1rem, 0.9375vW), 1.125rem);
}

.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form .wpcf7-list-item > label {
  position: relative;
  padding-left: 2rem;
}

@media screen and (min-width: 64rem) {
  .wpcf7-form .wpcf7-list-item > label {
    padding-left: 3.125rem;
  }
}

.wpcf7-form .wpcf7-list-item > label:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  display: block;
  background-color: var(--ww-background-color-bright);
  border: 1px solid var(--ww-text-color);
}

.wpcf7-form .wpcf7-list-item > label.checked:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 2px;
  width: 18px;
  height: 18px;
  display: block;
  background-color: var(--ww-background-color-dark);
}

@media screen and (min-width: 64rem) {
  .wpcf7-form .wpcf7-list-item > label:before {
    top: 4px;
    left: 0;
    width: 30px;
    height: 30px;
  }
  
  .wpcf7-form .wpcf7-list-item > label.checked:after {
    top: 8px;
    left: 4px;
    width: 24px;
    height: 24px;
  }
}

.wpcf7-form .form-property--checkbox {
  margin-top: -0.625rem;
}

.wpcf7-form .form-property--checkbox label {
  display: inline-block;
  font-size: 1.125rem;
  color: var(--ww-text-color);
  margin-top: -0.25rem;
  position: relative;
}

.wpcf7-form .form-property--checkbox .wpcf7-list-item label {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.wpcf7-form .form-property--checkbox label span,
.wpcf7-form p {
  font-size: 1rem;
  color: var(--ww-text-color);
}

.wpcf7-form a {
  font-size: 1rem;
}

.wpcf7-form .form-property-text p {
  padding-left: 2rem;
  font-size: 0.75rem;
}

.wpcf7-form input:not([type="submit"]), 
.wpcf7-form textarea,
.wpcf7-form select {
  background-color: transparent;
  border: 1px solid var(--ww-background-color-light);
  padding: 0.625rem 0; 
  width: 100%;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
}

.wpcf7-form input:not([type="submit"]):focus, 
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-bottom-color: var(--ww-background-color-dark);
}

@media screen and (min-width: 48rem) {
  .wpcf7-form .form-property--checkbox label span,
  .wpcf7-form a,
  .wpcf7-form p,
  .wpcf7-form .form-property-text p {
    font-size: min(max(1rem, 0.9375vW), 1.125rem);
  }
}

@media screen and (min-width: 64rem) {
  .wpcf7-form .form-property-text p {
    padding-left: 3.125rem;
  }

  .wpcf7-form input:not([type="submit"]), 
  .wpcf7-form textarea,
  .wpcf7-form select {
    padding: 1rem 0; 
  }
  
}

.wpcf7-form select {
  padding: 1.1rem 1.875rem;
}

/* .wpcf7-form-control-wrap.has--dropdown {
  position: initial;
} */

.wpcf7-form select.is-progressive {
  display: none;
}

.wpcf7-form textarea {
  height: 10rem;
}

.wpcf7-form input[type="checkbox"] {
  display: none;
  width: auto;
  margin-right: 1rem;
}

.wpcf7-form .altcha-checkbox input[type="checkbox"] {
  display: block;
}

/* .wpcf7-form input[type="submit"] {
  width: auto;
  display: inline-block;
  background-color: transparent;
  border: 2px solid var(--ww-background-color-dark);
  color: var(--ww-primary-color);
  padding: 1rem 2rem;
} */

.wpcf7-form input[type="submit"] {
  color: var(--ww-text-color-bright);
  font-size: 1rem;
  margin: 2rem auto 0;
  /* border: 1px solid var(--ww-background-color-dark); */
  padding: 1rem 2rem;
  border-radius: var(--ww-border-radius-button);
  background-color: var(--ww-background-color-dark);
  cursor: pointer;
}

@media screen and (min-width: 48rem) {
  .wpcf7-form input[type="submit"] {
    font-size: min(max(1.25vw, 1rem), 1.5rem);
  }
}

.wpcf7-form input:focus, 
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  box-shadow: 0;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: var(--ww-primary-color);
  color: var(--ww-text-color-bright);
  cursor: pointer;
}

.wpcf7 .wpcf7-submit:disabled {
  background-color: var(--ww-background-color-light);
}

.wpcf7 .wpcf7-submit:disabled:hover {
  background-color: var(--ww-background-color-light);
  color: var(--ww-text-color-bright);
  cursor: not-allowed;
}

/* .wpcf7-form input[type="submit"]:hover {
  background-color: var(--ww-background-color-dark);
  color: var(--ww-primary-text-color-bright);
  cursor: pointer;
} */

/* .wpcf7-form button {
  border: 2px solid var(--ww-background-color-dark);
  padding: 0.5rem 2rem;
  color: var(--ww-primary-text-color);
  font-size: 1.25rem;
  background-color: transparent;
}

.wpcf7-form button:focus {
  outline: none;
  box-shadow: 0;
}

.wpcf7-form button:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: var(--ww-background-color-dark);
  color: var(--ww-primary-text-color-bright);
} */

/* .wpcf7-response-output {
  margin: 2rem 0.5rem 1rem;
  padding: 1rem 2rem;
  border: 2px solid var(--ww-background-color-dark);
} */

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--ww-primary-color) !important;
  color: var(--ww-primary-color);
  background-color: transparent;
  padding: 1rem 2rem;
}

/*---------------------------------------------------------------------------------------------------------------------------------------- form */

/*----------------------------------------------------------------------------------------------------------------------------------custom form */

.wpcf7-form .label--progressive {
  background-color: transparent;
  border: 1px solid var(--ww-form-color);
  padding: 0.625rem; 
  width: 100%;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 48rem) {
  .wpcf7-form .label--progressive {
    font-size: min(max(1.042vW, 1rem), 1.25rem);
  }
}

@media screen and (min-width: 64rem) {
  .wpcf7-form .label--progressive {
    padding: 1rem 1.875rem; 
  } 
}

.wpcf7-form .label--progressive:hover {
  cursor: pointer;
}

.select-options {
  /* position: fixed; */
  position: absolute;
  height: 0;
  overflow: hidden;
  z-index: -1;
  background-color: #fff;
  opacity: 0;
  margin-left: -1px; /* border of container */
  transition: height 300ms ease;
}

.select-options.is-dropdown {
    z-index: 1000;
    max-height: 16rem;
    opacity: 1;
    overflow: hidden;
    border-left: 1px solid #1D1D1B;
    border-bottom: 1px solid #1D1D1B;
    border-right: 1px solid #1D1D1B;
}

.select-options.is--dropdown.bottom {
  border-bottom: none;
  border-top: 1px solid #1D1D1B;
}

.select-options__items {
  list-style-type: none;
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 16rem;
  width: 100%;
  scrollbar-color: var(--ww-form-color) var(--ww-background-color-bright);
  scrollbar-width: thin;  
}

.select-options__items::-webkit-scrollbar,
.select-options__items::-webkit-scrollbar-track {
  width: 8px;
  background-color: var(--ww-background-color-bright);
  background-color: transparent;
  display: none;
}

.select-options__items::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: none;
  background-color: var(--ww-form-color);
}

.main ul.select-options__items {
  margin-left: 0;
}

.select__item {
  padding: 0.625rem;
  cursor: pointer;
  color: var(--ww-form-color);
}

@media screen and (min-width: 64rem) {
  .select__item {
    padding: 1rem 1.875rem;
  }
}

.select__item.is-hidden {
  display: none;
}

.select__item:hover {
  background-color: #efefef;
}

.wpcf7-form-control-wrap.has--dropdown .svgicon {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.75rem;
  height: 100%;
  transform: translate(0,0);
  display: block;
  border-left: 1px solid var(--ww-form-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

@media screen and (min-width: 64rem) {
  .wpcf7-form-control-wrap.has--dropdown .svgicon {
    width: 3.75rem;
  }  
}

.wpcf7-form-control-wrap.has--dropdown .svgicon svg {
  transition: transform 300ms ease-out;
}

.wpcf7-form-control-wrap.has--dropdown.is-dropdown .svgicon svg {
  transform: rotate(180deg);
}

/*----------------------------------------------------------------------------------------------------------------------------------custom form */


/* ----------------------------------------------------------------------------------------------------------- footer */
.wrapper-footer,
.slideout > * {
  position: relative;
  padding-left: max(1rem, 1.67vW);
  padding-right: max(1rem, 1.67vW);
}

.wrapper-footer h2 {
  font-size: clamp(1.5vW, 8.75rem, 6vW);
  font-weight: normal;
}

.footer-contact .col-6:first-child {
  display: flex;
  flex-direction: column;
}

.footer-contact .col-6:first-child p:last-child {
  margin-top: auto;
}

.footer-info {
  background-color: var(--ww-primary-color);
  margin-left: min(-1rem, -1.67vW);
  margin-right: min(-1rem, -1.67vW);
  padding: 4rem max(1rem, 1.67vW);
}

.footer-info .wp-block-columns {
  align-items: flex-end;
}

.footer-info figure {
  max-width: 10rem;
  margin-top: 2rem;
}

.footer-info .menu-servicemenu-container {
  display: flex;
  justify-content: flex-end;
}

.footer-info ul {
  display: flex;
  list-style-type: none;
  margin-left: auto;
  margin-right: 0;
}

.footer-info p,
.footer-info li {
  color: var(--ww-text-color-bright);
}

.footer-info a {
  color: inherit;
}

.footer-info ul li {
  margin-right: 2rem;
}

.footer-info ul li:last-child {
  margin-right: 0;
}

.slideout {
  height: 0;
  overflow: hidden;
}

.slideout.active {
  height: auto;
}

.slideout.has-transition {
  transition: height 300ms ease-out;
}

.slideout > * {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.slideout p {
  margin-bottom: 1rem;
}
/* ----------------------------------------------------------------------------------------------------------- footer */

/* ----------------------------------------------------------------------------------------------------------- special links */

.call-to-action {
  margin-top: 2rem;
  display: inline-block;
}

.call-to-action:first-child {
  margin-top: 0;
}

.call-to-action a {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  color: var(--ww-primary-color);
  border: 2px solid var(--ww-background-color-primary);
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 0.5rem;
}

.wp-block-group.has-background .call-to-action a {
  color: var(--ww-text-color-bright);
  border: 2px solid var(--ww-text-color-bright); 
}

.call-to-action a i {
  margin-left: 1rem;
  transform: rotate(180deg);
  width: 2.5rem;
}

.call-to-action a i svg {
  width: 100%;
  height: 100%;
}

.call-to-action a line {
  stroke: var(--ww-primary-color);
}

.call-to-action a path {
  stroke: var(--ww-primary-color);
}

.wp-block-group.has-background a {
  color: inherit;
}

.wp-block-group.has-background .call-to-action a line {
  stroke: var(--ww-text-color-bright);
}

.wp-block-group.has-background .call-to-action a path {
  stroke: var(--ww-text-color-bright);
}

.call-to-action a:hover {
  background-color: var(--ww-background-color-primary);
  color: var(--ww-text-color-bright);
  text-decoration: none;
}

.call-to-action a:hover line {
  stroke: var(--ww-text-color-bright);
}

.call-to-action a:hover path {
  stroke: var(--ww-text-color-bright);
}

.wp-block-group.has-background .call-to-action a:hover {
  background-color: var(--ww-text-color-bright);
  color: var(--ww-primary-color);
}

.wp-block-group.has-background .call-to-action a:hover line {
  stroke: var(--ww-primary-color);
}

.wp-block-group.has-background .call-to-action a:hover path {
  stroke: var(--ww-primary-color);
}

/* ----------------------------------------------------------------------------------------------------------- special links */


/*---------------------------------------------------------------------------------------------------------------------------------------- impressum und datenschutz*/

.is-collapsable {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 500ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: height 500ms ease;
  -o-transition: height 500ms ease;
  transition: height 500ms ease;
}

.wrapper--imprint,
.wrapper--dataprotection,
.wrapper--terms {
  flex: 0 0 100%;
}

.wrapper--imprint section,
.wrapper--dataprotection section,
.wrapper--terms section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.wrapper--imprint .entry-content__inner,
.wrapper--dataprotection .entry-content__inner,
.wrapper--terms .entry-content__inner {
  margin-left: 0;
  border-left: 0;
}

.wrapper--imprint .entry-content__inner>*,
.wrapper--dataprotection .entry-content__inner>*,
.wrapper--terms .entry-content__inner>* {
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.wrapper--imprint .page-title,
.wrapper--dataprotection .page-title,
.wrapper--terms .page-title,
.wrapper--imprint .pageheader,
.wrapper--dataprotection .pageheader {
  display: none;
}

.wrapper--imprint p,
.wrapper--dataprotection p,
.wrapper--imprint p a,
.wrapper--dataprotection p a,
.wrapper--terms p,
.wrapper--terms p a {
  margin-top: 1rem;
}

.wrapper--imprint .entry-content__inner>.wp-block-group>.wp-block-group__inner-container>p,
.wrapper--dataprotection .entry-content__inner>.wp-block-group>.wp-block-group__inner-container>p,
.wrapper--terms .entry-content__inner>.wp-block-group>.wp-block-group__inner-container>p {
  max-width: none;
}

.wrapper--imprint strong,
.wrapper--dataprotection strong,
.wrapper--terms strong {
  margin-top: 2rem;
  display: inline-block;
}

/*---------------------------------------------------------------------------------------------------------------------------------------- impressum und datenschutz*/

/* ----------------------------------------------------------------------------------------------------------- cookie consent banner */

.cli-bar-message p {
  font-size: 1rem;
}

.cli-bar-message p a {
  color: #1d1e1e !important;
  font-size: 1rem;
}

.cli-plugin-button,
.cli-plugin-button:visited,
.medium.cli-plugin-button,
.medium.cli-plugin-button:visited {
  font-size: 1rem !important;
}

.cli-privacy-overview h4 {
  color: #1d1e1e !important;
}

.cli-privacy-overview p {
  color: #1d1e1e !important;
}

.cli-tab-footer .wt-cli-privacy-accept-btn {
  background-color: #1d1e1e !important;
  color: #fff;
}

.cli-tab-header a.cli-nav-link {
  text-transform: none !important;
}

.cli-style-v2 .cli-plugin-main-link {
  font-size: 1rem;
}

.table.cookielawinfo-winter thead th {
  background-color: #1d1e1e;
}

.cli-row {
  scrollbar-color: #1d1e1e #fff;
  scrollbar-width: thin;
}

.cli-row::-webkit-scrollbar,
.cli-row::-webkit-scrollbar-track {
  width: 8px;
  background-color: #fff;
  background-color: transparent;
}

.cli-row::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: none;
  background-color: #1d1e1e;
}