@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;
  }
}
#hamburger .mobile-menu {
  transform: translate(-100vw);
  height: 0;
}
#hamburger.open {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  height: 100vh;
  overflow: scroll;
  transition: 0.3s ease-in;
}
#hamburger.open::-webkit-scrollbar {
  display: none;
}
#hamburger.open #toggle-menu a {
  color: var(--color-text);
}
#hamburger.open .mobile-menu {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 3px var(--color-dark-green);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  transform: translate(0);
  transition: transform 0.3s ease-in;
  padding: 7rem 1rem 10rem;
  height: auto;
  width: auto;
}
#hamburger.open .mobile-menu > div {
  padding-top: 0.3rem;
}
#hamburger.open .mobile-menu .menu-logo {
  position: absolute;
  right: 0rem;
  bottom: 1rem;
  height: 7rem;
  width: 7rem;
  rotate: 20deg;
}
#hamburger.open .icon-wrapper {
  background-color: unset;
}
#hamburger.open .icon-wrapper .nav-icon {
  rotate: -15deg;
  translate: 0 20px;
}
#hamburger.open .icon-wrapper .nav-icon span {
  width: 70px;
  height: 20px;
  background-color: var(--color-light-green);
  border: 3px solid var(--color-dark-green);
  background-image: none;
  background-repeat: no-repeat;
  display: block;
}
#hamburger.open .icon-wrapper .nav-icon span:nth-child(1) {
  translate: 0 20px;
  transform: rotate(45deg);
}
#hamburger.open .icon-wrapper .nav-icon span:nth-child(2) {
  transform: rotate(-45deg);
}
#hamburger.open .icon-wrapper .nav-icon span:nth-child(3) {
  display: none;
}
#hamburger.open .icon-wrapper .menu-label {
  display: none;
}

.scrolled #hamburger.open {
  top: 3rem;
}
.scrolled #hamburger.open .icon-wrapper {
  top: 0;
}
.scrolled .icon-wrapper {
  top: 2rem;
  transition: all 0.5s ease-in-out;
}

