@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-blau-hell: #e6f8fa;
  --color-blau-medium: #A3D5D8;
  --color-blau-dunkel: #114762;
  --color-rot: #e76177;
  --color-text: #000000;
  --line-height: 1.25em;
  --line-height2: 2.5em;
  --line-height-half: 0.675em;
  --txt-s: 0.8rem;
  --txt-m: 1rem;
  --txt-l: 1.16666667rem;
  --txt-xl: 1.66666667rem;
  --txt-xxl: 2.9rem;
  --xs: 0.5rem;
  --s: 1rem;
  --m: 2rem;
  --l: 3rem;
  --xl: 4rem;
  --xxl: 6rem;
  --xxxl: 7.25rem;
}

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

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

.color-blau-hell {
  color: var(--color-blau-hell);
}

.color-blau-dunkel {
  color: var(--color-blau-dunkel);
}

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

.bg-blau-hell {
  background-color: var(--color-blau-hell);
}

.bg-blau-medium {
  background-color: var(--color-blau-medium);
}

.bg-blau-dunkel {
  background-color: var(--color-blau-dunkel);
  color: var(--color-white);
}

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

.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-bottom-xxl {
  margin-bottom: var(--xxl);
}

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

@keyframes heroAnim {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  100% {
    transform: translate(25vw, -25vw) rotate(270deg);
  }
}
/* 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: 62.5%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Schriften
-----------------------------------------------------------*/
@font-face {
  font-display: swap;
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400;
  src: url("../css/webfonts/figtree-v6-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Figtree";
  font-style: normal;
  font-weight: 600;
  src: url("../css/webfonts/figtree-v6-latin-600.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Figtree";
  font-style: normal;
  font-weight: 700;
  src: url("../css/webfonts/figtree-v6-latin-700.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: 24px;
}

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

section {
  padding: var(--xxl) 0;
}

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

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-row-gap: var(--line-height2);
}

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

.grid-2-1 > .grid-item:first-child {
  grid-column: 1/3;
}

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

.grid-feedback-person {
  grid-template-columns: 1fr 2fr;
}

.grid-header {
  grid-template-columns: 248px 1fr;
}

.grid-header {
  align-items: end;
  grid-column-gap: 5%;
}

.grid-feedback,
.grid-publikationen {
  grid-template-columns: 7rem 1fr;
}

.grid-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "big    small1" "big    small2" "full   full";
}

.grid-gallery.reverse {
  grid-template-columns: 1fr 2fr;
  grid-template-areas: "small1  big" "small2  big" "full    full";
}

.grid-gallery.small {
  grid-template-areas: "big   small1" "big   small2";
}

.big {
  grid-area: big;
}

.small-top {
  grid-area: small1;
}

.small-bottom {
  grid-area: small2;
}

.full {
  grid-area: full;
}

.grid-gallery .grid-item {
  position: relative;
  overflow: hidden;
}

.grid-gallery .grid-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-gallery .full {
  grid-column: 1/-1;
}

.col-2 {
  column-count: 2;
  column-gap: 5%;
}

.col-2 p, .col-2 div {
  -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: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration: none;
  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"] {
  display: inline-block;
  background: url(../img/icon-pdf.svg) no-repeat left 0;
  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 {
  max-width: 35rem;
}

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;
}
 */
h1, h2 {
  font-size: var(--txt-xxl);
  text-transform: uppercase;
  margin-bottom: var(--l);
  font-weight: 600;
  line-height: 1.1em;
  text-wrap: balance;
  max-width: 20em;
}

h3 {
  font-size: var(--txt-xl);
  margin-bottom: var(--line-height);
  font-weight: 600;
  text-wrap: balance;
}

.grid-3 .grid-item h3 {
  width: 80%;
}

h4 {
  font-size: var(--txt-l);
  font-weight: 600;
  text-wrap: balance;
}

h1 sup,
h2 sup,
h3 sup,
h4 sup {
  font-weight: 600;
}

strong, b {
  font-weight: 700;
}

strong sup {
  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
-----------------------------------------------------------*/
.trenner-hellblau-rot,
.trenner-dunkelblau-hellblau,
.trenner-rot-dunkelblau,
.trenner-hellblau-dunkelblau {
  height: 12.5rem;
  background-image: url(../img/trenner-hellblau-rot.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.trenner-dunkelblau-hellblau {
  background-image: url(../img/trenner-dunkelblau-hellblau.svg);
}

.trenner-rot-dunkelblau {
  background-image: url(../img/trenner-rot-dunkelblau.svg);
}

.trenner-hellblau-dunkelblau {
  background-image: url(../img/trenner-hellblau-dunkelblau.svg);
}

/* Header
-----------------------------------------------------------*/
.site-header {
  position: sticky;
  padding: var(--m) 0;
  top: 0;
  z-index: 10;
  background: var(--color-white);
  transition: height 0.5s ease;
}

.logo {
  display: block;
  border: none;
}

.logo-zusatz {
  transition: width 0.25s ease-in-out;
  padding-bottom: 0.15rem;
}

body.scrolled .logo-zusatz {
  transition: width 0.5s ease-in-out;
  width: 0%;
}

/* Footer
-----------------------------------------------------------*/
.site-footer {
  padding: var(--xxl) 0;
  background-color: var(--color-blau-dunkel);
  color: var(--color-white);
}

.site-footer p {
  font-weight: 700;
}

.footer-rot .site-footer {
  background-color: var(--color-rot);
}

.footer-mediumblau .site-footer {
  background-color: var(--color-blau-medium);
}

.footer-hellblau .site-footer {
  background-color: var(--color-blau-hell);
}

/* Spezifische Formatierungen
-----------------------------------------------------------*/
.hero {
  height: 50vh;
  min-height: 500px;
  max-height: 750px;
  overflow: hidden;
  color: var(--color-white);
  padding: var(--xl) 0;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.16);
}

.hero h1 {
  max-width: 650px;
}

.hero a {
  font-size: var(--txt-xl);
  font-weight: 600;
  display: block;
}

.hero .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  opacity: 1;
}

.hero .bg-img img {
  position: absolute;
  width: 300%;
  left: -115%;
  top: -118vw;
  animation-duration: 2s; /* the duration of the animation */
  animation-timing-function: ease-in-out; /* how the animation will behave */
  animation-delay: 0.5s; /* how long to delay the animation from starting */
  animation-iteration-count: 1; /* how many times the animation will play */
  animation-name: heroAnim; /* the name of the animation we defined above */
  animation-fill-mode: forwards;
}

/* Modul
---------------------------*/
.cta-link {
  display: block;
  margin: 0 12%;
}

.cta-link.cta-link-rosa .st1 {
  fill: #000;
}

.cta-link:hover .st1 {
  fill: #000000;
}

.cta-link.cta-link-rosa:hover .st1 {
  fill: #E0B5BB;
}

.st0 {
  fill: #fff;
}

.st1 {
  fill: #45b0b7;
}

/* Team & Home
---------------------------*/
.portrait {
  width: 13.5rem;
  border-radius: 50%;
}

.first-strong-title p > strong {
  font-size: var(--txt-l);
}

.icon-img {
  width: 65%;
  max-width: 10rem;
}

.editor p a {
  text-decoration: underline;
}

/* Modul
---------------------------*/
.grid-module .grid-item {
  background: var(--color-white);
  border-radius: 0.6rem;
}

.modul {
  padding: 1.5rem 1.25rem 3.8rem 1.25rem;
}

.modul > img {
  margin: 0 auto 1.8rem auto;
  max-width: 200px;
}

.modul h2 {
  margin-bottom: var(--line-height);
  font-size: 1.5rem;
  text-transform: none;
  line-height: 1.11111111em;
}

.modul h2 span {
  display: block;
  font-weight: 600;
  font-size: 1.41666667rem;
  padding-bottom: 0.2rem;
}

/* Dozierende
---------------------------*/
.person-block {
  padding: 3.75rem 0 var(--xl) 0;
}

.person-block > h2 {
  margin: var(--l) 0 0 0;
  text-transform: none;
  font-size: var(--txt-xl);
  padding: 0;
}

.person-block > h3 {
  text-transform: none;
  font-size: var(--txt-xl);
  margin-bottom: var(--l);
  color: var(--color-rot);
}

.about-block h3 {
  font-size: 1.91666667rem;
  margin-bottom: 0;
  font-weight: 700;
}

.about-block p {
  margin-bottom: 0.5rem;
}

.person-block .editor a {
  color: var(--color-rot);
  text-decoration: none;
}

.grid-publikationen .editor a {
  color: var(--color-blau-medium);
  text-decoration: none;
}

.about-block h3:first-child {
  color: #A3D5D8;
}

.about-block h3:nth-of-type(2n) {
  color: #FFFFFF;
}

.about-block h3:nth-of-type(3n) {
  color: #E76177;
}

.about-block h3:nth-of-type(4n) {
  color: #E0B5BB;
}

.about-block h3:nth-of-type(5n) {
  color: #45B0B7;
}

.table-row {
  grid-template-columns: 5.5rem 1fr 11rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  margin-bottom: var(--xs);
  padding: 0.65rem 0;
  grid-row-gap: 0;
}

.table-row h3 {
  font-size: var(--txt-m);
  font-weight: 700;
  margin: 0 0 0 1rem;
  line-height: var(--line-height);
}

.table-row p {
  margin: 0;
}

.table-row p:last-child {
  margin-right: 1rem;
}

/* FAQ
---------------------------*/
.faq-block {
  margin-bottom: var(--l);
}

.faq-block h3 {
  font-size: var(--txt-l);
  font-weight: 700;
}

/* Feedback und Publikationen
---------------------------*/
.grid-feedback:not(:last-child),
.grid-publikationen:not(:last-child) {
  margin-bottom: var(--xl);
}

h4.person {
  font-size: var(--txt-m);
  color: #45B0B7;
  font-weight: 700;
}

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

.grid-feedback-person .portrait-small {
  max-width: 11rem;
  float: right;
}

.grid-feedback-person p {
  max-width: 30rem;
}

.to-top-link {
  display: block;
  position: absolute;
  right: -5rem;
  bottom: -3rem;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  font-size: 0;
  background-image: url(../img/nach-oben.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
}

.bg-blau-dunkel .to-top-link {
  background-image: url(../img/nach-oben-weiss.svg);
}

/* Formular
-----------------------------------------------------------*/
#kontaktForm label {
  display: block;
  padding: 0.35rem 0.5rem;
  color: var(--color-rot);
  font-size: var(--txt-s);
  text-transform: uppercase;
  font-weight: 700;
}

#kontaktForm .hideLabel {
  display: block;
}

input[type=text],
input[type=email],
select,
textarea {
  padding: 0 0.5em 0 0.5em;
  margin-right: 0.5em;
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: var(--txt-xs);
}

textarea {
  height: 5rem;
}

input[type=submit] {
  font-size: var(--txt-s);
  text-decoration: none;
  color: var(--color-blau-dunkel);
  background: var(--color-blau-hell);
  border-radius: 0.6em;
  padding: 0.9em 0.9em;
  border: none;
  margin-top: var(--line-height);
  transition: background-color 0.25s, color 0.25s;
  font-weight: 700;
  text-transform: uppercase;
}

input[type=submit]:hover {
  color: var(--color-white);
  background: var(--color-black);
  transition: background-color 0.25s, color 0.25s;
}

#kontaktForm .group {
  border-radius: 0.6rem;
  margin-bottom: var(--line-height-half);
  background: var(--color-blau-hell);
}

