/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */



@font-face {
    font-family: 'BrownStd';
    src: url('../fonts/BrownStd-Regular.eot');
    src: url('../fonts/BrownStd-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BrownStd-Regular.woff2') format('woff2'),
        url('../fonts/BrownStd-Regular.woff') format('woff'),
        url('../fonts/BrownStd-Regular.ttf') format('truetype'),
        url('../fonts/BrownStd-Regular.svg#BrownStd-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BrownStd';
    src: url('../fonts/BrownStd-Light.eot');
    src: url('../fonts/BrownStd-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BrownStd-Light.woff2') format('woff2'),
        url('../fonts/BrownStd-Light.woff') format('woff'),
        url('../fonts/BrownStd-Light.ttf') format('truetype'),
        url('../fonts/BrownStd-Light.svg#BrownStd-Light') format('svg');
    font-weight: light;
    font-style: light;
}

@font-face {
    font-family: 'BrownStd';
    src: url('../fonts/BrownStd-Bold.eot');
    src: url('../fonts/BrownStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BrownStd-Bold.woff2') format('woff2'),
        url('../fonts/BrownStd-Bold.woff') format('woff'),
        url('../fonts/BrownStd-Bold.ttf') format('truetype'),
        url('../fonts/BrownStd-Bold.svg#BrownStd-Bold') format('svg');
    font-weight: bold;
    font-style: bold;
}




html, body {
max-width: 100%;
overflow-x: hidden;
scroll-behavior: smooth;	
}

* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

body {
font-family: 'BrownStd';
font-variant-ligatures: none;	
font-weight: 300;
color: #414042;
font-style: normal;
font-size: 1.05em;
line-height: 1.3em;
margin: 0;
padding: 0;
background: #fff;	
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}


img {
  width: 100%;
  height: auto;
}




/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #414042 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }



	
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}



a:link,
a:visited,
a:active {
color: #414042;	
text-decoration: none;
}

a:hover {
color: #8fba3f;
transition: 0.1s;	
}




.text-wrap {
font-color: #414042;
margin: 0 auto;
padding: 1em 4em 2em 4em;
}

/**************** start mobile ********************/
@media only screen and (max-width: 850px) {
.text-wrap {
padding: 1em 2em 2em 1em;
}
}
/**************** end mobile **********************/

h1 {
font-color: #414042;
font-size: 1.65em;
line-height: 1.25em;	
margin-top: 1em;
margin-bottom: -.1em;
}

h1.version_one {
font-color: #414042;
font-size: 1.65em;
line-height: 1.25em;
margin-bottom: 1em;
max-width: 100%;
margin-left: 40%;
}

h1.version_one_black {
font-color: #414042;
font-size: 1.65em;
line-height: 1.25em;
margin-bottom: 1em;
max-width: 100%;
margin-left: 40%;
}

h1.version_two {
font-color: #414042;
font-size: 1.25em;
line-height: 1.25em;
margin-bottom: 1em;
max-width: 100%;
}

h1.version_three {
font-color: #414042;
font-size: 1.25em;
line-height: 1.25em;
margin-bottom: 1em;
max-width: 100%;
}

.paragraph_a {
font-color: #414042;
max-width: 55%;
margin-left: 45%;	
}

.paragraph_b{
font-color: #414042;
font-size: 0.75em;
line-height: 1.25em;
max-width: 100%;
margin-left: 0%;	
}



/**************** start mobile **********************/
@media only screen and (max-width: 850px) {
h1.version_one {
max-width: 100%;
margin-left: 0;
}
	
.paragraph_a {
max-width: 100%;
margin-left: 0;
}
}
/**************** end mobile **********************/





/**************** start contact form **********************/

#contact-form {
	width:40%;
	padding:40px;
	margin: 50px auto;
	position:relative;
}

#contact-form h1 {
	font-size:42px;
}

#contact-form h2 {
	margin-bottom:15px;
	font-style:italic;
	font-weight:normal;
}

#contact-form input,
#contact-form select,
#contact-form textarea,
#contact-form label {
	font-size:15px;
	margin-bottom:2px;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
	width: 100%;
	border: 1px solid #8fba3f;
	margin-bottom:20px;
	padding:10px;
	border-radius: 3px;
	box-sizing: border-box;
	transition-duration: 300ms;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
	box-shadow: 0 0 0 1px #8fba3f;
	outline: none;
}

#contact-form textarea {
	height:150px;
	resize: vertical;
	overflow: auto;
}

#contact-form label {
	display:block;
}

#contact-form .required {
	font-weight:bold;
	color:#F00;
}
#contact-form textarea {
	display:block;
}
#contact-form #submit-button {
	background-color:#333;
	color:#FFF;
	border:none;
	background-color:#8fba3f; 
	-moz-border-radius:8px;
}

