@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: 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-white: #fff;
  --color-black: #000;
  --color-light-gray: #d5d5d5;
  --color-text: #333;
  --line-height: 1.4em;
  --line-height2: 2.8em;
  --line-height-half: 0.7em;
  --txt-s: 0.8rem;
  --txt-m: 1rem;
  --txt-l: 1.4rem;
  --txt-xl: 1.55rem;
  --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-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-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
-----------------------------------------------------------*/
/* nunito-sans-300 - 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: "Nunito Sans";
  font-style: normal;
  font-weight: 300;
  src: url("webfonts/nunito-sans-v18-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-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: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  src: url("webfonts/nunito-sans-v18-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-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: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  src: url("webfonts/nunito-sans-v18-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Grundgerüst
-----------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  font-size: 20px;
}

body {
  font-family: "Nunito Sans";
  color: var(--color-text);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  font-weight: 300;
  /* 	min-height: 100vh;
  	display: grid;
  	grid-template-rows: auto 1fr auto;
  */
}

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

.grid-2, .grid-3, .grid-4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 6.5306122449%;
  grid-row-gap: 6rem;
  /* 
  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));
}

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

/* .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: inline-block;
  max-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 var(--line-height-half) 1.1em;
}

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

/* 
.content > *:last-child,
.content > *:last-child > *:last-child,
.content > *:last-child > *:last-child > *:last-child {
  margin: 0;
}
 */
h1 {
  font-weight: 700;
  padding: 0 0 0.75rem 0;
  font-size: var(--txt-l);
  text-transform: uppercase;
}

h2 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1.3em;
  margin-bottom: 0.2em;
}

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

h4 {
  font-weight: 700;
  line-height: var(--line-height);
  margin-bottom: 0;
}

.uebersicht h2 {
  padding: 1.8rem 0 0 0;
  font-weight: 700;
}

.uebersicht a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

/* Video
----------------------------*/
video {
  width: 100%;
  max-height: 100%;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}

.videowrapper { /* Abstand bei Mobile */
  margin: var(--line-height) 0 var(--line-height) 0;
  max-width: 50rem;
}

.responsive-video > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.responsive-video .play-button {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  position: absolute;
  bottom: 0;
  color: #fff;
  text-align: center;
  padding: var(--s);
  box-sizing: border-box;
  line-height: var(--line-height);
}

.responsive-video .play-button .btn {
  margin-top: var(--line-height-half);
  cursor: pointer;
}

/* .responsive-video .play-button {
} */
.play-button a {
  word-wrap: unset;
  hyphens: none;
  text-decoration: underline;
  /* color: #8e8e8e;
  border-bottom: 1px solid #8e8e8e; */
}

.playBtn {
  display: inline-block;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.2em 0.5em;
  margin-top: 0.5em;
  border-radius: 0.25em;
}

.video-big {
  margin-bottom: 9.75em;
}

.mp4-wrapper {
  position: relative;
  height: auto;
  width: 100%;
  margin-bottom: var(--line-height);
}

.mp4-wrapper video {
  width: 100%;
  height: auto;
}

/* Struktur
-----------------------------------------------------------*/
.detailcontent {
  padding: 0 6.5% 0 6.5%;
}

.imgwrapper img {
  max-width: 100%;
  width: auto;
  max-height: 85vh;
}

.borderdiv {
  display: inline-block;
  display: block;
  border: 1px solid #000;
  padding: 0.75rem;
  margin-bottom: var(--line-height);
}

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

.logo-wrapper {
  border-bottom: 1px solid #000;
  text-align: center;
  padding: 1.75rem;
}

.logo {
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  font-size: var(--txt-l);
}

/* Footer
-----------------------------------------------------------*/
.site-footer {
  border-top: 1px solid #000;
  padding: 2rem 1.5rem;
  font-size: var(--txt-s);
}

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

.site-footer p {
  line-height: 1.5em;
}

.site-footer a {
  text-decoration: none;
}

.site-footer .grid-item:last-child {
  text-align: right;
}

/* Spezifische Formatierungen
-----------------------------------------------------------*/
.main {
  padding: 6rem 0 6rem 0;
}

/* Main Navigation
-----------------------------------------------------------*/
.main-nav {
  padding: 1rem 1.5rem;
}

.main-nav ul {
  display: flex;
  justify-content: space-between;
}

.main-nav ul a {
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 0.25rem;
}

.body-home #btn01 a,
.body-projekte #btn02 a,
.body-ueber #btn03 a,
.body-rundgaenge #btn04 a,
.body-team-kontakt #btn05 a .main-nav ul a:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* Navigation
---------------------------*/
#hamburger {
  position: fixed;
  right: 6%;
  top: 1.7rem;
  cursor: pointer;
  display: block;
  width: 27px;
  height: 21px;
  z-index: 100;
  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: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Struktur
  -----------------------------------------------------------*/
  .detailcontent {
    padding: 0 0 0 0;
  }
  /* Footer
  -----------------------------------------------------------*/
  .site-footer {
    padding: 2rem 0;
  }
  .main-nav {
    padding: 1rem 0;
  }
} /* Ende 1100 */
@media screen and (max-width: 900px) {
  html {
    font-size: 19px;
  }
  .frame {
    width: 90%;
  }
} /* Ende 900 */
@media screen and (max-width: 800px) {
  html {
    font-size: 18px;
  }
  .main {
    padding: 5rem 0 5rem 0;
  }
  /* Header
  -----------------------------------------------------------*/
  .site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
  }
  /* Navigation
  -----------------------------------------------------------*/
  .main-nav {
    display: block;
    display: none;
    position: absolute;
    width: 100%;
    margin: 0 0 0 0;
    padding: var(--line-height) 0;
    max-height: 100vh;
    overflow-y: auto;
    top: 0;
    left: 0;
    z-index: 10;
    background: #fff;
  }
  .main-nav ul {
    display: block;
  }
  .main-nav ul li {
    margin-bottom: var(--s);
  }
  .main-nav ul a {
    display: block;
    padding: 0.25rem;
    line-height: var(--line-height);
  }
  #hamburger {
    display: block;
  }
} /* Ende 800 */
@media screen and (max-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
} /* Ende 700 */
/* Clearfix
-----------------------------------------------------------*/
.group:after {
  content: "";
  display: table;
  clear: both;
}
