/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v36-latin-regular.woff2") format("woff2"), url("../fonts/open-sans-v36-latin-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v36-latin-600.woff2") format("woff2"), url("../fonts/open-sans-v36-latin-600.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v36-latin-700.woff2") format("woff2"), url("../fonts/open-sans-v36-latin-700.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* Mixins */
/* Reset & Default Style */
* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  /* Variables */
  --text: #2e2d2c;
  --background: #fff;
  --container: #f5f5f5;
  --primary: #1b4e71;
  --primary-transparent: #1b4f71a8;
  --accent: #ffbb04;
  --accent-transparent: #ffbc04d6;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}
h1 :is(h2, h3, h4, h5, h6),
h2 :is(h2, h3, h4, h5, h6),
h3 :is(h2, h3, h4, h5, h6),
h4 :is(h2, h3, h4, h5, h6),
h5 :is(h2, h3, h4, h5, h6),
h6 :is(h2, h3, h4, h5, h6) {
  margin-bottom: 0.5em;
}

/* Styles */
html,
body {
  background-color: var(--accent);
}

.logo {
  width: 250px;
}

nav {
  position: fixed;
  z-index: 999;
  background-color: var(--accent-transparent);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: all 750ms cubic-bezier(0, 0.59, 0.44, 0.98);
  transition: all 750ms cubic-bezier(0, 0.59, 0.44, 0.98);
}
nav .con {
  position: relative;
  /* width: min(90%, 800px); */
  width: 100%;
}
nav .logo {
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
nav .links {
  margin-top: 3vmin;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  max-height: 80vh;
  overflow-y: auto;
}
@media screen and (min-width: 800px) {
  nav .links {
    grid-template-columns: repeat(2, 1fr);
  }
}
nav .links .link {
  position: relative;
  z-index: 1;
  padding: 1rem;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  -webkit-transition-duration: 750ms;
          transition-duration: 750ms;
}
nav .links .link.unfocussed {
  opacity: 0.5;
}
@media screen and (min-width: 800px) {
  nav .links .link {
    padding: 1.5rem;
  }
}
nav .links .link p:first-child {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.2rem;
}
@media (min-width: 780px) {
  nav .links .link::before {
    z-index: -1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--background);
    pointer-events: none;
    -webkit-transition: all 750ms cubic-bezier(1, 0, 0, 1);
    transition: all 750ms cubic-bezier(1, 0, 0, 1);
  }
  nav .links .link:hover::before {
    width: 100%;
    pointer-events: auto;
  }
}

