/* ====================================================
   MüllMeister CSS – Nature Organic / Flexbox Only
   ====================================================
   Author: AI Senior CSS Designer
   License: MIT (2024)
==================================================== */

/* CSS Reset & Normalize */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f8f8f3;
  color: #353522;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
(-webkit-font-smoothing: antialiased;)
  background-image: url('../assets/background-texture.png'); /* fallback: simple texture (optional) */
  background-size: cover;
  background-repeat: no-repeat;
}
img { border: 0; max-width: 100%; height: auto; border-radius: 10px; }
ul, ol { margin-left: 24px; }
a { color: #23527C; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #3a8555; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Verdana, sans-serif;
  color: #23527C;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 0.7em; }
h2 { font-size: 2rem; margin-bottom: 0.6em; }
h3 { font-size: 1.35rem; margin-bottom: 0.5em; }
h4 { font-size: 1.12rem; }
p, li {
  font-size: 1rem;
  color: #353522;
}
strong { color: #23527C; }
em { font-style: italic; color: #5e5e3d; }

.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

/*==================
  Header & Navigation
===================*/
header {
  background: #fff9e5;
  box-shadow: 0 2px 12px rgba(34, 82, 124, 0.06);
  border-bottom: 1px solid #ebe4cb;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  display: block;
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #23527C;
  padding: 8px 0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  color: #3a8555;
  border-bottom: 2px solid #3a8555;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.8em 2.3em;
  background: #3a8555;
  color: #fff;
  border-radius: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 9px rgba(58,133,85,0.10);
  border: 0;
  margin-left: 28px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: #146a38;
  color: #ffd600;
  box-shadow: 0 4px 16px rgba(58,133,85,0.18);
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #3a8555;
  cursor: pointer;
  margin-left: 24px;
}

/*===============
  Mobile Navigation
===============*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(244,246,236,0.98);
  box-shadow: -5px 0 18px rgba(34,82,124,0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #146a38;
  align-self: flex-end;
  margin: 28px 28px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #23527C; }
.mobile-nav {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: #23527C;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid #ebeae1;
  transition: color 0.2s, background 0.2s;
  border-radius: 0;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #e3f4df;
  color: #3a8555;
  outline: none;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
  .cta-button { margin-left: 12px; padding: 0.7em 1.5em; }
}

@media (max-width: 890px) {
  .main-nav { gap: 7px; }
  .cta-button { font-size: 1rem; }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .main-nav { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

/*==========================
  Hero Banners & Major Sections
===========================*/
.hero {
  background: #d7eed6 url('../assets/hero-leaf.svg') no-repeat right bottom;
  background-size: 260px auto;
  border-radius: 0 0 36px 36px;
  padding: 0;
}
.hero .container { min-height: 340px; justify-content: center; }
.hero .content-wrapper {
  padding: 64px 0 36px 0;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #146a38;
  font-size: 2.3rem;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 1.17rem;
  color: #2b3c1e;
  margin-bottom: 10px;
}
.hero .cta-button {
  margin-top: 10px;
}

/* Section/Spacing Rules */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffefb;
  border-radius: 28px;
  box-shadow: 0 2px 18px rgba(49,81,38,0.04);
}

/* Flexbox Pattern Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 270px;
  max-width: 362px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f3f7ec;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(58,133,85,0.08);
  margin-bottom: 20px;
  transition: box-shadow .18s, background .18s;
  border: 1.5px solid #dde9cf;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #e2f2cf;
  box-shadow: 0 6px 20px rgba(58,133,85,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features Grid */
.features {
  background: #f6fce7;
  border-radius: 36px;
  box-shadow: 0 6px 24px rgba(58,133,85,0.07);
}
.features .container {
  padding: 0 8px;
}
.features h2 {
  color: #146a38;
  margin-bottom: 24px;
}
.features .content-wrapper {
  width: 100%;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
}
.feature {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 3px 16px rgba(88,124,34,.08);
  padding: 32px 24px 24px 24px;
  text-align: left;
  min-width: 230px;
  flex: 1 1 215px;
  transition: box-shadow 0.18s, transform 0.18s, background 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid #e4eed2;
  position: relative;
  margin-bottom: 20px;
}
.feature img {
  height: 48px;
  width: 48px;
}
.feature h3 { font-size: 1.17rem; color: #23527C; }
.feature p { color: #4c5e3b; font-size: 1rem; }
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 28px rgba(58,133,85,0.16);
  background: #f4fdee;
  transform: translateY(-4px) scale(1.012);
  z-index: 2;
}

/* Trust signals & USP lists */
.trust-signals ul, .usp ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  align-items: center;
  justify-content: flex-start;
}
.trust-signals ul li, .usp ul li {
  display: flex;
  align-items: center;
  background: #e9f7e2;
  padding: 12px 20px;
  border-radius: 20px;
  color: #23527C;
  font-weight: 500;
  font-family: 'Montserrat', Verdana, sans-serif;
  font-size: 1rem;
  gap: 8px;
}
.trust-signals ul li img, .usp ul li img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

/* Team profiles */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.team-profile {
  flex: 1 1 215px;
  min-width: 180px;
  max-width: 300px;
  background: #fffefb;
  border-radius: 18px;
  border: 1.3px solid #e4eed2;
  box-shadow: 0 2px 10px rgba(88,124,34,.05);
  padding: 18px 14px 14px 14px;
  margin-bottom: 20px;
  font-size: 0.99em;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.18s, background 0.16s;
}
.team-profile h3 {
  font-size: 1.13rem;
  color: #146a38;
  margin-bottom: 4px;
}
.team-profile p { color: #466240; }
.team-profile:hover, .team-profile:focus-within {
  background: #f4fdee;
  box-shadow: 0 4px 16px rgba(88,124,34,0.09);
}

/* Instructions & location blocks (Sortieranleitung, Abgabestellen) */
.instructions .content-wrapper, .locations .content-wrapper, .tips .content-wrapper,
.step-by-step .content-wrapper, .calendar-schedule .content-wrapper, .about .content-wrapper, .contact .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-top: 16px;
}
.bins-guide, .tips, .location-block, .abgabe-notes, .prep-tips, .materials-list, .calendar-tools, .export-feature, .reminder-signup, .address-block, .contact-details, .business-hours, .contact-description {
  flex: 1 1 220px;
  min-width: 215px;
  max-width: 420px;
  margin-bottom: 20px;
  background: #f7faf4;
  border-radius: 14px;
  padding: 20px 16px 18px 16px;
  box-shadow: 0 1px 7px rgba(49,81,38,.04);
  border: 1px solid #e6e6d8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location-block h3, .bins-guide h3, .tips h3, .abgabe-notes h3, .prep-tips h3, .materials-list h3, .calendar-tools h3, .export-feature h3, .reminder-signup h3, .address-block h3, .contact-details h3, .business-hours h3 {
  font-size: 1.1rem;
  color: #23527C;
  margin-bottom: 6px;
}

.interactive-map {
  margin-top: 32px;
  background: #eaf8e1;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 1px 7px rgba(58,133,85,.06);
  border: 1px solid #dde9cf;
  font-size: 1.04rem;
}

/* FAQ */
.faq-search {
  background: #eaf8e1;
  border-radius: 14px;
  padding: 22px 18px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #dde9cf;
}
.faq-search label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  color: #23527C;
}
.faq-search input[type='text'] {
  margin-top: 5px;
  padding: 10px 12px;
  border-radius: 7px;
  border: 1.2px solid #ccd5b7;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  background: #f6fff4;
  color: #2d341e;
  transition: border 0.13s;
}
.faq-search input[type='text']:focus {
  outline: 2px solid #146a38;
  border: 1.5px solid #23527C;
}

.faq-list ul {
  margin-top: 16px;
  margin-bottom: 18px;
}
.faq-list ul li {
  margin-bottom: 22px;
  background: #fffbec;
  border-left: 5px solid #ffd600;
  padding: 14px 12px 12px 20px;
  border-radius: 13px;
  color: #23527C;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 1px 5px rgba(255,220,96,0.035);
  font-size: 1em;
}

.contact-support {
  background: #faf8f4;
  border-radius: 13px;
  padding: 20px 18px 17px 18px;
  border: 1px solid #ebe4cb;
  color: #23527C;
  font-size: 1.07em;
}
.contact-support a {
  color: #3a8555;
  text-decoration: underline;
  font-weight: 600;
}

/* Calendar schedule */
.calendar-tools, .export-feature, .reminder-signup {
  background: #fffde7;
  border: 1px solid #ebe4cb;
}

/* Cookie Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #314119;
  color: #fffde7;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 4vw 22px 4vw;
  box-shadow: 0 -4px 20px rgba(44, 59, 26, 0.20);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.06em;
  animation: slideInBanner 0.44s both;
}
@keyframes slideInBanner {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 320px;
  margin: 0 12px 0 0;
  color: white;
}
.cookie-banner a {
  color: #dde9cf;
}
.cookie-banner .cookie-btn {
  margin-right: 8px;
  min-width: 110px;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 22px;
  border: none;
  background: #3a8555;
  color: #fffde7;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 9px rgba(58,133,85,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow .17s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ffd600;
  color: #2b3c1e;
  box-shadow: 0 3px 16px rgba(255,214,0,0.17);
  outline: none;
}
.cookie-banner .cookie-btn-reject {
  background: none;
  border: 2px solid #e1decc;
  color: #fffde7;
  margin-left: 8px;
  margin-right: 8px;
  transition: background 0.14s, color 0.19s, border 0.16s;
}
.cookie-banner .cookie-btn-reject:hover, .cookie-banner .cookie-btn-reject:focus {
  background: #ffd600;
  color: #314119;
  border-color: #ffd600;
}
.cookie-banner .cookie-btn-settings { background: #fffde7; color: #146a38; border: 2px solid #fffde7; }
.cookie-banner .cookie-btn-settings:hover, .cookie-banner .cookie-btn-settings:focus { background: #ffd600; color: #23527C; }

.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10001;
  background: rgba(47,74,30,0.33);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeInCookieModal 0.32s both;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #f3f7ec;
  border-radius: 16px;
  box-shadow: 0 7px 36px rgba(49,81,38,.10);
  min-width: 320px;
  max-width: 98vw;
  padding: 40px 24px 28px 24px;
  font-family: 'Open Sans', sans-serif;
  color: #183816;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  max-width: 440px;
}
.cookie-modal-content h2 { font-size: 1.4em; color: #23527C; margin-bottom: 12px; }
.cookie-category {
  display: flex;
  flex-direction: column;
  margin-bottom: 9px;
  gap: 5px;
}
.cookie-category label {
  font-weight: 600;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #c6e2bb;
  border-radius: 22px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle:checked {
  background: #3a8555;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.24s;
}
.cookie-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 22px;
  background: none;
  border: none;
  color: #23527C;
  font-size: 1.8em;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #3a8555; }
/* End Cookie */

/* CTA Section */
.cta {
  background: #d7eed6 url('../assets/cta-leaf.svg') no-repeat right bottom;
  background-size: 162px auto;
  border-radius: 32px;
  box-shadow: 0 1px 10px rgba(49,81,38,0.05);
  margin-bottom: 60px;
}
.cta .container { justify-content: center; }
.cta .content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 0 28px 0;
}
.cta h2 { color: #146a38; font-size: 2rem; margin-bottom: 8px; }

/* Thank You / Next Steps */
.thank-you .content-wrapper, .next-steps .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  background: #f6fce7;
  border-radius: 23px;
  padding: 38px 28px;
  margin-bottom: 40px;
  box-shadow: 0 2px 9px rgba(58,133,85,0.04);
}
.thank-you .cta-button { margin-top: 10px; }

