@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;
  position: relative;
  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-white: #fff;
  --color-black: #000;
  --color-light-green: #C5D5AF;
  --color-green: #3F4534;
  --color-light-brown: #E6DBB2;
  --color-brown: #3F4534;
  --color-light-pink: #DDB8C3;
  --color-pink: #39272C;
  --color-light-blue: #D8E5E0;
  --color-blue: #2F3633;
  --color-light-beige: #E9E5D0;
  --color-beige: #413D25;
  --color-light-gray: #DADECF;
  --color-gray: #232421;
  --color-bg-box: #FAF7EF;
  --color-btn-1: #974941;
  --color-btn-2: #CE6185;
  --color-btn-3: #CCA639;
  --color-btn-4: #90B5A6;
  --color-btn-5: #9F904D;
  --color-text: #000;
  --line-height: 1.4em;
  --line-height2: 2.8em;
  --line-height-half: 0.7em;
  --font-bold: "CentraNo2Bold", sans-serif;
  --font-bold-italic: "CentraNo2BoldItalic", sans-serif;
  --txt-xs: 0.8rem;
  --txt-s: 0.8rem;
  --txt-m: 1rem;
  --txt-l: 1.33333333rem;
  --txt-xl: 1.66666667rem;
  --txt-xxl: 3.33333333rem;
  --s: 1rem;
  --m: 2rem;
  --l: 3rem;
  --xl: 4rem;
}

/* V.1 Vramework
-----------------------------------------------------------*/
.color-white {
  color: var(--color-white);
}

.color-black {
  color: var(--color-black);
}

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

.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-xs {
  font-size: var(--txt-s);
}

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

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

.block {
  display: block;
}

.inline {
  display: inline;
}

.static {
  display: static;
}

.pad-0 {
  padding: 0;
}

.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-0 {
  padding-top: 0;
}

