@charset "UTF-8";
/* Reset
-----------------------------------------------------------*/
article, aside, details, figcaption, figure, footer, header, hgroup, hr, menu, nav, section {
  display: block;
}

a, hr {
  padding: 0;
}

abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  vertical-align: baseline;
  font-weight: 300;
  font-style: normal;
}

ins, mark {
  background-color: #ff9;
  color: #000;
}

body {
  line-height: 1;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}

input, select {
  vertical-align: middle;
}

button {
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent;
  cursor: pointer;
  -webkit-appearance: none;
}

button:hover {
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent;
}

button:active {
  outline: none;
  border: none;
}

button:focus {
  outline: 0;
}

/* Buttons
----------------------------*/
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  background-color: transparent;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

/* Variablen
-----------------------------------------------------------*/
:root {
  --app-height: 100%;
  --color-text: #598392;
  --color-light-blue: #eef2f4;
  --color-yellow: #f4d35e;
  --line-height-05: 0.7em;
  --line-height: 1.4em;
  --line-height-2: 2.8em;
  --font-light: 300;
  --font-medium: 500;
  --font-bold: 700;
  --font-heavy: 800;
  --txt-s: 0.7954545455rem;
  --txt-m: 1rem;
  --txt-l: 1.4090909091rem;
  --txt-xl: 1.7045454545rem;
  --s: 1rem;
  --m: 2rem;
  --l: 3rem;
  --xl: 4rem;
}

/* V.1 Vramework
-----------------------------------------------------------*/
.color-white {
  color: #fff;
}

.color-black {
  color: #000;
}

.bg-light-blue {
  background-color: var(--color-light-blue);
}

.bg-blue {
  background-color: var(--color-text);
}

.fl-right {
  float: right;
}

.fl-left {
  float: left;
}

.clear-both {
  clear: both;
}

.nobr {
  white-space: nowrap;
}

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

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

.font-bold, .font-bold p {
  font-weight: 700;
}

.font-medium {
  font-weight: var(--font-medium);
}

.txt-s {
  font-size: var(--txt-s);
}

.txt-m {
  font-size: var(--txt-m);
}

.txt-l {
  font-size: var(--txt-l);
}

.txt-xl {
  font-size: var(--txt-xl);
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.static {
  display: static;
}

.pad-bottom-0 {
  padding-bottom: 0;
}

.pad-bottom-1rem {
  padding-bottom: 1rem;
}

.pad-bottom-05rem {
  padding-bottom: 0.5rem;
}

.pad-bottom-1lh {
  padding-bottom: var(--line-height);
}

.pad-bottom-05lh {
  padding-bottom: var(--line-height-half);
}

.pad-bottom-s {
  padding-bottom: var(--s);
}

.pad-bottom-m {
  padding-bottom: var(--m);
}

.pad-bottom-l {
  padding-bottom: var(--l);
}

.pad-bottom-xl {
  padding-bottom: var(--xl);
}

.pad-top-1rem {
  padding-top: 1rem;
}

.pad-top-s {
  padding-top: var(--s);
}

.pad-top-m {
  padding-top: var(--m);
}

.pad-top-l {
  padding-top: var(--l);
}

.pad-top-xl {
  padding-top: var(--xl);
}

.mar-bottom-1rem {
  margin-bottom: 1rem;
}

.mar-bottom-1lh {
  margin-bottom: var(--line-height);
}

.mar-bottom-0 {
  margin-bottom: 0;
}

.mar-bottom-s {
  margin-bottom: var(--s);
}

.mar-bottom-m {
  margin-bottom: var(--l);
}

.mar-bottom-l {
  margin-bottom: var(--m);
}

.mar-bottom-xl {
  margin-bottom: var(--xl);
}

.mar-top-1rem {
  margin-top: 1rem;
}

.mar-top-s {
  margin-top: var(--s);
}

.mar-top-m {
  margin-top: var(--m);
}

.mar-top-l {
  margin-top: var(--l);
}

.mar-top-xl {
  margin-top: var(--xl);
}

.mar-right-m {
  margin-right: 30%;
}

.border-50 {
  border-radius: 50%;
}

.line-height {
  line-height: var(--line-height);
}

.border-top-1 {
  border-top: 1px solid var(--color-text);
}

.border-top-2 {
  border-top: 2px solid var(--color-text);
  padding-top: 0.4rem;
}

.btn {
  font-size: var(--txt-s);
  font-weight: var(--font-medium);
  color: var(--color-text);
  background: var(--color-yellow);
  padding: 0.3rem 2rem;
  border-radius: 0.6rem;
  border: none;
}

/* Buttons
----------------------------*/
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: var(--line-height);
  margin: 0;
  background-color: transparent;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

/* Schriften
-----------------------------------------------------------*/
/* poppins-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("webfonts/poppins-v20-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("webfonts/poppins-v20-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("webfonts/poppins-v20-latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("webfonts/poppins-v20-latin-800.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: url("webfonts/poppins-v20-latin-900.woff2") format("woff2");
}
/* Grundgerüst
-----------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  font-size: 1.3vw;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--color-text);
  /* 	min-height: 100vh;
  	display: grid;
  	grid-template-rows: auto 1fr auto;
  */
}

