﻿/******************************************************************************************************
                                                Reset
******************************************************************************************************/

html, body, * {
  box-sizing: border-box !important;
}
html {
  height: 100%;
}
body {
  background-color: #fff;
  font-size: 16px; 
  height: 100%;     
  margin: 0;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
figure {
  margin: 0;
}


/******************************************************************************************************
                                              Schriften
******************************************************************************************************/

p, a, ol li {
  font-family: sans-serif;
  font-size: 1rem;  
  font-weight: 400;
}
h1, .h1-style {
  color: #ffffff;
  font-family: sans-serif;
  font-size: 3.5rem;
  font-weight: 700;    
  line-height: 120%;
  text-transform: uppercase; 
}
h2, .h2-style {
  color: #117700;
  font-family: sans-serif;
  font-size: 1.8125rem;
  font-weight: 400;    
  line-height: 120%;
  text-transform: uppercase; 
}
h3 {
  color: #117700;
  font-family: sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}
p, ol li {
  color: #111111;
  line-height: 150%;
}

/**************************************   media queries Schriften   *************************************/

@media (max-width: 479px) {
  h1, .h1-style {
    font-size: 1.75rem;
  }    
  h2, .h2-style {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.0625rem;
  } 
  p, ol li {
    font-size: 0.9375rem;
  }
}
@media (min-width: 480px) and (max-width: 719px) {
  h1, .h1-style {
    font-size: 2.5rem;
  }
  h2, .h2-style {
    font-size: 1.375rem;
  }
  h3 {
    font-size: 1.0625rem;
  }
  p, ol li {
    font-size: 0.9375rem;
  }
}
@media (min-width: 720px) and (max-width: 1023px) {
  h1, .h1-style {
    font-size: 3rem;
  }
  h2, .h2-style {
    font-size: 1.75rem;
  }   
  h3, .h3-style {
    font-size: 1.125rem;
  }
}

/******************************************************************************************************
                                      Allgemeine, Globale Styles
******************************************************************************************************/

main {
  background-color: #ffffff;
  margin: 0 auto;
  max-width: 2560px;
  min-height: calc(100vh - 246px);
}
a, button {
  cursor: pointer;
  text-decoration: none;
}
section > h2,
section > .h2-style {
  background-color: #ffffff;
  margin: 0 auto;
  padding:  2rem 0; 
  text-align: center;
}
section > h2 > span,
section > .h2-style > span {
  display: block;
  font-size: 0.7em;
  margin-top: 10px;
}

/******************************************************************************************************
                                              Klassen
******************************************************************************************************/

a.gs-btn {
  background-color: transparent;
  border: solid 2px #117700;
  border-radius: 8px;
  color: #117700;   
  display: inline-block; 
  font-weight: 400;   
  padding: 10px 16px 8px; 
  text-decoration: none;
  text-transform: uppercase; 
  transition: all 0.2s;
}
a.gs-btn:hover {
  background-color: #117700;
  color: #ffffff;   
  transition: all 0.2s;
}

/******************************************************************************************************
                                              Header
******************************************************************************************************/

header {
  background-color: #ffffff;
  padding: 12px 0 10px 0;
  position: relative;
}

header .header-wrapper {
  display: block;
  margin: 0 auto;  
  max-width: 1200px;
}

.header-wrapper .logo {
  display: block;
  margin: 0 auto; 
  width: 120px; 
}

.header-wrapper .logo a {
  display: inline-block;
  width: 100%; 
}

.header-wrapper .logo a img {
  display: inline-block;
  width: 100%; 
}

/**************************************   media queries Header   *************************************/

@media (max-width: 479px) {

}
@media (min-width: 480px) and (max-width: 719px) {

}
@media (min-width: 720px) and (max-width: 1023px) {
  
}
@media (min-width: 1024px) and (max-width: 1499px) {
 
}

/******************************************************************************************************
                                           section title
******************************************************************************************************/

section.section-title {
  background-attachment: fixed;
  background-image: url("../media/images/gummi-arabicum-granulat-ausgebreitet.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 62px);
  position: relative;  
  width: 100%;
}
section.section-title .h1-style {
  background-color: transparent;
  padding: 0;
  position: relative;
  top: 25%; 
}
section.section-title .h1-style span {
  font-size: 0.6em;
  font-weight: 400; 
  margin-top: 0;
}
section.section-title .scroll-down {
  color: #ffffff;
  display: block;
  margin: 0 auto;
  max-width: 8rem;
  opacity: 0.7;
  position: relative;
  text-align: center;  
  text-transform: uppercase;
  top: 55%;
}
section.section-title .scroll-down:hover {
  opacity: 1;
}
section.section-title .scroll-down__icon {
  background: url("../media/images/scroll-down-white.png");
  background-position: center; 
  background-size: cover;
  height: 42px;
  margin: 0 auto 1rem auto;
  width: 44px;  
}

/**********************************   media queries section title   **********************************/

@media (max-height: 559px) {
  section.section-title .scroll-down {
    bottom: 8%;     
    left: 50%;
    position: absolute;        
    top: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 479px) {
  section.section-title .section-title__headline {
    font-size: 1.75rem;
  }
}
@media (min-width: 480px) and (max-width: 719px) {
  section.section-title .section-title__headline {
    font-size: 2.5rem;
  }

}
@media (min-width: 720px) and (max-width: 1023px) {
  section.section-title .section-title__headline {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) and (max-width: 1499px) {

} 

/******************************************************************************************************
                                           section buy
******************************************************************************************************/

section.section-buy {
  background-color: #d0d8c1;  
}
section.section-buy .buy-wrapper {
  display: flex;
  flex-direction: row;    
  flex-wrap: wrap;
  justify-content: space-between; 
  margin:0 auto;
  max-width: 1040px;    
  padding: 7rem 0 9rem 0;
  width: 82%;
}
section.section-buy .buy-wrapper .buy-card {
  background-color: #ffffff; 
  box-shadow: 4px 5px 6px #999999;  
  margin-bottom: 20px;
  padding: 20px 15px;
  width: 30.5%;
}
section.section-buy .buy-wrapper .buy-card figure {
  width: 100%;
}
section.section-buy .buy-wrapper .buy-card figure img {
  width: 100%;
}
section.section-buy .buy-wrapper .buy-card .buy-card__headline {
  height: 69px;
}
section.section-buy .buy-wrapper .buy-card .buy-card__price {
  color: #117700;
  font-size: 24px;
  font-weight: 600;   
  margin-top: 42px;
  text-align: right;
}
section.section-buy .buy-wrapper .buy-card .buy-card__button {
  display: block;   
  font-weight: 400;   
  margin: 0 auto;    
  text-align: center;
  width: 100%;
}
section.section-buy .buy-wrapper .buy-card .buy-card__explanation {
  color: #888888; 
  font-size: 0.8rem;
  text-align: center; 
}

/***********************************   media queries section buy   ***********************************/

@media (max-width: 479px) {
  section.section-buy .buy-wrapper { 
    flex-direction: column;   
    padding: 4rem 0 3rem 0;  
  }
  section.section-buy .buy-wrapper .buy-card {      
    margin: 0 auto 24px auto;
    max-width: 400px;
    width: 100%;
  } 
  section.section-buy .buy-wrapper .buy-card .buy-card__headline {
    height: 40px;
  }
}
@media (min-width: 480px) and (max-width: 719px) {
  section.section-buy .buy-wrapper { 
    flex-direction: column;   
    padding: 4rem 0 3rem 0;  
  }
  section.section-buy .buy-wrapper .buy-card {      
    margin: 0 auto 24px auto;
    max-width: 400px;
    width: 80%;
  } 
  section.section-buy .buy-wrapper .buy-card .buy-card__headline {
    height: 40px;
  }
}
@media (min-width: 720px) and (max-width: 1023px) {
  section.section-buy .buy-wrapper { 
    justify-content: space-around; 
    max-width: 800px; 
    padding: 6rem 0 8rem 0;
    width: 90%;
  }
  section.section-buy .buy-wrapper .buy-card {
    width: 47%;
  } 
  section.section-buy .buy-wrapper .buy-card .buy-card__headline {
    height: 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1499px) {
  section.section-buy .buy-wrapper {
    width: 90%;
  }
  section.section-buy .buy-wrapper .buy-card {
    width: 31.5%;
  }    
}

/******************************************************************************************************
                                         section splitscreen
******************************************************************************************************/

section.section-splitscreen {
  background-color: #dddddd;
}
section.section-splitscreen .splitscreen-wrapper {
  display: flex;  
  flex-direction: row;
  flex-wrap: wrap;    
  justify-content: space-between;
}
section.section-splitscreen .splitscreen__image {
  background-image: url("../media/images/akazien-natur.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;   
  width: 57%;
}
section.section-splitscreen .splitscreen__text {
  padding: 8rem 12rem 11rem 6rem;  
  width: 43%;
}
section.section-splitscreen .splitscreen__headline {
  max-width: 500px;
  text-transform: uppercase;
}
section.section-splitscreen .splitscreen__paragraph {
  margin-top: 28px; 
  max-width: 500px;
}
section.section-splitscreen .splitscreen__button {
  margin-top: 32px;
}
section.section-splitscreen .splitscreen__button:hover {
  color:#dddddd;
}

/*******************************   media queries section splitscreen   *******************************/

@media (max-width: 479px) {
  section.section-splitscreen .splitscreen-wrapper {
    flex-direction: column;
  } 
  section.section-splitscreen .splitscreen__image {   
    height: 260px;
    width: 100%;
  }
  section.section-splitscreen .splitscreen__text {
    padding: 2.5rem 3rem 3.5rem 3rem;
    width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 719px) {
  section.section-splitscreen .splitscreen-wrapper {
    flex-direction: column;
  } 
  section.section-splitscreen .splitscreen__image {   
    height: 300px;
    width: 100%;
  }
  section.section-splitscreen .splitscreen__text {
    padding: 3rem 4rem 4rem 5rem;
    width: 100%;
  }
}
@media (min-width: 720px) and (max-width: 1023px) {
  section.section-splitscreen .splitscreen-wrapper {
    flex-direction: column;
  } 
  section.section-splitscreen .splitscreen__image {   
    height: 400px;
    width: 100%;
  }
  section.section-splitscreen .splitscreen__text {
    padding: 5rem 6rem 6rem 8rem;
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1499px) {
  section.section-splitscreen .splitscreen__image {
    width: 52%;
  }
  section.section-splitscreen .splitscreen__text {
    padding: 6rem 4rem 8rem 4rem;
    width: 48%;
  }
}

/******************************************************************************************************
                                           section usage
******************************************************************************************************/

section.section-usage {
  background-color: #dddddd;
}

section.section-usage .usage-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; 
  margin: 0 auto;
  max-width: 1250px;    
  padding: 4rem 0 1.5rem 0;
  width: 90%;
}
section.section-usage .usage-wrapper .usage-card {
  background-color: #ffffff;
  box-shadow: 2px 3px 5px #999999; 
  margin-bottom: 28px;
  width: 32%;  
}
section.section-usage .usage-wrapper .usage-card figure {
  width: 100%;
}
section.section-usage .usage-wrapper .usage-card figure img {
  width: 100%;
}
section.section-usage .usage-wrapper .usage-card__text {
  padding: 5px 32px 48px 32px; 
}
section.section-usage .usage-wrapper .usage-card__text .usage-card__headline {
  border-bottom: solid 1px #aaaaaa;
  font-size: 1.1875rem;  
  height: 65px;  
  line-height: 20px; 
  margin: 20px 0 22px 0;
  padding-bottom: 24px; 
}
section.section-usage .usage-wrapper .usage-card__text .usage-card__paragraph {
  font-size: 0.9375rem;
}
section.section-usage .usage-button-wrapper {
  padding: 20px 0 5rem 0;
  margin: 0 auto;
  max-width: 300px;
  width: 90%;
}
section.section-usage .usage-button-wrapper__button {
  display: block;
  text-align: center;
}

/**********************************   media queries section usage   **********************************/

@media (max-width: 479px) {
  section.section-usage .usage-wrapper {
    flex-direction: column;
  }
  section.section-usage .usage-wrapper .usage-card {    
    margin: 0 auto 20px auto; 
    max-width: 400px;
    width: 100%;    
  }
  section.section-usage .usage-wrapper .usage-card__text {
    padding: 5px 20px 40px 20px;
  }
  section.section-usage .usage-wrapper .usage-card__text .usage-card__headline {
    font-size: 1.0625rem;  
  }
}
@media (min-width: 480px) and (max-width: 719px) {
  section.section-usage .usage-wrapper {
    flex-direction: column;
  }
  section.section-usage .usage-wrapper .usage-card {    
    margin: 0 auto 20px auto; 
    max-width: 400px;
    width: 100%;    
  }
  section.section-usage .usage-wrapper .usage-card__text {
    padding: 5px 20px 40px 20px;
  }
  section.section-usage .usage-wrapper .usage-card__text .usage-card__headline {
    font-size: 1.0625rem;  
  }
}
@media (min-width: 720px) and (max-width: 1023px) {
  section.section-usage .usage-wrapper {
    max-width: 720px;
  }
  section.section-usage .usage-wrapper .usage-card {    
    margin-bottom: 20px;
    width: 48.5%;    
  }
  section.section-usage .usage-wrapper .usage-card__text {
    padding: 5px 20px 40px 20px;
  }
  section.section-usage .usage-wrapper .usage-card__text .usage-card__headline {
    font-size: 1.0625rem;  
  }
}
@media (min-width: 1024px) and (max-width: 1499px) {
  section.section-usage .usage-wrapper .usage-card__text {
    padding: 5px 20px 40px 20px;
  }
  section.section-usage .usage-wrapper .usage-card__text .usage-card__paragraph {
    font-size: 0.875rem;
  }
  section.section-usage .usage-wrapper .usage-card__text .usage-card__headline {
    font-size: 1.0625rem;  
  }  
}

/******************************************************************************************************
                                              Footer
******************************************************************************************************/

footer {
  background-color: #285922;
  padding: 40px 0; 
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto; 
  max-width: 1250px;    
  width: 90%
}
.footer-wrapper div .footer-wrapper__paragraph {
  color: #ffffff;  
  font-size: 0.875rem;
  margin: 0;
}
.footer-wrapper div nav ul li {
  display: block;
  margin-bottom: 8px;
}
.footer-wrapper div .footer-wrapper__link {
  color: #ffffff;  
  font-size: 0.875rem;
}
.footer-wrapper div .footer-wrapper__link:hover {
  color: #dddd99;  
}

/**************************************   media queries Footer   *************************************/

@media (max-width: 479px) {
  .footer-wrapper {
    display: block;
  }
  .footer-wrapper div {
    margin-bottom: 32px;
  }
  .footer-wrapper div figure,
  .footer-wrapper div figure img {
    max-width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 719px) {  
  .footer-wrapper div {    
    margin-bottom: 32px;
  }  
  .footer-wrapper div .footer-wrapper__paragraph {
    font-size: 0.75rem;
    margin-right: 40px;
  }
  .footer-wrapper div nav ul li {
    display: inline;
    margin-right: 20px;
  }
  .footer-wrapper div nav ul li:last-child {
    margin-right: 0;
  }
  .footer-wrapper div nav .footer-wrapper__link:last-child {
    margin: 0;
  }
  .footer-wrapper div figure,
  .footer-wrapper div figure img  {
    width: 100%;
  }
}
@media (min-width: 720px) and (max-width: 1023px) {
  .footer-wrapper div .footer-wrapper__paragraph {  
    bottom: 2px;
    font-size: 0.75rem;
    position: relative;
  } 
  .footer-wrapper div nav ul {  
    bottom: 2px;
    position: relative;
  }            
  .footer-wrapper div nav ul li {
    margin-bottom: 5px;
  }
  .footer-wrapper div .footer-wrapper__link {
    font-size: 0.75rem;
  }
  .footer-wrapper div figure {
    width: 290px;
  } 
  .footer-wrapper div figure img {
    width: 100%;
  }     
    
}
@media (min-width: 1024px) and (max-width: 1499px) {

}

/******************************************************************************************************
                                          Cookies Notification
******************************************************************************************************/

.cookie-notification {
  background-color: #111111;    
  bottom: 0; 
  display: none;
  left: 0;        
  padding: 12px 5%;
  position: fixed;
  right: 0;               
  z-index: 120;
}
.cookie-notification--show {
  display: block;
}
.cookie-notification .cookie-notification__message {
  color: #ffffff;     
  color: #ffffff;     
  display: inline;
  font-size: 13px; 
  margin-right: 80px;
}
.cookie-notification .cookie-notification__link {
  color: #4e8949;  
  display: inline;
  font-size: 13px;
  margin-right: 40px;
}
.cookie-notification .cookie-notification__button {
  background: none;
  border: none;
  color: #4e8949;
  display: inline;
  font-size: 13px;
}
.cookie-notification .cookie-notification__link:hover,
.cookie-notification .cookie-notification__button:hover {
  color: #70bb69;
}

/********************************   media queries Cookies Notification   ********************************/

@media (max-width: 1099px) {
  .cookie-notification .cookie-notification__message {
    display: block;
    margin-right: 12px;
  }
}

/******************************************************************************************************
                                          Legal Notice & AGB
******************************************************************************************************/

header.header--narrow {
  border-bottom: solid 1px #aaaaaa;
}
header.header--narrow .header-wrapper {
  display: block;  
  margin: 0 auto;   
  max-width: 1000px;
  width: 90%;
}
header.header--narrow .header-wrapper .logo {
  display: inline-block;
  margin: 0;   
  width: 200px;
}
header.header--narrow .header-wrapper .home-link {
  bottom: 6px;     
  color: #666666;
  display: inline-block;
  left: 90px;
  position: relative;
}
header.header--narrow .header-wrapper .home-link:hover {
  color: #111111;
}
section.section-legal-notice {
  margin: 20px auto 0 auto;   
  max-width: 1000px;
  width: 90%;
}
section.section-legal-notice .legal-notice-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; 
  width: 100%;
}
.legal-notice-wrapper .legal-notice-wrapper__first {
  width: 58%;
}
.legal-notice-wrapper .legal-notice-wrapper__second {
  padding-top: 100px;
  width: 40%;
}
.legal-notice-wrapper__second a {
  display: inline-block;       
  margin-bottom: 12px;
  margin-right: calc(100% - 160px);
}
.legal-notice-wrapper__second figure,
.legal-notice-wrapper__second figure img {
  max-width: 100%;
  width: 160px;
}
section.section-gtc .section-gtc__headline {
  color: #111111;  
  font-size: 2rem; 
  text-align: left;
} 
section.section-gtc article {
  margin-top: 30px;
} 
section.section-gtc ol {
  margin: 12px 0;
  padding-left: 20px;
} 
section.data-protection,
section.data-processing,
section.data-comments,
section.data-information,
section.data-additive,
section.section-gtc {
  margin: 50px auto;   
  max-width: 1000px;
  width: 90%;
}
section.data-protection h2,
section.data-processing h2,
section.data-comments h2,
section.data-information h2,
section.section-gtc h2 {
  margin: 0;   
  padding: 0;
  text-align: left;
}
.footer-wrapper--narrow {
  max-width: 1000px;
  width: 90%;
}

/********************************   media queries Legal Notice & AGB   ********************************/

@media (max-width: 719px) { 
  .legal-notice-wrapper .legal-notice-wrapper__first,
  .legal-notice-wrapper .legal-notice-wrapper__second {
    width: 100%;
  }
  section.section-gtc .section-gtc__headline {
    font-size: 1.25rem;
  } 
}
@media (min-width: 720px) and (max-width: 1023px) {
  section.section-gtc .section-gtc__headline {
    font-size: 1.75rem;
  }
}