*, *:before, *:after {
  box-sizing: border-box;
}

body {
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
}

a {
  text-decoration: none;
  cursor: default;
}
a.normallink {
	color:inherit;
	cursor:pointer;
}
a.normallink:hover {
	text-decoration:underline;
}

.taskbar {
  position: relative;
  height:66px;
  left: 0;
  right: 0;
  bottom: 0;
  text-align:center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.15);
  background-color: #1c2429;
  z-index: 9998;
  font-size: 14px;
  transition: all 1s;
}

.taskbar__item {
  display: inline-block;
  margin-right: 4px;
  text-align: center;
  color: white;
  border: 1px solid transparent;
  ttransition:inherit;
  transition: background-color 100ms, box-shadow 100ms;
  padding: 6px 4px 4px;
  width:6em;
  height:100%;
	overflow:hidden;
	position:relative;
}
.taskbar__item:hover {
  background-color: rgba(120, 144, 156, 0.15);
}
.taskbar__item > i {
  display: inline-block;
  font-size:2.5em;
}
.taskbar__item > span {
  display:inline-block;
}

.taskbar__item--open {
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.35);
}


.desktop {
  position: absolute;
  overflow: hidden;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 1s;
}

.desktop,
.window__titlebar:after {
  background-image: url(../i/bg.jpg);
  background-position: left center;
	background-size: cover;
  background-attachment: fixed;
}

#start {
    color: white;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
		width:100%;
		pointer-events: none;
}
#start h1 {
    font-size: 4.5em;
    line-height: 1;
		font-weight:lighter;
}
#start h2 {
	margin-top:3.5em;
	font-size:1.875em;
}
span.avoidwrap { display:inline-block; }
@keyframes shinning {
	0%   {box-shadow: 0 0 0px rgba(255, 247, 153, 0.7);}
	25%  {box-shadow: 0 0 30px rgba(255, 247, 153, 0.7);}
	50%  {box-shadow: 0 0 0px rgba(255, 247, 153, 0.7);}
	75%  {box-shadow: 0 0 30px rgba(255, 247, 153, 0.7);}
	100% {box-shadow: 0 0 0px rgba(255, 247, 153, 0.7);}
}
#start img {
    animation: 10s ease 0s normal none infinite running shinning;
		display: block;
		margin-left: auto;
		margin-right: auto;
}

#temp-wrapper{
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.window-wrapper {
	position:absolute;
	transition: all 250ms, z-index 1ms;
}
.window-wrapper.ui-draggable-dragging, .window-wrapper.ui-resizable-resizing {
  transition: none;
}
.window-wrapper .target {
	height:100%;
	width:100%;
}
.genie {
	position: absolute;
	left: 0;
	top: 0;
}
.taskbar__item .genie {
	z-index:-1;
}
.genie1 {z-index:5000;}

.window {
  position: absolute;
	height:100%;
	width:100%;
	top:0;
	left:0;
  border-top: 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.1);
  transition: all 250ms, z-index 1ms;
	overflow:hidden;
	z-index:1;
}
.window--inactive {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 1px 1px rgba(0, 0, 0, 0.1);
  filter: contrast(0.7) grayscale(0.5) brightness(1.3);
	-webkit-filter: contrast(0.7) grayscale(0.5) brightness(1.3);
}
.window--closing {
  transform: scale(0.9);
	opacity:0;
}

.window__titlebar {
  position: absolute;
  overflow: hidden;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  cursor: default;
  background-color: #7bb6ef;
}
.window__titlebar:after {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  filter: grayscale(100%);
  opacity: 0.5;
}

.window__title {
  position: relative;
  line-height: 32px;
  zz-index: 10;
  color: rgba(0, 0, 0, 0.75);
}

.window__controls {
  position: absolute;
  top: 0;
  bottom: 0;
  zz-index: 10;
}
.window__controls > a {
  display: block;
  float: left;
  height: 32px;
  width: 32px;
  line-height: 32px;
  font-size: 12px;
  transition: all 100ms;
  cursor: default;
  color: rgba(0, 0, 0, 0.5);
}
.window__controls > a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.window__controls > .window__close {
  color: white;
  background-color: #398ada;
}
.window__controls > .window__close:hover {
  background-color: #e53935;
}

