* {
	box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
body {
	margin: 0 auto;
	background: #f2f2f2;
	background-image: linear-gradient(-20deg, #f2f2f2 0%, #f7f7f7 100%);
	background-attachment: fixed;

	font-family: FrutigerLTStd-Cn;
	font-weight: normal;
	font-style: normal;
	font-size: 1em;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    position: relative;
}
body:after {
	content: '';
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 20px solid #fff;
	z-index: 99;
	pointer-events: none;
}

#logo {
	position: fixed;
	top: 60px;
	right: 60px;
	margin-bottom: 40px;
	display: block;
}
#logo img {
	 width: 160px;
}
a {
	text-decoration: none;
	color: #008bff;
	transition: all 0.2s ease-in-out;
}
a:hover {
	color: #A0C800;
}
h1, h2, h3, strong {
	font-family: FrutigerLTPro-BoldCn;
	font-weight: normal;
	font-style: normal;
}
h1 {
	font-size: 3em;
	text-transform: uppercase;
	line-height: 1em;
	margin: 40px 0;

	/*-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;*/
}

main {
	width: 100%;
	padding: 40px;
	/*max-width: 800px;
	margin: 0 auto;*/
}
.centercenter {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-justify-content: center;
	-ms-flex-pack:center;
	justify-content: center;

	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;

	flex-direction: column;

	text-align: center;

	width: 100%;
	height: 100%;
}
.centercenter > div {
	max-height: 100%;
	padding: 80px 0;
}
.transferinfo {
	max-width: 400px;
	margin: 40px auto;
	opacity: 0.3;
	transition: all 0.2s ease-in-out;
}
.transferinfo:hover {
	opacity: 1;
}

/* TOPMENU */

#topmenu {
	position: fixed;
	left: 60px;
	top: 60px;
}
#topmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	border-radius: 20px;
	overflow: hidden;
	display: inline-flex;
}
#topmenu ul li {
	padding: 10px;
	background-color: #008CFF;
	transition: all 0.2s ease-in-out;
}
#topmenu ul li:first-child {
	padding-left: 20px;
}
#topmenu ul li:last-child {
	padding-right: 20px;
}
#topmenu ul li:hover {
	background-color: #A0C800;
}
#topmenu ul li a {
	color: #fff !important;
}

/* FORM */

form {
	width: 100%;
	height: 100%;
}
label {
	display: block;
	font-size: 0.8em;
}
input, textarea {
	display: block;
	padding: 10px 0;
	line-height: 1em;
	font-size: 1em;
	font-family: inherit;
	border: none;
	outline: none;
	width: 300px;
	/*max-width: 300px;
	min-width: 300px;*/
	margin: 5px auto 10px;

	transition: all 0.2s ease-in-out;
	background-color: transparent;
	border-bottom: 1px solid rgba(160,200,0,0.5);
}
input:focus, textarea:focus {
	border-bottom: 1px solid rgba(160,200,0,1);
}
textarea {
	resize: none;
}
input[type=submit], .button, button {
	display: inline-block;
	border: none;
	outline: none;
	border-radius: 20px;
	background-color: #008CFF;
	color: #fff;
	width: auto;
	margin: 5px auto 0;
	padding: 10px 20px;
	text-transform: uppercase;
	transition: all 0.5s cubic-bezier(0.5, -1, 0, 1) 0s;
	font-size: 1.2em;
}
input[type=submit]:hover, .button:hover, button:hover {
	background-color: #A0C800;
	color: #fff;
	cursor: pointer;
	padding: 10px 30px;
}

/* PROJEKTE */

/*.uebersicht {
	max-width: 1200px;
	margin: 0 auto;
}
.projekte {
	display: table;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 10px;
}
.projekt {
	display: table-row;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
	border-radius: 20px;
	overflow: hidden;
}
.projekt:hover {
	background-color: #A0C800;
	color: #fff;
}
.projekt span {
	display: table-cell;
	padding: 10px;
}
.projekt span:first-child {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	width: 200px;
	padding-left: 20px;
}
.projekt span:last-child {
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	text-align: right;
	padding-right: 20px;
}*/
.uebersicht {
	padding: 80px 0;
}
.projekte {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.projekt {
	background-color: #fff;
	transition: all 0.3s ease-in-out;
	border-radius: 20px;
	margin: 10px;
	padding: 20px;
	width: 210px;
	height: 260px;
	position: relative;
	/*box-shadow: 0 0 10px 0px rgba(0,0,0,0.1);*/
}
.projekt:hover {
	background-color: #A0C800;
	color: #fff;
	transform: scale(1.05);
}
.projekt span {
	display: block;
	overflow: hidden;
	margin-bottom: 5px;
}
/*@media screen and (max-width: 1200px) {
	.projekt {
		width: 31%;
	}
}
@media screen and (max-width: 800px) {
	.projekt {
		width: 48%;
	}
}
@media screen and (max-width: 500px) {
	.projekt {
		width: 98%;
	}
}*/

.projektsingle {
	margin-bottom: 40px;
	max-width: 800px;
}
ul.noliststyle {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.sendsuccess, .senderror {
	color: #A0C800;
}
.senderror {
	color: #ff728d;
}

/* FOOTER */

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 40px;
	/*background-color: #A0C800;
	background-image: linear-gradient(-20deg, #A0C800 0%, #008CFF 100%);
	color: #fff;*/
	display: flex;
	justify-content: space-between;

	text-transform: uppercase;
	font-size: 0.9em;
}
/*footer a {
	color: #fff;
}
footer a:hover {
	color: #000;
}*/
/*footer {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 20px;
}*/
footer a {
	color: #000;
}
footer a:hover {
	color: #008CFF;
}


/* t */
.error { 
	display: inline-block;
	background-color: #ff728d;
	color: #fff;
	border-radius: 20px;
	margin: 0 auto 20px;
	padding: 10px 20px;
}
noscript { width: 100%; text-align: center; color:#fff; line-height: 3em; background-color: darkred; display: block; position: fixed; top: 0;}

