@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
/******** LANDSCAPE **********/
/******** PORTRAIT **********/
@media screen and (min-width: 1400px) {
  #hamburger {
    display: none;
  }
}

.icon-wrapper {
  position: fixed;
  background-color: white;
  z-index: 2;
  border-radius: 50%;
  top: -1.8rem;
  text-align: center;
  left: 1.5rem;
  height: 90px;
  width: 90px;
}
.icon-wrapper .nav-icon {
  position: relative;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin-top: 31px;
  width: 50px;
}
.icon-wrapper .nav-icon span {
  background-color: var(--color-text);
  position: absolute;
  border-radius: 3px;
  width: 100%;
  height: 4px;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 10px;
  left: 0px;
  transition: 0.3s ease-in-out;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 19px;
  left: 0px;
  opacity: 1;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 28px;
  left: 0px;
  transition: 0.3s ease-in-out;
}
.icon-wrapper.open {
  background-color: unset;
}
.icon-wrapper.open .nav-icon {
  width: 50px;
  height: 50px;
  translate: -10px 5px;
}
.icon-wrapper.open .nav-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}
.icon-wrapper.open .nav-icon span:nth-child(2) {
  opacity: 0;
}
.icon-wrapper.open .nav-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}
.icon-wrapper:not(.open) .nav-icon:hover span:nth-child(1) {
  transform: translateY(-4px);
}
.icon-wrapper:not(.open) .nav-icon:hover span:nth-child(3) {
  transform: translateY(4px);
}

.blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  overflow: hidden;
  height: 100vh;
  z-index: 1;
}
.blocker.open {
  display: block;
}

#toggle-menu {
  transform: translate(-100vw);
  position: fixed;
  top: 0;
}
#toggle-menu.open {
  transform: translate(0);
  transition: 0.3s ease-in;
  left: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
@media screen and (min-width: 360px) {
  #toggle-menu.open {
    right: auto;
  }
}
#toggle-menu a {
  color: var(--color-text);
}
#toggle-menu .mobile-menu {
  padding: 3em 1em;
}
#toggle-menu .mobile-menu > div {
  padding-top: 0.3rem;
}
#toggle-menu .mobile-menu .legal-menu {
  padding-top: 2rem;
}
#toggle-menu .mobile-menu .legal-menu > div {
  padding-top: 0.3rem;
}

/************** DESKTOP MENU **************/
.page-template-home .home {
  display: none;
}