.window__controls--left {
  left: 0;
}

.window__controls--right {
  right: 0;
}

.window__maximize {
  position: relative;
}
.window__maximize > i {
  box-sizing: content-box;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  border: 2px solid rgba(0, 0, 0, 0.6);
}
.window--maximized .window__maximize > i {
  margin-bottom: -1px;
  margin-left: -4px;
  width: 5px;
  height: 5px;
  transition: all 100ms 350ms;
}
.window--maximized .window__maximize > i:after {
  box-sizing: content-box;
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 6px;
  height: 6px;
  border: inherit;
  border-radius: inherit;
  border-left: 0;
  border-bottom: 0;
  transition: all 100ms 350ms;
}

.window__menutoggle--open,
.window__menutoggle--open:hover {
  color: white !important;
}

/* Farben */
.taskbar__item--active.taskbar__item--about,
.window--about .window__icon,
.window--about .window__icon:hover,
.window--about .window__menu,
.window--about .window__menutoggle--open,
.window--about .window__menutoggle--open:hover
{
  background-color: #0097A7;
}
.taskbar__item--active.taskbar__item--services,
.window--services .window__icon,
.window--services .window__icon:hover,
.window--services .window__menu,
.window--services .window__menutoggle--open,
.window--services .window__menutoggle--open:hover
{
  background-color: #5C6BC0;
}
.window--services ul.checklist li::before {
  color: #5C6BC0;
}
.taskbar__item--active.taskbar__item--references,
.window--references .window__icon,
.window--references .window__icon:hover,
.window--references .window__menu,
.window--references .window__menutoggle--open,
.window--references .window__menutoggle--open:hover
{  
	background-color: #EC407A;
}
.taskbar__item--active.taskbar__item--contact,
.window--contact .window__icon,
.window--contact .window__icon:hover,
.window--contact .window__menu,
.window--contact .window__menutoggle--open,
.window--contact .window__menutoggle--open:hover,
.contact input[type="submit"]:hover
{  
	background-color: #9ac155;
}


.window-wrapper--about {
	min-width:400px;
	top:5%;
	left:8%;
	height:500px;
	width:70%;
}
.window-wrapper--about.window-wrapper--default {
	max-width:900px;
	max-height:95%
}

.window-wrapper--services {
	min-width:400px;
	top:2.5%;
	right:6%;
	height:450px;
	width:70%;
}
.window-wrapper--services.window-wrapper--default {
	max-width:1000px;
	max-height:97.5%
}

.window-wrapper--references {
	min-width:400px;
	top:30%;
	left:15%;
	height:400px;
	width:70%;
}
.window-wrapper--references.window-wrapper--default {
	max-width:1000px;
	max-height:70%
}

.window-wrapper--contact {
	min-width:400px;
	top:17%;
	right:4%;
	height:430px;
	width:65%;
}
.window-wrapper--contact.window-wrapper--default {
	max-width:900px;
	max-height:83%
}

.window__icon,
.window__icon:hover,
.window__menu {
  color: white !important;
}

a.window__minimize {
	display:none;
}

.window__menu {
  overflow-y: auto;
	overflow-x: hidden;
  display: none;
  position: relative;
  top: 31px;
  float:left;
  width: 25%;
  min-width: 200px;
  height: calc(100% - 31px);
  color: white;
  background-color: #5C6BC0;
  z-index: 100;
}
.window__menu ul {
  margin: 0;
  padding: 10px 0;
}
.window__menu ul > li {
  list-style: none;
  transform: translate(-50%, 0);
  transition: transform 500ms cubic-bezier(0, 0.23, 0.18, 1.43) 500ms;
}
.window__menu--open ul > li {
  transform: none;
}
.window__menu ul > li > a {
  opacity: 0;
  position: relative;
  display: block;
  padding: 10px;
  padding-left: 45px;
  color: white;
  font-weight: 200;
  text-decoration: none;
  transition: all 100ms, opacity 750ms 650ms;
}
.window__menu--open ul > li > a {
  opacity: 1;
}
.window__menu ul > li > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.window__menu ul > li.divided > a {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}


.menu__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 16px;
}
.menu__icon.fa-stack {
	font-size:8px;
}

.window__body {
  display: flex;
  padding-top: 32px;
  height: 100%;
}