#contact-form #submit-button:hover {
	background-color: #8fba3f;
}

#contact-form #submit-button:active {
	position:relative;
	top:1px;
}

#contact-form #loading {
	width:32px;
	height:32px;
	background-image:url(../img/loading.gif);
	display:block;
	position:absolute;
	right:130px;
	bottom:16px;
	display:none;
}

#errors {
	border:solid 1px #E58E8E;
	padding:10px;
	margin:25px 0px;
	display:block;
	width:437px;
	-webkit-border-radius:8px;
	-moz-border-radius:8px;
	border-radius:8px;
	background:#FFE6E6 url(../img/cancel_48.png) no-repeat 405px center;
	display:none;
}

#errors li {
	padding:2px;
	list-style:none;
}

#errors li:before {
	content: ' - ';
}

#errors #info {
	font-weight:bold;
}

#errors #info:before {
	content: '';
}

#success {
	border:solid 1px #83D186;
	padding:25px 10px;
	margin:25px 0px;
	display:block;
	width:437px;
	-webkit-border-radius:8px;
	-moz-border-radius:8px;
	border-radius:8px;
	background:#D3EDD3 url(../img/accepted_48.png) no-repeat 405px center;
	font-weight:bold;
	display:none;
}

#errors.visible, #success.visible {
	display:block;
}

#req-field-desc {
	font-style:italic;
}

/* Remove box shadow firefox, chrome and opera put around required fields. It looks rubbish. */
input:required, textarea:required {
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	-o-box-shadow:none;
	box-shadow:none;
}

/* Normalize placeholder styles */

/* chrome, safari */
::-webkit-input-placeholder {
	color:#CCC;
	font-style:italic;
}

/* mozilla */
input:-moz-placeholder, textarea:-moz-placeholder {
	color:#CCC;
	font-style:italic;
}

/* ie (faux placeholder) */
input.placeholder-text, textarea.placeholder-text  {
	color:#CCC;
	font-style:italic;
}




/**************** end contact form **********************/























/***************************************************** start header *****************************************************/
header {
height: 72px;
}

.edge {
position: relative;
height: 100px;
overflow: hidden;
}

.edge__bg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 70%;
height: 70%;
background-color: #8fba3f;
transform: skewY(-10deg);
transform-origin: top left;
}

#logo {
float: left;
width: 400px;
height: auto;
margin-left: 4em;
margin-top: -4em;
z-index: 999999!important;
}

.logo_black {
max-width: 100px;
height: auto;
margin-left: 8em;
margin-top: -1em;
margin-bottom: 1.5em;
}

.logo_white {
max-width: 100px;
height: auto;
margin-left: 8em;
margin-top: 0em;
margin-bottom: 1.5em;
}

#button:hover {
cursor: pointer;
}

#navigation {
position: absolute;
top: 2em;
right: 3em;
font-family: 'BrownStd';
font-style: bold;
font-weight: 300;
font-size: 1.0em;
line-height: 3em;	
}

.nav_icon_shop {
float: left;
display: flex; /* or inline-flex */
align-items: center; 
justify-content: center;
font-size: .7em;
background-color: #414042;
color: #FFF;
height: 30px;
width: 50px;
border-radius: 2em;
margin-left: .5em;
}

.fa-instagram {
float: left;
display: flex; /* or inline-flex */
align-items: center; 
justify-content: center;
font-size: .7em;
background-color: #414042;
color: #FFF;
height: 30px;
width: 30px;
border-radius: 50%;	
margin-left: .5em;
}

.nav_icon {
float: left;
display: flex; /* or inline-flex */
align-items: center; 
justify-content: center;
font-size: .7em;
background-color: #414042;
color: #FFF;
height: 30px;
width: 30px;
border-radius: 50%;	
margin-left: .5em;
}

a.nav_icon_shop {
color: #FFF;
}

a.fa-instagram {
color: #FFF;
}

a.nav_icon {
color: #FFF;
}

a.nav_icon_shop:hover {
background-color: #8fba3f;
transition: 0.1s;	
}

a.fa-instagram:hover {
background-color: #8fba3f;
transition: 0.1s;	
}

a.nav_icon:hover {
background-color: #8fba3f;
transition: 0.1s;	
}



/**************** start mobile ********************/
@media only screen and (max-width: 1400px) {
.logo_black {
margin-top: 0;
margin-left: 4em;	
}	
.logo_white {
margin-top: 1em;	
margin-left: 4em;
}	
}


@media only screen and (max-width: 850px) {
#logo {
margin-left: 1em;
margin-top: -4em;
}
.logo_black {
margin-top: 0;
margin-left: 1em;
}	
.logo_white {
margin-top: 1em;
margin-left: 1em;
}
.edge {
height: 100px;
}