.frame {
  position: relative;
  margin: 0 auto;
  width: 84%;
}

.frame-s {
  padding: 0 14.70588235%;
}

.frame-xs {
  padding: 0 23.52941176%;
}

.grid-2,
.grid-1-2,
.grid-3,
.grid-4,
.grid-header,
.grid-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 5.9%;
  grid-row-gap: var(--line-height-2);
  /*
  align-items: center;
  	justify-items: center;
   */
}

.grid-3,
.grid-1-2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-1-2 .grid-item:nth-child(2) {
  grid-column: 2/4;
}

.grid-header {
  grid-template-columns: 4fr 1fr;
  align-items: end;
}

.grid-header .grid-item:last-child {
  justify-self: end;
}

.site-footer .grid-2 {
  width: 40%;
  padding: 6rem 0 6rem 0;
}

.col-2 {
  column-count: 2;
  column-gap: 40%;
  column-width: 100px;
}

.col-2 p {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

.check-list ul li,
.list-div {
  padding: 0 0 0 1.6em;
  position: relative;
}

.check-list ul li:before,
.list-div:before {
  content: " ";
  position: absolute;
  left: 0rem;
  width: 1rem;
  height: 1rem;
  background-image: url(../img/li-icon.svg);
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center center;
}

.blog ul li {
  padding: 0 0 0 1.6em;
  position: relative;
}

.blog ul li:before {
  content: "- ";
  position: relative;
  margin-left: -0.8em;
}

/* .wrapper div {
	top: 50%;
	transform: translateY(-50%);
}



.background-image {
	background-image: url(../img/blume.svg);
	background-repeat: no-repeat;
	background-size: 1.8em auto;
	background-position: right 10% bottom;
}

p:not(:first-child),
:not(:nth-child(4n))
{
}

*/
/* Allgemeine Formatierungen
-----------------------------------------------------------*/
img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

p,
.check-list ul li,
.blog ul {
  line-height: var(--line-height);
  margin-bottom: var(--line-height);
}

p:last-child {
  margin-bottom: 0;
}

ol {
  line-height: var(--line-height);
  margin: 0 0 1.4em 0;
}

ol {
  font-variant-numeric: tabular-nums;
  font-variant-numeric: proportional-nums;
}

ol li {
  padding: 0 0 0 5px;
  margin: 0 0 0 15px;
  list-style-type: decimal;
}

/*
.content > *:last-child,
.content > *:last-child > *:last-child,
.content > *:last-child > *:last-child > *:last-child {
	margin: 0;
}
 */
h2 {
  text-transform: uppercase;
}

h3 {
  font-weight: var(--font-bold);
  margin-bottom: 1em;
}

strong {
  font-weight: 700;
}

.video {
  margin: 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Struktur
-----------------------------------------------------------*/
.weiterlesen {
  text-align: right;
  text-transform: uppercase;
}

.weiterlesen a {
  border: none;
}

/* Header
-----------------------------------------------------------*/
.site-header,
.grid-header {
  position: relative;
  height: 7vw;
  margin-bottom: 2rem;
  height: 10vw;
  margin-bottom: 0;
}

.logo img {
  display: inline-block;
  border: none;
  height: 100%;
  width: auto;
  position: absolute;
  z-index: 10;
}

.grid-header {
  margin-left: 30%;
}

/* Footer
-----------------------------------------------------------*/
.site-footer {
  font-size: var(--txt-s);
  color: #fff;
  background-color: var(--color-text);
  background-image: url(../img/footer-grafik.svg);
  background-repeat: no-repeat;
  background-size: auto 101%;
  background-position: right center;
}

/* Spezifische Formatierungen
-----------------------------------------------------------*/
/* Home-Header-Info
---------------------------*/
.home-grafik,
.main {
  position: relative;
}

.home-info h1 {
  color: var(--color-yellow);
  font-weight: var(--font-bold);
  font-size: 2.5rem;
  padding-bottom: 0.2em;
}

.home-info p {
  font-size: 1.8rem;
  width: 36vw;
}

.abdecker {
  position: absolute;
  width: auto;
  height: 100%;
}

.home-info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  color: #fff;
}

.home-info .frame {
  top: 50%;
  transform: translateY(-50%);
}

/* Header-Info
---------------------------*/
.header-info {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: var(--color-light-blue);
}

.header-info .frame .content {
  height: 10vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.header-info .frame .content h1 {
  font-size: var(--txt-xl);
  text-transform: uppercase;
  color: var(--color-text);
}

.header-info .frame .content p {
  font-size: var(--txt-l);
  width: auto;
}

/* Zitat
---------------------------*/
.zitat .frame {
  padding: 4rem 0;
  margin-top: 4rem;
  font-size: var(--txt-xl);
  text-align: center;
  border-top: 2px solid var(--color-light-blue);
}

.zitat .frame p {
  padding: 0 21%;
}

/* Download-Block
---------------------------*/
.download-block {
  background: var(--color-text);
  text-align: center;
  padding: 3rem;
  color: #fff;
  display: grid;
  grid-template-rows: auto 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.download-block h2 {
  font-size: var(--txt-l);
  text-transform: none;
  padding-bottom: 1rem;
}

.download-block h2 span {
  position: relative;
  line-height: 1.2em;
}

.download-block h2 span:before {
  content: " ";
  position: absolute;
  top: 0.1rem;
  left: -1.7rem;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(../img/li-icon-yellow.svg);
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center center;
}

.download-block div {
  align-self: end;
}

.blog h1, .blog h2 {
  text-transform: uppercase;
  font-size: var(--txt-l);
  font-weight: var(--font-bold);
  margin-top: var(--l);
  margin-bottom: var(--s);
}

.blog h3 {
  text-transform: uppercase;
  margin-bottom: 0;
  margin-bottom: var(--line-height-05);
}

/* Main Navigation
-----------------------------------------------------------*/
.main-nav {
  padding-bottom: 1.7vw;
}

.main-nav li {
  display: inline-block;
}

.main-nav li a {
  border: none;
  text-transform: uppercase;
}

.main-nav li:not(:last-child) {
  padding-right: 2rem;
}

.main-nav li .aktiv {
  font-weight: var(--font-bold);
}

.lang-nav {
  position: relative;
  z-index: 20;
  padding-bottom: 1.6vw;
}

.lang-nav .dropbtn {
  border: 1px solid var(--color-text);
  border-radius: 5px;
  font-weight: 300;
  font-size: var(--txt-s);
  color: var(--color-text);
  padding: 0 1.2rem 0 0.5rem;
  margin: 0;
  background-image: url(../img/dropdown-arrow.svg);
  background-repeat: no-repeat;
  background-size: auto 40%;
  background-position: right 0.3rem center;
}

.lang-nav ul {
  font-size: var(--txt-s);
  display: none;
  position: absolute;
  background: var(--color-text);
  color: #fff;
  border: 1px solid var(--color-text);
  margin-top: -1px;
  border-radius: 0 0 5px 5px;
  z-index: 20;
  padding: 0.25rem 0;
}

.lang-nav ul li {
  padding: 0.2rem 0.75rem 0.2rem 0.75rem;
}

.lang-nav ul li a {
  border: none;
  display: block;
  word-wrap: normal;
  word-break: normal;
}

.lang-nav:hover .dropbtn {
  border-radius: 5px 5px 0 0;
}

.lang-nav:hover ul {
  display: block;
}

/* Navigation
---------------------------*/
#hamburger {
  position: absolute;
  right: 0;
  top: 3.25rem;
  cursor: pointer;
  display: block;
  width: 27px;
  height: 21px;
  z-index: 15;
  display: none;
}

#hamburger span {
  display: block;
  width: 27px;
  height: 5px;
  margin-bottom: 6px;
  position: relative;
  background: var(--color-text);
  transform-origin: 0 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#hamburger span:first-child {
  background: var(--color-text);
  transform-origin: 0% 0%;
}

#hamburger span:nth-last-child(2) {
  background: var(--color-text);
  transform-origin: 0% 100%;
}