.window__side,
.window__main {
  flex: 0 1 auto;
  overflow: auto;
}

.window__side {
  overflow: auto;
  width: 25%;
  min-width: 200px;
  padding: 10px;
  background-color: #ECEFF1;
}

.window__main {
  padding: 10px;
  width: 100%;
  background-color: white;
	line-height:1.6em;
}

.window__main a {
	color:inherit;
	cursor:pointer;
}

.window__main a:hover {
	text-decoration:underline;
}

/* Persönliches */

.profilepic img {
    transition: all 0.5s cubic-bezier(0, 0, 0.38, 1.6);
		width: 100%;
    border: 15px solid #1a82bf;
    border-radius: 50%;
    transform: scale(0);
		display: inline-block;
		margin-bottom:-10%;
}
.window__menu--open .profilepic img {
    transform: scale(0.8);
}

table.cv {
	width:100%;
}
table.cv tr td:first-child {
	width:25%;
	padding-right: 5px;
}
table.cv tr td {
	padding: 5px 0;
	vertical-align: top;
}

.lang-logo {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 90% auto;
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 5em;
	height: 5em;
	margin: 0.7em
}
.lang-logo.bigpic {
	background-size: 80% auto;
}
.lang-logo span {
	background-color: rgba(30, 30, 30, 0.9);
	border-radius: 50%;
	color: #fff;
	display: none;
	height: 100%;
	left: 0;
	line-height: 5em;
	position: absolute;
	text-decoration: none;
	width: 100%;
}
.lang-logo span.longname {
	font-size: 0.8em;
	line-height:6em;
}

/* Leistungen */
ul.checklist {
  list-style: none;
  padding-inline-start: 20px;
}
ul.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  font-size: 18px;
}
ul.checklist li::before {
  content: "✔"; /* Unicode-Häkchen */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Referenzen */
.grid-item {
	width: 50%; /*default, wird per JS verändert*/
	padding: 10px;
	margin-bottom:12px;
}
.ref__content {
	background-color: #fffafa;
	border:1px solid  #a9a9a9;
}
.ref__description {
	padding:10px;
	line-height:1.44em;
	color: 	#666;
}
.ref__description h3 {
	margin:0;
	line-height:1.44em;
	color:black;
}
.ref a {
	display:block;
	width:100%;
	position:relative;
	overflow:hidden;
}
.ref a img {
	width:100%;
	display:block;
	transition:350ms;
}
.ref a:hover img {
    transform: scale(1.05);
}
.ref a .overlay {
	background-color:rgba(236, 64, 122, 1);
	position:absolute;
	left:0;
	top:100%;
	height:100%;
	width:150%;
	transform-origin:0 0;
	transition:transform .3s;
}
.ref a:hover .overlay {
    background-color: rgba(236, 64, 122, 0.9);
    transform: rotate3d(0, 0, 1, -12deg);
}
.ref a .plus {
	position:absolute;
	right:15px;
	bottom:-50px;
	color:#fff;
	font-size:40px;
	line-height:50px;
	transition:.3s;
	font-family:Consolas,"courier new";
	font-weight:400;
}
.ref a:hover .plus {
	bottom: 0;
}
.ref a .hint {
	color: #fff;
	bottom:-22px;
	font-size: 10px;
	line-height: 22px;
	position: absolute;
	text-align: center;
	transition: all 0.3s ease 0s;
	width: 100%;
}
.ref a:hover .hint {
	bottom: 0;
}

/* Kontakt */
.window__menu .address, .window__menu .mail {
	padding:10px;
	opacity:0;
	transition: transform 500ms cubic-bezier(0, 0.23, 0.18, 1.43) 600ms, opacity 750ms 650ms;
}
.window__menu .address {
	transform: translate(-50%, 0px);
}
.window__menu .mail {
	transform: translate(50%, 0px);
}
.window__menu--open .address, .window__menu--open .mail {
	opacity: 1;
	transform: none;
}

.mailsent {
	margin: 12px auto;
	color: #9ac155;
	text-align:center;
}

.mailnotsent {
	margin: 12px auto;
	color: red;
	text-align:center;
}

.contact input, .contact textarea, .contact select {
    width: 100%;
		padding: 0.6em;
		font-size:1em;
}
.contact h3 {
	border-bottom: 2px solid #f9f9f9;
	margin-bottom: 1.2em;
	margin-top: 2em;
	padding-bottom: 0.3em;
}
.contact .note {
	font-size: 0.9em;
}
.contact .required {
	color:red;
}
.contact input[type="submit"] {
    background: black none repeat scroll 0 0;
    border: medium none;
    color: white;
    display: inline-block;
    font-size:1.2em;
		width:auto;
		transition: background-color 0.5s ease 0s, font 0.5s ease 0s;
}
.contact .error {
	border:1px solid red;
}
.contact label.error {
    color: red;
    display: block;
    float: right;
    padding-right: 10px;
		border:none;
}

/* Impressum */
.footer {
    bottom: 0;
    font-size: 10px;
    padding: 2px;
    position: absolute;
    right: 18px;
		color:white;
}
.impressum-wrapper, .impressum {
	width:100%;
	height:100%;
	background-color:white;
	position:absolute;
	top:0;
	left:0;
}
.impressum-wrapper {
	display:none;
	z-index:6000;
}
.impressum {
	overflow:auto;
}
.impressum__content {
	margin: 0 auto;
	max-width:900px;
}
.impressum__close {
	position: absolute;
	right: 20px;
	top: 0;
	z-index:3;
}
.impressumcloselink span {
	position: relative;
	top: -4px;
}
.impressum-wrapper a, .footer a {
	color: inherit;
	cursor:pointer;
}
.impressum-wrapper a:hover, .footer a:hover {
	text-decoration:underline;
}


.ui-resizable-se {
  background-image: url("");
}

/************* responsive Layout  *************/

.mobile-portrait {
	display: none;
}
.taskbar__tray {
	display:none;
}

@media all and (min-width: 600px) {
	.contact .half {
    float: left;
    margin: 0;
    width: calc(50% - 0.5em);
	}
	.contact div .half:first-child {
		margin-right:0.5em;
	}
	.contact div .half:last-of-type {
		margin-left:0.5em;
	}
}

/*extra large*/
@media all and (min-width: 1200px) {
	.window, #start {
	  font-size: 18px;
	}
}

