@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-link: #B58D95;
  --color-rot: #e76177;
  --color-text: #000000;
  --color-main: #C7AEB3;
  --color-bg: #FAF5F4;
  --color-gray-light: #C4C2C2;
  --color-mentorin: #916977;
  --color-mentorin-light: #EBE7E9;
  --color-therapeutin: #7F8F69;
  --color-therapeutin-light: #EDEFEC;
  --color-referentin: #88CCCC;
  --color-referentin-light: #F2FAFA;
  --color-referentin-link: #62BAC1;
  --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.5rem;
  --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-main {
  color: var(--color-main);
}

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

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

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

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

.color-mentorin-light {
  color: var(--color-mentorin-light);
}

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

.color-therapeutin-light {
  color: var(--color-therapeutin-light);
}

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

.color-referentin-light {
  color: var(--color-referentin-light);
}

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

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

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

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

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

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

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

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

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

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

/* 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
-----------------------------------------------------------*/
/* quicksand-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  src: url("webfonts/quicksand-v31-latin-regular.woff2") format("woff2");
}
/* quicksand-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  src: url("webfonts/quicksand-v31-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: "Quicksand", Lucida, Verdana, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  background-repeat: no-repeat;
  background-size: 2200px auto;
  background-position: center top;
  /* 	min-height: 100vh;
  	display: grid;
  	grid-template-rows: auto 1fr auto;
  */
}

body.body-mentorin {
  background: var(--color-mentorin-light);
}

body.body-therapeutin {
  background: var(--color-therapeutin-light);
}

body.body-referentin {
  background: var(--color-referentin-light);
}

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

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

.grid-2, .grid-3, .grid-2-1, .grid-4, .grid-header, .grid-feedback, .grid-publikationen, .table-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 3.5739814153%;
  grid-row-gap: 0px;
  /* 
  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-2-1 > .grid-item:first-child {
  grid-column: 1/3;
}

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

.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-row-gap: var(--line-height);
}

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

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

a {
  color: inherit;
  text-decoration: underline;
  text-decoration: none;
  color: var(--color-link);
}

body.body-mentorin a {
  color: var(--color-mentorin);
}

body.body-therapeutin a {
  color: var(--color-therapeutin);
}

body.body-referentin a {
  color: var(--color-referentin-link);
}

body .site-footer a {
  color: var(--color-text);
}

body.body-mentorin .site-footer a,
body.body-therapeutin .site-footer a,
body.body-referentin .site-footer a {
  color: var(--color-white);
}

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

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

h1, h2 {
  font-size: var(--txt-xxl);
  margin-bottom: var(--l);
  font-weight: 700;
  line-height: 1.1em;
  text-wrap: balance;
  max-width: 40rem;
}

h2.titel-breit {
  max-width: 50rem;
}

h3 {
  font-size: var(--txt-xl);
  margin-bottom: var(--line-height);
  font-weight: 700;
}

h4 {
  font-size: var(--txt-l);
  font-weight: 700;
  line-height: var(--line-height);
}

h5 {
  font-weight: 700;
  line-height: var(--line-height);
}

.body-mentorin h1,
.body-mentorin h2 {
  color: var(--color-mentorin);
}

.body-therapeutin h1,
.body-therapeutin h2 {
  color: var(--color-therapeutin);
}

.body-referentin h1,
.body-referentin h2 {
  color: var(--color-referentin);
}

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

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 {
  height: 12.5rem;
  background-color: var(--color-main);
}

.body-mentorin .trenner {
  background-color: var(--color-mentorin);
}

.body-therapeutin .trenner {
  background-color: var(--color-therapeutin);
}

.body-referentin .trenner {
  background-color: var(--color-referentin);
}

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

body.scrolled .site-header {
  padding: var(--s) 0;
}

.logo {
  display: block;
  border: none;
  padding-bottom: 0.09rem;
}

.logo img {
  transition: width 0.25s ease-out;
}

body.scrolled .logo img {
  width: 70%;
  transition: width 0.25s ease-out;
}

/* Footer
-----------------------------------------------------------*/
.site-footer {
  padding: var(--xxl) 0;
  background-color: var(--color-main);
  color: var(--color-black);
}

.body-mentorin .site-footer {
  background-color: var(--color-mentorin);
  color: var(--color-white);
}

.body-therapeutin .site-footer {
  background-color: var(--color-therapeutin);
  color: var(--color-white);
}

.body-referentin .site-footer {
  background-color: var(--color-referentin);
  color: var(--color-white);
}

.grid-footer {
  display: flex;
  justify-content: space-between;
}

/* Spezifische Formatierungen
-----------------------------------------------------------*/
.hero, .hero-img {
  height: 50vh;
  min-height: 500px;
  max-height: 750px;
  color: var(--color-white);
}

