@charset "UTF-8";
/*Import fonds*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/* Allgemeine Einstellungen*/
:root {
  --primary-color: #740140c7;
  --secondary-color: rgba(255, 0, 128, 0.151);
  --background-color: #ec0f8917;
  --slideshow-background-color: #ff41aa2a;
  --mobile-menu-color: rgb(255, 194, 247);
  --features-backgorund: #63113ed2;
  --navbar-background: white;
}

/*body settings*/
body {
  background: var(--background-color);
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/*Links , listen, Sctions aufräumen*/
a {
  color: #6b2b2b;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section {
  padding: 3em 2em;
}

/*Navigationsbar*/
.navbar {
  background: var(--navbar-background);
  padding: 1em;
  width: auto;
  height: auto;
}

.navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: black;
  font-size: 1.75em;
}

.navbar .logo span {
  color: var(--primary-color);
}

.navbar .mobile-burger-menu {
  width: 9%;
  padding-left: 0.4em;
  padding-right: 1.5em;
}

.navbar nav {
  display: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar .mobile-burger-menu {
  cursor: pointer;
}

/* Hero Container*/
.hero {
  text-align: center;
  margin: auto auto;
  width: auto;
  height: auto;
  background-color: white;
  padding-bottom: 4.5em;
}

.hero .container {
  display: table;
  width: 100%;
}

.left-col .sub-head {
  text-transform: uppercase;
  font-weight: bold;
  color: black;
}

.left-col .sub-head span {
  color: var(--primary-color);
}

.left-col h1 {
  font-size: 2.5em;
  line-height: 1.3em;
  margin-top: 0.2em;
  text-transform: uppercase;
}

.left-col .primary-cta {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 0.6em 1.3em;
  font-size: 1.4em;
  border-radius: 5em;
  font-weight: bold;
  display: inline-block;
}

.left-col .primary-cta:hover {
  color: var(--primary-color);
  border: 4px solid var(--primary-color);
  background-color: white;
  font-weight: bold;
  border-radius: 5em;
  margin-top: -0.2em;
}

.left-col .watch-video-cta {
  display: block;
  margin-top: 1em;
}

.left-col .watch-video-cta img {
  margin-right: 0.5em;
}

.hero-image {
  width: 40%;
  margin-top: 3em;
}

/*Features Container*/
.features-section {
  background: var(--features-backgorund);
  color: white;
  -webkit-box-pack: contain;
      -ms-flex-pack: contain;
          justify-content: contain;
}

ul.features-list {
  margin: 0;
  padding-left: 1em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(19rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}

ul.features-list li {
  font-size: 1.1em;
  margin-bottom: 1em;
  margin-left: 2em;
  position: relative;
}

ul.features-list li:before {
  content: "";
  left: -1.5em;
  top: 0.1em;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../images/bullet.svg");
  background-size: contain;
  margin-right: 0.5em;
}

.features-section-image {
  display: none;
}

/*Testimonials-Section*/
.Testimonials-section {
  background: var(--background-color);
  color: black;
  padding-bottom: none;
  margin-bottom: -2em;
}

.Testimonials-section li {
  background: var(--slideshow-background-color);
  text-align: center;
  padding: 2em 1em;
  width: 80%;
  margin: 0 auto 5em auto;
  border-radius: 1em;
}

.Testimonials-section li img {
  width: 5em;
  height: 5em;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  margin-top: -4.5em;
}

/*contact section*/
h2 {
  font-size: 2em;
}

label {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top: 1em;
}

input,
textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  border-radius: 0.3em;
  border: 1px solid gray;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.nachricht-senden-cta {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 0.6em 2em;
  font-size: 1.4em;
  border-radius: 0.3em;
  font-weight: bold;
  border: none;
  display: inline-block;
  margin: auto auto auto auto;
  cursor: pointer;
  width: "";
  text-align: center;
}

.mail-cta {
  padding-top: 1em;
}

.mail-cta h2,
.mail-cta p,
.mail-cta a {
  display: inline;
}

iframe {
  width: 100%;
  height: 350px;
}

/*Footer*/
.footer {
  background-color: var(--slideshow-background-color);
}

.back-to-top {
  text-align: center;
}

.back-to-top-link {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 0.6em 2em;
  font-size: 1em;
  border-radius: 0.3em;
  font-weight: normal;
  border: none;
  display: inline-block;
  margin: auto auto auto auto;
  cursor: pointer;
  width: "";
  text-align: center;
}

.sroll-to-top-btn {
  display: none;
}

.copyright {
  text-align: center;
}

/*mobile menu*/
/* Most of that os regulated under @media only screen max width 839px and 330px*/
nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background: var(--mobile-menu-color);
  height: 100vh;
  text-align: center;
}

nav ul.primary-nav {
  margin-top: 7em;
  font-size: 1em;
  text-align: left;
}

nav ul.primary-nav .current {
  font-weight: bold;
}

nav ul.secondary-nav {
  margin-top: 0;
  font-size: 1em;
  text-align: center;
}

nav li a {
  color: black;
  text-decoration: none;
  padding: 1em;
  font-size: 1.7em;
  text-align: center;
  margin: 1em;
}

.mobile-menu-exit {
  float: right;
  margin: 0.5em;
  cursor: pointer;
  height: 8%;
}

/* Under Construction*/
.uc h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Inhaltsstoffe*/
.uc-inhaltsstoffe {
  display: none;
}

.Inhaltsstoffe-hero {
  text-align: center;
  margin: auto auto;
  width: auto;
  height: auto;
  padding-top: 1.8em;
  padding-bottom: 0;
  font-size: 0.85em;
}

.Inhaltsstoffe-hero .hero-inhaltsstoffe-container {
  display: -ms-grid;
  display: grid;
  width: 100%;
  padding-top: 1.8em;
}

.Inhaltsstoffe-hero .hero-inhaltsstoffe-container .left-col-inhs {
  display: -ms-grid;
  display: grid;
  padding-bottom: 1.8em;
}

.Inhaltsstoffe-hero .hero-inhaltsstoffe-container .left-col-inhs .table-inhaltsstoffe .td-primary {
  font-weight: bold;
}

.Inhaltsstoffe-hero .hero-inhaltsstoffe-container .right-col-inhs {
  width: 100%;
  height: 100%;
  text-align: left;
}

.slideshow-display {
  margin-bottom: 2em;
}

.slideshow-img {
  margin: auto;
  height: 100%;
  width: 100%;
}

.table-inhaltsstoffe {
  text-align: left;
}

.back-to-top-inhs {
  display: none;
}

/*faq*/
.uc-faq {
  display: none;
}

.questions .faq-q {
  font-size: 1.6em;
  margin-bottom: 0.25em;
}

.questions .faq-aw {
  font-size: 1.2em;
  margin-bottom: 2em;
  margin-top: 0em;
}

.questions .faq-a:hover {
  font-weight: bold;
}

/*Gallery*/
.uc-gallery {
  display: none;
}

/*Gallery Slideshow*/
.wildshow {
  text-align: center;
  /*Section*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 0.6em;
  /*prev & next button*/
  /* Position des next buttons nach rechts*/
  /* Position des prev buttons nach rechts*/
  /* On hover, add a black background color with a little bit see-through */
  /*Caption*/
  /* Number text (1/9 etc) */
  /* The dots/bullets/indicators */
  /*Fading Animation*/
}

.wildshow .container-wildshow {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.wildshow .container-wildshow .heading-ss {
  font-size: 2em;
}

.wildshow .container-wildshow .heading-ss span {
  color: var(--primary-color);
}

.wildshow .mySlides {
  display: none;
  /* Hide by default*/
  width: 100%;
  height: 100%;
}

.wildshow .prev,
.wildshow .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 10px 0 0 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: var(--secondary-color);
  opacity: 100%;
}

.wildshow .prev:hover,
.wildshow .next:hover {
  opacity: 100%;
  cursor: pointer;
}

.wildshow .next {
  right: 0;
  border-radius: 0 10px 10px 0;
}

.wildshow .prev {
  left: 0;
  border-radius: 10px 0 0 10px;
}

.wildshow .prev:hover,
.wildshow .next:hover {
  background-color: var(--primary-color);
}

.wildshow .text {
  color: #f2f2f2;
  font-size: 2em;
  background-color: var(--primary-color);
  padding: 0;
  position: relative;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.wildshow .numbertext {
  color: #f2f2f2;
  font-size: 1em;
  padding: 8px 12px;
  position: absolute;
  top: 5em;
}

.wildshow .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 10%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

.wildshow .dot .active,
.wildshow .dot .dot:hover {
  background-color: black;
}

.wildshow .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* MEDIA RESPONSIVENESS*/
/* 220px MAX */
@media only screen and (max-width: 220px) {
  .back-to-top-link {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: auto;
    font-size: 0.6em;
    border-radius: 0.3em;
    font-weight: normal;
    border: none;
    display: inline-block;
    margin: auto auto auto auto;
    cursor: pointer;
    width: auto;
    text-align: center;
  }
  .navbar .a.logo {
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-size: 0.8em;
    margin-top: -0.15em;
  }
  .navbar .a.logo span {
    color: var(--primary-color);
    font-size: 0.8em;
  }
}

/* 250px MAX*/
@media only screen and (max-width: 250px) {
  .navbar .mobile-burger-menu {
    padding-right: 0em;
  }
  .navbar .logo {
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-size: 1.4em;
    margin-top: -0.15em;
  }
  .navbar .logo span {
    color: var(--primary-color);
  }
  /*Footer*/
  .footer {
    background-color: var(--slideshow-background-color);
  }
  .back-to-top {
    text-align: center;
  }
  .back-to-top-link {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.6em 2em;
    font-size: 1em;
    border-radius: 0.3em;
    font-weight: normal;
    border: none;
    display: inline-block;
    margin: auto auto auto auto;
    cursor: pointer;
    width: "";
    text-align: center;
  }
  /* FAQ_Questions*/
  .questions .faq-q {
    font-size: 1.2em;
    margin-bottom: 0.25em;
  }
  .questions .faq-aw {
    font-size: 0.8em;
    margin-bottom: 2em;
    margin-top: 0em;
  }
  .questions .faq-a:hover {
    font-weight: bold;
  }
  /*Gallery Slideshow*/
  .wildshow {
    text-align: center;
    /*Section*/
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 0.4em;
    /*prev & next button*/
    /* Position des next buttons nach rechts*/
    /* Position des prev buttons nach rechts*/
    /* On hover, add a black background color with a little bit see-through */
    /*Caption*/
    /* Number text (1/9 etc) */
    /* The dots/bullets/indicators */
    /*Fading Animation*/
  }
  .wildshow .container-wildshow {
    max-width: 1000px;
    position: relative;
    margin: auto;
    font-size: 0.8em;
  }
  .wildshow .container-wildshow .heading-ss {
    font-size: 3px;
  }
  .wildshow .mySlides {
    display: none;
    /* Hide by default*/
    width: 100%;
    height: 100%;
  }
  .wildshow .prev,
  .wildshow .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    border-radius: 10px 0 0 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: var(--secondary-color);
    opacity: 100%;
  }
  .wildshow .prev:hover,
  .wildshow .next:hover {
    opacity: 100%;
    cursor: pointer;
  }
  .wildshow .next {
    right: 0;
    border-radius: 0 10px 10px 0;
  }
  .wildshow .prev {
    left: 0;
    border-radius: 10px 0 0 10px;
  }
  .wildshow .prev:hover,
  .wildshow .next:hover {
    background-color: var(--primary-color);
  }
  .wildshow .text {
    color: #f2f2f2;
    font-size: 2em;
    background-color: var(--primary-color);
    padding: 0;
    position: relative;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  .wildshow .numbertext {
    color: #f2f2f2;
    font-size: 1em;
    padding: 8px 12px;
    position: absolute;
    top: 5em;
  }
  .wildshow .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 10%;
    display: none;
    -webkit-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;
  }
  .wildshow .dot .active,
  .wildshow .dot .dot:hover {
    background-color: black;
  }
  .wildshow .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @-webkit-keyframes fade {
    from {
      opacity: 0.3;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
}

/* 430   MAX*/
@media only screen and (max-width: 430px) {
  /*Gallery Slideshow*/
  .wildshow {
    text-align: center;
    /*Section*/
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 0.6em;
    /*prev & next button*/
    /* Position des next buttons nach rechts*/
    /* Position des prev buttons nach rechts*/
    /* On hover, add a black background color with a little bit see-through */
    /*Caption*/
    /* Number text (1/9 etc) */
    /* The dots/bullets/indicators */
    /*Fading Animation*/
  }
  .wildshow .container-wildshow {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  .wildshow .container-wildshow .heading-ss {
    font-size: 1em;
  }
  .wildshow .container-wildshow .heading-ss span {
    color: var(--primary-color);
  }
  .wildshow .mySlides {
    display: none;
    /* Hide by default*/
    width: 100%;
    height: 100%;
  }
  .wildshow .prev,
  .wildshow .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    border-radius: 10px 0 0 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: var(--secondary-color);
    opacity: 100%;
  }
  .wildshow .prev:hover,
  .wildshow .next:hover {
    opacity: 100%;
    cursor: pointer;
  }
  .wildshow .next {
    right: 0;
    border-radius: 0 10px 10px 0;
  }
  .wildshow .prev {
    left: 0;
    border-radius: 10px 0 0 10px;
  }
  .wildshow .prev:hover,
  .wildshow .next:hover {
    background-color: var(--primary-color);
  }
  .wildshow .text {
    color: #f2f2f2;
    font-size: 2em;
    background-color: var(--primary-color);
    padding: 0;
    position: relative;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  .wildshow .numbertext {
    color: #f2f2f2;
    font-size: 1em;
    padding: 8px 12px;
    position: absolute;
    top: 5em;
  }
  .wildshow .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 10%;
    display: inline-block;
    -webkit-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;
  }
  .wildshow .dot .active,
  .wildshow .dot .dot:hover {
    background-color: black;
  }
  .wildshow .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @-webkit-keyframes fade {
    from {
      opacity: 0.3;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
}

/* 500px MIN*/
@media only screen and (min-width: 500px) {
  .navbar .logo {
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-size: 2.4em;
    margin-top: -0.15em;
  }
  .navbar .logo span {
    color: var(--primary-color);
  }
  /*Footer*/
  .footer {
    background-color: var(--slideshow-background-color);
  }
  .back-to-top {
    text-align: center;
  }
  .back-to-top-link {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.6em 2em;
    font-size: 1em;
    border-radius: 0.3em;
    font-weight: normal;
    border: none;
    display: inline-block;
    margin: auto auto auto auto;
    cursor: pointer;
    width: "";
    text-align: center;
  }
}

/* 610px   MAX*/
@media only screen and (max-width: 610px) {
  /*Gallery Slideshow*/
  .wildshow {
    text-align: center;
    /*Section*/
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 0.6em;
    /*prev & next button*/
    /* Position des next buttons nach rechts*/
    /* Position des prev buttons nach rechts*/
    /* On hover, add a black background color with a little bit see-through */
    /*Caption*/
    /* Number text (1/9 etc) */
    /* The dots/bullets/indicators */
    /*Fading Animation*/
  }
  .wildshow .container-wildshow {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  .wildshow .container-wildshow .heading-ss {
    font-size: 1.8em;
  }
  .wildshow .container-wildshow .heading-ss span {
    color: var(--primary-color);
  }
  .wildshow .mySlides {
    display: none;
    /* Hide by default*/
    width: 100%;
    height: 100%;
  }
  .wildshow .prev,
  .wildshow .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    border-radius: 10px 0 0 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: var(--secondary-color);
    opacity: 100%;
  }
  .wildshow .prev:hover,
  .wildshow .next:hover {
    opacity: 100%;
    cursor: pointer;
  }
  .wildshow .next {
    right: 0;
    border-radius: 0 10px 10px 0;
  }
  .wildshow .prev {
    left: 0;
    border-radius: 10px 0 0 10px;
  }
  .wildshow .prev:hover,
  .wildshow .next:hover {
    background-color: var(--primary-color);
  }
  .wildshow .text {
    color: #f2f2f2;
    font-size: 2em;
    background-color: var(--primary-color);
    padding: 0;
    position: relative;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  .wildshow .numbertext {
    color: #f2f2f2;
    font-size: 1em;
    padding: 8px 12px;
    position: absolute;
    top: 5em;
  }
  .wildshow .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 10%;
    display: inline-block;
    -webkit-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;
  }
  .wildshow .dot .active,
  .wildshow .dot .dot:hover {
    background-color: black;
  }
  .wildshow .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @-webkit-keyframes fade {
    from {
      opacity: 0.3;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
}

/* 668px   MAX*/
@media only screen and (max-width: 668px) {
  /*Gallery Slideshow*/
  .wildshow {
    text-align: center;
    /*Section*/
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 0.6em;
    /*prev & next button*/
    /* Position des next buttons nach rechts*/
    /* Position des prev buttons nach rechts*/
    /* On hover, add a black background color with a little bit see-through */
    /*Caption*/
    /* Number text (1/9 etc) */
    /* The dots/bullets/indicators */
    /*Fading Animation*/
  }
  .wildshow .container-wildshow {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  .wildshow .container-wildshow .heading-ss {
    font-size: 1.8em;
  }
  .wildshow .container-wildshow .heading-ss span {
    color: var(--primary-color);
  }
  .wildshow .mySlides {
    display: none;
    /* Hide by default*/
    width: 100%;
    height: 100%;
  }
  .wildshow .prev,
  .wildshow .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    border-radius: 10px 0 0 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: var(--secondary-color);
    opacity: 100%;
  }
  .wildshow .prev:hover,
  .wildshow .next:hover {
    opacity: 100%;
    cursor: pointer;
  }
  .wildshow .next {
    right: 0;
    border-radius: 0 10px 10px 0;
  }
  .wildshow .prev {
    left: 0;
    border-radius: 10px 0 0 10px;
  }
  .wildshow .prev:hover,
  .wildshow .next:hover {
    background-color: var(--primary-color);
  }
  .wildshow .text {
    color: #f2f2f2;
    font-size: 2em;
    background-color: var(--primary-color);
    padding: 0;
    position: relative;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  .wildshow .numbertext {
    color: #f2f2f2;
    font-size: 1em;
    padding: 8px 12px;
    position: absolute;
    top: 5em;
  }
  .wildshow .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 10%;
    display: inline-block;
    -webkit-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;
  }
  .wildshow .dot .active,
  .wildshow .dot .dot:hover {
    background-color: black;
  }
  .wildshow .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @-webkit-keyframes fade {
    from {
      opacity: 0.3;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
}

/*830px MIN*/
@media only screen and (min-width: 830px) {
  /* Navbar */
  .mobile-burger-menu,
  .mobile-menu-exit {
    display: none;
  }
  .navbar .logo {
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-size: 2.4em;
    margin-top: -0.15em;
  }
  .navbar .logo span {
    color: var(--primary-color);
  }
  .navbar .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    padding-top: 0.5em;
  }
  .navbar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: none;
    position: relative;
    height: auto;
    width: 100%;
    padding-left: 0em;
  }
  .navbar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0.75em;
    margin: 0;
  }
  .navbar nav a {
    color: black;
    font-size: 1em;
    padding: 0.1em 0.2em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
    margin-right: 0em;
  }
  .navbar nav li.current a {
    font-weight: bold;
  }
  .navbar nav li.go-aromat-cta a {
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: bold;
    border-radius: 5em;
    margin-top: -0.2em;
  }
  .navbar nav li.go-aromat-cta a:hover {
    background: var(--primary-color);
    color: white;
  }
  /*Hero*/
  .primary-cta:hover {
    color: var(--primary-color);
    border: 4px solid var(--primary-color);
    background-color: white;
    font-weight: bold;
    border-radius: 5em;
    margin-top: -0.2em;
  }
  .left-col {
    padding-top: 2em;
  }
  .hero-image {
    margin: 0;
    padding-bottom: em;
  }
  /* Features*/
  .features-section-image {
    display: block;
    size: 100%;
    margin: auto;
  }
  /*Footer*/
  .footer {
    background-color: var(--slideshow-background-color);
  }
  .back-to-top {
    text-align: center;
  }
  .back-to-top-link {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.6em 2em;
    font-size: 1em;
    border-radius: 0.3em;
    font-weight: normal;
    border: none;
    display: inline-block;
    margin: auto auto auto auto;
    cursor: pointer;
    width: "";
    text-align: center;
  }
  /*Inhaltsstoffe*/
  /* hero*/
  .Inhaltsstoffe-hero {
    text-align: center;
    margin: auto auto;
    width: auto;
    height: auto;
    padding-top: 1.8em;
    padding-bottom: 0;
    font-size: 0.85em;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container {
    display: -ms-grid;
    display: grid;
    width: 100%;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container .left-col-inhs {
    display: -ms-grid;
    display: grid;
    padding-bottom: 1.8em;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container .left-col-inhs .table-inhaltsstoffe .td-primary {
    font-weight: bold;
  }
}

/*1080px MIN */
@media only screen and (min-width: 1080px) {
  /* Navbar */
  .mobile-burger-menu,
  .mobile-menu-exit {
    display: none;
  }
  .navbar .logo {
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-size: 3.4em;
  }
  .navbar .logo span {
    color: var(--primary-color);
  }
  .navbar .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
    padding-top: 0.5em;
    padding-left: 0em;
  }
  .navbar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: none;
    position: relative;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1.4em;
    margin: 0;
  }
  .navbar nav a {
    color: black;
    font-size: 1.4em;
    padding: 0.1em 0.2em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
    padding-left: 8em;
  }
  .navbar nav li.current a {
    font-weight: bold;
  }
  .navbar nav li.go-aromat-cta a {
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: bold;
    border-radius: 5em;
    margin-top: -0.2em;
  }
  .navbar nav li.go-aromat-cta a:hover {
    background: var(--primary-color);
    color: white;
  }
  /* Hero */
  .hero {
    text-align: center;
    margin: auto auto;
    width: 100%;
    height: 100%;
  }
  .hero .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1fr;
        grid-template-columns: 2fr 1fr;
    grid-gap: 20px;
  }
  .hero .container .left-col {
    padding-top: 0em;
  }
  .hero .container .left-col .sub-head {
    font-size: 2.5em;
  }
  .hero .container .left-col .hero-header {
    font-size: 5em;
  }
  .hero .container .left-col .hero-cta {
    font-size: 2em;
  }
  .primary-cta:hover {
    color: var(--primary-color);
    border: 4px solid var(--primary-color);
    background-color: white;
    font-weight: bold;
    border-radius: 5em;
    margin-top: -0.2em;
  }
  .features-section .container {
    display: -ms-grid;
    display: grid;
    padding-left: 3em;
    padding-right: 3em;
  }
  .features-section .container ul.features-list {
    display: -ms-grid;
    display: grid;
    font-size: 1.6em;
  }
  /* Features*/
  ul.features-list {
    margin: 0;
    padding-left: 1em;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(19rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  }
  ul.features-list li {
    font-size: 1.1em;
    margin-bottom: 1em;
    margin-left: 2em;
    position: relative;
  }
  ul.features-list li:before {
    content: "";
    left: -1.2em;
    top: 0.4em;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("../images/bullet.svg");
    background-size: contain;
    margin-right: 0;
  }
  /* Testimonials*/
  .Testimonials-section {
    padding-top: 8em;
  }
  .Testimonials-section .container {
    font-size: 2em;
  }
  /*Footer*/
  #copyright {
    font-size: 1.2em;
  }
  .footer {
    background-color: var(--slideshow-background-color);
  }
  .back-to-top {
    text-align: center;
  }
  .back-to-top-link {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.6em 2em;
    font-size: 1em;
    border-radius: 0.3em;
    font-weight: normal;
    border: none;
    display: inline-block;
    margin: auto auto auto auto;
    cursor: pointer;
    width: "";
    text-align: center;
  }
  /*Inhaltsstoffe*/
  /* hero*/
  .Inhaltsstoffe-hero {
    text-align: center;
    margin: auto auto;
    width: auto;
    height: auto;
    padding-top: 1.8em;
    padding-bottom: 0;
    font-size: 0.85em;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container {
    display: -ms-grid;
    display: grid;
    width: 100%;
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
    grid-gap: 20px;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container .left-col-inhs {
    display: -ms-grid;
    display: grid;
    padding-bottom: 1.8em;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container .left-col-inhs .table-inhaltsstoffe {
    font-size: 2em;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container .left-col-inhs .table-inhaltsstoffe .td-primary {
    font-weight: bold;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container .right-col-inhs .inhs-text {
    font-size: 1.2em;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container .right-col-inhs .inhs-head1 {
    font-size: 2em;
    text-align: center;
  }
  .Inhaltsstoffe-hero .hero-inhaltsstoffe-container .right-col-inhs .slideshow-display {
    padding-top: 2em;
    padding-right: 2em;
  }
}

/* Mobile Menu overlapping solution IT WORKS*/
@media only screen and (max-width: 829.9px) {
  .navbar nav {
    text-align: center;
  }
  .navbar nav ul {
    display: -ms-grid;
    display: grid;
    text-align: center;
    padding-top: 0.75em;
    margin: 3em;
  }
  .navbar nav a {
    text-align: center;
    color: black;
    font-size: 1.5em;
    padding: 0.1em 0.2em;
  }
  .navbar nav li.go-aromat-cta a {
    display: none;
    text-align: center;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: bold;
    border-radius: 5em;
    margin-top: -0.2em;
  }
}
/*# sourceMappingURL=main.css.map */