@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Gochi Hand";
  src: url("../fonts/GochiHand-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Regular.ttf") format("truetype");
}
/* Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

html.impressum h1, body.impressum h1 {
  margin-block: 1em;
}
html.impressum h2, html.impressum h3, html.impressum h4, html.impressum h5, html.impressum h6, body.impressum h2, body.impressum h3, body.impressum h4, body.impressum h5, body.impressum h6 {
  margin-top: 1em;
}

html.impressum main {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  html.impressum main {
    margin-top: 0;
  }
}

:root {
  font-size: 16px;
  color: #404040;
  font-family: "Source Sans Pro", sans-serif;
}

section, div.sec {
  padding-block: min(7.5%, 10rem);
  background-color: #FFFFFF;
}
section:nth-of-type(even), div.sec:nth-of-type(even) {
  background-color: #F5F5F5;
}
section article, section div.art, div.sec article, div.sec div.art {
  width: min(85%, 70rem);
  margin-inline: auto;
}

a {
  color: #60B22B;
  display: inline-block;
}

footer a {
  display: block;
}

.pre-headline {
  color: #60B22B;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) {
  .pre-headline {
    font-size: 18px;
  }
}

.headline {
  color: #404040;
  font-family: "Gochi Hand", cursive;
  font-size: 30px;
}
@media only screen and (min-width: 1200px) {
  .headline {
    font-size: 34px;
  }
}

.button {
  text-transform: uppercase;
  font-family: "Gochi Hand", cursive;
  padding: 0.95em 1.75em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  background-color: #60B22B;
  color: #FFF;
  border: 3px solid #60B22B;
  transition-duration: 0.25s;
}
@media only screen and (min-width: 768px) {
  .button {
    padding: 0.5em 1.25em;
  }
}
.button:hover {
  background-color: transparent;
  color: #60B22B;
}
.button.inverted {
  background-color: #FFF;
  color: #60B22B;
  border: 3px solid #FFF;
}
.button.inverted:hover {
  background-color: transparent;
  color: #FFF;
}

body {
  position: relative;
}

main p {
  columns: 1;
}
@media only screen and (min-width: 768px) {
  main p {
    columns: 2;
  }
}

#cookie_check {
  color: white;
}

/* Navigator */
nav {
  position: fixed;
  transform: translate(-50%, 0);
  left: 50%;
  top: 1rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  border-radius: 35px;
  text-align: center;
  width: min(95%, 105rem);
  margin-inline: auto;
  background-color: #FFF;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: top 0.25s, width 0.25s, border-radius 0.25s, box-shadow 0.25s;
}
nav.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0 0 35px 35px;
  box-shadow: 0 0 75px rgba(0, 0, 0, 0.075);
}
nav.opened {
  box-shadow: 0 5px 50px rgba(0, 0, 0, 0.25);
}
nav #logo {
  width: 225px;
}
nav #contact-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  background-color: #60B22B;
  padding: 0.5rem 1rem;
}
nav #contact-nav a {
  color: white;
}
nav #nav-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding: 1.25rem 2.5rem;
}
@media only screen and (min-width: 768px) {
  nav #nav-content {
    flex-direction: row !important;
    gap: 1rem;
    text-align: left;
    top: 3rem;
  }
  nav #nav-content #hamburger {
    display: none !important;
  }
}
nav.opened #nav-content {
  flex-direction: column;
}
nav.opened #nav-content ul {
  display: flex;
}
nav #hamburger {
  background-color: inherit;
}
nav #hamburger div {
  width: 32px;
  height: 3px;
  background-color: #404040;
  transform: translateX(0);
  transition-duration: 0.25s;
}
nav #hamburger div:nth-of-type(1) {
  transform: translate(0, -5px);
}
nav #hamburger div:nth-of-type(3) {
  transform: translate(0, 5px);
}
nav #hamburger.opened div:nth-of-type(1) {
  transform: translate(0, 5px) rotate(45deg);
}
nav #hamburger.opened div:nth-of-type(2) {
  opacity: 0;
}
nav #hamburger.opened div:nth-of-type(3) {
  transform: translate(0, 0) rotate(-45deg);
}
nav #nav-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  nav #nav-header {
    width: unset;
  }
}
nav #hamburger {
  width: 32px;
  cursor: pointer;
}
nav #hamburger img {
  width: inherit;
}
nav ul {
  list-style-type: none;
  display: none;
  flex-direction: column;
  gap: 2rem;
}
nav ul li a {
  color: #404040;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition-duration: 0.25s;
}
@media only screen and (min-width: 768px) {
  nav ul {
    display: flex;
    flex-direction: row;
  }
  nav ul li:hover a {
    color: #60B22B;
  }
  nav ul li {
    position: relative;
  }
  nav ul li::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #60B22B;
    bottom: 0;
    left: -100%;
    opacity: 0;
    transition-duration: 0.25s;
  }
  nav ul li:hover::after {
    left: 0;
    opacity: 1;
  }
}