.hero {
  padding: var(--xl) 0;
}

.hero-img img,
.hero img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero h1 {
  max-width: 900px;
  font-weight: 400;
}

.hero a {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-white);
}

/* CTA
---------------------------*/
.cta-link {
  display: block;
  max-width: 10rem;
  transform: scale(1);
  transition: transform 0.3s ease-out;
}

.cta-link:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-out;
}

/* Team Home
---------------------------*/
.team-home {
  display: flex;
  gap: 3.5739814153%;
  margin-bottom: var(--xs);
}

.team-home img,
.portrait {
  width: 13.5rem;
  border-radius: 50%;
}

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

.icon-img {
  width: 65%;
}

/* Modul
---------------------------*/
.angebot {
  padding: 1.5rem 1.25rem 3.8rem 1.25rem;
}

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

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

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

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

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

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

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

.about-block h3:first-child {
  color: var(--color-mentorin);
}

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

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

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

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

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

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

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

.faq-block h3 {
  font-size: var(--txt-m);
  font-weight: 700;
  margin-bottom: 0;
  line-height: var(--line-height);
}

/* Agenda
---------------------------*/
.agendaeintrag {
  background: var(--color-white);
  padding: 1rem;
}

.agendaeintrag h2 {
  font-size: var(--txt-xl);
  margin-bottom: 0;
}

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

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

.grid-feedback p strong {
  color: var(--color-blau-medium);
}

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

h4.person {
  margin-top: -1.2em;
  font-size: var(--txt-m);
  font-weight: 700;
  color: var(--color-mentorin);
}

.body-therapeutin h4.person {
  color: var(--color-therapeutin);
}

.body-referentin h4.person {
  color: var(--color-referentin);
}

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

/* To Top
---------------------------*/
.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-text);
  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-white);
  background: var(--color-main);
  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-mentorin);
  transition: background-color 0.25s, color 0.25s;
}

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

#kontaktForm .errEmpty {
  background: #f9b0b0;
}

.formError {
  color: var(--color-rot);
  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: 700;
  font-size: 1.08333333rem;
  color: var(--color-gray-light);
  transition: color 0.3s ease-out;
}

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

.main-nav ul li:nth-child(1).selected a,
.main-nav ul li:nth-child(1) a:hover {
  color: var(--color-mentorin);
}

.main-nav ul li:nth-child(2).selected a,
.main-nav ul li:nth-child(2) a:hover {
  color: var(--color-therapeutin);
}

.main-nav ul li:nth-child(3).selected a,
.main-nav ul li:nth-child(3) a:hover {
  color: var(--color-referentin);
}

/* 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) {
  .to-top-link {
    right: 0rem;
  }
}
@media screen and (max-width: 1500px) {
  html {
    font-size: 1.5vw;
  }
  .main-nav ul a {
    font-size: var(--txt-m);
  }
}
@media screen and (max-width: 1300px) {
  .grid-header {
    display: block;
  }
  .logo {
    width: 200px;
  }
  /* 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);
  }
  .hero h1 {
    width: 50%;
    font-size: var(--m);
  }
  .hero a {
    display: inline-block;
    width: 60%;
    text-wrap: balance;
    font-size: 1rem;
  }
} /* Ende 1300 */
@media screen and (max-width: 1050px) {
  html {
    font-size: 18px;
  }
  .cta-link {
    margin: 0 auto;
    width: 13.5rem;
  }
  .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));
    grid-row-gap: var(--line-height);
  }
  .grid-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    grid-column-gap: 3.5739814153%;
    grid-row-gap: var(--line-height);
  }
  /* Struktur
  -----------------------------------------------------------*/
  .trenner {
    height: 10.5rem;
  }
} /* 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-footer {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  /* Struktur
  -----------------------------------------------------------*/
  .trenner {
    height: 8rem;
  }
  .modul > img {
    max-width: 140px;
  }
} /* Ende 760 */
@media screen and (max-width: 650px) {
  :root {
    --txt-xl: 1.4rem;
    --txt-xxl: 1.9rem;
  }
  .frame {
    width: 92%;
  }
  .grid-feedback,
  .grid-publikationen {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-feedback .portrait-small,
  .grid-publikationen .cover {
    width: 13.5rem;
  }
  .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;
  }
  .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;
  }
  .hero h1 {
    font-size: 1.2rem;
    width: 65%;
  }
  .hero a {
    font-size: 1rem;
  }
} /* 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;
  }
  /* Struktur
  -----------------------------------------------------------*/
  .trenner {
    height: 10.5rem;
  }
} /* Ende height 1200 */
/* Clearfix
-----------------------------------------------------------*/
.group:after {
  content: "";
  display: table;
  clear: both;
}
