:root {
  font-size: 18px;
}
@media screen and (max-width: 1280px) {
  body {
    --wp--style--root--padding-left: var(--wp--preset--spacing--gap);
    --wp--style--root--padding-right: var(--wp--preset--spacing--gap);
    --wp--preset--font-size--x-large: 2.389rem;
    --wp--preset--font-size--large: 2rem;
    --wp--preset--font-size--mediumlarge: 1.778rem;
    --wp--preset--font-size--xx-medium: 1.389rem;
    --wp--preset--font-size--x-medium: 1.167rem;
  }
}
@media screen and (max-width: 960px) {
  body {
    --wp--style--root--padding-left: var(--wp--preset--spacing--gap-s);
    --wp--style--root--padding-right: var(--wp--preset--spacing--gap-s);
  }
}
@media screen and (max-width: 781px) {
  body {
    --wp--preset--font-size--xx-large: 3.333rem;
    --wp--preset--font-size--x-large: 2.222rem;
    --wp--preset--font-size--large: 1.556rem;
    --wp--preset--font-size--mediumlarge: 1.556rem;
    --wp--preset--font-size--xx-medium: 1.333rem;
    --wp--preset--font-size--x-medium: 1.111rem;
  }
}
#header_nav {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 40px;
}
@media screen and (max-width: 1280px) {
  #header_nav {
    align-items: center;
  }
}
#main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-size: var(--wp--custom--base-font);
  list-style: none;
  margin: 0;
  padding: 0;
  letter-eckertkiefer: 0.08em;
}
#main-nav a {
  color: var(--wp--preset--color--teal-medium);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: color 0.4s ease 0s;
  -moz-transition: color 0.4s ease 0s;
  -o-transition: color 0.4s ease 0s;
  -ms-transition: color 0.4s ease 0s;
  transition: color 0.4s ease 0s;
}
#main-nav > li > a {
  display: block;
  position: relative;
  padding: 28px 8px;
  box-sizing: border-box;
  white-space: nowrap;
}
#main-nav > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 8px;
  background-color: var(--wp--preset--color--yellow-bright);
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
#main-nav > li > a:hover {
  color: var(--wp--preset--color--black);
}
#main-nav > li > a:hover:after {
  width: 100%;
}
#main-nav .sub-menu {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.75);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  gap: 15px;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
#main-nav .sub-menu li {
  margin: 0;
  padding: 0;
  padding: 0px 15px;
}
#main-nav .sub-menu li:first-child {
  margin-top: 15px;
}
#main-nav .sub-menu li:last-child {
  margin-bottom: 15px;
}
#main-nav .sub-menu li a {
  text-decoration: none;
}
#main-nav > li:hover .sub-menu {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 1280px) {
  #main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: right;
    overflow: hidden;
    overflow-y: auto;
  }
  #main-nav::-webkit-scrollbar {
    display: none;
  }
  #main-nav > li {
    position: relative;
  }
  #main-nav > li:last-child {
    margin-bottom: 16px;
  }
  #main-nav > li::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--wp--preset--color--cyan-light);
  }
  #main-nav > li > a {
    padding: 15px 24px;
  }
  #main-nav .sub-menu {
    position: relative;
    display: flex;
    background: none;
    margin-bottom: 20px;
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: none 0 ease 0s;
    -moz-transition: none 0 ease 0s;
    -o-transition: none 0 ease 0s;
    -ms-transition: none 0 ease 0s;
    transition: none 0 ease 0s;
  }
  #main-nav .sub-menu a {
    font-weight: 400;
  }
  /*body:not(.mainnav_open) {
   }*/
  #main-nav-cont {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: grid-template-rows 0.4s ease 0s;
    -moz-transition: grid-template-rows 0.4s ease 0s;
    -o-transition: grid-template-rows 0.4s ease 0s;
    -ms-transition: grid-template-rows 0.4s ease 0s;
    transition: grid-template-rows 0.4s ease 0s;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    max-height: calc(100vh - 10px - 150px);
  }
  body.mainnav_open #main-nav-cont {
    grid-template-rows: 1fr;
    /*      #main-nav {
         animation: overflow_scrollbar_ani 0.4s ease-out;
         transform-origin: bottom center;
         animation-iteration-count: 1;

         }*/
  }
}
#nav_toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
}
#nav_toggle #icon-burger {
  display: block;
}
#nav_toggle #icon-close {
  display: none;
}
#nav_toggle svg {
  width: 100%;
  height: 100%;
}
#nav_toggle svg path {
  fill: var(--wp--preset--color--gold-medium);
}
.mainnav_open #nav_toggle svg path {
  fill: var(--wp--preset--color--teal-medium);
}
.mainnav_open #nav_toggle #icon-burger {
  display: none;
}
.mainnav_open #nav_toggle #icon-close {
  display: block;
}
@media screen and (max-width: 1280px) {
  #nav_toggle {
    display: block;
  }
}
#header {
  position: fixed;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  background-color: rgba(252, 246, 232, 0.75);
  z-index: 100;
}
#keil {
  position: absolute;
  display: block;
  width: 570px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