.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-0 {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

/* Grundformatierung
----------------------------*/
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;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Schriften
-----------------------------------------------------------*/
@font-face {
  font-family: "Think-Regular";
  src: url("webfonts/Think-Regular.woff2") format("woff2"), url("webfonts/Think-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Satoshi Regular";
  src: url("webfonts/Satoshi-Regular.woff2") format("woff2"), url("webfonts/Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi Regular";
  src: url("webfonts/Satoshi-Regular.woff2") format("woff2"), url("webfonts/Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi Light";
  src: url("webfonts/Satoshi-Light.woff2") format("woff2"), url("webfonts/Satoshi-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Italic";
  src: url("webfonts/Satoshi-Italic.woff2") format("woff2"), url("webfonts/Satoshi-Italic.woff") format("woff");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Light Italic";
  src: url("webfonts/Satoshi-LightItalic.woff2") format("woff2"), url("webfonts/Satoshi-LightItalic.woff") format("woff");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Bold Italic";
  src: url("webfonts/Satoshi-BoldItalic.woff2") format("woff2"), url("webfonts/Satoshi-BoldItalic.woff") format("woff");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
/* Grundgerüst
-----------------------------------------------------------*/
* {
  box-sizing: border-box;
}

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

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

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

.grid-2, .grid-3, .grid-4, .etappe-content, .grid-5-6 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 1.8759018759%;
  grid-row-gap: var(--line-height2);
  /* 
  align-items: center;
  	justify-items: center;
   */
}

/* 
.grid-4 .grid-item:first-child {
	grid-column: 1 / 2;
}
 */
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.grid-5-6 {
  text-align: left;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-5-6 .grid-item:first-child {
  grid-column: 1/6;
}

.grid-5-6 .grid-item:last-child {
  grid-column: 7/13;
}

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

section {
  padding: 5rem 0 6rem 0;
}

/* .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, svg {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--color-green);
  text-underline-offset: 0.175em;
  text-decoration-thickness: 1px;
  /* 
  	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;
   */
  /* 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) */
  /* 
  	-ms-hyphens: auto;
  	-moz-hyphens: auto;
  	-webkit-hyphens: auto;
  	hyphens: auto;
   */
}

a:hover {
  transition: color 0.25s;
}

a[href$=".pdf"] {
  content: "";
  display: inline-block;
  background-image: url(../img/icon-pdf.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 1rem;
  padding-left: 1rem;
}

p,
.editor ul,
.editor ol {
  line-height: var(--line-height);
  margin-bottom: var(--line-height);
}

p:last-child,
.editor ul li:last-child,
.editor ol li:last-child {
  margin-bottom: 0;
}

.editor ul li {
  padding: 0 0 0 1.6em;
}

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

/* 
.content > *:last-child,
.content > *:last-child > *:last-child,
.content > *:last-child > *:last-child > *:last-child {
  margin: 0;
}
 */
section h1 {
  font-family: "Think-Regular";
  text-wrap: balance;
  font-size: var(--txt-xxl);
  display: inline-block;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.1em;
}

section h1:before,
section h1:after {
  content: "";
  display: bock;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--color-green);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-200%, -50%);
  border-radius: 50%;
}

section h1:after {
  left: auto;
  right: 0;
  transform: translate(200%, -50%);
}

h2 {
  font-size: var(--txt-xl);
  font-family: "Think-Regular";
  text-wrap: balance;
  line-height: 1.1em;
}

h3 {
  font-family: "Think-Regular";
  text-wrap: balance;
  line-height: 1.1em;
}

.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
-----------------------------------------------------------*/
section:before {
  background-image: url(../img/dots-trennlinie.svg);
  background-repeat: repeat-x;
  background-position: center left;
  background-size: auto 100%;
  content: "";
  display: block;
  height: 8px;
  width: 100%;
  position: absolute;
  top: -4px;
  left: 0;
  z-index: 10;
}

section.welcome {
  background-color: var(--color-light-green);
  color: var(--color-green);
  background-image: url(../img/noten-bg.png);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}

section.klangspaziergang {
  background: var(--color-light-brown);
  color: var(--color-brown);
}

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

section.biografie {
  background: var(--color-light-pink);
  color: var(--color-pink);
}

section.aktuell {
  background: var(--color-light-gray);
  color: var(--color-gray);
}

section.kontakt {
  background: var(--color-light-beige);
  color: var(--color-beige);
  background-image: url(../img/noten-bg.png);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}

/* Header
-----------------------------------------------------------*/
.site-header {
  position: relative;
  height: 100vh;
}

.site-header .hero {
  object-fit: cover;
  height: 100vh;
}

.site-header .logo {
  position: absolute;
  left: 5%;
  top: var(--line-height2);
}

.site-header h1 {
  font-family: "Think-Regular";
  display: inline-block;
  border: none;
  font-size: var(--txt-xxl);
  color: var(--color-light-green);
}

.site-header h2 {
  font-family: "Think-Regular";
  font-size: var(--txt-xl);
  color: var(--color-white);
}

.stoerer {
  position: absolute;
  left: 5%;
  bottom: var(--line-height2);
  width: 7rem;
}

.lang-nav {
  position: absolute;
  right: 5%;
  top: var(--line-height2);
}

.lang-nav ul {
  font-family: "Think-Regular";
  display: flex;
  gap: 0.5rem;
}

.lang-nav ul a {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--color-light-green);
  color: var(--color-green);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 50%;
}

.lang-nav ul a.active {
  background: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

/* Footer
-----------------------------------------------------------*/
/* Spezifische Formatierungen
-----------------------------------------------------------*/
.intro {
  width: 65.9359190556%;
  margin: 0 auto;
}

.portrait {
  border-radius: 50%;
}

/* Spaziergang
---------------------------*/
.spaziergang-etappen {
  margin: 0 7.2871572872%;
}

.etappe {
  width: 57.4198988196%;
  width: 75%;
  max-width: 38rem;
  margin-bottom: 4rem;
  z-index: 10;
  text-align: left;
}

.etappe:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
}

.etappe:nth-child(1) {
  margin-left: -5%;
}

.etappe:nth-child(2) {
  margin-left: auto;
  margin-right: 2%;
}

.etappe:nth-child(3) {
  margin-left: 3%;
}

.etappe:nth-child(4) {
  margin-right: -3%;
}

.etappe-content {
  background: var(--color-bg-box);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 2rem;
  grid-column-gap: 1rem;
  grid-template-columns: 2rem 1fr;
}

.songinfo {
  padding-left: 1.5rem;
}

.etappe-content h2 {
  padding-bottom: 0.4em;
}

.etappe-content h2 .zusatz {
  font-size: var(--txt-m);
}

.etappe-content h2:before {
  content: "1.";
  position: absolute;
  left: -1.5rem;
  color: var(--color-btn-1);
}

.etappe:nth-child(2) h2:before {
  content: "2.";
  color: var(--color-btn-2);
}

.etappe:nth-child(3) h2:before {
  content: "3.";
  color: var(--color-btn-3);
}

.etappe:nth-child(4) h2:before {
  content: "4.";
  color: var(--color-btn-4);
}

.etappe:nth-child(5) h2:before {
  content: "5.";
  color: var(--color-btn-5);
}

.etappe:nth-child(2):before,
.etappe:nth-child(4):before {
  display: block;
  width: 6rem;
  height: 7rem;
  content: "";
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  background-image: url(../img/dots-links.svg);
  position: absolute;
  left: -6rem;
  top: -4rem;
  z-index: 1;
}

.etappe:nth-child(3):after,
.etappe:nth-child(5):after {
  display: block;
  width: 6rem;
  height: 7rem;
  content: "";
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  background-image: url(../img/dots-rechts.svg);
  position: absolute;
  right: -6rem;
  top: -4rem;
  z-index: 1;
}

.play-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--color-btn-1);
  border: none;
  cursor: pointer;
  margin-top: -0.1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  /* Play Icon (Dreieck) */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>');
}

.etappe:nth-child(2) .play-btn {
  background-color: var(--color-btn-2);
}

.etappe:nth-child(3) .play-btn {
  background-color: var(--color-btn-3);
}

.etappe:nth-child(4) .play-btn {
  background-color: var(--color-btn-4);
}

.etappe:nth-child(5) .play-btn {
  background-color: var(--color-btn-5);
}

.play-btn.playing {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>');
}

/* Werke
---------------------------*/
.werke-wrapper {
  text-align: left;
  padding-bottom: var(--line-height2);
  margin: 0 7.2871572872%;
}

.werke-wrapper h2 {
  border-bottom: 3px dotted var(--color-white);
  padding-bottom: 0.25em;
  margin-bottom: 0.75em;
}

.werk-box {
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.werk-box h3 {
  font-family: "Satoshi Bold Italic";
  padding-right: 1em;
}

.werk-box h3.plus {
  cursor: pointer;
}

.werk-box h3.plus::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 45%;
  width: 0.9rem; /* Originalbreite deines SVGs */
  height: 0.9rem; /* Originalhöhe deines SVGs */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="%232f3633" d="M18.1339,10.0874c-.4993-.4993-1.3081-.4993-1.8074,0l-5.2487,5.2491V1.7782c0-.7059-.5723-1.2782-1.2782-1.2782s-1.2782.5723-1.2782,1.2782v13.1576l-4.848-4.8484c-.4993-.4993-1.3081-.4993-1.8074,0s-.4993,1.3081,0,1.8074l7.2302,7.2308c.2496.2496.5767.3745.9037.3745s.6541-.1248.9037-.3745l7.2302-7.2308c.4993-.4993.4993-1.3081,0-1.8074h.0001Z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform-origin: center center;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.werk-box h3 em {
  font-family: "Satoshi Italic";
}

/* Zustand wenn aufgeklappt: Pfeil dreht sich um 180 Grad */
.werk-box h3.open::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Standardmäßig verstecken, falls nicht bereits im CSS geregelt */
.hidden {
  display: none;
  padding-bottom: var(--line-height);
  padding-top: var(--line-height-half);
}

/* Aktuell
---------------------------*/
.aktuell-box:not(:last-child) {
  padding-bottom: var(--line-height2);
  margin-bottom: var(--line-height2);
}

.aktuell-box:not(:last-child):after {
  content: "";
  display: bock;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--color-green);
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translate(0, 50%);
  border-radius: 50%;
}

