/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents

- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Custom styles

Larger than mobile @media (min-width: 400px) {}
Larger than phablet (also point when grid becomes active) @media (min-width: 550px) {}
Larger than tablet @media (min-width: 750px) {}
Larger than desktop @media (min-width: 1000px) {}
Larger than Desktop HD @media (min-width: 1200px) {}
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.brightness {
  width: 100%;
  min-height: 100vh;
  height: 100%;
}
.container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;  
}
.containerUnderlay {
  background-color: rgba(100, 100, 100, 0.7); /* want this on the startpage only */
}
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }
  
/* 
On the main page and only on small devices (mobile):
I want 3 and 4 columns displayed as six, so meaning 2 items per row.
On bigger devices (above 550px) those settings are overwritten with the 12-columns grid
*/ 
.halbeReihe:first-child { margin-left: 0; }
.halbeReihe { width: 48%; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container { width: 80%; }  
  .columns { margin-left: 4%; }  
  .columns:first-child { margin-left: 0; }
  
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }
}


/* Base Styles */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton 
are based on 10px sizing. So basically 1.5rem = 15px :) 
*/

html {
  font-size: 62.5%;
}
body {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-size: 1.5em;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;  
} 

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p { margin-top: 0; }

a {
  padding: 2px 4px 1px 1px;  
  text-decoration: none;
  color: #8d3a53;
  background-color: rgba(180, 180, 180, 0.6);
  transition: color 0.3s ease;
}


/* Buttons */
.button,
button,
input[type="submit"],
input[type="button"] {
  color: inherit; 
  display: inline-block;
  height: 38px;
  padding: 0 20px;  
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;  
  border-radius: 4px;
  border: 1px solid;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="button"]:focus {  
  outline: 0; }


/* Forms */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; 
  color: #000; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33c3f0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists */
ul {
  list-style: disc; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Tables */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-color: #e1e1e1;
  border-bottom: 1px solid; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }

/* Utilities */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc */
hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1; }


/* Clearing */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }
  
  
/* Custom stuff */
.linksButton {
  border-radius: 100px;
}

.section {
  padding: 5rem 0 1rem;
  text-align: center;
}
.noBottom {
  padding: 8rem 0 0rem;
  margin-bottom: 0rem;
}
.section-heading {
  margin-bottom: 1.2rem;
  text-align: left;
}
.linktext {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; 
  font-size: 2.4rem; 
  line-height: 1.35;  
  letter-spacing: -.08rem;
}
.counter {
  font-size: 1.5rem;
  vertical-align: 1rem;  
}
.differentColor { /* use the hover color set of the button */
  text-transform: uppercase;    
  border: none;
}
.logoImg {
  width: 16px;
  height: 16px;
  vertical-align: sub;  
}
.textBox {
  display: inline-block;
  min-height: 38px;
  padding: 0 20px;
  text-align: left;
  font-weight: 600;  
  border-radius: 4px;
  border: 1px solid;  
  box-sizing: border-box; 
}
.bgCol { 
  padding: 2px 5px;
  border-radius: 4px;  
}
.overlayMessage {
  width: 100%; 
  margin: auto; 
  top: 2rem; 
  min-height: 38px;
  padding: 0 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;  
  border-radius: 4px;
  box-sizing: border-box;   
  border: none;  
  position: relative; 
  display: block; 
}
.userStatBar {
  display: inline-block; 
  padding: 0 8px;
  margin: 10px 0;
  border-radius: 3px; 
  border: 1px solid;  
  white-space: nowrap;
  min-height: 20px;
  float: left; 
  text-align: left;
}
.imgBorder { border: 1px solid; }
.tooltip { position: relative; display: inline-block; }
.tooltip .tooltiptext {   
  visibility: hidden;
  width: 180px;
  line-height: normal;
  text-transform: none;
  text-align: center;
  padding: 5px 0;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 10%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}  
.tooltip:hover .tooltiptext { visibility: visible; opacity: 1; } 

#menuToggle {
  display: block;
  position: fixed;
  top: 28px;
  left: 30px;
  z-index: 5;
}
#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 6;
}
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 5;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}
#menuToggle span:first-child { transform-origin: 0% 0%; }
#menuToggle span:nth-last-child(2) { transform-origin: 0% 100%; }
#menuToggle input:checked ~ span { opacity: 1; transform: rotate(45deg) translate(-2px, -1px);}
#menuToggle input:checked ~ span:nth-last-child(3) { opacity: 0; transform: rotate(0deg) scale(0.2, 0.2); }
#menuToggle input:checked ~ span:nth-last-child(2) { transform: rotate(-45deg) translate(0, -1px); }
#menu {
  position: absolute;
  width: 180px;
  margin: -100px 0 0 -30px;
  padding: 20px;
  line-height: 1.2;
  padding-top: 105px;
  list-style-type: none;
  border: 1px solid;  
  border-radius: 20px;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
#menu a { background: transparent; color: inherit; }
#menu li { padding: 5px 0; font-size: 18px; margin-bottom: 0rem; }
#menu ul { margin-bottom: 0rem; }
#menuToggle input:checked ~ ul { transform: none; }    

.mySlides {display: none; box-sizing: border-box;}
.slideshow-container {
  max-width: 800px;
  position: relative;
  margin: auto;
  box-sizing: border-box;
}
.captionText {
  color: #f2f2f2;
  font-size: 17px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: rgba(80, 80, 80, 0.8);
  box-sizing: border-box;
}
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  box-sizing: border-box;
}
.active {
  background-color: #515151;
  box-sizing: border-box;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.5s;
  animation-name: fade;
  animation-duration: 2.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@media only screen and (max-width: 300px) {
  .captionText {font-size: 11px}
}
.categories { 
  margin-bottom: 0rem;
}


@media (min-width: 550px) {
  .section {
    padding: 4rem 0 1rem;
  }
}
@media (min-width: 750px) {  
  .categories {
    padding: 6rem 0 8rem;
  }
}
@media (min-width: 1000px) {
  .section {
    padding: 6rem 0 1rem;  
  }
}  
