@font-face {
    font-family: 'RobotoBold';
    src: url('fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
  font-family: 'Roboto', sans-serif;
}
body {
  font-size: 15px;
  line-height: 20px;
  background: #000;
}

h1 {
  font-size: 30px;
  line-height: 120%;
  margin-bottom: 20px;
  color: #b4b4b4;
  font-family: 'RobotoBold', sans-serif;
}
h2 {
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 18px;
  color: #b4b4b4;
  font-family: 'RobotoBold', sans-serif;
}
h3 {
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 16px;
  color: #b4b4b4;
  font-family: 'RobotoBold', sans-serif;
}
h4 {
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 10px;
  font-family: 'RobotoBold', sans-serif;
}

p {
  margin-bottom: 10px;
  line-height: 20px;
}

strong {
  font-family: 'RobotoBold', sans-serif;
}

.clear {
  clear: both;
}





/* HEADER */

header {  
  height: 130px
}
header #innerHeader {
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
  position: relative;
  height: 90px;
}
header a {
  text-decoration: none;
}
header #headerLogo {
  position: absolute;
  top: 14px;
  left: 0px;
}
header nav {
  position: absolute;
  bottom: 9px;
  padding-left: 210px;
  left: 0;
  width: 100%;
}
header nav ul {
  width: 100%;
}
header nav ul li {
  float: left;
  margin: 0 0px;
  padding: 0px 0px;
  /*border-right: 1px solid #FFF;*/
}
header nav ul li:after {
  content:"|";
  color: #FFF;
}
header nav ul li.last:after {
  content:"";
}
header nav ul li:last-child:after {
  content:"";
}
header nav ul li a {
  color: #FFF;
  line-height: 100%;
  padding: 0px 10px;
  font-size: 17px;
}
header nav ul li a:hover {
  color: #dd101e;
}
header nav ul li.active a {
  color: #b4b4b4;
}

/*
header .shopLink {
  color: red;
  position: absolute;
  bottom: 9px;
  right: 10px;
  text-transform: uppercase;
  font-size: 17px;
}
*/
header .shopLink {
  float: right;
  
}
header .shopLink a {
  color: red;  
  text-transform: uppercase;
  font-size: 17px;
  font-family: 'RobotoBold', sans-serif;
}

header .shopLink .fa-shopping-cart {
  color: #dd101e;
}

header #contactBar {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  min-height: 40px;
  line-height: 40px;
  background: #FFF;
  padding-top: 0px;
  font-size: 13px;
}
header #contactBar ul {
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
}
header #contactBar li {
  float: left;
  margin: 0 20px 0 0;
}
header #contactBar strong {
  font-family: 'RobotoBold', sans-serif;
  text-transform: uppercase;
}
header #contactBar a {
  color: #000;
}

header .legalNavi {
  display: none;
}


/* Mobile Navigation */

#mobileNaviSwitch {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #FFF;
  cursor: pointer;
  display: none;
}
#mobileNaviSwitch.active {
  color: red; 
}

@media screen and (max-width: 990px) {
  
  header #headerLogo {
    left: 20px;
  }
  header nav {
    position: absolute;
    bottom: 9px;
    padding-left: 220px;
  }
  
  header #contactBar {
    padding: 5px 20px;
    line-height: 26px;
  }
  
}
/*
@media screen and (max-width: 890px) {
  
  header .shopLink {
    float: right;
    position: absolute;
    right: 10px;
    bottom: 50px;
  }
  
}


@media screen and (max-width: 850px) {
  
  header #contactBar strong {
    display: none;
  }

}


@media screen and (max-width: 620px) {
  
  header #contactBar {
    text-align: center;
  }
  header #contactBar ul {
    margin: 0 auto;
    width: 280px;
  }
  header #contactBar ul li {
    
  }
  
}
*/
@media screen and (max-width: 810px) {
  
  #mobileNaviSwitch {
    display: block;
  }
  header nav {
    display: none;
    top: 90px;  
    right: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    height: auto;    
    z-index: 100;
    background: #000;
    padding: 5px 7px;
  }
  header nav ul {
    
  }
  header nav ul li {
    margin-bottom: 10px;
    width: 33.3%;
  }
  header nav ul li:after {
    content: "";
  }
  header nav ul li a {
    display: block;
    line-height: 24px;
  }
  
  /*
  header .shopLink a {
    display: none;
  }
  */
  header .shopLink {
    float: left;
  }
  
  header .legalNavi {
    display: block;
    clear: both;
    text-align: center;
    padding: 30px 0 10px 0;
  }
  header .legalNavi li {
    width: auto;
    float: none;
    display: inline-blocK;
    margin: 0;
  }
  header .legalNavi li a {
    font-size: 12px;
    text-transform: uppercase;
  }
  
  header .shopLink {
    position: relative;
    right: auto;
    bottom: auto;
  }
}

