@charset "UTF-8";
/* NET INSTITUTE */


@font-face {
  font-family: "NunitoSans";
  src: url("/static/font/NunitoSans-VariableFont.ttf");
  font-weight: 200 1000;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;

}


@font-face {
  font-family: "NunitoSans";
  src: url("/static/font/NunitoSans-Italic-VariableFont.ttf");
  font-weight: 200 1000;
  font-optical-sizing: auto;
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;

}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  font-family: var(--font-sans);
}

:root {
  --page-width: 1300px;
  --color-first: rgb(65, 68, 99);
  --color-first-light: rgb(226, 227, 231);
  --color-first-lightest: rgb(232, 240, 242);
  --color-second: rgb(207, 32, 62);
  --color-second-dark: rgb(134, 10, 32);
  --color-second-light: rgb(236, 179, 189);
  --color-second-text: rgb(255, 255, 255);
  --color-second-transparent: rgba(207, 32, 62, 0.8);
  --color-third: rgb(24, 107, 127);
  --color-third-light: rgb(79, 164, 185);
  --color-background: rgb(51, 51, 51);
  --color-background-page: rgb(255, 255, 255);
  --font-sans: NunitoSans, serif;
  --swiper-pagination-color: var(--color-third);
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-width: 10px;
}

body.noscroll {
  height: 100%;
  overflow: hidden;
}

body {
  min-width: 320px;
}

#page {
  background-color: var(--color-background);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
}

#wrapper {
  width: 100%;
  position: relative;
  max-width: var(--page-width);
  background-color: var(--color-background-page);
}
#wrapper.blur {
  filter: blur(10px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.blendingLayer, .contentbild .bu::before, .contenttext.headline::before, #mood .contenttext h1 > span::before, #mood .contentbild .bu::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: var(--color-third);
  mix-blend-mode: multiply;
  z-index: 1;
  transition: all 0.25s ease-in-out;
}

header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 20px 20px 20px 60px;
}

#logo {
  width: 200px;
  height: auto;
  position: relative;
  top: 50px;
  z-index: 50;
  /*&:focus-within {
  	box-shadow: 0px 0px 0px 5px white, 0px 0px 0px 7px var(--color-third);
  }*/
}

nav {
  flex-grow: 1;
  display: flex;
}

.menu__list {
  display: flex;
  list-style-type: none;
}
.menu__list--level-2 {
  position: absolute;
  flex-direction: column;
  display: none;
  background-color: white;
  z-index: 100;
  border-radius: 0 0 10px 10px;
}
.menu__item:hover .menu__list, .menu__item:focus-within .menu__list {
  display: flex;
}
.menu__item--level-1 + li {
  margin-left: 7px;
}
.menu__item--order-00 {
  display: none;
}
.menu__link {
  display: block;
  padding: 5px 10px;
  font-size: 1.2rem;
  color: var(--color-first);
  position: relative;
}
.menu__link span {
  position: relative;
}
.menu__link span::after {
  content: "";
  height: 2px;
  background-color: var(--color-second);
  width: 0;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  bottom: 0px;
  transition: all 0.375s ease-in-out;
  position: absolute;
}
.menu__link:hover span::after, .menu__link:focus span::after, .menu__link--active span::after {
  width: 100%;
}
.menu__link--highlight {
  background-color: var(--color-second);
  color: white;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
  padding: 10px 10px 15px;
  position: relative;
  top: 0px;
  transition: all 500ms;
}
.menu__link--highlight span::after {
  display: none;
}
.menu__link--highlight:hover, .menu__link--highlight:focus, .menu__link--highlight.link--active {
  background-color: var(--color-second-dark);
}
.menu__link--level-2 {
  font-size: 1rem;
}
.menu__item--child-active > .menu__link span::after {
  width: 100%;
  background-color: var(--color-second-light);
}

#menuTop {
  position: absolute;
  right: 20px;
  top: 0;
  background-color: var(--color-first-light);
  border-radius: 0 0 20px 20px;
  padding: 10px 20px 10px 10px;
}
#menuTop .menu__link {
  display: inline;
}

#menuMain {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menuIcon {
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 80px;
  z-index: 130;
}
#menuIcon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  top: 6px;
  left: 0;
  background-color: var(--color-third);
  transition: all 0.5s;
}
#menuIcon span:nth-of-type(2) {
  top: 24px;
  transition: all 0.4s;
}
#menuIcon span:nth-of-type(3) {
  top: 42px;
}
#menuIcon:hover span {
  background-color: var(--color-second);
}
#menuIcon.open span {
  background-color: var(--color-second);
}
#menuIcon.open span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 24px;
}
#menuIcon.open span:nth-of-type(2) {
  left: 20px;
  opacity: 0;
  width: 0;
}
#menuIcon.open span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 25px;
}