.icon-wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 1rem;
  transition: all 0.5s ease-in-out;
}
.icon-wrapper .nav-icon {
  position: relative;
  cursor: pointer;
  rotate: -5deg;
  top: 1rem;
}
.icon-wrapper .nav-icon span {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 30%;
  transition: translate 0.3s ease-in-out, transform 0.3s ease-in-out;
  background-image: url(/assets/img/icons/flower.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  background-image: url(/assets/img/icons/flower.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-wrapper .menu-label {
  font-family: var(--font-amatic);
  font-size: 2.5rem;
  padding: 0 0.5rem;
  background-color: var(--color-light-green);
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 3px var(--color-dark-green);
  overflow: hidden;
  cursor: pointer;
}
.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;
}

/************** DESKTOP MENU **************/
.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 > div {
  position: relative;
  align-content: center;
}
@media screen and (min-width: 1400px) {
  .menu > div.home {
    display: none;
  }
  .menu > div[active] .main-menu-item, .menu > div:hover .main-menu-item {
    background-color: var(--color-light-green);
    transition: 0.2s ease-in-out;
  }
}
.menu a,
.menu span {
  display: block;
  color: var(--color-text);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
}

.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;
    background-color: var(--color-white);
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    border: solid 3px var(--color-dark-green);
    overflow: hidden;
    min-width: 200px;
  }
}
@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);
  hyphens: none;
}
@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;
  padding-left: 1rem;
}
@media screen and (min-width: 1400px) {
  .sub-menu:not(footer .sub-menu) {
    position: absolute;
    z-index: -1;
    opacity: 0;
    max-height: 0;
    padding-left: 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;
}
@media screen and (min-width: 1400px) {
  .sub-menu:not(footer .sub-menu) > div {
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    border: solid 3px var(--color-dark-green);
    overflow: hidden;
    background-color: white;
    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: var(--color-light-green);
    pointer-events: none;
    cursor: default;
  }
  .sub-menu:not(footer .sub-menu) > div:hover {
    background-color: var(--color-light-green);
    transition: 0.2s ease-in-out;
  }
}
.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-light-green);
}
@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;
  }
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/Nunito-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Bold";
  src: url("../fonts/Nunito-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Italic";
  src: url("../fonts/Nunito-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Black";
  src: url("../fonts/Nunito-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "AmaticBold";
  src: url("../fonts/AmaticSC-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Amatic";
  src: url("../fonts/AmaticSC-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
:root {
  --color-text: rgb(56, 59, 89);
  --color-white: white;
  --color-navi: #000;
  --color-green: rgb(15, 184, 38);
  --color-dark-green: #086508;
  --color-light-green: #c3f89f;
  --color-very-light-green: #e7f5dd;
  --color-orange: orange;
  --color-grey: rgb(220, 232, 234);
  --color-text-blue: rgb(0, 113, 155);
  --color-text-green: rgb(53, 149, 116);
  --color-headline-turquoise: rgb(0, 160, 163);
  --color-area-bg: rgb(225, 240, 234);
  --color-area-blue: rgb(15, 184, 38);
  --color-area-grey: rgb(85, 124, 134);
  --color-bubble-yellow: rgb(251, 255, 94);
  --color-bubble-rose: rgb(82, 126, 208);
  --color-bubble-light-blue: rgb(41, 127, 26);
  --color-bubble-mint: rgb(12, 247, 43);
  --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(70, 179, 84);
  --font-h1: "Amatic", serif;
  --font-h2: "Black", serif;
  --font-black: "Black", serif;
  --font-text: "Regular", serif;
  --font-bold: "Bold", serif;
  --font-italic: "Italic", serif;
  --font-amatic: "Amatic", serif;
  --header-height: 15vh;
  --scrolled-header-height: calc(var(--header-height) / 3);
  --max-content-width: 900px;
  --bubble-height: 500px;
  --max-screen-width: 1600px;
}
@media screen and (min-width: 1400px) {
  :root {
    --header-height: 30vh;
  }
}

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

/************** GENERAL STYLING **************/
html,
body {
  overflow-x: hidden;
  font-size: 16px;
  scroll-behavior: smooth;
  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 > * {
  hyphens: auto;
}
@media screen and (min-width: 360px) {
  body > * {
    hyphens: none;
  }
}

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

h1 {
  font-size: clamp(3rem, 4vw, 4rem);
  padding-bottom: 1rem;
}

h2 {
  font-size: clamp(3rem, 4vw, 3.6rem);
  font-family: var(--font-amatic);
  line-height: 1;
  padding-bottom: 0.5rem;
}
h2 strong {
  font-family: var(--font-amatic);
}

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

h4 {
  font-family: var(--font-bold);
}

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

li {
  margin-left: 1rem;
}

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

.block-type-text a {
  border-radius: 29px 47px 148% 0/0 0 7px 0;
  border-bottom: 4px solid;
  padding-right: 0.5rem;
  color: var(--color-dark-green);
}
.block-type-text a:hover {
  color: var(--color-text);
}

.content {
  padding: 1rem 1rem 3rem;
  max-width: var(--max-screen-width);
  margin: auto;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .content {
    padding: 5rem 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .content {
    display: grid;
    grid-template-columns: calc(65% - 2rem) 35%;
    gap: 2rem;
  }
}
.content a {
  transition: all 0.9s ease-in-out;
  word-wrap: break-word;
}
.content a:hover {
  transition: all 0.3s ease-in-out;
}
.content section {
  padding: 3rem 0;
}
.content section > h2 {
  padding-left: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 10px;
}
.content section > h2:nth-of-type(2) {
  padding-left: 1rem;
  letter-spacing: 0;
  font-size: 4rem;
}

p {
  line-height: 1.6;
  padding-bottom: 1rem;
}

img,
video {
  max-width: 100%;
}

img:empty::before {
  content: "Fehler beim Laden des Bildes.";
  color: var(--color-orange);
}

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

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

em {
  font-family: var(--font-italic);
  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);
}

.pill {
  background-color: var(--color-light-green);
  margin-right: 0.5rem;
  padding: 0 0.25rem;
}

.more {
  text-align: right;
  padding-top: 1rem;
}
.more.more-event svg {
  height: 60px;
}
.more svg {
  height: 100px;
  max-width: 90vw;
  transition: all 0.9s ease-in-out;
}
.more svg:hover {
  transition: all 0.3s ease-in-out;
}
.more svg #path6528,
.more svg #path13461 {
  fill: white !important;
}
.more svg:hover #path6528,
.more svg:hover #path13461 {
  fill: var(--color-light-green) !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.block {
  max-width: var(--max-content-width);
}

figcaption {
  text-align: right;
  font-size: 1rem;
  top: -5px;
  position: relative;
}

*:focus-visible {
  outline: 20px solid var(--color-green);
}

button:focus:not(:focus-visible) {
  outline: none;
}

.cancelled {
  color: red;
}

/************** HEADER **************/
header {
  -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 .header-bg {
  border-radius: 0 0 30% 0/0 0 30px 0;
  overflow: hidden;
  background-color: rgb(186, 185, 180);
  border-bottom: 10px solid rgb(177, 200, 191);
}
header .header-bg > .logo {
  height: 12rem;
  width: 12rem !important;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 10;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  display: none;
}
@media screen and (min-width: 1400px) {
  header .header-bg > .logo {
    display: block;
  }
}
header .header-bg > .logo img {
  width: 100% !important;
  height: 100%;
  object-fit: contain;
}
header .title {
  font-size: 2rem;
  position: absolute;
  left: 1rem;
  top: 0;
  z-index: 10;
  width: 100vw;
  text-align: center;
}
@media screen and (min-width: 576px) {
  header .title {
    font-size: 4rem;
  }
}
header .title span {
  background-color: var(--color-very-light-green);
}
header .contact-bubble {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 3px var(--color-dark-green);
  overflow: hidden;
  font-family: var(--font-amatic);
  height: 7rem;
  right: -0.5rem;
  top: -2rem;
  position: absolute;
  z-index: 10;
  background-color: var(--color-light-green);
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 2rem;
}
@media screen and (min-width: 576px) {
  header .contact-bubble {
    top: -2rem;
    height: 8rem;
    right: 2rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1600px) {
  header .contact-bubble {
    right: 4rem;
    top: -3rem;
    height: 10rem;
  }
}
header .contact-bubble span {
  transition: all 1s ease-in-out;
  rotate: 5deg;
}
header .contact-bubble:hover span {
  scale: 1.1;
  rotate: 355deg;
  transition: all 0.3s ease-in-out;
}
header.scrolled {
  top: calc(var(--scrolled-header-height) - 90px);
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 1400px) {
  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;
  mix-blend-mode: multiply;
}
header .title-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .logo {
  cursor: pointer;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 576px) {
  header .logo {
    height: 40vh;
  }
}
@media screen and (min-width: 1400px) {
  header .logo {
    position: absolute;
  }
}
header .logo.desktop {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .logo.desktop {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  header .logo.mobile {
    display: none;
  }
}
header .logo img {
  height: 100%;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

.page-template-events main {
  min-height: 100vh;
}

.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: 80vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position-y: 50%;
}
.page-template-home .more-right {
  padding-top: 2rem;
}

@media screen and (min-width: 1200px) {
  .sidebar {
    grid-column: 2/3;
  }
}
.sidebar a {
  color: var(--color-text);
}
.sidebar .sidebar-item {
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 1px var(--color-dark-green);
  overflow: hidden;
  transition: all 0.9s ease-in-out;
}
.sidebar .sidebar-item:hover {
  transition: all 0.3s ease-in-out;
}
.sidebar .sidebar-item:hover {
  background-color: var(--color-light-green);
}
.sidebar .sidebar-item .title {
  font-family: var(--font-bold);
}
.sidebar > div {
  padding-bottom: 3rem;
}

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

.right {
  text-align: right;
}

/************** CONTENT **************/
main {
  max-width: 100vw;
  padding-bottom: 3rem;
}
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: calc(var(--header-height) + 4rem);
  }
}

.detail-page-content .news-item-date {
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .detail-page-content .title {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .detail-page-content .title {
    grid-column: 1/3;
  }
}
.detail-page-content p {
  padding-top: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .detail-page-content .image img {
    max-height: 350px;
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .detail-page-content .image img {
    max-height: 500px;
  }
}
.detail-page-content .gallery {
  padding: 2rem 0;
}

.infos > div {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 1px var(--color-dark-green);
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.infos .location a,
.infos .organizer a {
  display: block;
  margin-left: 0.5rem;
}
@media screen and (min-width: 1400px) {
  .infos .location a,
  .infos .organizer a {
    display: inline;
    display: inline;
  }
}
.infos .more-dates > div {
  padding-bottom: 0.5rem;
}

.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 .name > * {
  display: inline;
}
.testimonials .testimonial-card img {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 3px var(--color-dark-green);
  overflow: hidden;
  transition: all 0.9s ease-in-out;
  aspect-ratio: 1/1;
  object-fit: cover;
  transform: rotate(-1deg);
  border-width: 10px;
  filter: grayscale(0.8);
}
.testimonials .testimonial-card img:hover {
  transition: all 0.3s ease-in-out;
}
.testimonials .testimonial-card img:hover {
  filter: grayscale(0);
  transform: rotate(0);
}
.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 {
  max-width: 1800px;
  margin: auto;
}
@media screen and (min-width: 576px) {
  .trainings-list {
    padding: 1rem;
  }
}
.trainings-list a {
  opacity: 0.5;
}
.trainings-list a.in-view {
  opacity: 1;
}
.trainings-list .training {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .trainings-list .training {
    aspect-ratio: 1/1;
  }
}

.training {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 3px var(--color-dark-green);
  overflow: hidden;
  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;
    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 :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;
  border: var(--color-dark-green) 3px solid;
  background-color: var(--color-light-green);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  text-align: center;
}
#btt-button svg {
  height: 100%;
  width: 70%;
  fill: var(--color-dark-green);
}
@media screen and (min-width: 1200px) {
  #btt-button {
    right: 6rem;
  }
}

/************** FOOTER **************/
footer {
  border-radius: 225px 0 0 0/15px 255px 0 0;
  border-top: 3px solid var(--color-green);
  overflow: hidden;
  background-color: white;
  margin-top: -1rem;
  background-color: var(--color-very-light-green);
}
footer a {
  color: var(--color-text);
}
footer .footer-menu {
  display: grid;
  gap: 1rem;
  max-width: 1500px;
  margin: auto;
  font-size: 1rem;
  padding: 4rem 2rem;
}
@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-bold);
  padding-bottom: 0.25rem;
}
footer .footer-menu .sub-menu > div {
  padding-bottom: 0.25rem;
}
footer strong {
  font-family: var(--font-bold);
}
footer .supporters {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer .supporters {
    grid-template-columns: 60% 35%;
    grid-gap: 5%;
  }
}
footer .supporters .text {
  order: 2;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer .supporters .text {
    grid-row: 1/2;
  }
}

.news-items {
  padding-top: 1rem;
  max-width: 1400px;
  margin: auto;
  gap: 2rem;
  display: grid;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .news-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .news-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .news-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

[v-cloak] {
  display: none;
}

#events-app {
  padding: 1rem;
}
@media screen and (min-width: 576px) {
  #events-app {
    padding: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  #events-app {
    display: grid;
  }
}
@media screen and (min-width: 1600px) {
  #events-app {
    padding: 0 4rem;
  }
}
#events-app .calendar {
  max-width: var(--max-screen-width);
  margin: auto;
  min-height: 80vh;
  animation: fadeIn 1s linear;
}
#events-app h2 {
  animation: fadeIn 1s linear;
  padding: 2rem 0;
  font-size: 3rem;
  font-weight: bold;
  padding-left: 1rem;
}
@media screen and (min-width: 576px) {
  #events-app h2 {
    padding-left: 5rem;
  }
}
#events-app h3 {
  font-family: var(--font-amatic);
  font-size: 2rem;
  padding-bottom: 0;
}
#events-app .day {
  animation: fadeIn 0.5s linear;
  display: grid;
  border-bottom: 1px solid var(--color-green);
  border-radius: 0 0 225px 0/0 0 15px 255px;
}
#events-app .day .day-name {
  font-size: 1.5rem;
  padding-left: 1rem;
}
@media screen and (min-width: 576px) {
  #events-app .day .day-name {
    text-align: center;
    background-color: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#events-app .day .day-name span {
  padding-right: 0.5rem;
}
#events-app .day .day-name .number {
  font-weight: bold;
  font-size: 4rem;
}
#events-app .list .day {
  display: grid;
  background-color: white;
}
#events-app .list .day:first-of-type {
  border-radius: 5px 0 0 0/255px 255px 0 0;
  border-top: 1px solid var(--color-green);
  overflow: hidden;
}
#events-app .list .day:last-of-type {
  overflow: hidden;
}
#events-app .list .day .event {
  transition: all 0.9s ease-in-out;
  padding: 0.5rem 1rem;
}
#events-app .list .day .event:hover {
  transition: all 0.3s ease-in-out;
}
#events-app .list .day .event:not(:last-of-type) {
  border-bottom: 1px solid var(--color-green);
  border-radius: 0 0 225px 0/0 0 15px 255px;
}
#events-app .list .day .event:hover {
  background-color: var(--color-very-light-green);
  background: linear-gradient(140deg, white 0%, var(--color-very-light-green) 70%);
}
#events-app .list .day .event a {
  padding: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #events-app .list .day .event a {
    grid-template-columns: 70% 30%;
    display: grid;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #events-app .list .day .event a .title {
    grid-column: 1/3;
  }
}
#events-app .list .day .event a .info {
  padding: 1rem 0;
}
@media screen and (min-width: 576px) {
  #events-app .list .day {
    grid-template-columns: 15% 85%;
  }
}