.next-steps ul {
  margin-top: 10px;
  margin-bottom: 0;
  list-style: disc inside;
  color: #23527C;
  font-weight: 500;
}

/* =================
   FOOTER
================== */
footer {
  background: #f1f5e5;
  padding: 45px 0 24px 0;
  border-top: 1px solid #e3edce;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-nav, .footer-contact, .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  min-width: 160px;
  flex: 1 1 130px;
  gap: 12px;
}
.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  color: #23527C;
  font-weight: 600;
  padding: 4px 0;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #3a8555;
}
.footer-contact {
  flex: 3 1 260px;
  font-size: 1.01em;
  color: #225012;
  gap: 7px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  vertical-align: text-bottom;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo {
  flex: 1 1 105px;
  margin-top: 16px;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer-logo img { height: 38px; width: auto; }

/* Accessibility & micro-effects */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #23527C;
  outline-offset: 2px;
}

/* ===================
  Utility & Helpers
==================== */
.content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }

/* Responsive adjustments */
@media (max-width: 980px) {
  .container, .footer-nav, .footer-contact, .footer-logo {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo { align-items: flex-start; margin-top: 20px; }
  .card-container, .feature-grid, .content-wrapper,
  .team-profiles, .trust-signals ul, .usp ul {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .hero .content-wrapper, .cta .content-wrapper, .thank-you .content-wrapper, .next-steps .content-wrapper {
    padding: 22px 6px;
    font-size: 1em;
  }
  .section, .features, .cta {
    padding: 28px 6px;
    margin-bottom: 35px;
  }
  .footer-logo {
    margin-top: 12px;
  }
  .content-wrapper, .testimonials .content-wrapper, .instructions .content-wrapper, .locations .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid, .trust-signals ul, .usp ul, .team-profiles {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .testimonial-card, .feature, .card, .team-profile {
    min-width: unset;
    max-width: 100%;
  }
  .testimonial-card, .feature, .team-profile { padding: 16px 11px; }
  .calendar-tools, .address-block, .contact-details, .business-hours, .contact-description, .location-block, .prep-tips, .abgabe-notes, .materials-list, .bins-guide, .tips { padding: 12px 8px; }
}
@media (max-width: 550px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .logo img { height: 36px; }
  .footer-logo img { height: 28px; }
  .feature img { height: 28px; width: 28px; }
  .hero, .section, .features, .cta, .thank-you .content-wrapper {
    border-radius: 13px;
  }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 11px; padding: 19px 6vw 19px 6vw; }
  .cookie-banner p { margin: 0 0 8px 0; }
  .cookie-banner .cookie-btn { width: 100%; margin-bottom: 7px; }
}

/* Organic curves and nature decorative effect using pseudo-elements where possible */
.hero, .cta {
  position: relative;
}
.hero:before, .cta:before {
  content: '';
  position: absolute;
  left: -45px;
  bottom: -30px;
  width: 160px;
  height: 100px;
  background: #3a8555;
  opacity: 0.10;
  border-radius: 80px 70px 70px 80px;
  filter: blur(15px);
  pointer-events: none;
}

/* Selection */
::selection {
  background: #d7eed6;
  color: #23527C;
}

/* Font imports */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/* Hide when JavaScript not available (for menu, cookies) */
.no-js .mobile-menu, .no-js .cookie-banner, .no-js .cookie-modal { display: none!important; }

/* END MüllMeister Nature Organic Flexbox CSS */