.skip-navigation {
  background-color: var(--color-second);
  padding: 0.5em 0.75em;
  color: var(--color-second-text);
  transition: 500ms;
  transform: translateY(-120%);
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 0 0 15px 15px;
  position: absolute;
  width: max-content;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
}

.skip-navigation:focus {
  transform: translateY(0);
  background-color: var(--color-first);
  outline: none;
}

#mood, #moodStartseite {
  display: flex;
  width: 100%;
  position: relative;
  /* Änderung Bildgrößen auf Kundenwunsch */
  padding: 0 10%;
  background-color: var(--color-third);
}

#mood .contentbild,
#moodStartseite .contentbild{
  flex: 1;
  isolation: isolate;
  margin: 0;
}
#mood .contentbild img {
  filter: grayscale(1);
  width: 100%;
}
#mood .contentbild.farbig img {
  filter: none;
}
#mood .contentbild.logo {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 100;
}

#mood .contentbild .bu,
#moodStartseite .contentbild .bu{
  position: absolute;
  bottom: 0;
  color: white;
  padding: 10px 20px;
  right: 40px;
  left: unset;
}
#mood .contentbild .bu h1,
#moodStartseite .contentbild h1,
#mood .contentbild .bu h2,
#mood .contentbild .bu h3,
#mood .contentbild .bu p {
  position: relative;
  z-index: 5;
  margin: 0;
  padding: 0;
}
#mood .contentbild .bu::before,
#moodStartseite .contentbild .bu::before {
  background-color: var(--color-third);
  border-radius: 10px 10px 0 0;
}
#mood .contentbild .bu > :first-child,
#moodStartseite  .contentbild .bu > :first-child{
  margin-top: 0;
}
#mood .contentbild .bu > :last-child,
#moodStartseite .contentbild .bu > :last-child {
  margin-bottom: 0;
}

#mood a.contentbild .bu {
  left: 40px;
  text-align: center;
  margin: 0 auto;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 1200px) {
  #mood a.contentbild .bu {
    left: 20px;
    right: 20px;
  }
}

#mood .contentbildcontainer {
  overflow: hidden;
}

#mood a.contentbild:hover .bu,
#mood a.contentbild:focus-within .bu {
  padding-bottom: 16px;
}
#mood a.contentbild:hover .bu::before,
#mood a.contentbild:focus-within .bu::before {
  background-color: var(--color-second);
}

#mood a.contentbild img {
  transition: all 0.5s ease-in-out;
}

#mood a.contentbild:hover img,
#mood a.contentbild:focus-within img {
  transform: scale(1.05);
}

#mood .contenttext {
  position: absolute;
  bottom: 120px;
  background: none;
  padding: 0;
  margin: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
#mood .contenttext h1 {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 3.5rem;
}
#mood .contenttext h1 > span {
  position: relative;
}
#mood .contenttext h1 > span::before {
  background-color: var(--color-third);
}
#mood .contenttext h1 > span.firstLine {
  left: -50px;
  padding: 3px 20px 3px;
}
#mood .contenttext h1 > span.firstLine::before {
  border-radius: 10px 10px 0 0;
}
#mood .contenttext h1 > span.secondLine {
  padding: 2px 20px 5px;
  left: 50px;
}
#mood .contenttext h1 > span.secondLine::before {
  border-radius: 0 10px 0 0;
}
#mood .contenttext h1 > span span.inner {
  position: relative;
  z-index: 5;
}
@media (max-width: 1200px) {
  #mood .contenttext h1 {
    font-size: 2.1rem;
  }
}

h1 {
  font-size: 3rem;
  line-height: 130%;
  font-weight:800;
}

h2 {
  color: var(--color-first);
  font-size: 1.75rem;
  margin: 0.5em 0 0.125em;
  line-height: 120%;
  font-weight:800;
}

h3 {
  color: var(--color-first);
  font-size: 1.5rem;
  margin: 0.5em 0 0.125em;
  line-height: 120%;
  font-weight:800;

}

h4 {
  color: var(--color-first);
  font-size: 1.25rem;
  margin: 0.625em 0 0.125em;
  line-height: 120%;
  font-weight:750;

}

h5 {
  color: var(--color-first);
  font-size: 1.75rem;
  margin: 0 0 0.625em 1.25em;
  line-height: 120%;
}

