@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, 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: normal;
  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: #4D4D4D;
  --color-light-grau: #EAEDED;
  --color-dunkelblau: #1F3A46;
  --color-light-gruen: #DFF8D1;
  --color-gruen: #95C77C;
  --line-height: 1.4em;
  --line-height2: 2.8em;
  --font-bold: "CentraNo2Bold", sans-serif;
  --font-bold-italic: "CentraNo2BoldItalic", sans-serif;
}

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

.color-black {
  color: #000;
}

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

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

.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;
}

.txt-small {
  font-size: 0.9rem;
}

.txt-italic {
  font-style: italic;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.static {
  display: static;
}

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

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

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

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

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

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

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

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

.mar-top-s {
  margin-top: 2rem;
}

.mar-top-m {
  margin-top: 3rem;
}

.mar-top-l {
  margin-top: 4rem;
}

.mar-top-xl {
  margin-top: 5rem;
}

.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: 2rem;
}

.mar-bottom-m {
  margin-bottom: 3rem;
}

.mar-bottom-l {
  margin-bottom: 4rem;
}

.mar-bottom-xl {
  margin-bottom: 5rem;
}

.transf-y-minus-100 {
  transform: translateY(-100%);
}

.transf-y-minus-25 {
  transform: translateY(-25%);
}

.mar-right-kreis {
  margin-right: 17rem;
}

.border-radius-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;
}

.dots {
  border-top: 4px dotted var(--color-gruen);
}

/* 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
-----------------------------------------------------------*/
/* Grundgerüst
-----------------------------------------------------------*/
* {
  box-sizing: border-box;
}

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

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

section {
  padding: 5rem 0;
}

.frame {
  position: relative;
  margin: 0 auto;
  width: 92%;
  max-width: 1200px;
}

.grid-2, .grid-3, .grid-4, .grid-7-5, .grid-9-3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 5%;
  grid-row-gap: 0px;
  /* 
  align-items: center;
  	justify-items: center;
   */
}

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

.site-footer .grid-3 {
  align-items: end;
}

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

.grid-7-5 {
  grid-template-columns: 7fr 5fr;
}

.grid-9-3 {
  grid-template-columns: 9fr 3fr;
}

.sort-2 {
  order: 2;
}

.box-8 {
  width: 65.7473309609%;
}

.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;
}

.content ul li,
.intro ul li {
  padding: 0 0 0 0.8em;
  line-height: var(--line-height);
}

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

.blatt-liste {
  padding: 0 0 var(--line-height) 1em;
  line-height: var(--line-height);
}

