@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Quicksand:wght@300;600&display=swap");
:root {
  --main-brand-color: gainsboro;
  --primary-color: hsl(205, 61%, 65%);
  --secondary-color: #71a1b9;
  --third-color: #2dcda0;
  --text-color: #ffffff;
  --secondary-text-color: #b3b4b6;
  --third-text-color: #4169e1;
  --secondary-background: #BFB299;
  --navbar-height: 4em;
  --header-height: 8em;
  --box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  --speed: 0.5s;
}

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

html {
  font-family: "Times New Roman", Times, serif;
  font-size: 62.5%;
}

a:link, a:visited {
  color: var(--text-color);
  text-decoration: none;
}

.header_mobile {
  display: none;
}

.header {
  position: absolute;
  display: flex;
  top: 4.5em;
  left: 0;
  width: 100vw;
  height: var(--header-height);
  background-color: transparent;
  flex-direction: row;
  align-items: center;
  z-index: 999;
  transition: padding 500ms;
  transition: var(--box-shadow) 500ms;
  overflow: hidden;
}
.header.fixed {
  top: 0;
  padding: 0;
  background-color: hsla(205, 61%, 65%, 0.6);
  position: -webkit-sticky;
  position: sticky;
  box-shadow: var(--box-shadow);
}

.logo {
  display: flex;
  flex-direction: row;
  width: 200px;
  padding: 0.5em;
  height: var(--header-height);
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
.logo img {
  height: 100%;
  width: auto;
}

.headline {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 80%;
  justify-content: center;
  text-align: left;
  padding: 0 1em;
}
.headline h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 3rem;
  color: var(--text-color);
  text-shadow: -1px -1px 1px hsl(190, 50%, 90%), 1px 1px 1px hsl(190, 50%, 50%);
}

.anmeldung_kl {
  display: none;
}

.anmeldung_gr {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 400px;
}

.anmeldung {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin: 1.5em;
}
.anmeldung .btn {
  min-width: 20em;
}

/* ----------------------- Anmelde-Buttons ---------------------- */
.btn {
  display: inline-block;
  position: relative;
  width: 60%;
  height: auto;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  color: var(--text-color);
  background: none;
  cursor: pointer;
  padding: 0.5em 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border: 0.5px solid darkgreen;
  border-radius: 2rem;
  background-image: linear-gradient(-180deg, #7BE2C5 0%, #2dcda0 100%);
  box-shadow: 0 1rem 1.25rem 0 #9FA7BB, 0 -0.25rem 1.5rem #7CACAA inset, 0 0.75rem 0.5rem rgba(255, 255, 255, 0.4) inset, 0 0.25rem 0.5rem #41C7C1 inset;
}

.btn2 {
  display: inline-block;
  position: relative;
  width: 60%;
  height: auto;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  color: var(--text-color);
  background: none;
  cursor: pointer;
  padding: 0.5em 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border: 0.5px solid darkgreen;
  border-radius: 2rem;
  background-image: linear-gradient(-180deg, #7BE2C5 0%, #2dcda0 100%);
}

.btn:before, btn2:before {
  font-family: "Quicksand", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  -webkit-font-smoothing: antialiased;
  opacity: 0.7;
}

.btn:after, .btn2:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  filter: blur(1px);
  opacity: 0.05;
  background-image: linear-gradient(-270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255, 255, 255, 0) 100%);
}

/* Button */
.btn-4 {
  background-color: var(--third-color);
  color: #fff;
}

.btn-4:hover {
  background-color: var(--third-color);
}

.btn-4:active {
  background-color: var(--third-color);
  top: 2px;
}

.btn-4:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
}

body {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100vw;
  justify-content: center;
  align-items: center;
  -o-perspective: 1200;
  -ms-perspective: 1200;
  perspective: 1200;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: auto;
}

/* ----------------------- Einleitungsbereich ---------------------- */
.hintergrund {
  display: flex;
  position: relative;
  width: 100vw;
  height: 65.26vw;
  background-image: url("../_img/hintergrund_buecher.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  justify-content: center;
}

.slogan {
  position: relative;
  display: flex;
  width: 50vw;
  height: 18vh;
  top: 40vh;
  justify-content: center;
  align-items: center;
}
.slogan p {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: var(--text-color);
}
.slogan p span {
  font-weight: normal;
  font-style: italic;
  text-align: right;
}

.ankuendigung {
  display: flex;
  width: 100vw;
  height: 20vh;
  justify-content: center;
}

/* ----------------------- Terminbutton ---------------------- */
.btn-flip {
  margin: 2em 0;
  width: 35em;
  height: 3em;
  border: none;
  opacity: 1;
  outline: 0;
  color: #fff;
  line-height: 3em;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
}
.btn-flip:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.btn-flip:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}
.btn-flip:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #323237;
  display: block;
  transition: var(--speed);
  position: absolute;
  background: #adadaf;
  content: attr(data-back);
  transform: translateY(-50%) rotateX(90deg);
}
.btn-flip:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: #adadaf;
  display: block;
  padding: 0 30px;
  line-height: 5em;
  transition: var(--speed);
  position: relative;
  background: #323237;
  content: attr(data-front);
  transform: translateY(0) rotateX(0);
}