#keil polygon,
#keil path {
  fill: var(--wp--preset--color--teal-light);
}
body:not(.home) #keil {
  display: none;
}
#header_cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
#website_logo {
  height: 150px;
  width: auto;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin: 0;
  padding: 0;
  line-height: 1;
  align-items: flex-start;
  justify-content: stretch;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  margin-left: -20px;
  padding: 15px 20px;
  box-sizing: border-box;
}
#website_logo svg {
  flex: 1;
  height: 100%;
  width: auto;
}
#website_logo #logo_text {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.scrolled #website_logo {
  height: 115px;
  margin-bottom: -15px;
}
.scrolled #website_logo #logo_text {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}
.scrolled #keil {
  opacity: 0;
  -webkit-transform: scale(0.65);
  -moz-transform: scale(0.65);
  -ms-transform: scale(0.65);
  -o-transform: scale(0.65);
}
#header:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -11;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
@media screen and (max-width: 1280px) {
  #website_logo {
    height: 90px;
  }
  #keil {
    -webkit-transform: scale(0.55);
    -moz-transform: scale(0.55);
    -ms-transform: scale(0.55);
    -o-transform: scale(0.55);
  }
  .scrolled #website_logo {
    height: 78px;
  }
  .scrolled #keil {
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -ms-transform: scale(0.4);
    -o-transform: scale(0.4);
  }
  #main-nav-cont {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}