.blatt-liste li:before {
  content: "";
  position: relative;
  width: 1em;
  height: 1em;
  background-image: url(../img/icon-blatt.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0.2em 0.3em;
  display: inline-block;
  left: -1em;
}

/* .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: underline;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  hyphens: auto;
}

p {
  line-height: var(--line-height);
  margin-bottom: var(--line-height);
}

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

strong {
  font-weight: 700;
}

/* 
.content > *:last-child,
.content > *:last-child > *:last-child,
.content > *:last-child > *:last-child > *:last-child {
  margin: 0;
}
 */
h1, h2 {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1rem 0 1.2rem 0;
  line-height: 1.1em;
  color: var(--color-dunkelblau);
}

h3 {
  font-size: 1.4rem;
  padding-bottom: 0.32rem;
  line-height: 1.4rem;
  font-weight: 700;
}

video {
  width: 100% !important;
  height: auto !important;
  display: inline-block;
  margin-bottom: var(--line-height);
}

.video {
  margin: 0;
  width: 100% !important;
  height: auto !important;
}

.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%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Struktur
-----------------------------------------------------------*/
.openBox {
  text-decoration: underline;
  font-weight: 700;
  display: inline-block;
  margin-bottom: var(--line-height);
}

.hidden-content {
  display: none;
}

/* Header
-----------------------------------------------------------*/
.site-header {
  position: relative;
  background-image: url(../img/header-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.logo {
  display: inline-block;
  border: none;
  position: relative;
  top: 7vh;
  text-decoration: none;
}

.logo h1, .logo h2, .logo h3 {
  padding: 0;
  color: #fff;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  line-height: 1em;
}

.logo h1 {
  font-size: 3.25rem;
  padding: 2rem 0 0.5rem 0;
}

.logo h2 {
  font-size: 1.4rem;
  line-height: 1.5rem;
}

.logo h3 {
  font-size: 1.2rem;
  line-height: 1.5rem;
}

.slogan {
  background: rgba(187, 195, 195, 0.5);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.45rem;
  margin-top: 40vh;
  padding: 0.75rem 0;
}

.slogan p {
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.slogan p span {
  font-weight: 700;
}

.site-header .cal-btn {
  position: absolute;
  right: 0;
  top: 0;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  box-shadow: 0px 3px 5px 6px rgba(0, 0, 0, 0.1);
}

/* Footer
-----------------------------------------------------------*/
.site-footer {
  padding: 3rem 0;
}

.partner-logos {
  float: right;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 0.5rem;
  grid-row-gap: 0px;
  align-items: end;
}

.partner-logos img {
  width: auto;
  height: 2rem;
}

/* Spezifische Formatierungen
-----------------------------------------------------------*/
.cal-btn {
  font-size: 0.9rem;
  background-color: var(--color-light-gruen);
  box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  color: var(--color-dunkelblau);
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
}

.cal-btn em {
  display: block;
  font-weight: 700;
  text-transform: none;
}

.intro {
  padding: 3rem 0 0 0;
  background-color: #ebeded;
  color: var(--color-dunkelblau);
}

.intro:after {
  content: "";
  background-image: url(../img/bg-grau-spikel.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left top;
  background-color: #fff;
  width: 100%;
  height: 150px;
  display: block;
}

.intro h2 {
  padding-bottom: 1rem;
}

.intro h4 {
  font-size: 1rem;
  padding-bottom: 0.1em;
}

.intro .mar-right-kreis p,
.intro .mar-right-kreis ul {
  font-size: 1.2rem;
}

.intro .mar-right-kreis .hidden-content p {
  font-size: 0.9rem;
}

.intro .mar-right-kreis ul {
  margin-bottom: var(--line-height);
}

.kreis-info {
  background: var(--color-light-gruen);
  width: 14.5rem;
  height: 14.5rem;
  border-radius: 100%;
  box-shadow: 0px 3px 10px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
}

.intro .kreis-info {
  transform: translateY(-150%);
}

.achtsamkeit .kreis-info {
  transform: translateY(-150%);
}

.kreis-info .inner-border {
  color: var(--color-dunkelblau);
  font-size: 0.85rem;
  font-size: 1rem;
  text-align: center;
  line-height: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  padding: 0 1.5rem;
  width: 93%;
  height: 93%;
  border-radius: 100%;
  border: 1px solid #fff;
  margin: 3.5%;
  position: absolute;
}

.kreis-info .inner-border p {
  font-weight: 700;
}

.kreis-info .inner-border .autor {
  font-weight: 400;
  font-style: italic;
  display: block;
  padding-top: 0.25rem;
}

.box-gruen .grid-item {
  background: var(--color-light-gruen);
  box-shadow: 0px 3px 5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  padding: 1rem;
  color: var(--color-dunkelblau);
}

.gruener-streifen {
  background: var(--color-light-gruen);
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  margin: 3rem 0 0 0;
}

.gruener-streifen .inner-border {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: var(--line-height) 0;
  color: var(--color-dunkelblau);
}

.foto-bg {
  padding: 12rem 0 0 0;
  background-color: #1a40a3;
  background-image: url(../img/uebermich-img.jpg);
  background-repeat: no-repeat;
  background-size: auto 102%;
  background-position: right bottom;
  margin: 0 0 var(--line-height2) 0;
}

.foto-bg h2 {
  color: #fff;
}

.unterschrift {
  width: 9rem;
}

.tooltip {
  text-decoration: underline;
  overflow-wrap: normal;
  word-wrap: normal;
  -ms-word-break: unset;
  word-break: unset;
  word-break: unset;
  hyphens: none;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip .tooltip-content {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  max-width: 500px;
  background-color: #333;
  color: #fff;
  padding: 1em;
  border-radius: 8px;
  box-sizing: border-box;
  text-align: left;
  white-space: normal;
  word-wrap: break-word;
  z-index: 999;
}

.tooltip:hover .tooltip-content,
.tooltip:focus-within .tooltip-content {
  visibility: visible;
  opacity: 1;
}

.tooltip .tooltip-content::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

/* Main Navigation
-----------------------------------------------------------*/
/* Navigation
---------------------------*/
#hamburger {
  position: fixed;
  right: 4%;
  top: 3.5rem;
  cursor: pointer;
  display: block;
  width: 27px;
  height: 21px;
  z-index: 100;
}

#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: 1350px) {
  .slogan {
    font-size: 2.25vw;
  }
  .kreis-info {
    width: 12.5rem;
    height: 12.5rem;
  }
} /* Ende 1350 */
@media screen and (max-width: 1000px) {
  html {
    font-size: 19px;
  }
  .tooltip .tooltip-content {
    position: fixed;
    bottom: 20px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90vw;
    min-width: 60vw;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  .tooltip .tooltip-content::after {
    display: none;
  }
} /* Ende 1000 */
@media screen and (max-width: 850px) {
  html {
    font-size: 18px;
  }
} /* Ende 760 */
@media screen and (max-width: 760px) {
  html {
    font-size: 18px;
  }
  .slogan {
    font-size: 4.9vw;
  }
  .slogan span {
    display: block;
  }
  .sort-2 {
    order: unset;
  }
  .grid-2, .grid-3, .grid-4, .grid-7-5, .grid-9-3 {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: var(--line-height);
  }
  .foto-bg {
    background-position: right 20% bottom;
  }
} /* Ende 760 */
@media screen and (max-width: 700px) {
  .portrait {
    width: 70%;
    margin: var(--line-height) 15%;
  }
  .box-8 {
    width: 100%;
  }
  .transf-y-minus-100 {
    transform: translateY(-50%);
  }
  .mar-right-kreis {
    margin-right: 0;
  }
  .intro {
    padding-bottom: 0;
  }
  .intro .kreis-info {
    transform: translateY(10%);
    margin: 0 auto;
    position: relative;
  }
  .achtsamkeit .kreis-info {
    transform: translateY(-150%);
  }
  .achtsamkeit {
    padding-top: 10rem;
  }
  .partner-logos {
    float: left;
  }
} /* Ende 700 */
/* Clearfix
-----------------------------------------------------------*/
.group:after {
  content: "";
  display: table;
  clear: both;
}