/* ------------------------------------- Info-Box ----------------------------------- */
h1 {
  font-weight: 300;
  width: 100%;
  color: rgb(255, 255, 255);
  padding: 20px 60px;
}

h2 {
  font-size: 2rem;
  padding-bottom: 1em;
}

p + p {
  margin-top: 0.7em;
}

.md-button {
  display: inline-block;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 8px;
  min-width: 88px;
  border-radius: 2px;
  border: none;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.md-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.md-button.md-button--raised {
  background-color: var(--third-color);
  color: rgb(255, 255, 255);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.md-button.md-button--raised:hover {
  background-color: var(--third-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.md-card {
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  overflow: hidden;
}

.md-card-content {
  padding: 20px;
  font-size: 2rem;
}
.md-card-content UL {
  padding-left: 1em;
}

.md-card-btns {
  width: 100%;
  border-top: 1px solid rgb(200, 200, 200);
  text-align: right;
  padding: 8px 12px;
}

.toggleButton {
  margin-top: 20px;
}

/* TOGGLE */
#menuToggle {
  display: none;
}

.infobox {
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 400px;
  z-index: 1;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  -webkit-transition: visibility 0s 0.4s, opacity 0.4s 0s;
  transition: visibility 0s 0.4s, opacity 0.4s 0s;
}

:checked + .infobox {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: visibility 0s 0s, opacity 0.4s 0.1s;
  transition: visibility 0s 0s, opacity 0.4s 0.1s;
}

/* ------------------------------------- Ende Info-Box ----------------------------------- */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50vw;
  height: auto;
}

.ansprache {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 90%;
  height: auto;
}
.ansprache p {
  font-size: 2rem;
  margin-bottom: 1em;
}

.eulen_pic {
  display: flex;
  justify-content: center;
}
.eulen_pic img {
  max-width: 50%;
  max-height: auto;
  margin: 2em 0;
}

.einleitung_kl {
  display: none;
}

.calPic {
  width: 50%;
  height: auto;
  background-image: url("../_img/clock-246240_1280.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.calPic img {
  width: 100%;
  height: auto;
}

#impressum .container {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 50vw;
  height: auto;
  padding: 2em;
  overflow: hidden;
  align-items: center;
}
#impressum .container h1 {
  font-size: 3rem;
  font-weight: bold;
  color: black;
  text-align: center;
}
#impressum .container h2 {
  font-size: 2.5rem;
  text-align: center;
}
#impressum .container p {
  font-size: 2rem;
}

#impressum .sliderbereich {
  flex-direction: column;
  max-width: 50vw;
  height: auto;
  padding: 1em 0;
  margin-bottom: 2em;
  background-color: white;
}
#impressum .sliderbereich h2 {
  font-size: 3rem;
}

#impressum .ankuendigung {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 100%;
  overflow: hidden;
}
#impressum .ankuendigung h3 {
  font-size: 2.5rem;
  margin: 1em 0;
}
#impressum .ankuendigung p {
  font-size: 2rem;
}

/* ------------------------------------ Slider ---------------------------------- */
.sliderbereich {
  display: flex;
  position: relative;
  width: 100vw;
  height: 500px;
  justify-content: center;
  align-items: center;
  background-color: lightgrey;
}

.sliderElements,
.sliderElements figure,
.sliderControls {
  margin: 0;
}

.sliderElements:after {
  content: ".";
  display: block;
  height: 0.1px;
  clear: both;
  visibility: hidden;
  font-size: 0;
  overflow: hidden;
}

.cssSlider {
  overflow-x: hidden;
}

.sliderElements {
  list-style: none;
  position: relative;
  left: 0;
  width: 400%;
  margin-bottom: 0.8em;
  padding: 0;
  -webkit-transition: left 0.8s ease-in-out;
  -moz-transition: left 0.8s ease-in-out;
  -o-transition: left 0.8s ease-in-out;
  transition: left 0.8s ease-in-out;
}

