@charset "UTF-8";
:root {
  --brand-color-1: #64b257;
  --brand-color-1-light: #c3e1bc;
  --brand-color-2: #f49009;
  --brand-color-2-light: #fde5c6;
  --theme-black: #0b0014;
  --theme-white: #FEF6EB;
  --theme-mixed-white: #d6ebd1;
  --pre-title-color:#253D24;
  --section-gap: 7rem;
  --paragraph-padding-left: 1rem;
  --theme-container-max-width: 1400px;
  --theme-container-margin: var(--section-gap) auto;
  --header-height: 3rem;
  --img-border-radius:25px;
  --sm-border-radius: 10px;
  --default-headline-color: var(--theme-black);
  --default-headline-font-size: 2rem;
  --default-headline-font-weight: 700;
  --default-headline-margin: 2rem 0;
  --btn-font-size: 1.2rem;
  --btn-primary-border-radius: 0;
  --btn-primary-bg-color: var(--brand-color-1);
  --btn-primary-font-color: var(--pre-title-color);
  --btn-primary-hovered-bg-color: #253D24;
  --btn-primary-hovered-font-color: var(--theme-white);
  --btn-secondary-border-radius: var(--btn-primary-border-radius);
  --btn-secondary-bg-color: #fff;
  --btn-secondary-font-color:var(--brand-color-1) ;
  --btn-secondary-hovered-bg-color: #253D24;
  --btn-secondary-hovered-font-color: var(--theme-white);
  --default-teaser-deco-line-1-width: 120px;
  --default-teaser-deco-line-2-width: 100px;
  --default-teaser-deco-line-1-color: var(--brand-color-1);
  --default-teaser-deco-line-2-color: var(--brand-color-2);
  --default-teaser-deco-line-border-radius: 0;
  --default-teaser-deco-line-1-offset: 10px;
  --default-teaser-deco-line-2-color-offset: -10px;
  --default-teaser-img:0;
  --hero-title-bg-border-radius: 50%;
  --hero-title-bg-color: var(--theme-white);
  --hero-title-font-color: var(--theme-black);
  --hero-title-font-weight: 700;
  --care-degree-teaser-title-bg-radius: 50%;
  --jobs-teaser-title-bg-radius: 50%;
}