/* Header */
header {
  position: relative;
  height: 65vh;
  background:url(../images/kind-mit-brille.jpg)no-repeat center bottom -50px / cover;
}


header #header-overlay {
  position: absolute;
  top: 12.5rem;
  font-size: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  header #header-overlay {
    left: 10%;
    font-size: 36px;
    text-align: left;
    transform: unset;
    top: 15rem;
  }
}
@media only screen and (min-width: 1200px) {
  header #header-overlay {
    font-size: 42px;
  }
}
header #header-overlay h1, header #header-overlay h2 {
  font-size: inherit;
}

#shop-btn {
  margin-top: 1.5em;
}

#mailto {
  cursor: pointer;
  text-decoration: underline;
}

#datenschutz {
  cursor: pointer;
}

/* Imageslider, Störer, Platzhalter */
#stoerer {
  overflow: hidden;
}

.slideshow-container img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

#cta {
  background: #60B22B;
  padding-block: 1.5rem;
  font-family: "Poppins", sans-serif;
}
#cta div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  width: min(85%, 70rem);
  margin-inline: auto;
}
@media only screen and (min-width: 500px) {
  #cta div {
    flex-direction: row;
    gap: 0.5rem;
    text-align: left;
  }
}
#cta span {
  color: #404040;
}
#cta h4 {
  color: #FFF;
}