.simplenavi {
  pointer-events: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  padding: 1rem 2rem;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  /* backdrop-filter: blur(25px); */
  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;
}
.simplenavi .simplelinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2vmin;
}
.simplenavi .simplelinks a {
  color: #fff;
  text-decoration: none;
}
.simplenavi li {
  color: #fff;
}
@media screen and (min-width: 1050px) {
  .simplenavi {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.hamburger {
  position: fixed;
  z-index: 999;
  top: 0.5rem;
  left: 0.7rem;
  cursor: pointer;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  width: 32px;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: transparent;
}
@media screen and (min-width: 1050px) {
  .hamburger {
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
    opacity: 0;
    pointer-events: none;
    top: 1.2rem;
    left: 1.5rem;
  }
}
.hamburger::before, .hamburger::after {
  position: absolute;
  background-color: var(--primary);
  content: "";
  width: 0;
  height: 3px;
  opacity: 0;
  pointer-events: none;
  top: 50%;
  left: 50%;
  -webkit-transition-duration: 750ms;
          transition-duration: 750ms;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
          transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.hamburger::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.hamburger .line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--text);
  -webkit-transition: all 750ms cubic-bezier(1, 0, 0, 1);
  transition: all 750ms cubic-bezier(1, 0, 0, 1);
}
.hamburger .line:nth-child(1), .hamburger .line:nth-child(2), .hamburger .line:nth-child(3) {
  top: 50%;
}
.hamburger .line:not(.nojs):nth-child(1) {
  top: 25%;
}
.hamburger .line:not(.nojs):nth-child(2) {
  top: 50%;
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.hamburger .line:not(.nojs):nth-child(3) {
  top: 75%;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

body.navopen .hamburger.closable::before, body.navopen .hamburger.closable::after {
  opacity: 1;
  pointer-events: auto;
  width: 100%;
}
body.navopen .hamburger .line:nth-child(1), body.navopen .hamburger .line:nth-child(2), body.navopen .hamburger .line:nth-child(3) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
body.navopen.nojs .hamburger .line:nth-child(1), body.navopen.nojs .hamburger .line:nth-child(3) {
  top: 50%;
}
body.navopen.nojs .hamburger .line:nth-child(2) {
  -webkit-transform: translateX(-34px);
          transform: translateX(-34px);
}
body.navopen .main {
  /*top: $naviHeightMobile;
  transform: scale(0.85);
  border-radius: 50px;
  overflow: hidden;

  @include breakpoint("800px") {
      top: $naviHeightDesktop;
  }*/
}
body.navopen nav {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

body.scrolled .simplenavi {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
body.scrolled .hamburger {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#above {
  opacity: 0.7;
  text-align: center;
  margin-top: 10vmin;
  position: fixed;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 2rem;
  left: 50%;
}

.main {
  z-index: 5;
  top: 0;
  left: 0;
  -webkit-transition: all 750ms cubic-bezier(0, 0.59, 0.44, 0.98);
  transition: all 750ms cubic-bezier(0, 0.59, 0.44, 0.98);
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.highlight-active {
  overflow: hidden !important;
}

.tooltip {
  position: fixed;
  width: min(90%, 500px);
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  padding: 2vmin;
  z-index: 99;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}

.is-headline {
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 0.5em;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.title {
  margin-bottom: 3rem;
}

img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.banner {
  position: absolute;
  z-index: 99;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  background-color: var(--primary-transparent);
  color: #fff;
  padding: max(1rem, 2vmin);
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .banner {
    bottom: unset;
    background-color: var(--primary);
    text-align: left;
  }
}
@media screen and (max-width: 1200px) {
  .banner {
    bottom: 0 !important;
  }
}

.fg-blue {
  color: var(--primary);
}

.bg-blue {
  background-color: var(--primary);
  color: #fff;
}
.bg-blue hr {
  background-color: #fff;
}

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

hr {
  width: 50%;
  max-width: 400px;
  border: none;
  background-color: var(--primary);
  height: 2px;
  margin-block: 0.5rem;
}
hr.center {
  margin-inline: auto;
}
hr.white {
  background-color: #fff;
}

h1 {
  font-size: max(5vmin, 3rem);
}

.subheadline {
  font-size: 1.5rem;
}

.italic,
.banner {
  font-style: italic;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  margin-top: 1em;
}

button,
.button {
  text-decoration: none;
  display: inline-block;
  padding: 0.5em 1em;
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  text-align: center;
  -webkit-transition-duration: 350ms;
          transition-duration: 350ms;
  -webkit-transition-timing-function: cubic-bezier(0.62, 0, 0.22, 1);
          transition-timing-function: cubic-bezier(0.62, 0, 0.22, 1);
}
button:hover,
.button:hover {
  -webkit-transform: translateY(-3px) scale(1.02);
          transform: translateY(-3px) scale(1.02);
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
}

html .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10vmin;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  html .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  html .flex .special {
    padding-left: 0;
  }
}
html .flex.small-gap {
  gap: 2vmin;
}

.overview-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 700px) {
  .overview-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

header {
  position: relative;
  z-index: 10;
  height: 100vh !important;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 1rem;
  background: url("../images/waermepumpe.jpeg") center center/cover no-repeat;
  background-size: 130% !important;
  text-align: center;
}
@media screen and (max-width: 1800px) {
  header {
    background-size: 190% !important;
  }
}
@media screen and (max-width: 1330px) {
  header {
    background-size: 280% !important;
  }
}
@media screen and (max-width: 850px) {
  header {
    background-size: 570% !important;
  }
}
@media screen and (max-width: 450px) {
  header {
    background-size: 740% !important;
  }
}
header hr {
  margin-block: 1em 2em;
}
header .content {
  position: relative;
  z-index: 5;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
}
@media screen and (min-width: 900px) {
  header .content {
    background-color: transparent;
    padding: 0;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
  header .content hr {
    margin-inline: 0;
  }
}
header .button {
  margin-top: 1rem;
}

.flares {
  position: relative;
}
.flares::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(231, 128, 13) 0%, rgba(231, 128, 13, 0) 100%);
  mix-blend-mode: multiply;
  opacity: 0.07;
}
.flares::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(300deg, rgb(231, 73, 13) 0%, rgba(231, 73, 13, 0) 100%);
  mix-blend-mode: multiply;
  opacity: 0.5;
}

:is(header, #frau) .banner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(2rem, 3vmin);
  width: min(90%, 1200px);
  -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;
  text-align: center;
  margin-inline: auto;
  font-size: 0.9rem;
}
@media (min-width: 800px) {
  :is(header, #frau) .banner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}
:is(header, #frau) .banner img {
  width: 64px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
:is(header, #frau) .banner.hidden {
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
}

#frau .banner {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}

.bg-gray {
  background-color: var(--container);
}

.specialsection {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section {
  position: relative;
}
section > .flex > * {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

:is(section, footer) .content,
section .special,
nav .con {
  padding: 5vmin max(25px, 2vmin);
}
@media screen and (min-width: 800px) {
  :is(section, footer) .content,
  section .special,
  nav .con {
    padding: 7.5vmin 10vmin;
  }
}
@media screen and (min-width: 1600px) {
  :is(section, footer) .content,
  section .special,
  nav .con {
    padding: 10vmin 20rem;
  }
}

section:first-of-type,
footer {
  margin-top: 3rem;
}

.card {
  text-align: center;
}
.card:not(.no-bg) {
  background-color: var(--container);
  padding: 2rem 1rem;
}
.card img {
  display: block;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.card strong {
  display: block;
}

.image {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../images/heizpumpe.jpeg") center center/cover no-repeat;
  min-height: 300px;
}
@media screen and (min-width: 1200px) {
  .image {
    position: absolute;
    width: 45%;
  }
}
.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image .banner {
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  left: 50%;
  width: max(70%, 320px);
}
.image .banner a {
  color: #fff;
}

.c {
  display: none;
}
@media screen and (min-width: 1200px) {
  .c {
    display: block;
  }
}

.contact {
  position: absolute;
}

.items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.item strong {
  display: inline-block;
  width: 100%;
  color: var(--primary);
  text-align: center;
}
.item .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.item > div {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .item strong,
  .item > div {
    text-align: left;
  }
  .item > div {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
}

.container {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .container div:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .container div:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .container div:nth-child(3) {
    grid-area: 2/1/3/3;
  }
  .container div:first-child {
    padding-right: 1rem;
    border-right: 1px solid #ccc;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5vmin;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.container img {
  width: 100px;
}

.parallax {
  position: relative;
  height: 600px;
}
@media screen and (min-width: 600px) {
  .parallax {
    height: 400px;
  }
}
.parallax#familie {
  background: url("../images/glueckliche-familie.webp") center center/cover;
}
.parallax#frau {
  background: url("../images/entspannte-frau.webp") center center/cover;
}
@media screen and (max-width: 1750px) {
  .parallax {
    background-position: center center !important;
  }
}

.box.with-background {
  padding: 1rem;
  background-color: #fff;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

#hybridheizungen {
  z-index: 8;
}

iframe {
  border: none;
  width: 100%;
  min-height: 650px;
}

footer .flex > * {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.red {
  color: #cc0000;
}

a:not(.button) {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}

#kontakt .content .flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.dsa-secure-plugin {
  min-height: 300px;
}

section > .flex:not(.flex-start) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tooltip {
  position: fixed;
  background-color: #fff;
  overflow: hidden;
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  border-radius: 0;
  min-width: 250px;
  max-width: 600px;
  padding: 1rem;
  -webkit-box-shadow: 0 1px 2px rgba(33, 33, 50, 0.23), 0 5px 25px rgba(33, 33, 50, 0.1);
          box-shadow: 0 1px 2px rgba(33, 33, 50, 0.23), 0 5px 25px rgba(33, 33, 50, 0.1);
}
@media (min-width: 800px) {
  .tooltip {
    padding: 1.5rem;
  }
}
.tooltip.show {
  pointer-events: auto;
  opacity: 1;
}
.tooltip .tooltip-close {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  cursor: pointer;
  width: 1.2em;
  aspect-ratio: 1;
  opacity: 0.25;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}
.tooltip .tooltip-close::before, .tooltip .tooltip-close::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #171717;
  border-radius: 1px;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  top: 50%;
  left: 50%;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}
.tooltip .tooltip-close::before {
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
          transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.tooltip .tooltip-close::after {
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
          transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
@media (min-width: 800px) {
  .tooltip .tooltip-close:hover {
    opacity: 1;
  }
  .tooltip .tooltip-close:hover::before, .tooltip .tooltip-close:hover::after {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0);
            transform: translate3d(-50%, -50%, 0) rotate(0);
  }
}

.ds {
  position: fixed;
  z-index: 987;
  right: 1rem;
  bottom: 1rem;
}
.ds .button {
  padding: 0.25em 0.5em;
}

.external-page-wrapper {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: grid;
  place-items: center;
}
.external-page-wrapper .external-page-info {
  position: relative;
  z-index: 9999;
  background-color: #f5f5f5;
  padding: 5vmin;
}

.zur-website {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 1em 2em;
  background-color: var(--primary);
  color: #fff !important;
}