/*COLORS

hellrot: #AB3E43;
dunkelrot: #5E191C;
grau: #D8D4D3;

*/

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}


/*FONTS*/

/* roboto-slab-300 - latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-slab-v8-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Roboto Slab Light'), local('RobotoSlab-Light'),
       url('../fonts/roboto-slab-v8-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-slab-v8-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-slab-v8-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-slab-v8-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-slab-v8-latin-300.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-regular - latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-slab-v8-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'),
       url('../fonts/roboto-slab-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-slab-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-slab-v8-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-slab-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-slab-v8-latin-regular.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-700 - latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-slab-v8-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'),
       url('../fonts/roboto-slab-v8-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-slab-v8-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-slab-v8-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-slab-v8-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-slab-v8-latin-700.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

*, html, body {
	font-family: 'Roboto Slab', serif;
}

h1 {
	font-weight: 700;
	margin-top:0;
	line-height: 1.4;
}
h2 {
	font-weight: 700;
	margin-top:0;
	line-height: 1.4;
}
h2 span {
	color:#AB3E43;
}
h3 {
	color: #AB3E43;
}
p {
	font-size: 100%;
	line-height: 1.4;
	color: #D8D4D3;
	margin-bottom: .5rem;
}
p.hero {
	font-size: 1.5rem;
	color: #D8D4D3;
}
p.small {
	font-size: 80%;
	margin-bottom: 1rem;
}
a {
	color: #fff;
	text-decoration: underline;
}

/*LAYOUT*/
.colorcontainer {
	padding: 2rem 0;
}
.darkred {
	background-color: #5E191C;
	color: #fff;
}
.black {
	background-color: #000;
	color: #fff;
}
img.responsive-img {
	width: 100%;
	display: block;
}
.btn {
    color: #000;
    background-color: #fff;
}
.btn:hover {
    background-color: #AB3E43;
}


/*MEDIA QUERIES*/
/*small*/
@media only screen and (max-width: 600px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.75rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	p {
		text-align: justify;
	}
	p.hero {
		text-align: left;
	}
	.btn {
	    margin: 10px 0 0 0;
	}
}

/*medium*/
@media only screen and (max-width: 992px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.75rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	p {
		text-align: justify;
	}
}

/*large*/
@media only screen and (min-width: 993px) {
	h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.75rem;
	}
	p {
		text-align: left;
	}
	.btn {
	    margin: 0 0 0 10px;
	}
}

/*xlarge*/
@media only screen and (min-width: 1201px) {

}