﻿* {
	padding: 0;
	margin: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-variant-ligatures: no-common-ligatures;
	font-variant-ligatures: no-common-ligatures;
}

body {
	font: 18px "Source Sans 3", Arial, Helvetica, sans-serif;
	line-height: 1.3;
	background: linear-gradient(180deg, rgba(239, 239, 239, 0.1) 300px, rgba(239, 239, 239, 0.8) 800px) fixed, url(bg.jpg) no-repeat top center  fixed;
	color: #444;
	font-weight: 300;
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
}

h1, h2, h3, .no_hyphens {
	-webkit-hyphens: manual;
	-ms-hyphens: manual;
	-moz-hyphens: manual;
}

a {
	color: #009fda;
	text-decoration: none;
}

a:hover {
	color: #444;
	text-decoration: none;
}

h3, .important {
	color: #009fda;
}

.main {
	margin: 25px auto;
	width: 700px;
	background: #fff;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}

.head {
	padding: 10px 30px 0 30px;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    6.6% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
    }

    39.9% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.slider-wrap {
	position: relative;
}

.slider-wrap img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 15s linear 0s infinite normal forwards;
    vertical-align: bottom;
}

.slider-wrap img:nth-of-type(1) {
    position: relative;
}

.slider-wrap img:nth-child(2) {
    animation-delay: 5s;
}

.slider-wrap img:nth-child(3) {
    animation-delay: 10s;
}

.content {
	padding: 25px 30px;
}

.box_left {
	float: left;
	width: 48%;
}

.box_right {
	float: right;
	width: 48%;
}

.footer {
	padding: 30px 30px;
	background: #002857;
	color: #fff;
}

.footer a {
	color: inherit;
}

.footer a:hover {
	color: #009fda;
}

.apply_btn {
	-webkit-border-radius: 13;
	-moz-border-radius: 13;
	border-radius: 13px;
	color: #ffffff;
	font-size: 16px;
	background: #009fda;
	padding: 10px 30px 10px 30px;
	text-decoration: none;
	font-weight: 400;
	text-align: center;
}

.apply_btn:hover {
	background: #444;
	color: #ffffff;
}

.br_entfernen {
	display: inline;
}

p, h1, ul {
	padding: 0px 0px 25px 0px;
}

h1 {
	font-size: 35px;
	font-weight: 300;
	line-height: 1.2;
	color: #002857;
}

.h1_small {
	font-size: 25px;
}

h3 {
	font-weight: 400;
	font-size: 25px;
	padding: 0px 0px 5px 0px;
}

ul {
	padding-left: 14px;
	list-style-type: none;
}

li {
	padding: 0 0 0px 5px;
	position: relative;
}

li:before {
	content: '\00a0';
	position: absolute;
	width: 5px;
	height: 5px;
	left: -12px;
	top: 8px;
	background-color: #fff;
	border: 1px solid #0ca3dc;
	border-radius: 4px;
}

div.breaker {
	clear: both;
	overflow: hidden;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
}

@media only screen and (max-width:700px) {
	* {
		padding: 0;
		margin: 0;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.main {
		margin: 2em auto;
		width: 90%;
	}

	body {
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}

	.content, .head {
		padding: 5%;
	}

	.box_left, .box_right {
		float: none;
		width: 100%;
	}

	.footer_left, .footer_right {
		float: none;
	}

	.footer_left {
		padding: 0 0 15px 0;
	}

	.br_entfernen, .nomobile {
		display: none;
	}

}