.aktuell-box h3 {
  padding: 0 0 var(--line-height-half) 0;
  font-size: var(--txt-l);
}

.aktuell-box h4 {
  font-family: "Satoshi Italic";
  padding: 0 0 var(--line-height-half) 0;
}

/* 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: 900px) {
  .site-header .logo {
    top: var(--xl);
  }
  .site-header .lang-nav {
    top: var(--s);
  }
  /* Spaziergang
  ---------------------------*/
  .spaziergang-etappen,
  .werke-wrapper {
    margin: 0 0%;
  }
} /* Ende 900 */
@media screen and (max-width: 750px) {
  :root {
    --txt-xxl: 9vw;
  }
  .grid-5-6 .grid-item:first-child {
    grid-column: 2/12;
  }
  .grid-5-6 .grid-item:last-child {
    grid-column: 1/13;
  }
  .intro {
    width: 100%;
  }
  .etappe:nth-child(2):before,
  .etappe:nth-child(4):before,
  .etappe:nth-child(3):after,
  .etappe:nth-child(5):after {
    background-position: center center;
    background-size: auto 100%;
    background-image: url(../img/dots-center.svg);
    left: 50%;
    transform: translateX(-50%);
    top: -4rem;
    height: 4rem;
  }
  .etappe {
    width: 90%;
  }
  .etappe:nth-child(1) {
    margin-left: -1%;
  }
  .etappe:nth-child(2) {
    margin-right: 2%;
  }
  .etappe:nth-child(3) {
    margin-left: 2%;
  }
  .etappe:nth-child(4) {
    margin-right: 0%;
  }
} /* Ende 750 */
@media screen and (max-width: 600px) {
  html {
    font-size: 18px;
  }
  /* Navigation
  -----------------------------------------------------------*/
} /* Ende 600 */
/* Clearfix
-----------------------------------------------------------*/
.group:after {
  content: "";
  display: table;
  clear: both;
}