@media screen and (max-width: 781px) {
  #keil {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
}
footer {
  background: var(--wp--preset--color--teal-dark);
  padding-top: 28px;
  padding-bottom: 16px;
}
#footer_legalline {
  border-top: 1px solid var(--wp--preset--color--cyan-light);
}
#footer_cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 28px 80px;
  display: grid;
  grid-template-areas: "left middle right";
  grid-template-columns: max-content 1fr auto;
  grid-template-rows: auto auto;
}
@media screen and (max-width: 1420px) {
  #footer_cont {
    grid-template-areas: "left right" "middle right";
    grid-template-columns: 1fr auto;
  }
}
@media screen and (max-width: 781px) {
  #footer_cont {
    grid-template-areas: "right" "left" "middle";
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#footer_left {
  grid-area: left;
}
#footertext {
  grid-area: middle;
}
#footer_right {
  grid-area: right;
}
#footertext > :first-child,
#footer_left > :first-child,
#footer_right > :first-child {
  margin-block-start: 0;
}
#footertext > :last-child,
#footer_left > :last-child,
#footer_right > :last-child {
  margin-block-end: 0;
}
#footertext {
  flex: 1;
}
@media screen and (max-width: 1680px) {
  #footertext > .wp-block-group.is-layout-flex {
    gap: 28px;
  }
}
@media screen and (max-width: 1280px) {
  #footertext > .wp-block-group.is-layout-flex {
    flex-direction: column;
    align-items: start;
    gap: 28px;
  }
}
footer .wp-block-social-links,
footer .wp-block-social-links.has-normal-icon-size {
  font-size: 36px;
  gap: var(--wp--preset--spacing--gap-s);
}
@media screen and (max-width: 960px) {
  footer .wp-block-social-links,
  footer .wp-block-social-links.has-normal-icon-size {
    font-size: 30px;
  }
}
footer .wp-block-social-link a {
  align-items: center;
  display: flex;
  line-height: 0;
  padding: 0.4em;
}
.wp-block-pullquote,
.wp-block-quote {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .wp-block-pullquote,
  .wp-block-quote {
    font-size: var(--wp--preset--font-size--mediumlarge);
  }
}
@media screen and (max-width: 781px) {
  .wp-block-pullquote,
  .wp-block-quote {
    font-size: var(--wp--preset--font-size--x-medium);
  }
}
.wp-block-pullquote::after,
.wp-block-quote::after,
.wp-block-pullquote::before,
.wp-block-quote::before {
  flex-shrink: 0;
  width: 1.6em;
  height: 1.6em;
  content: '';
  background: url('data:image/svg+xml;utf8,<svg width="67" height="60" viewBox="0 0 67 60" xmlns="http://www.w3.org/2000/svg"><path d="M39.5 60V45.4C45 45.4 48.7 44 50.5 41.4C52.1 39 52.9 34.4 52.9 27.5H39.5V0H67V23.2C67 35.8 64.9 45.1 60.8 51.1C56.7 57 49.6 60 39.5 60ZM0 60V45.4C5.5 45.4 9.2 44 11 41.4C12.6 39 13.4 34.4 13.4 27.5H0V0H27.5V23.2C27.5 35.8 25.4 45.1 21.3 51.1C17.2 57 10.1 60 0 60Z" fill="%23A3F8F6"/></svg>') no-repeat center;
  background-size: contain;
}
.wp-block-pullquote::before,
.wp-block-quote::before {
  margin-top: -20px;
}
.wp-block-pullquote::after,
.wp-block-quote::after {
  align-self: flex-end;
  margin-bottom: -20px;
  transform: rotate(180deg);
}
.wp-block-pullquote.is-style-small::after,
.wp-block-quote.is-style-small::after,
.wp-block-pullquote.is-style-small::before,
.wp-block-quote.is-style-small::before {
  background: url('data:image/svg+xml;utf8,<svg width="67" height="60" viewBox="0 0 67 60" xmlns="http://www.w3.org/2000/svg"><path d="M39.5 60V45.4C45 45.4 48.7 44 50.5 41.4C52.1 39 52.9 34.4 52.9 27.5H39.5V0H67V23.2C67 35.8 64.9 45.1 60.8 51.1C56.7 57 49.6 60 39.5 60ZM0 60V45.4C5.5 45.4 9.2 44 11 41.4C12.6 39 13.4 34.4 13.4 27.5H0V0H27.5V23.2C27.5 35.8 25.4 45.1 21.3 51.1C17.2 57 10.1 60 0 60Z" fill="%23DDBF73"/></svg>') no-repeat center;
  background-size: contain;
}
:root {
  interpolate-size: allow-keywords;
}
details.wp-block-details {
  /* Content Box */
}
details.wp-block-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  gap: 10px;
  line-height: 1;
  color: var(--wp--preset--color--gold-beige);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--small);
}
@media screen and (max-width: 781px) {
  details.wp-block-details summary {
    font-size: var(--wp--preset--font-size--x-small);
  }
}
details.wp-block-details summary:hover {
  color: var(--wp--preset--color--yellow-bright);
}
details.wp-block-details summary::marker,
details.wp-block-details summary::-webkit-details-marker {
  display: none;
}
details.wp-block-details summary::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 8H0V6H6V0H8V6H14V8H8V14H6V8Z" fill="%23F2C606"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
details.wp-block-details[open] summary::after {
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 6h14v2H0V6z" fill="%23F2C606"/></svg>');
}
details.wp-block-details summary + * {
  margin-block-start: 10px;
}
details.wp-block-details > div {
  display: grid;
  grid-template-rows: 0fr;
  background-color: var(--wp--preset--color--teal-pale);
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  padding: 16px;
  -webkit-transition: grid-template-rows 0.5s ease 0s;
  -moz-transition: grid-template-rows 0.5s ease 0s;
  -o-transition: grid-template-rows 0.5s ease 0s;
  -ms-transition: grid-template-rows 0.5s ease 0s;
  transition: grid-template-rows 0.5s ease 0s;
}
details.wp-block-details > div,
details.wp-block-details > div * {
  color: var(--wp--preset--color--teal-dark);
}
details.wp-block-details > div > * {
  overflow: hidden;
}
details.wp-block-details[open] > div {
  grid-template-rows: 1fr;
}
details.wp-block-details::details-content {
  overflow: hidden;
  block-size: 0;
  transition-property: block-size, content-visibility;
  transition-behavior: allow-discrete;
  transition-duration: 0.5s;
}
details.wp-block-details[open]::details-content {
  block-size: auto;
}
@media screen and (max-width: 1280px) {
  .wp-block-buttons .wp-block-button__link {
    font-size: var(--wp--preset--font-size--small);
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 14px;
    padding-left: 32px;
  }
}
@media screen and (max-width: 781px) {
  .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
.wp-block-group.is-style-portrait,
.wp-block-group.is-style-object {
  background-color: var(--wp--preset--color--teal-dark);
  border-radius: 16px;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}
.wp-block-group.is-style-portrait.is-layout-constrained > *,
.wp-block-group.is-style-object.is-layout-constrained > * {
  margin-block-start: 0;
  margin-block-end: 0;
}
.wp-block-group.is-style-portrait > figure,
.wp-block-group.is-style-object > figure {
  margin: 0;
}
.wp-block-group.is-style-portrait > .wp-block-group,
.wp-block-group.is-style-object > .wp-block-group {
  padding: 16px;
  background-image: url(../../assets/images/verlauf_organisch.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wp-block-group.is-style-portrait > .wp-block-group,
.wp-block-group.is-style-object > .wp-block-group,
.wp-block-group.is-style-portrait > .wp-block-group .is-layout-flex,
.wp-block-group.is-style-object > .wp-block-group .is-layout-flex {
  gap: 12px 24px;
}
.wp-block-group.is-style-object > figure {
  position: relative;
}
.wp-block-group.is-style-object > figure:after {
  content: '';
  background-image: url(../../assets/images/CSI-10.svg);
  background-repeat: no-repeat;
  background-position: 0 0 ;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  left: 0;
}
.wp-block-group.is-style-object > .wp-block-group {
  background-image: url(../../assets/images/verlauf_organisch2.png);
}
.wp-block-group.is-style-object.csi9 > figure:after {
  background-image: url(../../assets/images/CSI-9.svg);
}
.wp-block-group.is-style-object.csi8 > figure:after {
  background-image: url(../../assets/images/CSI-8.svg);
}
.wp-block-group.is-style-object.csi7 > figure:after {
  background-image: url(../../assets/images/CSI-7.svg);
}
.wp-block-table.is-style-object {
  min-width: 100%;
  background: var(--wp--preset--color--teal-pale);
}
.wp-block-table.is-style-object table {
  min-width: 100%;
  table-layout: auto;
}
.wp-block-table.is-style-object td,
.wp-block-table.is-style-object th {
  border-color: var(--wp--preset--color--teal);
  color: #2B383B;
}
.wp-block-table.is-style-object td:first-child,
.wp-block-table.is-style-object th:first-child {
  background-color: var(--wp--preset--color--teal-light);
  font-weight: 700;
  width: 1%;
  white-space: nowrap;
}
.wp-block-post-content > .alignfull:first-child {
  margin-top: calc((150px * -1) - var(--wp--style--root--padding-top));
}
.wp-block-post-content > .alignfull.has-global-padding {
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
}
.wp-block-post-content > .alignfull.wp-block-cover {
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
}
.wp-block-post-content > .alignfull.wp-block-cover .wp-block-cover__inner-container {
  padding-right: 0;
  padding-left: 0;
}
@media screen and (max-width: 1280px) {
  .wp-block-post-content > .alignfull:first-child {
    margin-top: calc((90px * -1) - var(--wp--style--root--padding-top));
  }
}
.is-style-textshadow {
  text-shadow: 2px 2px 2px #00000099;
}
.wp-block-separator {
  border-top: 1px solid;
}
@media screen and (max-width: 1280px) {
  .wp-block-columns.brake_tablet {
    flex-wrap: wrap !important;
  }
  .wp-block-columns.brake_tablet .wp-block-column {
    flex-basis: 100% !important;
  }
}
.swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  background: var(--wp--preset--color--gold-medium);
  opacity: 0.3;
  -webkit-transition: opacity 0.4s ease 0s;
  -moz-transition: opacity 0.4s ease 0s;
  -o-transition: opacity 0.4s ease 0s;
  -ms-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  opacity: 1;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--wp--preset--color--gold-medium);
  -webkit-transition: opacity 0.4s ease 0s;
  -moz-transition: opacity 0.4s ease 0s;
  -o-transition: opacity 0.4s ease 0s;
  -ms-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
  opacity: 0.3;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}
.sliderpost_swiper .swiper-pagination {
  position: unset;
}
#contact_cta {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
#contact_cta svg {
  margin-top: 3px;
  width: 100%;
  height: 100%;
  fill: var(--wp--preset--color--gold-medium);
}
#contact_cta:hover svg {
  fill: var(--wp--preset--color--teal-medium);
}
@media screen and (min-width: 1281px) {
  #contact_cta {
    background: var(--wp--preset--color--gold-medium-semi);
    border-radius: 18px 3px;
    width: 57px;
    height: 40px;
    border: 2px solid var(--wp--preset--color--cyan-light);
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  #contact_cta svg {
    width: 60%;
    height: 60%;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    fill: var(--wp--preset--color--cyan-light);
  }
  #contact_cta:hover {
    background: var(--wp--preset--color--yellow-bright);
  }
  #contact_cta:hover svg {
    fill: var(--wp--preset--color--white);
  }
}
.contactbox_open #contact_cta svg {
  fill: var(--wp--preset--color--teal-medium);
}
#contactbox {
  position: absolute;
  top: 130%;
  right: var(--wp--preset--spacing--gap-l);
  z-index: 99;
  background: var(--wp--preset--color--gold-medium-semi);
  border-radius: 24px;
  box-sizing: border-box;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.5);
  max-width: 30vw;
  max-height: 50vh;
  border: 2px solid var(--wp--preset--color--cyan-light);
  overflow: hidden;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 1280px) {
  #contactbox {
    width: 60vw;
    max-width: none;
    top: 100%;
    border-top: none;
    border-radius: 0 0   16px 16px;
    right: unset;
    left: 50%;
    margin-left: -30vw;
  }
}
@media screen and (max-width: 781px) {
  #contactbox {
    width: 100%;
    max-width: 100%;
    left: 0;
    margin-left: 0;
  }
}
body:not(.contactbox_open) #contactbox {
  opacity: 0;
  z-index: -1;
  max-height: 0;
}
#contactbox_inner {
  padding: 24px;
  padding-right: 50px;
}
#contactbox_inner > *:first-child {
  margin-block-start: 0;
}
#contactbox_inner > *:last-child {
  margin-block-start: 0;
  margin-block-end: 0;
}
#contactbox_close {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 27px;
  height: 27px;
}
#contactbox_close svg {
  width: 100%;
  height: 100%;
}
#contactbox_close svg path {
  fill: var(--wp--preset--color--cyan-light);
}
#contactbox_close:hover svg path {
  fill: var(--wp--preset--color--white);
}
#contactbox .wp-block-social-links.is-style-logos-only .wp-social-link {
  background: none;
  color: var(--wp--preset--color--white);
  font-weight: 600;
  font-size: var(--wp--preset--font-size--medium);
  line-height: 100%;
  letter-spacing: 12%;
  text-align: center;
}
#contactbox .wp-block-social-links.is-style-logos-only .wp-social-link .wp-block-social-link-label {
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--wp--preset--color--yellow-bright);
}
#contactbox .wp-block-social-links.is-style-logos-only .wp-social-link:hover .wp-block-social-link-label {
  text-decoration-color: var(--wp--preset--color--white);
}
#contactbox .wp-block-social-links.is-style-logos-only .wp-social-link svg {
  height: 2.4em;
  width: 2.4em;
}
#contactbox .wp-block-social-links.is-style-logos-only .wp-social-link svg path {
  fill: var(--wp--preset--color--cyan-light);
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#content {
  flex: 1;
}
strong {
  font-weight: 700;
}
:target {
  scroll-margin-top: 150px;
}
.archive-title {
  margin-block-start: 0;
}
.postteaser-image img {
  width: 100%;
  height: auto;
}
.wp-site-blocks ul {
  padding-inline-start: 1rem;
  list-style-position: outside;
  list-style: none;
  padding: 0;
}
.wp-site-blocks ul li {
  padding-inline-start: 1rem;
  position: relative;
}
.wp-site-blocks ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.5em;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background: currentColor;
}
.wp-site-blocks ol {
  padding-inline-start: 1.3em;
}
/*# sourceMappingURL=style.css.map */