.sliderElements > li {
  float: left;
  width: 25%;
  position: relative;
}

#slide02:checked ~ .sliderElements {
  left: -100%;
}

#slide03:checked ~ .sliderElements {
  left: -200%;
}

#slide04:checked ~ .sliderElements {
  left: -300%;
}

.textbox {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  max-width: 50%;
  min-height: 250px;
  margin: auto;
  align-items: center;
  padding: 1em 0;
  border: 3px solid black;
}

.name {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.text {
  padding: 0 5em 0 5em;
}
.text p {
  display: block;
  width: 100%;
  font-size: 2.5rem;
  text-align: center;
}

.text_link {
  display: none;
}

.text-link {
  bottom: 0;
}
.text-link a {
  font-size: 2rem;
}

/* Bildunterschrift auf dem Bild positionieren */
.sliderElements figcaption {
  display: block;
  color: #fff;
  position: absolute;
  font-size: 2rem;
  text-align: center;
  left: 0;
  bottom: 0;
  padding: 0.4em;
  background: rgba(0, 0, 0, 0.5);
}

/* inputs aus dem Blickfeld schieben */
.cssSlider input {
  position: absolute;
  left: -99999px;
}

/* mittige Ausrichtung der Controls - funktioniert im Zusammenspiel mit inline-block */
.sliderControls {
  text-align: center;
}

/* Controls nebeneinander bringen */
.sliderControls li {
  display: inline-block;
}

/* Controls auf einheitliche Maße bringen und die Ecken abrunden */
.sliderControls label {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  background: #68B022;
  color: #68B022;
}

/* Attributselektor und indirekter Nachfahrkombinator zum ansteuern der labels */
.sliderControls label:hover,
#slide01:checked ~ .sliderControls label[for=slide01],
#slide02:checked ~ .sliderControls label[for=slide02],
#slide03:checked ~ .sliderControls label[for=slide03],
#slide04:checked ~ .sliderControls label[for=slide04] {
  background: #ddd;
  color: #ddd;
}

/* ------------------------------------- Footer ---------------------------- */
.footer {
  position: block;
  bottom: 0;
  width: 100%;
  height: 5em;
  background-color: var(--primary-color);
  z-index: 1001;
}

nav {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  justify-content: flex-start;
  margin-left: 5em;
}

nav ul {
  display: flex;
}

nav ul li {
  height: 100%;
  padding: 1em 1em 0.3em 1em;
  list-style-type: none;
  border-bottom: 2px solid transparent;
}

nav ul li:hover {
  border-bottom: 2px solid var(--secondary-headline);
}

nav ul li a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 22px;
  font-family: sans-serif;
}

/* ----------------------------- Footer Ende ------------------------------ */
/* ================================================= impressum === */
.container {
  max-width: 75%;
  height: auto;
  padding: 2em;
}
.container h1 {
  font-size: 5rem;
  margin-top: 3em;
  margin-bottom: 1em;
}
.container h2 {
  font-size: 3.5rem;
  text-align: left;
}
.container ul {
  font-size: 2.5rem;
  font-weight: normal;
  padding-left: 1em;
}

.sliderbereich_impressum {
  max-width: 75vw;
  flex-direction: column;
}

.impr_wide {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: auto;
  align-items: center;
  background-color: var(--secondary-color);
  color: white;
}
.impr_wide h2 {
  color: white;
}

.response {
  margin-left: 2em;
  font-size: 2.5rem;
  font-weight: normal;
}

.textbox_impressum {
  width: 100%;
  height: auto;
}
.textbox_impressum h3 {
  padding: 0;
  font-size: 3rem;
  padding: 1em 0;
}
.textbox_impressum p {
  font-size: 2.5rem;
  font-weight: normal;
}

.ti01 {
  margin-left: 2em;
  list-style-type: upper-roman;
}
.ti01 li {
  font-size: 3rem;
  font-weight: bold;
  margin: 1em 0;
}
.ti01 p {
  font-size: 2rem;
  font-weight: normal;
}

.ti02 {
  margin-left: 3em;
  list-style-type: decimal;
}
.ti02 li {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1em 0;
}
.ti02 p {
  font-size: 2rem;
  font-weight: normal;
}

.ti03 {
  list-style-type: lower-alpha;
  margin-left: 3em;
}
.ti03 li {
  font-size: 2rem;
  font-weight: bold;
  margin: 1em 0;
}
.ti03 p {
  font-size: 2rem;
  font-weight: normal;
}