.menu {
  display: none;
}
@media screen and (min-width: 1400px) {
  .menu {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    bottom: 5rem;
    position: absolute;
    width: 100vw;
    padding: 0 1rem;
    max-width: 100vw;
  }
  .menu .home {
    border-radius: 50%;
    height: 60px;
    width: 60px;
    transition: 0.5s ease-in-out;
  }
}
@media screen and (min-width: 1400px) and (min-width: 1600px) {
  .menu .home {
    position: absolute;
    left: 2rem;
    bottom: -0.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .menu .home .main-menu-item {
    padding: 0;
    min-width: unset;
  }
  .menu .home .main-menu-item[active], .menu .home .main-menu-item:hover {
    background-color: unset;
  }
}
@media screen and (min-width: 1400px) {
  .menu .home a {
    font-size: 0.8rem;
    color: black;
  }
}
.menu > div {
  position: relative;
  align-content: center;
}
@media screen and (min-width: 1400px) {
  .menu > div {
    background-color: var(--color-white);
  }
  .menu > div[active], .menu > div:hover {
    background-color: var(--color-bubble-mint);
  }
}
.menu a {
  display: block;
  color: var(--color-text);
}
@media screen and (min-width: 1400px) {
  .menu a {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1800px) {
  .menu a {
    font-size: 1.4rem;
  }
}

.main-menu-item:not(footer .main-menu-item) {
  padding-top: 0.2rem;
}
@media screen and (min-width: 1400px) {
  .main-menu-item:not(footer .main-menu-item) {
    padding: 0.5rem;
    text-align: center;
    min-width: 160px;
  }
}
@media screen and (min-width: 1600px) {
  .main-menu-item:not(footer .main-menu-item) {
    padding: 0.5rem 1rem;
  }
}
.main-menu-item:not(footer .main-menu-item) a {
  font-family: var(--font-bold);
}
@media screen and (min-width: 1400px) {
  .main-menu-item:not(footer .main-menu-item) a {
    font-family: var(--font-text);
  }
}

.sub-menu:not(footer .sub-menu) {
  transition: max-height 3s ease-in-out;
  overflow: hidden;
  hyphens: auto;
}
@media screen and (min-width: 1400px) {
  .sub-menu:not(footer .sub-menu) {
    position: absolute;
    z-index: -1;
    opacity: 0;
    max-height: 0;
  }
}
@media screen and (min-width: 1800px) {
  .sub-menu:not(footer .sub-menu) a {
    font-size: 1.2rem;
  }
}
.sub-menu:not(footer .sub-menu).show {
  opacity: 1;
  z-index: 1000;
  position: relative;
  max-height: unset;
  width: 100%;
}
@media screen and (min-width: 1400px) {
  .sub-menu:not(footer .sub-menu).show {
    position: absolute;
  }
}
.sub-menu:not(footer .sub-menu) > div {
  padding-top: 0.5rem;
  cursor: pointer;
}
.sub-menu:not(footer .sub-menu) > div:last-of-type {
  padding-bottom: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .sub-menu:not(footer .sub-menu) > div:last-of-type {
    padding-bottom: 0.5rem;
  }
}
.sub-menu:not(footer .sub-menu) > div.active a, .sub-menu:not(footer .sub-menu) > div[active] a {
  background-color: var(--color-bubble-mint);
}
@media screen and (min-width: 1400px) {
  .sub-menu:not(footer .sub-menu) > div.active a, .sub-menu:not(footer .sub-menu) > div[active] a {
    background-color: unset;
  }
}
@media screen and (min-width: 1400px) {
  .sub-menu:not(footer .sub-menu) > div {
    background-color: var(--color-bubble-mint);
    text-align: right;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
  }
  .sub-menu:not(footer .sub-menu) > div.active, .sub-menu:not(footer .sub-menu) > div[active] {
    background-color: #d4fdef;
    pointer-events: none;
    cursor: default;
  }
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/BeVietnamPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Bold";
  src: url("../fonts/BeVietnamPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "SemiBold";
  src: url("../fonts/BeVietnamPro-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Italic";
  src: url("../fonts/BeVietnamPro-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Black";
  src: url("../fonts/BeVietnamPro-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Chewy";
  src: url("../fonts/Chewy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
:root {
  --color-text: rgb(56, 59, 89);
  --color-white: white;
  --color-navi: #000;
  --color-text-blue: rgb(0, 113, 155);
  --color-text-grey: rgb(93, 102, 103);
  --color-text-green: rgb(53, 149, 116);
  --color-headline-turquoise: rgb(0, 171, 174);
  --color-area-bg: rgb(225, 240, 234);
  --color-area-blue: rgb(0, 113, 155);
  --color-area-grey: rgb(85, 124, 134);
  --color-bubble-yellow: rgb(251, 255, 94);
  --color-bubble-rose: rgb(227, 169, 243);
  --color-bubble-light-blue: rgb(0 255 255);
  --color-bubble-mint: rgb(12 247 202);
  --color-area-mint-trans: rgb(12, 247, 202, 0.6);
  --color-card-grey: rgb(85 124 134);
  --color-card-turquoise: rgb(0 171 174);
  --color-card-navi: rgb(142 164 139);
  --color-card-light-blue: #2f92c0;
  --color-card-blue: rgb(0 113 155);
  --font-h1: "Black", serif;
  --font-h2: "Black", serif;
  --font-black: "Black", serif;
  --font-text: "Regular", serif;
  --font-bold: "Bold", serif;
  --font-semi-bold: "SemiBold", serif;
  --font-italic: "Italic", serif;
  --font-chewy: "Chewy", serif;
  --header-height: 15vh;
  --scrolled-header-height: calc(var(--header-height) / 3);
  --max-content-width: 830px;
  --bubble-height: 500px;
}
@media screen and (min-width: 1400px) {
  :root {
    --header-height: 30vh;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/************** GENERAL STYLING **************/
html,
body {
  overflow-x: hidden;
  font-size: 16px;
  scrollbar-color: var(--color-headline-turquoise) var(--color-text);
  scrollbar-width: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  html,
  body {
    overflow-x: unset;
  }
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

body {
  font-family: var(--font-text);
  color: var(--color-text);
  font-size: 1.2rem;
  position: relative;
}
body.block {
  height: 100%;
  overflow: hidden;
}
body > * {
  hyphens: auto;
}
@media screen and (min-width: 360px) {
  body > * {
    hyphens: none;
  }
}

h1 {
  color: var(--color-headline-turquoise);
  font-family: var(--font-h1);
}

h1,
h2 {
  padding-bottom: 1rem;
  font-size: 2rem;
}
@media screen and (min-width: 1200px) {
  h1,
  h2 {
    font-size: 2.6rem;
  }
}

h2 {
  font-family: var(--font-chewy);
  padding-top: 1rem;
}
h2 strong {
  font-family: var(--font-chewy);
}

h3 {
  font-family: var(--font-h2);
  color: var(--color-headline-turquoise);
  padding: 1rem 0;
}

.sr-only {
  position: absolute;
  border: 0 !important;
  clip-path: inset(50%) !important; /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  width: 1px !important;
  white-space: nowrap !important; /* 3 */
}

.font-black {
  font-family: var(--font-black);
}

li {
  margin-left: 1rem;
}
li p {
  padding: 0 0 0.25rem;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  word-wrap: break-word;
  color: black;
}

.content a {
  color: var(--color-card-turquoise);
  transition: all 0.5s ease-in-out;
  word-wrap: break-word;
}
.content a:hover {
  transition: all 0.3s ease-in-out;
  filter: brightness(1.2);
  text-shadow: 1px 1px 10px #fff;
}

p {
  line-height: 1.5;
  padding: 0.5rem 0;
}

img, video {
  width: 100%;
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

strong {
  font-family: var(--font-bold);
  font-weight: normal;
}

em {
  font-family: var(--font-italic);
  color: var(--color-text-blue);
  font-style: normal;
}

.white {
  color: white;
}
.white a {
  color: var(--color-bubble-yellow);
}

.grey {
  background-color: var(--color-card-grey);
}

.turquoise {
  background-color: var(--color-card-turquoise);
}

.navi {
  background-color: var(--color-card-navi);
}

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

.blue {
  background-color: var(--color-card-blue);
}

@media screen and (min-width: 768px) and (orientation: portrait) {
  .mobile-only {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .mobile-only {
    display: none !important;
  }
}

.desktop-only {
  display: none !important;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .desktop-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .desktop-only {
    display: flex !important;
  }
}

/************** HEADER **************/
header {
  background-color: var(--color-area-blue);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  max-width: 100vw;
  position: fixed;
  height: var(--header-height);
  top: 0;
  z-index: 10;
}
@media screen and (min-width: 1200px) {
  header {
    position: fixed;
    height: var(--header-height);
    top: 0;
    z-index: 10;
  }
}
header .contact-bubble {
  height: 7rem;
  right: -0.5rem;
  top: -2rem;
  position: absolute;
  z-index: 10;
  background-color: var(--color-bubble-mint);
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-family: var(--font-semi-bold);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (min-width: 576px) {
  header .contact-bubble {
    top: -2rem;
    height: 8rem;
    right: 2rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1600px) {
  header .contact-bubble {
    right: 4rem;
    top: -3rem;
    height: 10rem;
  }
}
header.scrolled {
  top: calc(var(--scrolled-header-height) - 90px);
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 1200px) {
  header.scrolled {
    top: calc(var(--scrolled-header-height) - var(--header-height));
  }
}
header.scrolled .contact-bubble {
  top: 0.5rem;
}
header.scrolled nav {
  bottom: 2.5vh;
  transition: 0.5s ease-in-out;
}
header.scrolled .title-image {
  animation: fadeOut 0.3s ease-in forwards;
}
header .title-image {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: var(--header-height);
  background-position: 35% 40%;
  animation: fadeIn 0.5s ease-in forwards;
  opacity: 0;
}
header .logo {
  cursor: pointer;
  width: 90vw;
  text-align: center;
}
header .logo img {
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}
@media screen and (min-width: 576px) {
  header .logo img {
    width: 70vw;
  }
}

.page-template-home header {
  position: sticky;
  top: calc(90px - 100vh);
  height: auto;
}
@media screen and (min-width: 1200px) {
  .page-template-home header {
    position: sticky;
    top: -90vh;
    height: auto;
  }
}
.page-template-home header .title-image {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bubbles-section {
  justify-items: center;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .bubbles-section {
    padding: 0 calc((100vw - 1200px) / 2);
    margin-top: 3rem;
  }
}
.bubbles-section .bubbles {
  max-width: var(--max-content-width);
  margin: auto;
  transform: scale(0.7);
  position: relative;
  max-height: var(--bubble-height) !important;
  max-width: var(--bubble-height) !important;
}
.bubbles-section .bubbles a:hover {
  filter: unset !important;
  text-shadow: none;
}
.bubbles-section .bubbles .bubble {
  max-height: var(--bubble-height) !important;
  max-width: var(--bubble-height) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-text);
  font-size: 0.9rem;
  color: black;
  padding: 2rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 360px) {
  .bubbles-section .bubbles .bubble {
    font-size: 1rem;
    padding: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .bubbles-section .bubbles .bubble {
    padding: 3rem 3rem 3.5rem;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .bubbles-section .bubbles .bubble {
    padding: 3rem 3rem 3.5rem;
    font-size: 1.1rem;
  }
}
.bubbles-section .bubbles .bubble .bg {
  position: absolute;
  height: auto;
  width: calc(100% + 4rem);
  max-height: var(--bubble-height) !important;
  max-width: var(--bubble-height) !important;
  aspect-ratio: 1/1;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width: 360px) {
  .bubbles-section .bubbles .bubble .bg {
    width: calc(100% + 2rem);
  }
}
.bubbles-section .bubbles .bubble h3,
.bubbles-section .bubbles .bubble h3 strong {
  font-family: var(--font-chewy);
  font-size: 1.5rem;
  color: black;
}
@media screen and (min-width: 576px) {
  .bubbles-section .bubbles .bubble h3,
  .bubbles-section .bubbles .bubble h3 strong {
    font-size: 2.5rem;
    padding: 0 1rem 1rem;
  }
}
.bubbles-section .bubbles .bubble p strong {
  text-transform: uppercase;
}

#was-ist-lde,
#wirkung {
  overflow-x: hidden;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #was-ist-lde .bubbles-section:not(.count-1),
  #wirkung .bubbles-section:not(.count-1) {
    margin: 0 0 5rem !important;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #was-ist-lde .bubbles-section:not(.count-1),
  #wirkung .bubbles-section:not(.count-1) {
    margin: 0 0 5rem !important;
  }
}
@media screen and (min-width: 1200px) {
  #was-ist-lde .bubbles-section:not(.count-1),
  #wirkung .bubbles-section:not(.count-1) {
    margin: 0 0 7rem !important;
  }
}
#was-ist-lde .bubbles-section.count-1,
#wirkung .bubbles-section.count-1 {
  z-index: -1;
}
#was-ist-lde .bubbles-section.count-1 .bubbles,
#wirkung .bubbles-section.count-1 .bubbles {
  margin: auto !important;
}
#was-ist-lde .bubbles-section.count-1 .bubbles.in-view,
#wirkung .bubbles-section.count-1 .bubbles.in-view {
  transform: translate(0);
}
#was-ist-lde .bubbles-section .bubble,
#was-ist-lde .bubbles-section .bubble .bg,
#wirkung .bubbles-section .bubble,
#wirkung .bubbles-section .bubble .bg {
  max-height: 350px !important;
  max-width: 350px !important;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #was-ist-lde .bubbles-section .bubble,
  #was-ist-lde .bubbles-section .bubble .bg,
  #wirkung .bubbles-section .bubble,
  #wirkung .bubbles-section .bubble .bg {
    max-height: var(--bubble-height) !important;
    max-width: var(--bubble-height) !important;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #was-ist-lde .bubbles-section .bubble,
  #was-ist-lde .bubbles-section .bubble .bg,
  #wirkung .bubbles-section .bubble,
  #wirkung .bubbles-section .bubble .bg {
    max-height: var(--bubble-height) !important;
    max-width: var(--bubble-height) !important;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #was-ist-lde .bubbles-section:not(.count-1),
  #wirkung .bubbles-section:not(.count-1) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 5rem 0;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #was-ist-lde .bubbles-section:not(.count-1),
  #wirkung .bubbles-section:not(.count-1) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 5rem 0;
    justify-content: center;
  }
}
#was-ist-lde .bubbles-section .bubbles,
#wirkung .bubbles-section .bubbles {
  transform: translate(-50%, -25%);
  transition: 0.5s cubic-bezier(0, 0, 0.58, 1);
  margin-top: -1rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #was-ist-lde .bubbles-section .bubbles,
  #wirkung .bubbles-section .bubbles {
    margin-top: -2rem;
    transform: translate(-50%, 50%);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #was-ist-lde .bubbles-section .bubbles,
  #wirkung .bubbles-section .bubbles {
    margin-top: -2rem;
    transform: translate(-50%, 50%);
  }
}
#was-ist-lde .bubbles-section .bubbles.small,
#wirkung .bubbles-section .bubbles.small {
  margin-top: -5rem;
  transform: translate(50%, 25%);
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #was-ist-lde .bubbles-section .bubbles.small,
  #wirkung .bubbles-section .bubbles.small {
    margin-left: -2rem;
    transform: translate(50%, 100%);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #was-ist-lde .bubbles-section .bubbles.small,
  #wirkung .bubbles-section .bubbles.small {
    margin-left: -2rem;
    transform: translate(50%, 100%);
  }
}
@media screen and (min-width: 1200px) {
  #was-ist-lde .bubbles-section .bubbles.small,
  #wirkung .bubbles-section .bubbles.small {
    margin-left: -7rem;
    margin-top: -3rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #was-ist-lde .bubbles-section .bubbles.small .bg,
  #wirkung .bubbles-section .bubbles.small .bg {
    transform: scale(0.9);
  }
}
#was-ist-lde .bubbles-section .bubbles:not(.small) .bg,
#wirkung .bubbles-section .bubbles:not(.small) .bg {
  transform: scale(1.1);
}
@media screen and (min-width: 360px) {
  #was-ist-lde .bubbles-section .bubbles:not(.small) .bg,
  #wirkung .bubbles-section .bubbles:not(.small) .bg {
    transform: scale(1.2);
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #was-ist-lde .bubbles-section .bubbles:not(.small) .bg,
  #wirkung .bubbles-section .bubbles:not(.small) .bg {
    transform: scale(1);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #was-ist-lde .bubbles-section .bubbles:not(.small) .bg,
  #wirkung .bubbles-section .bubbles:not(.small) .bg {
    transform: scale(1);
  }
}
#was-ist-lde .bubbles-section .bubbles.in-view,
#wirkung .bubbles-section .bubbles.in-view {
  transform: translate(5%);
}
#was-ist-lde .bubbles-section .bubbles.in-view:nth-of-type(2n),
#wirkung .bubbles-section .bubbles.in-view:nth-of-type(2n) {
  transform: translate(-5%);
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #was-ist-lde .bubbles-section .bubbles.in-view.small,
  #wirkung .bubbles-section .bubbles.in-view.small {
    transform: translate(-5%, 35%);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #was-ist-lde .bubbles-section .bubbles.in-view.small,
  #wirkung .bubbles-section .bubbles.in-view.small {
    transform: translate(-5%, 35%);
  }
}