.filter-form form {
  display: grid;
  justify-content: end;
}
.filter-form form .categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 700px;
}
.filter-form form .categories .label {
  text-transform: uppercase;
  align-self: center;
}
.filter-form form .categories label {
  cursor: pointer;
  padding: 0.5rem;
}
.filter-form form .categories label span {
  transition: all 0.9s ease-in-out;
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 3px var(--color-dark-green);
  overflow: hidden;
  background-color: white;
  padding: 0 0.5rem;
}
.filter-form form .categories label span.reset {
  background-color: var(--color-very-light-green);
}
.filter-form form .categories label:hover span {
  transition: all 0.2s ease-in-out;
}
.filter-form form .categories input {
  opacity: 0;
  display: none;
}
.filter-form form .categories input:checked + span {
  background-color: var(--color-light-green);
}
.filter-form form .text-search > div {
  display: flex;
  padding-bottom: 2rem;
  justify-content: end;
}
.filter-form form .text-search label {
  font-size: var(--font-size);
}
.filter-form form .text-search svg {
  margin-right: 0.5rem;
  fill: var(--color-dark-green);
}
.filter-form form .custom-select .select-dropdown {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
}
@media screen and (min-width: 576px) {
  .filter-form form .custom-select .select-dropdown {
    justify-content: end;
  }
}
.filter-form form .custom-select li {
  margin-left: 0.5rem;
}
.filter-form form .custom-select .selected {
  background-color: var(--color-green);
}