p {
  font-size: 1.125rem;
  margin: 0.375em 0 0.125em;
}

a {
  color: var(--color-third);
  transition: color 200ms;
}

section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #e7e7e7;
}

#tinymce ul,
#main-content ul {
  margin-top: 0.375em;
}
#tinymce ul li::before,
#main-content ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--color-third);
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: 10px;
}
#tinymce ol,
#main-content ol {
  counter-reset: ordered-list;
}
#tinymce ol li,
#main-content ol li {
  padding-left: 20px;
  counter-increment: ordered-list;
}
#tinymce ol li::before,
#main-content ol li::before {
  content: counter(ordered-list) ". ";
  text-align: right;
  color: var(--color-third);
  font-weight: 700;
  position: absolute;
  left: 0;
}
#tinymce li,
#main-content li {
  font-size: 1.125rem;
  margin: 0 0 0.125em;
  position: relative;
  padding-left: 15px;
  list-style-type: none;
}
#tinymce li:last-of-type,
#main-content li:last-of-type {
  margin-bottom: 0;
}
#tinymce a,
#main-content a {
  text-decoration: underline;
}
#tinymce a:hover, #tinymce a:focus,
#main-content a:hover,
#main-content a:focus {
  color: var(--color-second);
}

.contentelement + .contentelement {
  margin-top: 20px;
}

.contenttext {
  margin-bottom: 20px;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}
.contenttext > :first-child {
  margin-top: 0;
}
.contenttext > :last-child {
  margin-bottom: 0;
}
.contenttext.headline {
  display: table;
  padding: 10px 20px;
  background-color: unset;
  isolation: isolate;
}
.contenttext.headline h1,
.contenttext.headline h2,
.contenttext.headline h3,
.contenttext.headline p {
  color: white;
  position: relative;
  z-index: 2;
}
.contenttext.headline p {
  margin-top: 0;
}
.contenttext.headline::before {
  border-radius: 20px 20px 0 0;
}
.contenttext + .contenttext {
  margin-top: 20px;
}

.contentdownload {
  margin-bottom: 20px;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.contentdownload h4 {
  margin-top: 0;
}
.contentdownload .downloadicon {
  background-image: url("/static/img/icon_pdf.svg");
  background-repeat: no-repeat;
  width: 40px;
  height: 44px;
  margin-right: 15px;
  background-size: 100%;
}
.contentdownload .bu {
  padding-left: 15px;
  border-left: 1px solid var(--color-third);
}

.contentbild {
  position: relative;
  isolation: isolate;
}
.contentbild .bu {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  color: white;
  padding: 5px 10px;
  text-align: center;
}
.contentbild .bu * {
  position: relative;
  z-index: 2;
}
.contentbild .bu > :first-child {
  margin-top: 0;
}
.contentbild .bu > :last-child {
  margin-bottom: 0;
}
.contentbild .bu::before {
  border-radius: 20px 20px 0 0;
}
.contentbild.zitat img {
  filter: grayscale(0.2) brightness(0.7);
}
.contentbild.zitat .bu {
  text-align: center;
  left: 0 !important;
  top: 0;
  right: 0 !important;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
}
.contentbild.zitat .bu p {
  font-size: 2rem;
}
.contentbild.zitat .bu h4 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 10px;
  color: white;
}
.contentbild.zitat .bu h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 10px;
}
.contentbild.zitat .bu::before {
  display: none;
}

#spalteGesamt {
  width: 100%;
}

