@charset "UTF-8";

@import url(http://fonts.googleapis.com/css?family=Lato:100,300);

/* CSS Document */

/*****Reset*****/  
/*Remove margin and padding from elements*/

html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote,  
pre, form, fieldset, table, th, td { margin: 0; padding: 0; }

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
  
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
a, a:active, a:focus {
	outline: none;
	color: rgb(255,255,255);
	text-decoration: underline;
}

a:hover {
	color: rgb(255,255,255);
}

a img {
	border: none;
}
/*****Basic Elements*****/  
/*Define styles for basic elements: body, h1-h6, ul, ol, a, p, etc.*/  

html,body {
	overflow-x: hidden;
}

body {
	font-family: 'Lato', sans-serif;
	font-size: 26px;
	background-color: rgb(224,224,224);
	font-weight: 300;
    letter-spacing: 0.1em;
    color: rgb(76, 47, 42);
    line-height: 4rem;
}

h1, h2, h3 {
	font-size: 150%;
	padding-bottom: 10px;
}
h2 {
	font-size: 125%;
}
h3 {
	font-size: 110%;
}

strong {
	font-family: "Times", "Times New Roman", serif;
	font-weight: 400;
	font-size: 120%;
}

p {
	padding-bottom: 45px;
}

.brandsSecond {
    margin-bottom: 0px !important;;
}
.brandsThird {
    margin-bottom: 50px;
}
.lilaValadan {
    margin-top: -1px;
}
.btn-default {
    color: rgb(76, 47, 42);
    border: 1px solid #000000;
    border-width: 1px;
    text-transform: uppercase;
    font-size: 21px;
    padding-top: 6px;
    padding-bottom: 6px;
    width: 200px;
    margin-bottom: 100px;
}
.btn-default:hover {
    border-color: #000000;
}

li {
	display: inline;
	list-style-type: none;
}

.divider:after {
	content: "|";
}
  
/*****Generic Classes*****/  
/*Define styles for simple things like floating to the sides, removing a bottombottom margin on elements, etc  
Yes, these may not be as semantic as we would all like, but they are necessary for coding efficiently*/
  

/*****Basic Layout*****/  
/*Define the basic template: header, footer, etc. Elements that help to define the basic layout of the site*/

  
/*****Header*****/  
/*Define all elements in the header*/
  
header {
	background-color: rgb(255,255,255);
	padding: 60px 30px;
} 
  
/*****Content*****/  
/*Define all elements in the content area*/
  
#content {
	padding: 60px 30px 60px 30px;
}
#brands {
	padding-left: 7%;
    padding-right: 7%;
}
.col-md-3 {
	padding: 0px !important;
}
#brandsText {
	display: table;
  width: 100%;
  height: 4em;
}
.img-responsive {
	width: 100%;
	padding-bottom: 1px;
}
#logoSpacing {
	width: 12.49%;
}

#impressum, #datenschutz {
	font-size: 60%;
	letter-spacing: 0em;
	padding: 30px;
}

#impressum p, #datenschutz p {
	padding-bottom: 15px;
	line-height: 1.75;
}
#datenschutz h2 {
	padding-top: 1rem;
}

#impressum a, #impressum a:hover, #datenschutz a, #datenschutz a:hover {
	color: rgb(76,47,42);
}
  
/*****Footer*****/  
/*Define all elements in the footer*/
  
footer {
	background-color: rgb(76,47,42);
	color: rgb(255,255,255);
	padding: 30px;
	font-size: 70%;
	bottom: 0;
	position: fixed;
	width: 100%;
	font-weight: 100;
	letter-spacing: 0.05em;
}
  
/*****Etc*****/  
/*Continue to define the other sections one by one*/
  
.container-fluid {
	padding: 0;
}

@media screen and (max-width: 767px) {
	header img {
		max-width: 310px;
		width: 100%;
		height: auto;
	}
	#content {
		padding-bottom: 210px;
	}
	.img-responsive {
		padding-bottom: 5px;
	}
	#brands {
		padding-left: 12%;
	    padding-right: 12%;
	}
	footer {
		font-weight: 300;
	}
}

/* iPad Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : portrait) {
	.img-responsive {
		padding-bottom: 5px;
	}
	footer {
		font-weight: 300;
	}
}

/* iPad Landscape */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
	.img-responsive {
		padding-bottom: 5px;
	}
	footer {
		font-weight: 300;
	}
}