.field {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 3px var(--color-dark-green);
  overflow: hidden;
  transition: all 0.9s ease-in-out;
  border: 1px solid var(--color-text);
  background-color: white;
  outline: none;
  cursor: pointer;
  padding: 10px;
}
.field:hover {
  transition: all 0.3s ease-in-out;
}
.field::placeholder {
  font-size: 1.1rem;
}
.field:focus, .field:hover {
  background-color: var(--color-light-green);
}

.back {
  max-width: var(--max-screen-width);
  margin: auto;
  padding: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .back {
    padding: 3rem;
  }
}

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

.news-item {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: solid 3px var(--color-dark-green);
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.5s ease-in;
  display: grid;
  gap: 0.5rem;
  max-width: calc(100vw - 2rem);
}
.news-item.in-view {
  opacity: 1;
}
.news-item .img-container {
  break-inside: avoid;
  height: 20rem;
}
.news-item .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item .img-container.default img {
  mix-blend-mode: luminosity;
}
.news-item .news-item-date {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: right;
  padding: 0.5rem;
}
.news-item .news-content {
  padding: 2rem 2rem 3rem;
}
.news-item .news-content .date {
  font-family: var(--font-bold);
}
.news-item .news-content .teaser {
  padding-top: 1rem;
}

#nanogallery2 {
  position: relative;
  padding-top: 2rem;
}
@media screen and (min-width: 576px) {
  #nanogallery2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #nanogallery2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #nanogallery2 {
    grid-template-columns: repeat(4, 1fr);
  }
}
#nanogallery2 .image {
  position: relative;
}
#nanogallery2 .image img {
  transition: all 0.9s ease-in-out;
  border: 1px solid;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#nanogallery2 .image img:hover {
  transition: all 0.3s ease-in-out;
}
#nanogallery2 .image img:hover {
  opacity: 0.8;
}
#nanogallery2 .image .caption {
  position: absolute;
  bottom: 1rem;
  color: white;
  font-family: var(--font-bold);
  background-color: var(--color-pink);
  right: 1rem;
}