/* Kreuz machen
---------------------------------*/
#hamburger.open span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, 0px);
  background: var(--color-text);
}

/* Mittlerer Balken verstecken
---------------------------------*/
#hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/* Letzter in die andere Richtung drehen
---------------------------------*/
#hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(-1px, -2px);
}

/*-----------------------------------------------------------------------------------
-------------------------------------------------------------------------------------
MediaQueries
-------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------*/
@media screen and (max-width: 1300px) {
  html {
    font-size: 18px;
  }

  .frame-s {
    padding: 0;
  }

  .frame-xs {
    padding: 0 14.70588235%;
  }
}
/* Ende 1300 */
@media screen and (max-width: 1100px) {
  html {
    font-size: 18px;
  }

  .frame {
    width: 92%;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-info h1 {
    font-size: 1.9rem;
  }

  .home-info p {
    font-size: 1.3rem;
  }

  /* Header
  -----------------------------------------------------------*/
  .site-header,
.site-header .grid-header {
    height: 12vw;
  }

  .site-header .grid-header {
    text-align: right;
  }

  /* Footer
  -----------------------------------------------------------*/
  .site-footer {
    background-position: 20% center;
  }

  .main-nav {
    padding-bottom: 2.2vw;
  }

  .lang-nav {
    padding-bottom: 2.1vw;
  }
}
/* Ende 1100 */
@media screen and (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .site-footer .grid-2 {
    width: auto;
    padding: 4rem 0;
  }

  .header-info .frame .content {
    height: 5rem;
  }

  .header-info .frame .content h1 {
    font-size: var(--txt-l);
  }

  .header-info .frame .content p {
    font-size: var(--txt-m);
  }

  .site-footer {
    background-position: 30% center;
  }

  .site-header,
.site-header .grid-header {
    height: 6rem;
  }

  /* Navigation
  -----------------------------------------------------------*/
  .grid-header {
    display: block;
    margin: 0;
  }

  #hamburger {
    display: block;
  }

  .lang-nav {
    position: absolute;
    right: 0;
    top: 0.8rem;
  }

  .main-nav {
    display: block;
    display: none;
    background: var(--color-text);
    position: absolute;
    margin: 6rem 0 0 0;
    padding: 0 0 0 0;
    position: absolute;
    right: 0;
    z-index: 15;
    width: 100%;
    border-radius: 0 0 0.6rem 0.6rem;
  }

  .main-nav ul {
    display: block;
    padding: 1rem;
  }

  .main-nav li,
.main-nav li:not(:last-child) {
    display: block;
    padding: 0.35rem 0;
    color: #fff;
  }
}
/* Ende 900 */
@media screen and (max-width: 750px) {
  .grid-3,
.grid-1-2 {
    grid-template-columns: 1fr;
  }

  .grid-1-2 .grid-item:nth-child(2) {
    grid-column: auto;
  }

  .zitat .frame p {
    padding: 0;
  }

  .home-grafik {
    width: 100%;
    overflow-x: hidden;
  }

  .home-info {
    position: relative;
    background: #fff;
    background: var(--color-light-blue);
    background: var(--color-text);
    margin-top: -3.5rem;
  }

  .home-info .frame {
    top: 0;
    transform: translateY(0%);
    padding: 2rem 0;
  }

  .home-info p {
    width: 100%;
    font-size: 1rem;
  }

  .hero-image {
    margin-left: -34vw;
    width: 134vw;
  }

  .abdecker {
    margin-left: -9%;
    display: none;
  }
}
/* Ende 750 */
@media screen and (max-width: 600px) {
  :root {
    --txt-s: 0.85rem;
    --txt-m: 1rem;
    --txt-l: 1.2rem;
    --txt-xl: 1.4rem;
  }

  html {
    font-size: 17px;
  }

  .frame {
    width: 90%;
  }

  .frame-xs {
    padding: 0;
  }
}
/* Ende 600 */
/* Clearfix
-----------------------------------------------------------*/
.group:after {
  content: "";
  display: table;
  clear: both;
}