#spalteBreit {
  width: calc(75% - 15px);
  padding: 40px;
}
#spalteBreit .contentbild {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
#spalteBreit .contentbild .contentbildcontainer {
  flex-shrink: 0;
}
#spalteBreit .contentbild .contentbildcontainer img {
  width: 100%;
  height: auto;
}
#spalteBreit .contentbild.publikation {
  flex-direction: row;
  align-items: center;
}
#spalteBreit .contentbild.publikation .contentbildcontainer {
  width: 150px;
  padding: 20px 0px 20px 20px;
}
#spalteBreit .contentbild.videothumbnail {
  flex-direction: row;
  align-items: center;
}
#spalteBreit .contentbild.videothumbnail .contentbildcontainer {
  width: 350px;
}
#spalteBreit .contentbild.teambild {
  flex-direction: row;
  align-items: center;
}
#spalteBreit .contentbild.teambild .contentbildcontainer {
  width: 250px;
  align-self: flex-start;
}
#spalteBreit .contentbild.videothumbnail .bu, #spalteBreit .contentbild.publikation .bu, #spalteBreit .contentbild.teambild .bu {
  padding: 20px 0;
  position: static;
  color: black;
  text-align: left;
  padding: 20px;
}
#spalteBreit .contentbild.videothumbnail .bu::before, #spalteBreit .contentbild.publikation .bu::before, #spalteBreit .contentbild.teambild .bu::before {
  display: none;
}
#spalteBreit .contentbild.videothumbnail {
  align-items: flex-start;
}
#spalteBreit .contentbild.videothumbnail .contentbildcontainer {
  overflow: hidden;
  position: relative;
}
#spalteBreit .contentbild.videothumbnail .contentbildcontainer::before {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-second-transparent);
  background-image: url("/static/img/icon_play.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  border-radius: 100%;
  display: block;
  transition: all 500ms;
}
#spalteBreit .contentbild.videothumbnail .contentbildcontainer:hover::before {
  transform: translate(-50%, -50%) scale(1.2);
}
#spalteBreit .contentbild.videothumbnail .bu {
  height: auto;
  overflow: hidden;
  height: 175px;
  cursor: s-resize;
  transition: all 500ms;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
#spalteBreit .contentbild.videothumbnail .bu.aufgeklappt {
  height: auto;
  mask-image: unset;
}

#spalteSchmal {
  width: calc(25% - 15px);
  padding: 40px 0;
}
#spalteSchmal .contentbild {
  overflow: hidden;
}
#spalteSchmal .contentbild:first-of-type {
  border-top-right-radius: 20px;
}
#spalteSchmal .contentbild:last-of-type {
  border-bottom-right-radius: 20px;
}

footer {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}
footer nav {
  flex-grow: 0;
}

#popup .button,
#main-content .button {
  border-width: 1px;
  border-style: solid;
  border-color: currentColor;
  border-radius: 10px 10px 0 0;
  color: var(--color-second);
  background-color: unset;
  font-size: 1.25rem;
  padding: 0.125em 0.25em;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  text-decoration: none;
}
#popup .button:hover,
#main-content .button:hover {
  background-color: var(--color-second-dark);
  border-color: var(--color-second-dark);
  color: white;
}
#popup .button--priority,
#main-content .button--priority {
  color: white;
  background-color: var(--color-second);
  border-width: 0px;
}
#popup .button--rounded,
#main-content .button--rounded {
  border-radius: 10px;
  border: 1px solid currentColor;
  color: var(--color-second);
}

.lineThrough {
  text-decoration: line-through;
}

#sperrebene {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
#sperrebene.visible {
  display: flex;
}
#sperrebene #popup {
  width: 600px;
  max-height: 90vh;
  border-radius: 20px;
  overflow: scroll;
  scrollbar-width: none;
}

#scrollbanner {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: var(--color-third);
  cursor: pointer;
  color: white;
  padding: 5px;
  font-size: 1rem;
  transition: background-color 0.2s;
}
#scrollbanner:hover {
  background-color: var(--color-second);
}

.contentelement.inaktiv {
  outline: 1px solid red;
}

/* zitat nur text*/
.contenttext.zitat {
  background: white url("/static/img/anfuehrung.svg") no-repeat;
  background-size: 30px;
  background-position: 10px 20px;
  margin: 140px 0 30px 20px;
  padding-left: 55px;
}
.contenttext.zitat > p {
  font-size: 1rem;
}