/* Footer */
footer {
  background-color: #404040;
  color: #F5F5F5;
}
footer #footer-icons {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
footer #footer-icons img {
  width: 24px;
  height: 24px;
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #FFF;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
footer > div {
  width: min(85%, 70rem);
  padding-block: min(7.5%, 10rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}
footer > div > * {
  flex-basis: 100%;
}
@media only screen and (min-width: 768px) {
  footer > div {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
footer > div #text-information {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
footer > div #text-information a {
  text-decoration: underline;
  display: inline-block;
}
footer #help a {
  display: block !important;
}

.dsa-cookie-notice {
  position: fixed;
  width: 100%;
  right: 0;
  bottom: 0;
  color: #FFF;
  background-color: #60B22B;
  transition-duration: 0.25s;
}
@media only screen and (min-width: 768px) {
  .dsa-cookie-notice {
    width: 300px;
    left: unset;
    margin: unset;
    right: 1rem;
    bottom: 1rem;
  }
}

/* Maps fix */
.dsa-secure-plugin-checkbox {
  display: none;
}

.dsa-secure-plugin input:checked + .dsa-slider {
  background-color: #60B22B;
}

.dsa-buttons a {
  background-color: #60B22B;
}
.dsa-buttons a:hover {
  background-color: #4a8921;
}

.dsa-secure-plugin .dsa-tooltip .tooltiptext {
  background-color: #60B22B;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
}

/* Imageslider */
/* Slideshow container */
.slideshow-container {
  width: min(95%, 500px);
  position: relative;
  margin-inline: auto;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .slideshow-container {
    margin-top: 3rem;
  }
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.bildquellen a {
  display: block;
}

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

.dsa-secure-plugin{border-radius:5px;position:relative}.dsa-secure-plugin .dsa-secure-image{width:100%;height:100%}.dsa-secure-plugin{font-size:12px;line-height:16px}.dsa-secure-plugin .dsa-buttons{width:90%;margin:auto;text-align:center}.dsa-secure-plugin .dsa-buttons a:nth-of-type(2n){margin-top:10px}.dsa-secure-plugin .undercheck{background-color:#fff;color:#222!important;border-radius:5px;padding:4px;margin:8px 50% 16px;width:202px;transform:translateX(-50%)}.dsa-secure-plugin .check-slide-content{position:absolute;top:50%;left:5%;width:90%;margin:auto;-webkit-transform:translateY(100%);transform:translateY(-50%)}.dsa-secure-plugin .dsa-switch{position:relative;width:60px;height:34px;display:block}.dsa-secure-plugin .check-slide{visibility:hidden;opacity:0;transition:visibility 0s,opacity .5s linear}.dsa-secure-plugin .dsa-secure-plugin input{display:none}.dsa-secure-plugin iframe{width:100%}.dsa-secure-plugin .dsa-switch{margin-left:calc(50% - 30px)}.dsa-secure-plugin p,.dsa-secure-plugin p{text-align:center;font-family:arial;padding:10px 0;display:block;margin:auto;font-weight:700}.dsa-secure-plugin .check-slide{position:absolute;top:0;left:0;width:100%;height:100%;background-image:url(../images/bg.png);color:#000}.dsa-secure-plugin .check-slide.hide{display:none}.dsa-secure-plugin a{font-size:12px;text-align:center;font-family:arial;display:block;margin:auto;width:calc(100% - 20px);max-width:300px;background-color:#cc1417;border-radius:5px;padding:5px 10px;text-decoration:none;color:#fff}.dsa-secure-plugin a:hover{background-color:#dd171b}.dsa-secure-plugin:hover .check-slide,.dsa-secure-plugin .check-slide:hover{visibility:visible;opacity:1;visibility:visible;opacity:1}.dsa-secure-plugin .dsa-tooltip{position:relative;display:inline-block;border-bottom:1px dotted #000}.dsa-secure-plugin .dsa-buttons a:hover{color:#fff!important}.dsa-secure-plugin .dsa-tooltip .tooltiptext{font-size:12px;visibility:hidden;width:100%;max-width:300px;background-color:#cc1417;color:#fff;text-align:center;padding:5px 10px;border-radius:6px;position:absolute;z-index:1;bottom:125%;left:0;margin-left:0;opacity:0;transition:opacity .3s}.dsa-secure-plugin .dsa-tooltip .tooltiptext::after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent}.dsa-secure-plugin .dsa-tooltip:hover .tooltiptext,.dsa-tooltip.active .tooltiptext{visibility:visible;opacity:1}.dsa-secure-plugin .dsa-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#333;-webkit-transition:.4s;transition:.4s}.dsa-secure-plugin .dsa-slider:before{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.dsa-secure-plugin input:checked+.dsa-slider{background-color:#cc1417}.dsa-secure-plugin input:focus+.dsa-slider{box-shadow:0 0 1px #cc1417}.dsa-secure-plugin input:checked+.dsa-slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px)}.dsa-secure-plugin .dsa-slider.round{border-radius:34px}.dsa-secure-plugin .dsa-slider.round:before{border-radius:50%}.dsa-cookie-notice-close:hover{background-color:#000}.dsa-cookie-notice-close{position:absolute;display:block;height:20px;bottom:20px;width:20px;line-height:20px;right:5px;top:5px;text-decoration:none;color:#fff!important;background-color:#515151}.dsa-cookie-notice{font-family:arial;font-size:12px;display:block;position:fixed;left:0;right:0;bottom:10px;z-index:99999!important;background-color:#6d6d6d;margin:auto;width:100%;text-align:center}.dsa-cookie-notice a{color:#000}.dsa-cookie-notice.hide{display:none}.cookie-inner{padding:25px}@media (max-width:900px){.dsa-secure-plugin .check-slide,.dsa-secure-plugin .check-slide{visibility:visible;opacity:1;visibility:visible;opacity:1}}