.edge__bg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 100%;
height: 70%;
background-color: #8fba3f;
transform: skewY(-10deg);
transform-origin: top left;
}
	
#navigation {
margin-top: -.5em;
margin-right: -2.25em;
}
}

@media only screen and (max-width: 540px) {	
#logo {
margin-top: -.5em;
}
}


@media only screen and (max-width: 620px) {	
#logo {
margin-top: -.5em;
max-width: 87vw;
}
}
/**************** end mobile **********************/



/***************************************************** end header *****************************************************/


















/***************************************************** start slider *****************************************************/
.swiper-container {
position: relative;
cursor: grab;
object-fit: cover;
object-position: center;
width: 100%;
max-height:85vh;
}

.swiper-slide {
text-align: center;
font-size: 18px;
}

.swiper-slide img {
width:auto;
height:auto;
max-width: 100%;
max-height:90vh;
}

.swiper-pagination {
z-index: 3!important;
}

.swiper-pagination-bullet {
background: #414042!important;
}

.swiper-pagination-bullet-active {
background: #8fba3f!important;
}
/***************************************************** end slider *****************************************************/












/***************************************************** start 3 column text *****************************************************/

.column-wrap {
margin: 0 auto;
padding: 0 4em 0 4em;
}

.column {
  float: left;
  width: 33.33%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

ul {
  margin: 0.75em 0;
  padding: 0 1em;
  list-style: none;
}
li::before { 
  content: "";
  border-color: transparent #FFF;
  border-style: solid;
  border-width: 0.4em 0 0.4em 0.4em;
  display: block;
  height: 0;
  width: 0;
  left: -0.9em;
  top: 0.9em;
  position: relative;
  transform: rotate(-45deg);
}

li.black::before { 
  content: "";
  font-color: #414042;
  border-color: transparent #414042;
  border-style: relative;
  border-width: 0.4em 0 0.4em 0.4em;
  display: block;
  height: 0;
  width: 0;
  left: -0.9em;
  top: 0.9em;
  position: relative;
  transform: rotate(-45deg);
}



/**************** start mobile **********************/
@media only screen and (max-width: 1150px) {

.column-wrap {
margin: 0 auto;
padding: 0;
}		

h1 {
margin-bottom: .5em;
}
	
.column {
float: left;
width: 50%;
padding: 0!important;
margin-right: 0!important;
}	
		
ul {
padding-right: 1.5em!important;
margin: 0!important;
}
}


@media only screen and (max-width: 850px) {
.column {
float: left;
width: 100%;
padding: 0!important;
}
	
.column-wrap {
margin-right: -1em;
}	
	
}
/**************** end mobile **********************/






/***************************************************** end 3 column text *****************************************************/










/***************************************************** start 2 column text *****************************************************/
.column2 {
float: left;
max-width: 66%;
padding-left: 4em;
padding-right: 12em;
}

.column3 {
float: left;
width: 33%;
padding-left: 5em;
}

.column4 {
float: left;
max-width: 100%;
padding-left: 4em;
padding-right: 0em;
}

.row2:after {
content: "";
display: table;
clear: both;
}

.small {
padding: 1em 3em 0 3em;
max-width: 340px;
margin-bottom: 3em;
}

.icons {
max-width: 200px;
margin-top: 1em;
}


/*********** start mobile ************************/
@media screen and (max-width: 1400px) {
.column2 {
padding: 0!important;
margin: 0!important;
}
	
.column3 {
padding-left: 4em;
}	
}

@media screen and (max-width: 850px) {
.column2 {
float: left;
padding: 0!important;	
max-width: 100%;
}
	
.column3 {
width: 100%;
padding: 0!important;	
margin-top: 4em;
}
	
.small {
padding: 1em 3em 0 3em;
max-width: 350px;
margin-bottom: 4em;
}

}
/*********** end mobile ************************/




/***************************************************** end 2 column text *****************************************************/












/******************************** start market diagrams ***************************************/
@media screen and (max-width: 1240px) {
.column4 {
width: 100%!important;
padding: 0!important;
}		
}
/******************************** end market diagrams ***************************************/














/***************************************************** start footer *****************************************************/
#footer {	
padding: 8em 0 4em 0;
font-size: .9em;
line-height: 3em;
margin-left: 4.8em;
}

#footer a:link { color:#FFF; } 
#footer a:visited { color:#FFF; } 
#footer a:hover { color:#FFF; } 
#footer a:active { color:#FFF}

.imprint {	
margin-left: 12em;
}

.copyright {
float: right;
}








/********************************** start MODAL / IMPRINT *************************************/
.modal-open-button{
cursor: pointer;
width: auto;
float: left;
margin-right: 2em;	
}

.modal-overlay{
display: none;
position: fixed;
top: 0;
left: 0;
z-index: 100;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.2);
}