/************** CONTENT **************/
main {
  max-width: 100vw;
}
main:not(.page-template-home main) {
  margin-top: var(--header-height);
}
@media screen and (min-width: 1200px) {
  main:not(.page-template-home main) {
    margin-top: var(--header-height);
  }
}

.content {
  padding-top: 2rem;
}
.content .block {
  padding: 2rem 1rem 2rem;
}
@media screen and (min-width: 576px) {
  .content .block {
    padding: 2rem;
  }
}
.content .block.bubbles {
  padding: 1rem;
}
.content .block > *:not(.bubbles-section) {
  max-width: 830px;
  margin: auto;
}
.content .block.block-type-headline {
  padding: 0 1rem;
}
.content .block-type-literature {
  color: var(--color-text-blue);
}
.content .block-type-literature h4 {
  text-transform: uppercase;
  font-family: var(--font-semi-bold);
}

.page-template-workshop .content > .block,
.page-template-example .content > .block {
  padding: 1rem;
  max-width: 1200px;
  margin: auto;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-workshop .content > .block,
  .page-template-example .content > .block {
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-template-workshop .content > .block > div,
.page-template-example .content > .block > div {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-workshop .content > .block > div,
  .page-template-example .content > .block > div {
    padding-bottom: 0;
    height: 100%;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-workshop .content > .block .training,
  .page-template-example .content > .block .training {
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-workshop .content > .block .training,
  .page-template-example .content > .block .training {
    grid-row: 1/2;
  }
}
.page-template-workshop .content > .block .description,
.page-template-example .content > .block .description {
  padding: 1rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-workshop .content > .block .description,
  .page-template-example .content > .block .description {
    order: 2;
    grid-row: 1/3;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-workshop .content > .block .description,
  .page-template-example .content > .block .description {
    order: 2;
    grid-row: 1/3;
    padding: 0;
  }
}
.page-template-workshop .content > .block .image img,
.page-template-example .content > .block .image img {
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-workshop .content > .block .image,
  .page-template-example .content > .block .image {
    order: 3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-workshop .content > .block .image,
  .page-template-example .content > .block .image {
    order: 3;
    grid-row: 2/3;
  }
}
.page-template-workshop .content > .block .info,
.page-template-example .content > .block .info {
  width: 100%;
}

.page-template-example h1 {
  text-align: center;
  font-size: 3rem !important;
}

.infoboxes {
  background-color: var(--color-area-grey);
  display: grid;
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .infoboxes {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .infoboxes {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}
.infoboxes a {
  font-family: var(--font-bold);
}
.infoboxes .block-type-text {
  color: white;
  max-width: 400px;
  text-align: center;
}
.infoboxes .block-type-text h1,
.infoboxes .block-type-text h2,
.infoboxes .block-type-text h3 {
  font-family: var(--font-chewy);
  font-size: 2rem;
  padding-bottom: 1rem;
}
.infoboxes .block-type-text:first-of-type h1,
.infoboxes .block-type-text:first-of-type h2,
.infoboxes .block-type-text:first-of-type h3,
.infoboxes .block-type-text:first-of-type a {
  color: var(--color-bubble-light-blue);
}
.infoboxes .block-type-text:nth-of-type(2) h1,
.infoboxes .block-type-text:nth-of-type(2) h2,
.infoboxes .block-type-text:nth-of-type(2) h3,
.infoboxes .block-type-text:nth-of-type(2) a {
  color: var(--color-bubble-yellow);
}
.infoboxes .block-type-text:last-of-type h1,
.infoboxes .block-type-text:last-of-type h2,
.infoboxes .block-type-text:last-of-type h3,
.infoboxes .block-type-text:last-of-type a {
  color: var(--color-bubble-mint);
}

.testimonials .testimonial-card {
  padding: 2rem 0;
  display: grid;
  grid-gap: 1rem;
}
@media screen and (min-width: 576px) {
  .testimonials .testimonial-card {
    grid-template-columns: 30% 65%;
    gap: 5%;
  }
  .testimonials .testimonial-card:nth-child(2n) {
    grid-template-columns: 65% 30%;
  }
  .testimonials .testimonial-card:nth-child(2n) .image {
    order: 2;
  }
}
.testimonials .testimonial-card .name {
  font-family: var(--font-bold);
}
.testimonials .testimonial-card img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.testimonials .testimonial-card:nth-child(3n-2) {
  color: var(--color-text-blue);
}
.testimonials .testimonial-card:nth-child(3n-1) {
  color: var(--color-text-grey);
}
.testimonials .testimonial-card:nth-child(3n) {
  color: var(--color-text-green);
}

.trainings-list {
  display: grid;
  gap: 1rem;
  max-width: 1800px;
  margin: auto;
}
@media screen and (min-width: 576px) {
  .trainings-list {
    padding: 1rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .trainings-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .trainings-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .trainings-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.trainings-list a {
  opacity: 0.5;
}
.trainings-list a.in-view {
  opacity: 1;
}
.trainings-list a:hover {
  filter: brightness(1);
  text-shadow: unset;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .trainings-list .training {
    aspect-ratio: 1/1;
  }
}

.training {
  height: 100%;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out forwards;
  position: relative;
  color: white;
  padding: 1rem;
}
@media screen and (min-width: 360px) {
  .training {
    padding: 2rem;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .training {
    aspect-ratio: unset;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .training {
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .training {
    padding: 2rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .training:nth-of-type(2) {
    order: 3;
    grid-row: 2/3 !important;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .training:nth-of-type(2) {
    order: 3;
    grid-row: 2/3 !important;
  }
}
.training:hover {
  color: white;
  filter: brightness(1.2);
}
.training :not(.small) h1 {
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .training :not(.small) h1 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .training :not(.small) h1 {
    font-size: 3rem;
  }
}
.training .small h1,
.training h2 {
  font-size: 1.4rem;
}
@media screen and (min-width: 1200px) {
  .training .small h1,
  .training h2 {
    font-size: 1.6rem;
  }
}
.training h1,
.training h2 {
  padding: 0;
  color: white;
  font-family: var(--font-h2);
  hyphens: auto;
}
@media screen and (min-width: 576px) {
  .training h1,
  .training h2 {
    hyphens: none;
  }
}
.training p {
  padding: 0;
}
.training .info {
  font-family: var(--font-black);
}
.training .image {
  height: 100%;
  overflow: hidden;
}
.training .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
}

#btt-button {
  opacity: 0;
  position: fixed;
  z-index: 20;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 2rem;
  bottom: 4rem;
  right: 1rem;
  background-color: var(--color-area-mint-trans);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  text-align: center;
}
#btt-button svg {
  height: 100%;
  width: 70%;
}
@media screen and (min-width: 1200px) {
  #btt-button {
    right: 6rem;
  }
}

/************** FOOTER **************/
footer {
  padding: 10rem 2rem 2rem;
  display: grid;
  gap: 2rem;
  max-width: 1500px;
  margin: auto;
  font-size: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer {
    padding: 15rem 3rem 3rem;
  }
}
footer a {
  color: var(--color-text);
}
footer .footer-menu {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 576px) {
  footer .footer-menu {
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  footer .footer-menu {
    grid-template-columns: repeat(3, auto);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer .footer-menu {
    grid-template-columns: repeat(4, auto);
  }
}
footer .footer-menu .main-menu-item {
  font-family: var(--font-semi-bold);
  padding-bottom: 0.25rem;
}
footer .footer-menu .sub-menu > div {
  padding-bottom: 0.25rem;
}
footer strong {
  font-family: var(--font-semi-bold);
}
footer .supporters {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer .supporters {
    grid-template-columns: 75% 20%;
    grid-gap: 5%;
  }
}
footer .supporters .text {
  order: 2;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer .supporters .text {
    grid-row: 1/2;
  }
}
footer .supporters .lde-logo {
  order: 1;
  text-align: center;
}
footer .supporters .lde-logo img {
  max-width: 350px;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer .supporters .lde-logo {
    order: 2;
    grid-row: 1/3;
  }
}
footer .supporters .logos {
  order: 2;
}
@media screen and (min-width: 360px) {
  footer .supporters .logos {
    order: 3;
  }
}
@media screen and (min-width: 576px) {
  footer .supporters .logos {
    grid-row: 2/3;
  }
}

.logos .block {
  padding: 0.5rem;
}
.logos .block img {
  max-height: 60px;
  object-fit: contain;
}
@media screen and (min-width: 360px) {
  .logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .logos {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 360px) {
  .logos:not(.content .logos) {
    gap: 2rem;
  }
}

.news-items {
  padding-top: 1rem;
  max-width: 1400px;
  margin: auto;
  gap: 1rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .news-items {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .news-items {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}
.news-items > div {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .news-items > div .example:nth-of-type(2n) .img-container {
    width: 80%;
  }
  .news-items > div .example:nth-of-type(2n).left {
    left: 20%;
  }
}
.news-items .left-col {
  align-items: end;
}
.news-items .left-col .example {
  display: flex;
  justify-content: end;
}

.examples {
  padding-top: 1rem;
  column-gap: 1rem;
  max-width: 1400px;
  margin: auto;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .examples {
    column-count: 2;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .examples {
    column-count: 2;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .examples .example:nth-child(3n-1) .img-container {
    width: 80%;
  }
  .examples .example:nth-child(3n-1).left {
    left: 20%;
  }
  .examples .example:nth-child(3n-2) .img-container {
    width: 80%;
    position: relative;
  }
  .examples .example:nth-child(3n-2).left {
    left: 20%;
  }
}

.example {
  margin-bottom: 1.5rem;
  position: relative;
  opacity: 0.5;
  transition: all 0.5s ease-in;
}
.example.in-view {
  opacity: 1;
}
.example a:hover {
  filter: brightness(1);
  text-shadow: unset;
}
.example .img-container {
  position: relative;
  break-inside: avoid;
}
.example .example-title {
  margin-top: -10px;
  position: relative;
  text-align: left;
  font-family: var(--font-bold);
  color: white;
  padding: 1rem;
  font-size: 1.2rem;
  width: 100%;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .example .example-title {
    font-size: 1.5rem;
  }
}
.example .example-title.news {
  padding: 2rem 1rem 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .example .example-title.news {
    padding: 2rem;
  }
}
.example .example-content {
  padding: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .example .example-content {
    padding: 0 2rem 2rem;
  }
}

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