.nGY2 .nGY2ViewerContent {
  clip-path: polygon(0 15%, 1% 1%, 100% 0, 99% 51%, 100% 100%, 1% 99%, 0 91%, 1% 42%);
  background: white !important;
}

.nGY2 .nGY2GThumbnailLabel {
  padding: 0 0 2rem;
}

.nGY2ViewerMedia {
  max-width: calc(100vw - 8rem) !important;
  max-height: calc(100vh - 8rem) !important;
  object-fit: contain;
}

.nGY2GThumbnailLabel {
  filter: none !important;
}

.nGY2Icon-ngy2_close2::before {
  content: "" !important;
  width: 54px;
  height: 54px;
  background-image: url("/assets/img/icons/close.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.nGY2Icon-ngy2_chevron_left3::before,
.nGY2Icon-ngy2_chevron_right3::before {
  content: "" !important;
  width: 40px;
  height: 54px;
  background-image: url("/assets/img/icons/arrow_left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .nGY2Icon-ngy2_chevron_left3::before,
  .nGY2Icon-ngy2_chevron_right3::before {
    width: 80px;
  }
}

.nGY2Icon-ngy2_chevron_left3::before {
  background-image: url("/assets/img/icons/arrow_left.svg");
}

.nGY2Icon-ngy2_chevron_right3::before {
  background-image: url("/assets/img/icons/arrow_right.svg");
  margin-right: 15px !important;
}

.nGY2 .nGY2ViewerAreaNext > i,
.nGY2 .nGY2ViewerAreaPrevious > i {
  background: unset !important;
}

.nGY2 .toolbarBackground {
  background: none !important;
}

.nGY2 .nGY2ViewerAreaNext,
.nGY2 .nGY2ViewerAreaPrevious {
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .nGY2 .nGY2ViewerAreaNext,
  .nGY2 .nGY2ViewerAreaPrevious {
    padding: 2rem;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .nGY2 .nGY2ViewerAreaNext {
    right: 10%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .nGY2 .nGY2ViewerAreaPrevious {
    left: 10%;
  }
}

.nGY2 .toolbar .label {
  padding: 1rem 10px;
}
.nGY2 .toolbar .label .description {
  color: var(--color-text) !important;
}

.toolbarContainer {
  opacity: 1 !important;
  bottom: 7rem !important;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .toolbarContainer {
    bottom: 50px !important;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .toolbarContainer {
    bottom: 50px !important;
  }
}

.nGY2 .toolbarContainer {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
.nGY2 .ngy2viewerToolAction {
  opacity: 1 !important;
}
.nGY2 .nGY2ViewerToolsTopRight {
  opacity: 1 !important;
}

.nanogallery_viewertheme_light_my_nanogallery .nGY2Viewer {
  background: var(--color-light-green) !important;
}

.splide__arrow {
  background: var(--color-light-green) !important;
  opacity: 0.5;
  transition: all 0.9s ease-in-out;
}
.splide__arrow:hover {
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 576px) {
  .splide__arrow {
    height: 4rem;
    width: 4rem;
  }
}
.splide__arrow svg {
  fill: var(--color-dark-green);
}
@media screen and (min-width: 576px) {
  .splide__arrow svg {
    height: 4rem;
    width: 2rem;
  }
}
.splide__arrow[disabled] {
  background: var(--color-grey) !important;
}

@media screen and (min-width: 768px) and (orientation: portrait) {
  .splide__pagination {
    bottom: auto;
    top: -3rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .splide__pagination {
    bottom: auto;
    top: -3rem;
  }
}

.splide__pagination__page {
  background: var(--color-light-green) !important;
  height: 15px;
  width: 15px;
}

.splide__pagination__page.is-active {
  background: var(--color-green) !important;
  border: 1px solid var(--color-text);
}

#blog-carousel-track {
  max-width: calc(100vw - 2rem);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #blog-carousel-track {
    max-width: calc(100vw - 6rem);
  }
}

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