/*smaller*/
@media all and (max-width: 1024px) {
	.taskbar {
	  font-size: 12px;
	  height:58px;
	}
	.window, #start {
	  font-size: 14px;
	}
	.desktop {
	  top:58px;
	}
}

/*mobile*/
@media all and (max-width: 600px) {
	#start {
		font-size:10px;
	}
	#start h2 {
		margin-top:2em;
	}
	.window {
		font-size:16px;
	}
	.taskbar {
	  height:36px;
	  font-size:9px;
	}
	.taskbar__item > span {
	  display:none;
	}
	.taskbar__tray {
	  font-size:2.5em;
	  display:block;
	  color: white;
	  padding: 0 10px;
	  float: right;
	}
	.taskbar__tray > i {
	  cursor: default;
	  padding: 3px 5px;
	  margin-top:3px;
	}
	.taskbar__tray > i:hover {
	  background-color: rgba(255, 255, 255, 0.1);
	}
	/* Open Taskbar */
	.taskbar--open {
	  height:auto;
	}
	.taskbar--open .taskbar__item {
	  display:block;
	  width: auto;
	  text-align:left;
	}
	.taskbar--open .taskbar__item > i {
      text-align: center;
      width: 1.28571em;
	  margin-right:5px;
	}
	.taskbar--open .taskbar__item > span {
	  display:inline-block;
	  font-size:2.5em;
	}
	
	.desktop {
		top: 36px;
	}
	
	a.window__minimize, a.window__maximize {
		display:none;
	}
	
	.window__menu {
		position:absolute;
		float:none;
	}
	
	.window-wrapper--about, .window-wrapper--services, .window-wrapper--references, .window-wrapper--contact {
		min-width:0 !important;
		min-height:0 !important;
		max-height:none !important;
		max-width:none !important;
		top:1px;
		left:0;
		height:100%;
		width:100%;
	}
}

#fountainG{
	position:absolute;
	top:3px;
	left:50%;
	transform: translate(-50%, 0);
	width:234px;
	height:28px;
	margin:auto;
	display:none;
	z-index:4800;
}