.modal-overlay.modal-overlay-visible{
display: block;
}

.modal-container{
display: none;
position:fixed;
top: 50%;
left: 50%;
z-index: 333!important;
transform: translate(-50%, -50%);
width: 60%;
height: 80%;
justify-content: center;
text-align: center;
background: rgba(255,255,255,1);
overflow-y: auto;
}

.modal-container.modal-container-visible{
display: block;
}

#modal-container-scrollable.modal-container{
color: #414042;
}

.modal-container-controls{
position: absolute;
right: 1em!important;
top: 1em!important;
}

.modal-container-close-button{
font-size: 3em;
background-color: #FFF;
color: #414042;
border: none; 
}

.modal-container-close-button:hover{
cursor: pointer;
}

#modal-container-scrollable.modal-container .modal-container-content
{
margin: 1em;
text-align: left;
line-height: 1.4em;
color: #414042;
}

.modal-container-content h1 {
margin-right: 2em;
}


#modal-container-scrollable.modal-container .modal-container-content .modal-container-content-no-scroll{
margin: 30px;
}

#modal-container-scrollable.modal-container .modal-container-content .modal-container-content-scroll{
text-align: left;
position: absolute;
width: auto;
height: calc(100% - 140px);
overflow-y: auto;
margin: 10px 30px 30px 30px;
padding: 0px 20px 0px 0px;
}

.modal-container {
	overflow-y: hidden!important;
}

a.link_imprint {
color: #000!important;
text-decoration: underline!important;
}
/********************************** end MODAL / IMPRINT *************************************/







/*********** start mobile ************************/
@media screen and (max-width: 1400px) {	
.imprint {	
margin-left: 0;
margin-right: 2em;
}	
	
#footer {	
margin-left: .3em;
}
}

@media screen and (max-width: 1000px) {
.modal-container{
width: 85%;
height: 85%;
}	
}

@media screen and (max-width: 600px) {
.modal-container{
width: 90%;
height: 90%;
}	
	
.modal-open-button {
width: 100%;
}
	
}
/*********** end mobile ************************/


/***************************************************** end footer *****************************************************/














/************************************** START COLORED BACKGROUNDS ************************************************/
.triangle_grey {
position: relative;
z-index: 6;
width: 100vw;
height: 17.5vw;
-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, -.5% 100%);
clip-path: polygon(100% 0, 100% 0, 100% 100%, -.5% 100%);
color: #fff;
background-color: #414042;
margin-bottom: -1px;
}

.triangle_green {
position: relative;
z-index: 6;
width: 100vw;
height: 17.5vw;
-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, -.5% 100%);
clip-path: polygon(100% 0, 100% 0, 100% 100%, -.5% 100%);
color: #fff;
background-color: #8fba3f;
margin-bottom: -1px;
}

.triangle_green_rotated {
width: 100vw;
height: 17.5vw;
-webkit-clip-path: polygon(0 0, 100.5% 0, 0% 100%, 0% 100%);
clip-path: polygon(0 0, 100.5% 0, 0% 100%, 0% 100%);
background-color: #8fba3f;
margin-top: -1px;
}

.content_grey {
position: relative;
z-index: 6;	
width: 100vw;
height: auto;
color: #fff;	
background-color: #414042;
}

.content_green {
position: relative;
z-index: 6;	
width: 100vw;
height: auto;
color: #fff;	
background-color: #8fba3f;
}

.info_graphic {
position: relative;
margin-top: 2em;
}
/************************************** END COLORED BACKGROUNDS ************************************************/


















/******************* START COOKIE NOTICE *************************/
#footer-cookie {
z-index: 999;
bottom: -3.5em;
left: 50%;
transform: translate(-50%, -50%);	
position: fixed;
width: 260px!important;
font-size: .8em;
padding: 1.75em;
overflow: hidden;
color: #FFF;
display: none;
background-color: #8fba3f;	
-webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 25%, 75% 0);
clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 15%, 94% 0);	
}


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

#accept a {
color: #FFF;
}

#accept a:hover {
color: #414042;
text-decoration: underline;
cursor: pointer;
}
/******************* END COOKIE NOTICE *************************/







/******************* START YOUTUBE VIDEO *************************/
.video-wrap {
width: 100%;
max-width: 720px;
margin: 2em auto;
}

embed,
iframe,
object {
max-width: 100%;
}

.video-container {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/******************* END YOUTUBE VIDEO *************************/









/******************* START MANUAL *************************/
.manual {
margin: 0 auto;
max-width: 800px;
}

.pdf {
	text-align: center;
	margin-top: 5em;
	margin-bottom: 5em;
	
}
/******************* END MANUAL *************************/




.top {
 offset: 50px;

 
 
}