/* ======================================= Responsive ======================================== */
/* Tablet Hochformat (Portrait) */
@media only screen and (max-width: 1024px) {
  main {
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: hidden;
  }
  .header {
    display: none;
  }
  .header_mobile {
    display: flex;
    flex-direction: row;
    background-color: hsla(205, 61%, 65%, 0.6);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 999;
  }
  .logo {
    width: 10%;
    height: 60px;
  }
  .headline {
    width: 60%;
  }
  .headline h1 {
    font-size: 2.3em;
    line-height: 0.8;
  }
  .anmeldung_gr {
    display: none;
  }
  .anmeldung_kl {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 40%;
    margin: auto;
  }
  .anmeldung_kl .btn {
    width: 100%;
  }
  .container {
    min-width: 75vw;
    padding: 1em 0.5em;
  }
  #impressum .container {
    min-width: 90vw;
  }
  .slogan {
    top: 20vh;
  }
  .slogan p {
    font-size: 2.5rem;
  }
  .slogan p a {
    font-size: 2.25rem;
  }
  .sliderbereich {
    display: flex;
    width: 100%;
    height: 400px;
  }
  .textbox {
    max-width: 90vw;
    min-height: 175px;
    padding: 0.5em 0;
  }
}
.response {
  font-size: 1.75rem;
  margin: 1em 0 1em 0.5em;
}

.ti01 {
  margin: 1em 0 1em 0.5em;
}
.ti01 li {
  font-size: 2rem;
}
.ti01 p {
  font-size: 1.5rem;
  padding: 1em 0;
}

.ti02 {
  margin: 1em 0 1em 0.5em;
}
.ti02 li {
  font-size: 1.75rem;
  font-weight: bold;
}
.ti02 p {
  font-size: 2rem;
  font-weight: normal;
  padding: 1em 0;
}

.ti03 {
  list-style-type: lower-alpha;
  margin-left: 1em;
  padding-bottom: 1em;
}
.ti03 li {
  font-weight: normal;
  margin: 10px 0;
}
.ti03 p {
  font-size: 1.5rem;
  padding: 1em 0;
}

/* Smartphone Querformat (Landscape) */
@media only screen and (max-width: 768px) {
  .btn {
    width: 25vw;
    height: 100%;
  }
  .container {
    width: 90vw;
    height: auto;
  }
}
/* Smartphone */
@media only screen and (max-width: 480px) {
  .header {
    display: none;
  }
  .header_mobile {
    background-color: hsla(205, 61%, 65%, 0.6);
    position: -webkit-sticky;
    position: sticky;
    height: 5em;
  }
  .logo {
    display: none;
  }
  .headline {
    width: 80%;
    margin: 0;
  }
  .headline h1 {
    padding: 0;
    width: 100%;
    font-size: 2.3em;
    line-height: 0.8;
    text-align: left;
  }
  .slogan {
    top: 7.5vh;
    width: 80vw;
  }
  .slogan p {
    font-size: 1.5rem;
  }
  .ankuendigung {
    min-width: 100vw;
  }
  .container {
    min-width: 100vw;
    padding: 0;
  }
  .container h2 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding: 0.5em 0;
    margin: 0;
  }
  .container p {
    font-size: 2rem;
    text-align: justify;
    hyphens: auto;
  }
  .ansprache p {
    margin: 0.25em 0;
  }
  .impr_verantw {
    padding: 1em 0;
    border-bottom: 5px var(--primary-color) double;
  }
  .impr_verantw ul {
    font-size: 2rem;
  }
  .sliderbereich {
    height: 300px;
  }
  .footer ul li a {
    font-size: 1.5rem;
  }
  .footer nav {
    margin-left: 0.5em;
  }
  #impressum .container {
    width: 100vw;
    padding: 0 0.5;
  }
  #impressum .container h1 {
    padding: 0;
    margin: 0;
  }
  #impressum .container h2 {
    font-size: 2.25rem;
    padding: 1em 0 0.5em 0;
    margin: 0 0 0 0.5em;
  }
  #impressum .container h3 {
    font-size: 2rem;
    text-align: left;
    padding: 0.5em 0;
  }
  #impressum .container p {
    padding: 0 0.5em;
    text-align: justify;
    hyphens: auto;
  }
  .textbox {
    justify-content: flex-start;
  }
  .name {
    font-size: 2rem;
    padding-bottom: 1em;
  }
  .text {
    display: none;
  }
  .text-link {
    display: none;
  }
  .text_link {
    display: flex;
  }
  .text_link a {
    font-size: 2rem;
    text-align: center;
    padding: 0 0.5em 0 0.5em;
    color: black;
  }
}/*# sourceMappingURL=style.css.map */