.fountainG{
	position:absolute;
	top:0;
	background-color:rgb(255,255,255);
	width:28px;
	height:28px;
	animation-name:bounce_fountainG;
		-o-animation-name:bounce_fountainG;
		-ms-animation-name:bounce_fountainG;
		-webkit-animation-name:bounce_fountainG;
		-moz-animation-name:bounce_fountainG;
	animation-duration:1.5s;
		-o-animation-duration:1.5s;
		-ms-animation-duration:1.5s;
		-webkit-animation-duration:1.5s;
		-moz-animation-duration:1.5s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-direction:normal;
		-o-animation-direction:normal;
		-ms-animation-direction:normal;
		-webkit-animation-direction:normal;
		-moz-animation-direction:normal;
	transform:scale(.3);
		-o-transform:scale(.3);
		-ms-transform:scale(.3);
		-webkit-transform:scale(.3);
		-moz-transform:scale(.3);
	border-radius:19px;
		-o-border-radius:19px;
		-ms-border-radius:19px;
		-webkit-border-radius:19px;
		-moz-border-radius:19px;
}

#fountainG_1{
	left:0;
	animation-delay:0.6s;
		-o-animation-delay:0.6s;
		-ms-animation-delay:0.6s;
		-webkit-animation-delay:0.6s;
		-moz-animation-delay:0.6s;
}

#fountainG_2{
	left:29px;
	animation-delay:0.75s;
		-o-animation-delay:0.75s;
		-ms-animation-delay:0.75s;
		-webkit-animation-delay:0.75s;
		-moz-animation-delay:0.75s;
}

#fountainG_3{
	left:58px;
	animation-delay:0.9s;
		-o-animation-delay:0.9s;
		-ms-animation-delay:0.9s;
		-webkit-animation-delay:0.9s;
		-moz-animation-delay:0.9s;
}

#fountainG_4{
	left:88px;
	animation-delay:1.05s;
		-o-animation-delay:1.05s;
		-ms-animation-delay:1.05s;
		-webkit-animation-delay:1.05s;
		-moz-animation-delay:1.05s;
}

#fountainG_5{
	left:117px;
	animation-delay:1.2s;
		-o-animation-delay:1.2s;
		-ms-animation-delay:1.2s;
		-webkit-animation-delay:1.2s;
		-moz-animation-delay:1.2s;
}

#fountainG_6{
	left:146px;
	animation-delay:1.35s;
		-o-animation-delay:1.35s;
		-ms-animation-delay:1.35s;
		-webkit-animation-delay:1.35s;
		-moz-animation-delay:1.35s;
}

#fountainG_7{
	left:175px;
	animation-delay:1.5s;
		-o-animation-delay:1.5s;
		-ms-animation-delay:1.5s;
		-webkit-animation-delay:1.5s;
		-moz-animation-delay:1.5s;
}

#fountainG_8{
	left:205px;
	animation-delay:1.64s;
		-o-animation-delay:1.64s;
		-ms-animation-delay:1.64s;
		-webkit-animation-delay:1.64s;
		-moz-animation-delay:1.64s;
}



@keyframes bounce_fountainG{
	0%{
	transform:scale(1);
		background-color:rgb(255,255,255);
	}

	100%{
	transform:scale(.3);
		background-color:rgba(255,255,255,0);
	}
}

@-o-keyframes bounce_fountainG{
	0%{
	-o-transform:scale(1);
		background-color:rgb(255,255,255);
	}

	100%{
	-o-transform:scale(.3);
		background-color:rgba(255,255,255,0);
	}
}

@-ms-keyframes bounce_fountainG{
	0%{
	-ms-transform:scale(1);
		background-color:rgb(255,255,255);
	}

	100%{
	-ms-transform:scale(.3);
		background-color:rgba(255,255,255,0);
	}
}

@-webkit-keyframes bounce_fountainG{
	0%{
	-webkit-transform:scale(1);
		background-color:rgb(255,255,255);
	}

	100%{
	-webkit-transform:scale(.3);
		background-color:rgba(255,255,255,0);
	}
}

@-moz-keyframes bounce_fountainG{
	0%{
	-moz-transform:scale(1);
		background-color:rgb(255,255,255);
	}

	100%{
	-moz-transform:scale(.3);
		background-color:rgba(255,255,255,0);
	}
}