@charset "utf-8";
/* Schriften */

/* Source Sans Pro */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('../fonts/SourceSansPro-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: local(''),
       url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype');
}

/* Farbvariablen und Zahlvariablen -------------------------------------------------------------------------------------------- */
:root {
	--akzent: #005c8e;
    --akzenthover: #009ba3;
	--akzent2: #009ba3;
    --akzent2hover: #005c8e;
	--text: #000;
    --texthell: #fff;
	--bg: #fff;
    --weiss: #fff;
	--grau14: #e5e5e5;
	--grau21: #d8d8d8;
	--grau28: #cacaca;
	--grau35: #bcbcbc;
	--grau42: #aeaeae;
	--headerheight: 100px;
}

/* Allgemeine Styles ---------------------------------------------------------------------------------------- */

* {
	padding: 0;
	margin:0;
    box-sizing: border-box;
}
html,body {
 height: 100%;
}
body {
	font-family: "Source Sans Pro", Arial, Verdana, sans-serif;
	font-size: 16px;
    line-height: 135%;
    background-color: var(--bg);
    color: var(--text);
}
a:link, a:visited {
    color: var(--akzent2);
}
a:hover {
    color: var(--akzent2hover);
}
img {
	border:none;
}

h1 {
    padding-bottom: 1em;
    color: var(--text);
    font-size: 1.8em;
}


.md {
	width: 220px;
	height: auto;
}
.download {
	background-color: var(--akzent);
}
.index .container {
    height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
padding-top: 0;
    position: relative;
    top: 0;
	grid-template-rows: 1fr 3em;
}
.container {
  display: grid;
  align-items: top;
  justify-content: center;
    position: relative;
    top: var(--headerheight);
	padding-top: 4em;
	grid-template-rows: 1fr 3em;
	
}

.index .content {
    min-width: 300px;
    max-width: 450px;
    padding: 0.5em;
}
.download .content {
    border: 2px solid var(--akzent);
	border-radius: 6px;
	background-color: var(--weiss);
	padding: 2em;
}
.content {
    min-width: 300px;
    max-width: 450px;
    padding: 1em 1em 1em 1em;
}

.box {
    background-color: var(--weiss);
    padding: 2em;
}
.impressum {
    padding: 1em 0 1em 0;
	text-align: center;
}

.download .impressum a:link {
    color: var(--weiss);
}
.download .impressum a:hover {
    color: var(--akzent2);
}

.header {
    position: fixed;
	top: 0;
	z-index: 100;
background-color: var(--weiss);
width: 100%;
    display: grid;
    padding: 1em;
    height: var(--headerheight);
	border-bottom: 1px solid var(--akzent2);
}
.logo {
    width: 100%;
	height: auto;
}

.clientlogo {
	text-align: right;
	margin-bottom: 1em;
}
.clientlogo img {
	width: 50%;
	height: auto;
}

h1 {
	color: var(--akzent);
	font-size: 1.5em;
	font-weight: 600;
}

.form form {
	display: grid;
}
.form div {
	margin-bottom: 1em;
}
.form label {
	font-size: 0.9em;
	color: var(--akzent2);
	width: 100%;
	display: block;
}
.form input, .form select {
	width: 100%;
	border: 1px solid var(--akzent2);
	border-radius: 4px;
	padding: 0.3em;
	font-size: 1.1em;
	font-family: "Source Sans Pro", Arial, Verdana, sans-serif;
	background-color: var(--weiss);
	min-width: 250px;
}
.form select option {
	font-family: "Source Sans Pro", Arial, Verdana, sans-serif;
}
.form button {
	padding: 0.6em;
	background-color: var(--akzent2);
	border-radius: 4px;
	font-family: "Source Sans Pro", Arial, Verdana, sans-serif;
	color: var(--weiss);
	border: none;
	font-size: 1.1em;
	margin-top: 1em;
	cursor: pointer;
}
.form button:hover {
	background-color: var(--akzent);
}
a.btn:link {
	padding: 0.6em;
	background-color: var(--akzent2);
	border-radius: 4px;
	color: var(--weiss);
	border: none;
	font-size: 1.1em;
	margin-top: 1em;
	display: inline-block;
	text-decoration: none;
}
a.btn:hover {
	background-color: var(--akzent);
}