
/* CSS-Reset
-------------*/

	* {
		box-sizing: border-box;
		font-size: inherit;
		font-family: 'Rubik', 'Open Sans', 'Arial', sans-serif;
	}

	html, body {
		padding: 0;
		margin: 0;
		color: #424242;
		font-size: 20px;
		background-color: #FFFFFF;
	}

	body {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}

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

	section {
		position: relative;
	}

	small * {
		font-size: inherit;
		color: inherit;
	}

/* Layoutelemente
------------------*/

	.container {
		position: relative;
		width: 1200px;
		margin: 0 auto 0 auto;
	}

	@media screen and (max-width: 1200px) {
		.container {
			width: 100%;
			margin-right: 0;
			margin-left: 0;
			padding: 0 20px 0 20px;
		}
	}

/* Links
--------*/

	a {
		color: #021F41;
		text-decoration: none;
	}

	main a {
		font-weight: 500;
		color: #042040;
	}

	a:hover {
		color: #021F41;
		text-decoration: underline;
		opacity: 0.8;
	}

	a:focus {
		outline: 1px dashed #409D27;
	}

/* Absatz
----------*/

	p {
		margin: 15px 0 0 0;
		line-height: 30px;
	}

/* Eingabefelder
-----------------*/

	input, select, textarea {
		font-family: inherit;
	}

/* Floatclear
--------------*/

	.clear {
		clear: both;
		line-height: 0;
		height: 0;
		font-size: 0;
	}

	.clearfix:after {
		content: '';
		clear: both;
		display: table;
	}

/* Überschriften
------------------*/

	h2 {
		display: inline-block;
		font-family: 'Montserrat';
		font-size: 45px;
		font-weight: 800;
		color: #f35022;
		margin: 50px 0 0 0;
	}

	h3 {
		font-family: 'Montserrat';
		font-size: 30px;
		margin-top: 30px;
		font-weight: 800;
		color: #333333;
	}

	h3 strong {
		display: block;
		color: #f35022;
		font-size: 40px;
	}

/* Listen
----------*/

	main li {
		line-height: 35px;
	}