@media screen and (min-width: 1000px) {
  :root {
    --header-height: 7rem;
    --paragraph-padding-left: 5rem;
    --section-gap: 10rem;
    --btn-font-size: 1.4rem;
  }
}
/* Basic CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

:root {
  --wp--preset--color--luminous-vivid-orange:var(--brand-color-1);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html body {
  font-family: "Outfit", "sans-serif";
  position: relative;
  overflow-x: hidden;
}
html body section {
  padding: var(--section-gap) 1.5rem;
}
html body h1,
html body h2 {
  color: var(--default-headline-color);
  font-size: var(--default-headline-font-size);
  font-weight: var(--default-headline-font-weight);
  margin: var(--default-headline-margin);
  line-height: 1.2;
}
html body h3.highlighted {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
html body p {
  line-height: 1.3;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
html body ul li {
  list-style: disc;
  margin: 1.2rem 0;
  font-size: 1.5rem;
  line-height: 1.3;
}
html body ul li::marker {
  color: var(--brand-color-1);
}
html body ul.ordered li {
  list-style: decimal;
}
html body ul.ordered li::marker {
  color: var(--brand-color-1);
}
html body ul.ordered li::before {
  content: unset;
}
html body ol li {
  list-style: decimal;
}
html body ol li::marker {
  color: var(--brand-color-1);
}
html body ol li::before {
  content: unset;
}
html body a[href="#cta"] {
  color: var(--brand-color-1);
}
html body a[href="#cta"]:hover {
  -webkit-filter: brightness(85%);
          filter: brightness(85%);
}
html body a[href="#cta"]:visited {
  color: var(--brand-color-1);
}
html body img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--img-border-radius);
  user-drag: none;
}
html body .wp-block-cover__background {
  border-radius: var(--img-border-radius);
}
html body main {
  padding-top: calc(var(--admin-bar-space) + var(--header-height) + 1rem);
}
html body .theme-container {
  max-width: var(--theme-container-max-width);
  margin: var(--theme-container-margin);
  padding: 0 1.5rem;
}
html body .theme-container.remove-top-margin {
  margin-top: 0;
}
html body .is-style-rounded {
  padding: 0 3rem;
}
@media screen and (max-width: 1000px) {
  html body .is-style-rounded {
    padding: 0 8rem;
  }
}
@media screen and (max-width: 781px) {
  html body .is-style-rounded {
    padding: 0;
  }
}
html body .padding-0 {
  padding: 0 !important;
}
html body .padding-2 {
  padding: 2rem !important;
}
html body ul.indent-2 {
  --indent: 2rem;
}
html body ul.indent-2 li {
  list-style-position: inside !important;
  text-indent: calc(var(--indent) * -1) !important;
  margin-left: calc(var(--indent) * 1) !important;
}
html body .btn-primary {
  border: none;
  border-radius: var(--btn-primary-border-radius);
  background-color: var(--btn-primary-bg-color);
  color: var(--btn-primary-font-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  margin: 1rem 0;
  font-size: var(--btn-font-size);
}
html body .btn-primary:hover {
  background-color: var(--btn-primary-hovered-bg-color);
  color: var(--btn-primary-hovered-font-color);
}
html body div:has(> div > .btn-primary) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
html body .btn-secondary {
  border: 1px solid var(--brand-color-1);
  border-radius: var(--btn-secondary-border-radius);
  background-color: var(--btn-secondary-bg-color);
  color: var(--btn-secondary-font-color);
  text-decoration: none;
  padding: 1rem 3.6rem;
  text-align: center;
  display: inline;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  font-size: var(--btn-font-size);
}
html body .btn-secondary:hover {
  background-color: var(--btn-secondary-hovered-bg-color);
  color: var(--btn-secondary-hovered-font-color);
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/Outfit-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
#body header {
  position: fixed;
  z-index: 10;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  width: 100%;
  background-color: #fff;
}
#body header .theme-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
#body header .theme-container a.logo {
  width: auto;
  height: var(--header-height);
}
#body header .theme-container a.logo img {
  border-radius: 0;
}

div#cta .cta-container .phone {
  font-size: 2rem;
  font-weight: bold;
}
div#cta .cta-container .phone p {
  font-weight: normal;
  margin: 2rem 0;
  font-size: 1.2rem;
}
div#cta .cta-container .img {
  display: none;
}

footer#footer {
  position: relative;
  background-color: var(--brand-color-1);
  padding: 3rem 0;
  z-index: 11;
}
footer#footer .footer-container {
  --heading-font-size: 1.5rem;
  --text-font-size: 1rem;
  --legal-text-font-size: 1.3rem;
}
footer#footer .footer-container h2 {
  margin: 0;
  font-size: var(--heading-font-size);
}
footer#footer .footer-container h3 {
  margin-bottom: 0.5rem;
}
footer#footer .footer-container p {
  margin-bottom: 0;
}
footer#footer .footer-container ul li {
  margin-top: 1rem;
  margin: 1rem 0 1rem 0;
  line-height: 1;
}
footer#footer .footer-container ul li::before {
  content: unset;
}
footer#footer .footer-container ul li a {
  color: var(--theme-black);
  text-decoration: none;
}
footer#footer .footer-container ul li a:hover {
  text-decoration: underline;
}
footer#footer .footer-container .contact {
  font-size: var(--text-font-size);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
}
footer#footer .footer-container #footer-map {
  aspect-ratio: 16/9;
  width: 100%;
  max-height: 400px;
}
footer#footer .footer-container .links {
  font-size: var(--text-font-size);
}
footer#footer .footer-container .legal-links {
  font-size: var(--legal-text-font-size);
  font-weight: bold;
}

.sl-overlay {
  content: "Hier";
  font-size: 12px;
  position: fixed;
  bottom: 6rem;
  right: 16px;
  z-index: 10;
}
.sl-overlay .dme-simple-language-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sl-overlay .dme-simple-language-btn:hover {
  background-color: var(--btn-primary-hovered-bg-color);
  color: var(--btn-primary-hovered-font-color);
}

@media screen and (min-width: 1200px) {
  div#cta .cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 2rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
    margin-bottom: 0;
  }
  div#cta .cta-container .contact {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  div#cta .cta-container .img {
    display: block;
    grid-column: 1/2;
    grid-row: 2/3;
  }
  div#cta .cta-container .img img {
    border-radius: 0 var(--img-border-radius) 0 0;
    width: 100%;
  }
  div#cta .cta-container .contact-form {
    grid-column: 2/3;
    grid-row: 1/3;
    padding-bottom: 1.5rem;
  }
  footer#footer p {
    line-height: 1.5;
  }
  footer#footer .footer-container {
    --heading-font-size: 2rem;
    --text-font-size: 1.2rem;
    --legal-text-font-size: 1.5rem;
    display: grid;
    grid-template-columns: 2fr auto 1fr;
    grid-template-rows: repeat(2, auto);
    justify-items: start;
    max-width: var(--theme-container-max-width);
    margin: var(--theme-container-margin);
  }
  footer#footer .footer-container ul li {
    margin-top: 0;
    line-height: 1.5;
  }
  footer#footer .footer-container > div {
    margin: 0;
  }
  footer#footer .footer-container .contact {
    grid-column: 1/2;
    grid-row: 1/2;
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, auto);
    row-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    margin-bottom: 4rem;
  }
  footer#footer .footer-container .contact h2 {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  footer#footer .footer-container .contact .address {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  footer#footer .footer-container .contact .phone {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  footer#footer .footer-container .contact .opening-times {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  footer#footer .footer-container .links {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  footer#footer .footer-container .links h2 {
    margin-bottom: 2rem;
  }
  footer#footer .footer-container #footer-map {
    grid-column: 3/4;
    grid-row: 1/3;
    height: 100%;
    width: 100%;
    max-width: 480px;
    justify-self: end;
  }
  footer#footer .footer-container .legal-links {
    grid-column: 1/3;
    grid-row: 2/3;
    justify-self: start;
  }
  footer#footer .footer-container .legal-links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  footer#footer .footer-container .legal-links ul li {
    margin-top: 0;
    list-style: none;
  }
  .sl-overlay {
    font-size: initial;
  }
}
.nav-wrapper {
  --hover-brightness: 0.8;
}
.nav-wrapper .burger-menu {
  cursor: pointer;
  width: 2rem;
}
.nav-wrapper .burger-menu .line {
  background-color: var(--brand-color-1);
  height: 4px;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.nav-wrapper .burger-menu .line.two {
  margin: 0.35rem 0;
}
.nav-wrapper .burger-menu:hover .line {
  background-color: var(--brand-color-2);
  -webkit-filter: brightness(var(--hover-brightness));
          filter: brightness(var(--hover-brightness));
}
.nav-wrapper nav {
  margin-top: var(--admin-bar-space);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: var(--brand-color-1);
  padding: 4rem 2rem 1rem 2rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 2;
}
.nav-wrapper nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.nav-wrapper nav ul li {
  list-style: none;
}
.nav-wrapper nav ul li::before {
  content: unset;
}
.nav-wrapper nav ul li a {
  color: var(--theme-white);
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 2;
}
.nav-wrapper nav ul li a:hover {
  color: var(--brand-color-2);
  -webkit-filter: brightness(var(--hover-brightness));
          filter: brightness(var(--hover-brightness));
}
.nav-wrapper nav .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  font-weight: lighter;
}
.nav-wrapper nav .close:hover {
  color: var(--brand-color-2);
  -webkit-filter: brightness(var(--hover-brightness));
          filter: brightness(var(--hover-brightness));
}

@media screen and (min-width: 1000px) {
  .nav-wrapper .burger-menu {
    display: none;
  }
  .nav-wrapper nav {
    position: static;
    background-color: transparent;
    padding: unset;
    height: unset;
    -webkit-transform: unset;
            transform: unset;
  }
  .nav-wrapper nav .close {
    display: none;
  }
  .nav-wrapper nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
  }
  .nav-wrapper nav ul li a {
    color: var(--theme-black);
  }
  .nav-wrapper nav ul li a:hover {
    color: var(--brand-color-1);
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
#quotes-slider {
  margin-top: 0;
}

#body .swiper-container .swiper-wrapper:has(.quotes) {
  margin-bottom: 7rem;
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .text-content p.cat-name {
  color: var(--brand-color-1);
  font-size: 1.4rem;
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .text-content h2 {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  letter-spacing: 0.6px;
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .text-content p.teaser-text {
  padding: 0 1rem;
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes {
  position: relative;
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content {
  position: absolute;
  bottom: 0;
  background-color: #fff;
  border-radius: var(--hero-title-bg-border-radius);
  max-width: 280px;
  padding: 2.3rem 1.1rem 0 2rem;
  -webkit-transform: translate(-2rem, 7rem);
          transform: translate(-2rem, 7rem);
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content img.double-quotes {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: auto;
  -webkit-transform: translate(-20%, 25%);
          transform: translate(-20%, 25%);
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content h1,
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content .title {
  font-size: 1rem;
  color: var(--brand-color-1);
  font-weight: normal;
  margin: 0.8rem 0;
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content .content {
  font-size: 1rem;
  font-weight: bold;
  border-left: solid var(--theme-black) 2px;
  padding-left: 0.5rem;
  margin: 0.8rem 0;
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content .name {
  font-size: 0.9rem;
  color: var(--brand-color-1);
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content .img-content {
  padding: 1rem;
}
#body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content .img-content img {
  height: 61vh;
  width: 100%;
  max-width: 100%;
}
#body .swiper-container .swiper-pagination {
  position: static;
}
#body .swiper-container .swiper-pagination .swiper-pagination-bullet {
  border: solid 2px var(--brand-color-1);
  background-color: #FAFDF7;
  width: 8px;
  height: 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1607843137) 0 0 8px 2px;
          box-shadow: rgba(0, 0, 0, 0.1607843137) 0 0 8px 2px;
}
#body .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--brand-color-1);
}

@media screen and (min-width: 700px) {
  #body .swiper-container {
    position: relative;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .swiper-slide-content.default .img-content:before {
    width: 20vw;
    left: -20vw;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .text-content {
    max-width: 260px;
    position: relative;
    z-index: 1;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .text-content p.cat-name {
    margin-top: 1rem;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .text-content p.teaser-text {
    padding: 0;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .text-content p.teaser-text .btn-primary {
    max-width: 190px;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .img-content {
    padding: 0;
    position: relative;
    max-width: 60%;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .img-content:before {
    content: "";
    position: absolute;
    background-color: var(--brand-color-1-light);
    left: 0;
    top: 0;
    width: 0;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
    height: 100%;
    border-radius: var(--img-border-radius) 0 0 var(--img-border-radius);
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .img-content img {
    border-radius: 0 var(--img-border-radius) var(--img-border-radius) 0;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .img-content {
    max-width: 80%;
    margin: 0 0 0 auto;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content {
    max-width: 380px;
    padding: 4rem 2.6rem 2rem 2rem;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content img.double-quotes {
    -webkit-transform: translate(-17%, 32%);
            transform: translate(-17%, 32%);
    width: 4rem;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content .title {
    font-size: 1.5rem;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content .content {
    font-size: 1.85rem;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.quotes .text-content .name {
    font-size: 1.3rem;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #body .swiper-container .swiper-pagination {
    position: absolute;
    rotate: 90deg;
    left: unset;
    right: -0.5rem;
    bottom: 50%;
    width: unset;
  }
  #body .swiper-container .swiper-pagination .swiper-pagination-bullet {
    opacity: 0.6;
  }
  #body .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 0.9;
  }
}
@media screen and (min-width: 1000px) {
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .text-content {
    margin-bottom: 5rem;
    max-width: 450px;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .img-content {
    max-width: 60%;
  }
  #body .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-content.default .img-content img {
    aspect-ratio: 32/27;
  }
}
.dme-native-blocks-paginated-teasers {
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  margin: 5rem 2rem 0 2rem;
}
.dme-native-blocks-paginated-teasers .teaser-item {
  padding: 2rem 2rem 2rem auto;
}
.dme-native-blocks-paginated-teasers .teaser-item img {
  grid-row: 1;
  aspect-ratio: 16/8;
}
.dme-native-blocks-paginated-teasers .teaser-item a {
  grid-row: 2;
  margin: 0;
  margin-right: -2rem;
  justify-self: end;
  font-size: 1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dme-native-blocks-paginated-teasers .teaser-item .title {
  grid-row: 3;
  font-size: 1.75rem;
  font-weight: bold;
}
.dme-native-blocks-paginated-teasers .teaser-item p.teaser-text {
  margin: 1rem 0;
  grid-row: 4;
  font-size: 1.2rem;
}
@media screen and (min-width: 1000px) {
  .dme-native-blocks-paginated-teasers .teaser-item p.teaser-text {
    margin: 2rem;
  }
}
.dme-native-blocks-paginated-teasers .teaser-item .btn-primary {
  padding: 1rem 3.6rem;
}

#body .wp-block-dme-native-blocks-paginated-teasers + .displayMore {
  margin: 2rem auto;
  display: block;
  max-width: 300px;
}
#body .subcategories-teasers-container .teaser-item,
#body #startpage #post-teasers .teaser-item {
  margin: var(--section-gap) 0;
}
#body .subcategories-teasers-container .teaser-item > div.img-wrapper,
#body #startpage #post-teasers .teaser-item > div.img-wrapper {
  margin: 2.5rem auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#body .subcategories-teasers-container .teaser-item > div.img-wrapper:before,
#body #startpage #post-teasers .teaser-item > div.img-wrapper:before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: solid 2px var(--brand-color-1);
  opacity: 1;
  border-radius: var(--default-teaser-deco-line-border-radius);
}
#body .subcategories-teasers-container .teaser-item > div.img-wrapper:after,
#body #startpage #post-teasers .teaser-item > div.img-wrapper:after {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 90%;
  height: 90%;
  border: solid 2px var(--brand-color-2);
  opacity: 1;
  border-radius: var(--default-teaser-deco-line-border-radius);
}
#body .subcategories-teasers-container .teaser-item > div.img-wrapper img,
#body #startpage #post-teasers .teaser-item > div.img-wrapper img {
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: var(--default-teaser-img);
  z-index: 1;
  position: relative;
}
#body .subcategories-teasers-container .teaser-item a,
#body #startpage #post-teasers .teaser-item a {
  font-size: 1.2rem;
}
#body .subcategories-teasers-container .teaser-item .category,
#body #startpage #post-teasers .teaser-item .category {
  font-size: 1.45rem;
  color: var(--brand-color-1);
}
#body .subcategories-teasers-container .teaser-item .title,
#body #startpage #post-teasers .teaser-item .title {
  font-size: 1.75rem;
  font-weight: bold;
}
#body .subcategories-teasers-container .teaser-item p.teaser-text,
#body #startpage #post-teasers .teaser-item p.teaser-text {
  margin: 2rem 0;
  font-size: 1.5rem;
  line-height: 1.5;
}
#body .subcategories-teasers-container .teaser-item .btn-primary,
#body #startpage #post-teasers .teaser-item .btn-primary {
  padding: 1rem 3.6rem;
}

@media screen and (min-width: 800px) {
  #body .subcategories-teasers-container .teaser-item,
  #body #startpage #post-teasers .teaser-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 4rem;
    margin: 4rem 0;
  }
  #body .subcategories-teasers-container .teaser-item:nth-child(odd),
  #body #startpage #post-teasers .teaser-item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #body .subcategories-teasers-container .teaser-item:nth-child(odd) > div.img-wrapper,
  #body #startpage #post-teasers .teaser-item:nth-child(odd) > div.img-wrapper {
    margin: 0 0 0 auto;
  }
  #body .subcategories-teasers-container .teaser-item:nth-child(even),
  #body #startpage #post-teasers .teaser-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #body .subcategories-teasers-container .teaser-item:nth-child(even) > div.img-wrapper,
  #body #startpage #post-teasers .teaser-item:nth-child(even) > div.img-wrapper {
    margin: 0 auto 0 0;
  }
  #body .subcategories-teasers-container .teaser-item > div,
  #body #startpage #post-teasers .teaser-item > div {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#body .acf-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: none;
  border-bottom: solid 1px var(--brand-color-1);
  padding-bottom: 0;
  font-size: 1.2rem;
  margin: 2rem 0;
}
#body .acf-field.acf-field-file {
  pointer-events: none;
}
#body .acf-field.acf-field-file .acf-label {
  width: 13rem;
}
#body .acf-field.acf-field-file .acf-basic-uploader {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 5px 0;
}
#body .acf-field.acf-field-file .acf-basic-uploader input[type=file] {
  visibility: hidden;
}
#body .acf-field.acf-field-file .acf-basic-uploader::after {
  cursor: pointer;
  content: attr(data-filename);
  position: absolute;
  top: -0.2rem;
  left: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  border: none;
  border-radius: var(--btn-primary-border-radius);
  background-color: var(--btn-primary-bg-color);
  color: var(--btn-primary-font-color);
  text-decoration: none;
  padding: 0.1rem 0.8rem;
  text-align: center;
  display: block;
  width: fit-content;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  pointer-events: visible;
}
#body .acf-field.acf-field-file .acf-basic-uploader:hover::after {
  background-color: var(--btn-primary-hovered-bg-color);
  color: var(--btn-primary-hovered-font-color);
}
#body .acf-field[data-name=form_application_privacy] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.7rem;
  text-align: justify;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
#body .acf-field[data-name=form_application_privacy] ul li label {
  font-size: 0.9rem !important;
}
#body .acf-field[data-type=checkbox] {
  margin: 0;
  border-bottom: none;
}
#body .acf-field[data-type=checkbox] ul {
  margin-left: 1rem;
}
#body .acf-field[data-type=checkbox] ul li {
  position: relative;
  list-style: none;
}
#body .acf-field[data-type=checkbox] ul li label {
  font-size: 1.1rem;
}
#body .acf-field[data-type=checkbox] ul li label .custom-checkbox {
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
  top: 4px;
  left: -1.3rem;
  border: solid 1px var(--brand-color-1);
  border-radius: 50%;
  visibility: visible;
}
#body .acf-field[data-type=checkbox] ul li label input[type=checkbox] {
  visibility: hidden;
  position: absolute;
  top: 0.36rem;
  left: -1.5rem;
}
#body .acf-field[data-type=checkbox] ul li label.selected .custom-checkbox::after {
  font-family: initial;
  font-size: 1.5rem;
  font-weight: bold;
  content: "✓";
  position: absolute;
  color: var(--brand-color-2);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-30%, -66%);
  visibility: visible;
}
#body .acf-field[data-type=checkbox] ul li:not(:first-child) {
  padding-top: 15px;
}
#body .acf-field[data-type=checkbox] ul li:not(:first-child) label .custom-checkbox {
  top: 19px;
}
#body .acf-field.acf-field-acfe-recaptcha .acf-label {
  display: none;
}
#body .acf-field ul li::before {
  content: unset;
}
#body .acf-field .acf-label {
  margin: 0;
}
#body .acf-field .acf-label label {
  font-weight: normal;
}
#body .acf-field:not([data-type=checkbox]) .acf-label {
  min-width: 11rem;
}
#body .acf-field input,
#body .acf-field textarea,
#body .acf-field select {
  border: none;
  font-size: inherit;
  background-color: #fff;
  color: #0b0014;
}
#body .acf-field input:focus-visible,
#body .acf-field textarea:focus-visible,
#body .acf-field select:focus-visible {
  outline: none;
}
#body .acf-field input[type=file],
#body .acf-field textarea[type=file],
#body .acf-field select[type=file] {
  border-radius: 0;
}
#body .acf-field.acf-field-message {
  border: none;
}

#body .acf-form-submit input[type=submit] {
  font-size: 1.2rem;
}
#body #message.updated {
  color: #64b257;
  font-size: 1.6rem;
  border-top: 1px solid var(--theme-black);
  border-bottom: 1px solid var(--theme-black);
  font-weight: bold;
  padding: 1.2rem 0;
}

#post-hero {
  padding-left: 10rem;
  margin-top: 0;
  position: relative;
  margin-bottom: 4rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #post-hero {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 500px) {
  #post-hero {
    --default-headline-font-size: 1.4rem;
    --default-headline-margin: 0 0 2.3rem 0;
  }
}
#post-hero .img-wrapper {
  overflow: hidden;
  max-height: 60vh;
  border-radius: var(--img-border-radius);
  padding: 0;
}
#post-hero .bubble {
  background-color: #fff;
  border-radius: 0 50px 0 0;
  position: absolute;
  bottom: -5rem;
  left: -2rem;
  padding: 2rem 3rem 3rem 4rem;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #post-hero .bubble {
    bottom: -3rem;
    padding: 1rem 1rem 1rem 4rem;
    max-width: 90%;
  }
}
@media screen and (max-width: 500px) {
  #post-hero .bubble {
    padding: 2rem 1rem 1rem 4rem;
    bottom: -3.3rem;
  }
}

#post-content > p {
  padding-left: var(--paragraph-padding-left);
  position: relative;
  line-height: 1.2;
}
#post-content > p .first-letter {
  position: absolute;
  top: 0;
  left: calc(var(--paragraph-padding-left));
  -webkit-transform: translate(-27%, -30%);
          transform: translate(-27%, -30%);
  font-size: 6rem;
  font-weight: bold;
  color: var(--brand-color-1);
  opacity: 0.25;
  line-height: 0.8;
}
#post-content > ul {
  padding-left: calc(var(--paragraph-padding-left) + 2rem);
}

#post.jobs section#post-content {
  background-color: var(--brand-color-1);
  margin: 0;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}
#post.jobs section#post-content .theme-container {
  padding: 0;
  margin: 0 auto;
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting h1 {
  color: var(--theme-white);
  letter-spacing: 0.4px;
  font-size: 2.5rem;
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container {
  grid-template-columns: 1fr auto;
  -webkit-column-gap: 7rem;
     -moz-column-gap: 7rem;
          column-gap: 7rem;
}
@media (max-width: 1000px) {
  #post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container {
    grid-template-columns: 1fr;
  }
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.key-data {
  border-radius: 0 0 0 50px;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: 0;
  top: -1rem;
  width: fit-content;
  padding: 2rem;
  font-size: 1.2rem;
  line-height: 1.1;
  grid-gap: 1rem;
}
@media (max-width: 1000px) {
  #post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.key-data {
    position: relative;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding: 1rem;
    border-radius: var(--sm-border-radius);
    left: 0;
    top: unset;
  }
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.key-data div {
  color: var(--brand-color-1);
  font-weight: bold;
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.key-data div span {
  color: var(--theme-black);
  font-weight: normal;
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.key-data .location {
  display: none;
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.job-description {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  margin-left: 8rem;
}
@media (max-width: 1000px) {
  #post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.job-description {
    margin-left: 0;
  }
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.job-description > *:not(h2) {
  margin-bottom: 2rem;
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.job-description h2 {
  color: var(--theme-black);
  font-size: 1.4rem;
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.job-description li {
  position: relative;
  font-size: 1.2rem;
  margin: 0.2rem 0 0.2rem 2rem;
}
#post.jobs section#post-content .theme-container .wp-block-dme-native-blocks-job-posting .grid-container .grid-item.job-description li::marker {
  color: var(--theme-white);
}

#startpage #post-hero .bubble h1 {
  font-size: 3.2em;
  line-height: 0.8;
}
#startpage #post-hero .bubble h1 span:nth-child(1) {
  color: var(--theme-black);
}
#startpage #post-hero .bubble h1 span:nth-child(2) {
  color: var(--brand-color-2);
}
#startpage #post-hero .bubble h1 span:nth-child(4) {
  font-size: 0.4em;
}
@media screen and (max-width: 768px) {
  #startpage #post-hero .bubble {
    font-size: 12px;
    bottom: -4rem;
    padding: 1rem 1rem 2.5rem 4rem;
  }
}
@media screen and (max-width: 510px) {
  #startpage #post-hero .bubble h1 {
    font-size: 2.6em;
  }
}

#care-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
#care-options a.care-box {
  background-color: var(--brand-color-1-light);
  border-radius: var(--img-border-radius);
  position: relative;
  text-decoration: none;
  color: var(--theme-black);
  max-width: 380px;
}
#care-options a.care-box .img-wrapper {
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: #FAFDF7;
  padding: 0.8rem;
  margin: 1.5rem 4rem;
}
#care-options a.care-box h2 {
  font-size: 1.4rem;
  text-align: center;
  margin: 1rem 0.2rem;
}
#care-options a.care-box .hovered-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brand-color-1-light);
  display: none;
  font-size: 1.3rem;
  border-radius: inherit;
  line-height: 1.1;
  text-align: center;
  padding: 1.5rem;
}
@media screen and (max-width: 1340px) {
  #care-options a.care-box .hovered-content {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1200px) {
  #care-options {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #care-options a.care-box {
    margin-bottom: 2rem;
  }
}

#teaser-pflegelotse {
  position: relative;
  background-color: var(--brand-color-1);
  padding: 2rem 1rem 4rem;
}
#teaser-pflegelotse .bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 17vw;
  height: 60%;
  min-width: 150px;
  min-height: 140px;
  background-color: #fff;
  border-radius: 0 0 50px 0;
}
#teaser-pflegelotse .theme-container {
  margin: 0 auto;
}
#teaser-pflegelotse .theme-container .pre-title {
  font-size: 1.4rem;
  color: var(--pre-title-color);
  position: relative;
  z-index: 1;
}
#teaser-pflegelotse .theme-container h2 {
  margin: 1.3rem;
  position: relative;
  z-index: 1;
}
#teaser-pflegelotse .theme-container .text {
  font-size: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 2.5rem auto;
  line-height: 1.4;
}
#teaser-pflegelotse .theme-container a {
  position: absolute;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  left: 50%;
  border: none;
  display: inline-block;
  min-width: 300px;
  padding: 0.8rem 1.5rem;
}

#jobs-teaser {
  position: relative;
  background-color: var(--brand-color-1);
  padding: 2rem 1rem 4rem;
}
#jobs-teaser .bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 19vw;
  height: 30%;
  min-width: 150px;
  min-height: 140px;
  max-height: 195px;
  background-color: #fff;
  border-radius: 0 0 50px 0;
}
#jobs-teaser *:not(.bubble) {
  position: relative;
  z-index: 1;
}
#jobs-teaser .theme-container {
  margin: 0 auto;
}
#jobs-teaser .theme-container .short-time-option {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--theme-mixed-white);
}
#jobs-teaser .theme-container .short-time-option span {
  font-weight: bold;
  font-size: 1.6rem;
  border: var(--theme-mixed-white) solid 3px;
  border-radius: 50%;
  padding: 1.3px 8px;
}
#jobs-teaser .theme-container .pre-heading {
  font-size: 1.2rem;
  color: var(--btn-primary-hovered-bg-color);
}
#jobs-teaser .theme-container .heading {
  font-size: 2.3rem;
}
#jobs-teaser .theme-container .after-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.7rem;
}
#jobs-teaser .theme-container .swiper-wrapper {
  display: contents;
}
#jobs-teaser .theme-container .swiper-wrapper .job-teaser {
  background-color: #fffdfb;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-radius: var(--sm-border-radius);
}
#jobs-teaser .theme-container .swiper-wrapper .job-teaser h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}
#jobs-teaser .theme-container .swiper-wrapper .job-teaser p {
  font-size: 1rem;
}
#jobs-teaser .theme-container .swiper-wrapper .job-teaser .job-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin: 0.8rem 0;
}
#jobs-teaser .theme-container .swiper-wrapper .job-teaser .job-info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
#jobs-teaser .theme-container .swiper-wrapper .job-teaser .job-info > div .icon {
  width: 1.2rem;
}
#jobs-teaser .theme-container .swiper-wrapper .job-teaser a {
  color: var(--brand-color-1);
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  letter-spacing: 0.8px;
}
#jobs-teaser .theme-container .swiper-wrapper .job-teaser a:hover {
  color: var(--btn-primary-hovered-bg-color);
}

@media screen and (min-width: 720px) {
  #care-options a.care-box .img-wrapper {
    padding: 0.8rem;
    margin: 1.5rem 4rem;
  }
}
@media screen and (min-width: 1000px) {
  #teaser-pflegelotse .theme-container a {
    font-size: 1.8rem;
    padding: 2rem 4rem;
  }
  #jobs-teaser .theme-container .short-time-option {
    display: block;
  }
  #jobs-teaser .theme-container .swiper-wrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
  #jobs-teaser .theme-container .swiper-wrapper .swiper-slide .job-teaser {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  #care-options {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding: 0 5rem 1rem 5rem;
    overflow: hidden;
  }
  #care-options a.care-box .img-wrapper {
    margin: 2.5rem 6rem;
  }
  #care-options a.care-box .hovered-content {
    display: block;
    -webkit-transform: translateY(calc(1rem + 100%));
            transform: translateY(calc(1rem + 100%));
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  #care-options a.care-box:hover .hovered-content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  #care-options a.care-box:hover .hovered-content::after {
    content: "Mehr erfahren";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    background-color: #FAFDF7;
    color: var(--brand-color-1);
    padding: 0.8rem 1.5rem;
    border-radius: var(--btn-secondary-border-radius);
    text-wrap: nowrap;
  }
}
#err-404 {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #err-404 {
    font-size: 9px;
  }
}
#err-404 h1 {
  color: var(--brand-color-1);
  font-size: 20em;
  opacity: 0.6;
  margin-bottom: 3rem;
}
#err-404 p {
  font-size: 2em;
  margin-bottom: 2rem;
}

#body .wp-block-columns {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
#body .wp-block-columns .wp-block-column .wp-block-image {
  height: 100%;
}
#body .wp-block-columns .wp-block-column .wp-block-image img {
  height: 100%;
}
#body .wp-block-columns .wp-block-column .wp-block-image.not-full-height {
  height: auto;
}
#body .wp-block-columns .wp-block-column .wp-block-image.not-full-height img {
  height: auto;
}
@media screen and (max-width: 1400px) {
  #body .wp-block-columns:has(.wp-block-column:nth-child(4)) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1250px) {
  #body .wp-block-columns:has(.wp-block-column:nth-child(3)) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  #body .wp-block-columns:has(.wp-block-column:nth-child(2)) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #body .wp-block-columns:has(.wp-block-column:nth-child(2)).reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

:has(.chatbot-page) #resilo-widget {
  display: none;
}

#page-content.chatbot-page iframe {
  height: calc(100vh - 6rem - var(--header-height));
}/*# sourceMappingURL=style.css.map */