@media screen and (max-width: 480px) {
  
  header #headerLogo {
    width: 160px;
  }
  
  header nav ul li {
    width: 50%;
  }
  
}

@media screen and (max-width: 380px) {
  
  header nav ul li {
    width: 100%;
    text-align: center;
  }
  header .shopLink {
    margin: 10px 0;
  }
  
}



#headerImage {
  width: 100%;
  height: 370px;
  background: url('../images/header-platzhalter-1200x370.jpg') no-repeat center center; 
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}



/* PAGE */
#pageWrapper {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;  
  min-height: 300px;
  margin-top: -120px;
}

#productNav {
  height: 60px;
}
#productNav ul {
  
}
#productNav ul li {
  float: left;
  width: 20%;
  height: 60px;
  background: rgba(0,0,0,0.6);
  border-right: 1px solid #FFF;
}
#productNav ul li:last-child {
  border-right: 0;
}
#productNav ul li.active {
  background: #FFF;
  color: #b4b4b4;
}
#productNav ul li.active a {
  color: #b4b4b4;
}
#productNav ul li:hover {
  background: #000;
}
#productNav ul li.active:hover {
  background: #FFF;
}
#productNav ul li a {
  color: #FFF;
  text-decoration: none;
  display: block;
  height: 60px;
  line-height: 60px;
  padding-left: 15px;
  font-family: 'RobotoBold', sans-serif;
  text-transform: uppercase;
}
#productNav ul li a:before {
  font-family:'FontAwesome';
  content:"\f054";
  color: #dd101e;
  padding-right: 5px;
}
#productNav ul li.active a:before {
  color: #b4b4b4;
}


@media screen and (max-width: 860px) {
  
  #productNav ul li a {
    padding-left: 8px;
  }
  
}

@media screen and (max-width: 820px) {
  
  #productNav ul li a {
    font-size: 14px;
  }
  
}

@media screen and (max-width: 780px) {
  
  #productNav ul li a {
    font-size: 12px;
  }
  
}

@media screen and (max-width: 670px) {
    
  #headerImage {
    height: 200px;
  }
  
  #pageWrapper {
    margin-top: 0px;
  }
  
  #productNav {
    height: auto;
  }
  #productNav:after {
    content: '';
    display: block;
    clear: both;
  }
  
  #productNav ul li {
    width: 33.3%;
    height: 40px;
    background: #000;
    border-right: 0;    
  }  
  #productNav ul li a {
    line-height: 40px;
    padding-left: 30px;
  }
  #productNav ul li.active a {
    background: #000;
  }
  
}

@media screen and (max-width: 500px) {
  
  #productNav ul li {
    width: 50%;
  }
}


#page {
  background: #FFF;
  min-height: 350px;
  padding: 30px;
}
#page a {
  color: #dd101e;
  text-decoration: none;
}
#page a:before {
  font-family:'FontAwesome';
  content:"\f054";
  color: #dd101e;
  padding-right: 3px;
  padding-left: 5px;
}

#leftCol {
  width: 70%;
  float: left;
  border-right: 1px solid #b4b4b4;
  padding-right: 30px;
}
#rightCol {
  width: 30%;
  float: right;
  padding-left: 30px;
}

@media screen and (max-width: 620px) {
  
  #leftCol {
    width: 100%;
    float: left;
    border-right: 0;
    border-bottom: 1px solid #b4b4b4;
    padding-right: 0px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #rightCol {
    width: 100%;
    float: right;
    padding-left: 0px;
  }
  
}