@media (max-width: 1200px) {
  header {
    padding-left: 30px;
  }
  #logo {
    width: 160px;
  }
  .menu__link {
    font-size: 1.1rem;
  }
}
@media (max-width: 1100px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  header {
    justify-content: space-between;
    padding-top: 0;
    margin-top: -20px;
  }
  footer {
    justify-content: center;
  }
  #mood {
    padding: 0 5%;
  }
  header nav {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-first-light);
    z-index: 120;
    opacity: 0;
    transition: opacity 0.4s, left 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header nav #menuMain {
    margin-left: 0;
    order: 1;
    padding: 30px 0;
  }
  header nav #menuTop {
    width: 100%;
    position: static;
    order: 2;
    border-top: 2px dotted var(--color-third);
    padding: 30px 0 130px;
  }
  header nav #menuTop .menu__link {
    display: block;
  }
  header nav #menuTop .menu__item--first .menu__link {
    margin-top: 0;
  }
  header nav.visible {
    left: 0;
    opacity: 1;
    height: 100vh;
    overflow: scroll;
  }
  header nav .menu {
    max-width: 600px;
  }
  header nav .menu__list {
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  header nav .menu__list--level-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: unset;
    position: relative;
  }
  header nav .menu__item--level-1 + li {
    margin-left: unset;
  }
  header nav .menu__item--order-00 {
    display: block;
  }
  header nav .menu__item--order-00 .menu__link {
    margin-top: 0;
  }
  header nav .menu__item--highlight {
    display: none;
  }
  header nav .menu__link {
    text-align: center;
  }
  header nav .menu__link--level-1 {
    font-size: 1.6rem;
    margin-top: 0.7em;
  }
  #menuIcon {
    display: block;
    top: 35px;
  }
  #spalteSchmal {
    width: 100%;
    order: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 20px 30px;
  }
  #spalteSchmal .contentbild {
    width: calc(33.33% - 20px);
    min-width: 250px;
    border-radius: 20px;
    margin: 10px;
  }
  #spalteBreit {
    width: 100%;
    order: 2;
    padding: 20px;
  }
  #mood .contentbild .bu {
    left: 20px;
    right: 20px;
  }
}
@media (max-width: 880px) {
  h1 {
    font-size: 2rem;
  }
  #mood {
    padding: 0; /* Wieder volle Breite f+r die Mood-Bilder */
  }
  #mood .contenttext {
    bottom: 40px;
  }
  #mood a.contentbild .bu {
    display: none;
  }
  #mood .contentbild .bu {
    position: static;
    background-color: var(--color-third);
  }
  #mood .contentbild .bu::before {
    display: none;
  }
  #mood .contentbild.logo {
    width: max(130px, 25vw);
  }
  #spalteSchmal .contentbild {
    width: calc(50% - 20px);
  }
  .contentbild.zitat .bu p {
    font-size: 1.5rem;
  }
  #spalteBreit .contentbild.videothumbnail .contentbildcontainer {
    width: 250px;
  }
  #spalteBreit .contentbild.videothumbnail .bu {
    height: 135px;
  }
}
@media (max-width: 700px) {
  .swiper-pagination {
    display: none;
  }
}
@media (max-width: 640px) {
  #spalteBreit .contentbild.teambild .contentbildcontainer {
    width: 150px;
  }
  .contentbild.zitat .bu p {
    font-size: 1.375rem;
  }
}
@media (max-width: 540px) {
  #spalteBreit .contentbild.teambild {
    flex-direction: column;
  }
  #spalteBreit .contentbild.teambild .contentbildcontainer {
    width: 100%;
    height: 450px;
    overflow: hidden;
  }
  .contentbild.zitat .bu p {
    font-size: 1.25rem;
  }
  #spalteBreit .contentbild.videothumbnail {
    flex-direction: column;
  }
  #spalteBreit .contentbild.videothumbnail .contentbildcontainer {
    width: 100%;
  }
  #spalteBreit .contentbild.videothumbnail .bu {
    height: 160px;
  }
  #scrollbanner {
    font-size: 1.25rem;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  header {
    margin-top: 0;
    padding-top: 20px;
  }
  #logo {
    top: unset;
  }
  #spalteSchmal .contentbild {
    margin: 20px 0 0;
  }
  #spalteSchmal .contentbild img {
    min-width: 285px;
  }
  #mood .contenttext {
    bottom: 20px;
  }
  #mood .contenttext h1 {
    font-size: 1.8rem;
  }
  #mood .contenttext h1 > span.firstLine {
    left: -20px;
  }
  footer .menu__list {
    flex-direction: column;
  }
  footer .menu__item {
    margin-top: 10px;
  }
  footer .menu__item--level-1 + li {
    margin-left: 0;
    margin-top: 0;
  }
  footer .menu__link {
    text-align: center;
  }
  .contentbild.zitat .bu {
    padding: 10px;
  }
  .contentbild.zitat .bu p {
    font-size: 0.875rem;
  }
}
@media (max-width: 380px) {
  #spalteSchmal .contentbild {
    width: 100%;
    max-width: unset;
  }
  #mood .contenttext {
    bottom: 10px;
  }
  #mood .contenttext h1 > span.secondLine {
    left: 0px;
  }
}
/* TinyMCE */
.mce-container,
.mce-container *,
.mce-widget,
.mce-widget *,
.mce-reset {
  --font-sans: initial;
}

.editmode #cmsPage #mood .contentbild ul.cmsEditElement.cmsMenuButtons {
  top: 30px;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-delay: 0ms !important;
  }
}

/*# sourceMappingURL=base.css.map */