#kontaktForm .errEmpty {
  background: #f9b0b0;
}

.formError {
  color: var(--color-white);
  margin-bottom: var(--line-height);
}

::placeholder {
  color: var(--color-text);
  opacity: 0; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: var(--color-text);
}

/* Main Navigation
-----------------------------------------------------------*/
.main-nav ul {
  display: flex;
  justify-content: space-between;
}

.main-nav ul a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--txt-m);
}

.main-nav ul .selected a,
.main-nav ul a:hover {
  color: var(--color-rot);
}

/* Navigation
---------------------------*/
#hamburger {
  position: fixed;
  right: 4%;
  top: 1.5rem;
  cursor: pointer;
  display: block;
  width: 44px;
  z-index: 100;
  display: none;
}

#hamburger span {
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 12px;
  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(0px, 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(-3px, -2px);
}

/*-----------------------------------------------------------------------------------
-------------------------------------------------------------------------------------
MediaQueries
-------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------*/
@media screen and (max-width: 1900px) {
  .hero .bg-img img {
    top: -120vw;
  }
  .to-top-link {
    right: 0rem;
  }
} /* Ende 1900 */
@media screen and (max-width: 1500px) {
  html {
    font-size: 1.5vw;
  }
  .main-nav ul a {
    font-size: var(--txt-m);
  }
} /* Ende 1500 */
@media screen and (max-width: 1300px) {
  .grid-header {
    display: block;
  }
  .logo {
    width: 200px;
  }
  .hero .bg-img img {
    top: -115vw;
  }
  /* Navigation
  -----------------------------------------------------------*/
  #hamburger {
    display: block;
  }
  .main-nav {
    margin: var(--l) 0 0 0;
    display: none;
  }
  .main-nav ul {
    display: block;
  }
  .main-nav ul li {
    text-align: left;
    margin-bottom: var(--s);
  }
} /* Ende 1300 */
@media screen and (max-width: 1050px) {
  html {
    font-size: 18px;
  }
  .cta-link {
    margin: 0 auto;
    width: 13.5rem;
  }
  .hero .bg-img img {
    top: -115vw;
  }
  .grid-2, .grid-3, .grid-2-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-2-1 > .grid-item:first-child {
    grid-column: 1/2;
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Struktur
  -----------------------------------------------------------*/
  .trenner-hellblau-rot,
  .trenner-dunkelblau-hellblau,
  .trenner-rot-dunkelblau,
  .trenner-hellblau-dunkelblau {
    height: 10.5rem;
  }
  .grid-gallery,
  .grid-gallery.reverse {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "big  big" "small1 small2" "full full";
  }
  .grid-gallery.small {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "big  big" "small1 small2";
  }
} /* Ende 1050 */
@media screen and (max-width: 760px) {
  :root {
    --txt-s: 0.8rem;
    --txt-m: 1rem;
    --txt-l: 1.15rem;
    --txt-xl: 1.5rem;
    --txt-xxl: 2rem;
  }
  .grid-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hero .bg-img img {
    top: -90vw;
  }
  /* Struktur
  -----------------------------------------------------------*/
  .trenner-hellblau-rot,
  .trenner-dunkelblau-hellblau,
  .trenner-rot-dunkelblau,
  .trenner-hellblau-dunkelblau {
    height: 8rem;
  }
  .modul > img {
    max-width: 140px;
  }
  .team-home img {
    margin: 0 auto;
    width: 13.5rem;
  }
  .team-home {
    text-align: center;
  }
} /* Ende 760 */
@media screen and (max-width: 650px) {
  :root {
    --txt-xl: 1.4rem;
    --txt-xxl: 1.9rem;
  }
  .frame {
    width: 92%;
  }
  .grid-feedback,
  .grid-feedback-person,
  .grid-publikationen {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-feedback .portrait-small,
  .grid-publikationen .cover {
    width: 13.5rem;
  }
  .grid-feedback-person .portrait-small {
    width: 13.5rem;
    max-width: 13.5rem;
    float: none;
  }
  .col-2 {
    column-count: 1;
  }
  .to-top-link {
    width: 1.5rem;
    height: 1.5rem;
    bottom: -4rem;
  }
  .hero {
    padding: var(--l) 0;
    height: auto;
    max-height: none;
    min-height: 0;
  }
  .hero .bg-img img {
    top: -50vw;
  }
  .table-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .table-row h3 {
    margin: 0 1rem;
  }
  .table-row p {
    margin: 0 1rem;
  }
  .table-row p:last-child {
    margin: 0 1rem;
  }
  .logo {
    width: 170px;
  }
} /* Ende 650 */
@media screen and (max-height: 1200px) {
  :root {
    --txt-xxl: 2.3rem;
  }
  html {
    font-size: 20px;
  }
  .grid-header {
    grid-template-columns: 200px 1fr;
  }
  .site-header {
    padding: var(--s) 0;
  }
  .hero .bg-img img {
    top: -120vw;
  }
  /* Struktur
  -----------------------------------------------------------*/
  .trenner-hellblau-rot,
  .trenner-dunkelblau-hellblau,
  .trenner-rot-dunkelblau,
  .trenner-hellblau-dunkelblau {
    height: 10.5rem;
  }
} /* Ende height 1200 */
/* Clearfix
-----------------------------------------------------------*/
.group:after {
  content: "";
  display: table;
  clear: both;
}