#page ul {
  margin-left: 20px;
}
#page li {
  line-height: 200%;
}
#page li:before {
  font-family:'FontAwesome';
  content:"\f00c";
  color: #dd101e;
  padding-right: 5px;
  margin-left: -20px;
}






/* PRODUKTE */
#page.produkte {
  padding: 30px;
}
.produktCol {
  width: 20%;  
  padding: 0 15px;
  display: inline-block;
  vertical-align: top;
  margin-left: -4px;
  margin-bottom: 20px;
}
.produktCol:first-child {
  
}
.produktCol {

}
.produktCol img {
   width: 100%;
}
#page.produkte ul {
  list-style-type: disc;
  margin-left: 15px;
}
#page.produkte li {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
}
#page.produkte li:before {
  content:"";
  padding-right: 0px;
  margin-left: 0px;
}

@media screen and (max-width: 860px) {
  
  .produktCol {
    width: 25%; 
  }
  
}

@media screen and (max-width: 720px) {
  
  .produktCol {
    width: 33.3%; 
  }
  
}
@media screen and (max-width: 540px) {
  
  .produktCol {
    width: 50%; 
  }
  
}



footer {
  padding: 30px 20px;
}
footer li {
  float: left;
  margin: 0 20px 0 0;
}
footer a {
  color: #b4b4b4;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
}







/* Kontakt */
/*
#kontakt #formHolder {
  width: 66%;
  float: left;
}
*/

#contactForm input {
  width: 66%;
  border: 1px solid #b4b4b4;
  padding: 8px;
  margin-bottom: 20px;
  border-radius: 0;
  background: #FFF;
}

#contactForm textarea {
  width: 66%;
  height: 150px;
  padding: 8px;
  border: 1px solid #b4b4b4;
  border-radius: 0;
  background: #FFF;
}

#contactForm button#send {
  float: right;
  background: #000;
  color: #FFF;
  font-family: 'RobotoBold', sans-serif;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 0;
}

#contactForm button#send:before {
  font-family:'FontAwesome';
  content:"\f054";
  color: #dd101e;
  padding-right: 5px;
}
#contactForm button#send:after  {
  content: '';
  display: block;
  clear: both;
}
/*
#kontakt #messageHolder {
  width: 33%;
  float: right;  
}
*/

#kontakt .error {
  color: #dd101e;
  font-size: 10px;
  padding-left: 15px;
  width: 32%;
  display: block;
  float: right;
  line-height: 14px;
}
#contactForm li:before {
  content:"";
  padding-right: 0;
}

#contactForm .liSend {
  width: 66%;
  padding-top: 15px;
}

@media screen and (max-width: 540px) {
  
  #contactForm .liSend {
    padding-bottom: 50px;
  }
  
}


/* Gallery */
#page .galleryList li:before {
  content:"";
  padding: 0px;
}
#page .galleryList .galleryListItem a:before {
  content:"";
  padding: 0;
} 
#page .galleryList li {
  text-align: center;
  width: 120px;
  line-height: 120%;
  margin-bottom: 10px;
}

#page .galleryThumb {
  display: inline-block;
  margin: 0 15px 15px 0;
}
#page .galleryList img {
  width: 100%;
  padding-bottom: 3px;
}

#page .galleryThumb a:before {
  content:"";
  padding: 0;
} 






/* Markisenberater */


#innerHeader nav {
  right: 0px !important;
  left: auto;
}
#innerHeader nav ul {
  text-align: right;
}
#innerHeader nav ul li {
  float: none;
  display: inline;
}
#innerHeader nav li:nth-of-type(3) {
  display: none;
}

#markisenberater {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d31021;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
}

@media screen and (max-width: 890px) {
  #innerHeader nav ul li a {
    padding: 0 5px !important;
  }
}

@media screen and (max-width: 810px) {
  #innerHeader nav li:nth-of-type(3) {
    display: inline;
  }
  #innerHeader #markisenberater {
    display: none;
  }
}
