@charset "UTF-8";
/* CSS Document */
html {	-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box; 
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		-o-text-size-adjust: 100%;
		text-size-adjust: 100%;		
}
*, *:before, *:after {
    box-sizing: inherit;
}	
* {
	margin: 0;
	padding: 0;
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: black;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
body {	
	opacity: 1;
	transition:  opacity 0s;
	font-size: 1em;
	background-color: whitesmoke;
}
body, html {
  	height: 100%;
	width: 100%;
  	margin: 0;
	}
#index {
	visibility: visible;
	opacity: 1;
	position: fixed;
	overflow: hidden;
	touch-action: none;
	-webkit-transition: visibility 1s, opacity 1s ease-in-out;
	-moz-transition: visibility 1s, opacity 1s ease-in-out;
	-o-transition: visibility 1s, opacity 1s ease-in-out;
	transition: visibility 1s, opacity 1s ease-in-out;
}
#index-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	overflow: hidden;
	background: -moz-linear-gradient(lightblue, cyan);
	background: -webkit-linear-gradient(lightblue, cyan);
	background: -o-linear-gradient(lightblue, cyan);
	background: linear-gradient(lightblue, cyan);
	background-repeat: no-repeat;
	background-size: 100%;
	background-attachment: fixed;
	z-index: -1;
}
#home {
	background-color: whitesmoke;
	-webkit-transition: all 3s ease-in-out;
	-moz-transition: all 3s ease-in-out;
	-o-transition: all 3s ease-in-out;
	transition: all 3s ease-in-out;
}
/* body's background-color AND fadein color*/

#projekte {
	background-color: whitesmoke;
}
#projektliste {
	background-color: whitesmoke;
}
#info {
	background-color: whitesmoke;
}
#kontakt {
	position: fixed;
	width: 100%;
	height: 100%;
	opacity: 1;
	overflow: hidden;
	-webkit-transition: all 2s ease-in-out;
	-moz-transition: all 2s ease-in-out;
	-o-transition: all 2s ease-in-out;
	transition: all 2s ease-in-out;
}
#kontakt-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	overflow: hidden;
	background: -webkit-linear-gradient(azure, pink);
	background: -moz-linear-gradient(azure, pink);
	background: -o-linear-gradient(azure, pink);
	background: linear-gradient(azure, pink);
	background-repeat: no-repeat;
	background-size: 100%;
	background-attachment: fixed;
	z-index: -1;
}
.kontakt-square {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90vmin;
	height: 90vmin;
	-ms-transform: translate(-50%, -50%) rotate(-45deg);	
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);	
	-moz-transform: translate(-50%, -50%) rotate(-45deg);	
	-o-transform: translate(-50%, -50%) rotate(-45deg);	
	transform: translate(-50%, -50%) rotate(-45deg);	
	background: -webkit-radial-gradient(rgba(252,255,218,0.80), rgba(254,75,179,0.3));
	background: -moz-radial-gradient(rgba(252,255,218,0.80), rgba(254,75,179,0.3));
	background: -o-radial-gradient(rgba(252,255,218,0.80), rgba(254,75,179,0.3));
	background: radial-gradient(rgba(252,255,218,0.80), rgba(254,75,179,0.3));
	-webkit-transition: all 2s ease-in-out;
	-moz-transition: all 2s ease-in-out;
	-o-transition: all 2s ease-in-out;
	transition: all 2s ease-in-out;
	overflow: hidden;
	}
#content-kontakt h3 {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -.5em;
	font-size: 1.05em;
	color: black;
	text-align: center;
	line-height: 1.3em;
	letter-spacing: 0.15em;
	opacity: .6;
	-webkit-user-select: text; /* Safari */
	-khtml-user-select: text; /* Konqueror HTML */
	-moz-user-select: text; /* Firefox */
	-ms-user-select: text; /* Internet Explorer/Edge */
	user-select: text; /* Non-prefixed version, currently supported by Chrome and Opera */
	-ms-transform: translate(-50%, -50%); 	
	-webkit-transform: translate(-50%, -50%); 	
	-moz-transform: translate(-50%, -50%);	
	-o-transform: translate(-50%, -50%);	
	transform: translate(-50%, -50%);		
	-webkit-transition: all 2s ease-in-out;
	-moz-transition: all 2s ease-in-out;
	-o-transition: all 2s ease-in-out;
	transition: all 2s ease-in-out;
	z-index: 1;
}

body.fadein {
	opacity: 0;
	transition:  none;
}
#index.fadein {
	visibility: hidden;
	opacity: 0;
	transition:  none;
}
#home.fadein {
	opacity: 0;
	transition:  none;
}
#kontakt.fadein {
	opacity: 0;
	transition:  none;
}
.circle {
	touch-action: none;
	display: block;
	float: left;
	position: absolute;
	top: 15vw;
	left: 15vw;
	width: 70vw;
	height: 70vw;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background: -webkit-radial-gradient(azure, pink);
	background: -moz-radial-gradient(azure, pink);
	background: -o-radial-gradient(azure, pink);
	background: radial-gradient(azure, pink);
   	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
	z-index: 2;
}
.halo {
	touch-action: none;
	display: block;
	float: left;
	position: absolute;
	top: -100vw;
	left: -100vw;
	width: 300vw;
	height: 300vw;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background: -webkit-radial-gradient(greenyellow 10%, rgba(255,255,255,0) 50%);
	background: -moz-radial-gradient(greenyellow 10%, rgba(255,255,255,0) 50%);
	background: -o-radial-gradient(greenyellow 10%, rgba(255,255,255,0) 50%);
	background: radial-gradient(greenyellow 10%, rgba(255,255,255,0) 50%);
	opacity: 0;
	-webkit-transition: opacity 1.5s ease-in-out;
	-moz-transition: opacity 1.5s ease-in-out;
	-o-transition: opacity 1.5s ease-in-out;
	transition: opacity 1.5s ease-in-out;
}
.circle:hover + .halo {
	touch-action: none;
    opacity: 1;
}
.circle2 {
	touch-action: none;
	display: block;
	float: left;
	position: fixed;
	overflow: hidden;
	top: 15vw;
	left: 15vw;
	width: 70vw;
	height: 70vw;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background: -webkit-radial-gradient(azure, pink);
	background: -moz-radial-gradient(azure, pink);
	background: -o-radial-gradient(azure, pink);
	background: radial-gradient(azure, pink);
	visibility: visible;
	opacity: 1;
 	-webkit-transition: visibility 1.5s, opacity 1.5s ease-in-out;
	-moz-transition: visibility 1.5s, opacity 1.5s ease-in-out;
	-o-transition: visibility 1.5s, opacity 1.5s ease-in-out;
	transition: visibility 1.5s, opacity 1.5s ease-in-out;
	z-index: 6;
}
.circle2.fadeout{	
	visibility: hidden;
	opacity: 0;
}
.halo2 {
	touch-action: none;
	display: block;
	float: left;
	position: fixed;
	overflow: hidden;
	top: -100vw;
	left: -100vw;
	width: 300vw;
	height: 300vw;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background: -webkit-radial-gradient(greenyellow 10%, rgba(255,255,255,0) 50%);
	background: -moz-radial-gradient(greenyellow 10%, rgba(255,255,255,0) 50%);
	background: -o-radial-gradient(greenyellow 10%, rgba(255,255,255,0) 50%);
	background: radial-gradient(greenyellow 10%, rgba(255,255,255,0) 50%);
	visibility: visible;
	opacity: 1;
	-webkit-transition: visibility 2s, opacity 2s ease-in-out;
	-moz-transition: visibility 2s, opacity 2s ease-in-out;
	-o-transition: visibility 2s, opacity 2s ease-in-out;
	transition: visibility 2s, opacity 2s ease-in-out;
	z-index: 5;
}
.halo2.fadeout{	
	visibility: hidden;
	opacity: 0;
}
.index-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: visible;
	opacity: 1;
	overflow: hidden;
	background: -moz-linear-gradient(lightblue, cyan);
	background: -webkit-linear-gradient(lightblue, cyan);
	background: -o-linear-gradient(lightblue, cyan);
	background: linear-gradient(lightblue, cyan);
	background-repeat: no-repeat;
	background-size: 100%;
	background-attachment: fixed;
	-webkit-transition: visibility 2s, opacity 2s ease-in-out;
	-moz-transition: visibility 2s, opacity 2s ease-in-out;
	-o-transition: visibility 2s, opacity 2s ease-in-out;
	transition: visibility 2s, opacity 2s ease-in-out;
	z-index: 4;
}
.index-background.fadeout{	
	visibility: hidden;
	opacity: 0;
}

.intro {
	position: absolute;
	top: 0em;
	width: 100%;
	font-size: 1em;
	/* Safari Blinking Elements During Transitions fix */
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased !important; 
	font-smoothing: antialiased !important;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0);
	z-index: 1;
}
a:link  	{ color: black; 	text-decoration: none; }
a:visited 	{ color: black; 	text-decoration: none; }
a:focus   	{ color: green;	 	text-decoration: none; }
a:hover   	{ color: aqua; 		text-decoration: none; }
a:active  	{ color: red;		text-decoration: none; }

.logo {
	position: absolute;
	top: 1.5em;
	left: 1.5em;
	width: 1.4em;
	height: 1.4em;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background: -moz-radial-gradient(whitesmoke, deeppink);
	background: -webkit-radial-gradient(whitesmoke, deeppink);
	background: -o-radial-gradient(whitesmoke, deeppink);
	background: radial-gradient(whitesmoke, deeppink);
}
.name {
	position: absolute;
	top: 1.55em;
	left: 4.1em;
}
.menu-open {
	position: fixed;
	top: 1.55em;
	right: 1.5em;
}

/* Steuerung einblenden (auch auf mobile Devices ('target', nicht 'hover'!)), sowie intro fixieren (nur bei eingeblendeter Steuerung)*/
#page:target #nav {
	width: 100%; 
	margin-left: 0;
	visibility: 1;
	opacity: 1;
}
#home #main, #home-index #main {
	width: 100%; 
	margin-left: 0;
	visibility: 1;
	opacity: 1;
}
#home #nav, #home-index #nav {
	width: 100%;
	margin-top: 3em;
	margin-left: -.9em;
	line-height: 2.8em;
	visibility: 1;
	opacity: 1;
	background: none;
}
#home #intro, #home-index #intro {
	z-index: 3;
}
#home .menu-open, #home-index .menu-open {
	display: none;
}
#home .menu-close, #home-index .menu-close {
	display: none;
}
#page:target .intro {
	position: fixed;
}

#page:target .content{
	overflow: hidden;
}
#page:target .footer {
	display: none;
}

/* ausblenden des Menü-Buttons zum öffnen - somit wird der zum Schließen sichtbar */
#page:target .menu-open {
	display: none;
}

#nav {
	position: fixed;
	float: left;
	overflow-y: auto;
	top: 0em;
	width: 100%;
	margin-left: 100%;
	height: 100%;	
	list-style: none;
	text-align: left;
	line-height: 2em;
	background: -moz-linear-gradient(azure, pink);
	background: -webkit-linear-gradient(azure, pink);
	background: -o-linear-gradient(azure, pink);
	background: linear-gradient(azure, pink);
	visibility: 0;
	opacity: 0;
	-webkit-transition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
	-o-transition: all .7s ease-in-out;
	transition: all .7s ease-in-out;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased !important; 
	font-smoothing: antialiased !important;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0);
	z-index: 2;
}
#nav.closed {
	max-width: 0;
}

.ul {
	list-style: none;
}
/* 'list-style: disc' wird nur dann sichtbar, wenn Klasse UND Body (d.h. page) übereinstimmen */
#info .info, #projekte .projekte, #kontakt .kontakt, #k-16 .projekte, #marktgasse .projekte, #k-20 .projekte, #raum-fuer-koerperwege .projekte, #wohnung-p .projekte, #zum-schuetz .projekte, #hirschen-imbiss .projekte, #haus-r .projekte, #haus-s .projekte, #haus-huber .projekte, #villa-an-der-seestrasse .projekte, #projektliste .projekte, #k-16-info .projekte, #marktgasse-info .projekte, #k-20-info .projekte, #raum-fuer-koerperwege-info .projekte, #wohnung-p-info .projekte, #zum-schuetz-info .projekte, #hirschen-imbiss-info .projekte, #haus-r-info .projekte, #haus-s-info .projekte, #haus-huber-info .projekte, #villa-an-der-seestrasse-info .projekte
{
	list-style: disc;
	color: deeppink;
}
#k-16 .k-16, #marktgasse .marktgasse, #k-20 .k-20, #raum-fuer-koerperwege .raum-fuer-koerperwege, #wohnung-p .wohnung-p, #zum-schuetz .zum-schuetz, #hirschen-imbiss .hirschen-imbiss, #haus-r .haus-r, #haus-s .haus-s, #haus-huber .haus-huber, #villa-an-der-seestrasse .villa-an-der-seestrasse, #projektliste .projektliste, #k-16-info .k-16, #marktgasse-info .marktgasse, #k-20-info .k-20, #raum-fuer-koerperwege-info .raum-fuer-koerperwege, #wohnung-p-info .wohnung-p, #zum-schuetz-info .zum-schuetz, #hirschen-imbiss-info .hirschen-imbiss, #haus-r-info .haus-r, #haus-s-info .haus-s, #haus-huber-info .haus-huber, #villa-an-der-seestrasse-info .villa-an-der-seestrasse
{
	list-style: disc;
	color: grey;
}
#home .ul-sub, #home-index .ul-sub, #projekte .ul-sub, #info .ul-sub, #kontakt .ul-sub
{
	display: none;
}
#projekte .ul-sub-works
{
	display: block;
}
.ul-home {
	float: left;
	padding-top: 2em;
	padding-left: 3.5em;
	font-size: 1em;
}
#home .ul-home, #home-index .ul-home {
	padding-left: 5em;
}
.ul-sub {
	float: left;
	padding-top: 2em;
	padding-left: 3em;
	padding-bottom: 2em;
	font-size: 1em;
}

.ul-home	a:link 		{ color: deeppink; 	text-decoration: none; }
.ul-home  	a:visited 	{ color: deeppink; 	text-decoration: none; }
.ul-home	a:focus   	{ color: yellow; 	text-decoration: none; }
.ul-home	a:hover   	{ color: yellow;    text-decoration: none; }
.ul-home	a:active  	{ color: orange; 	text-decoration: none; }

.ul-sub		a:link   	{ color: grey; 		text-decoration: none; }
.ul-sub		a:visited 	{ color: grey; 		text-decoration: none; }
.ul-sub		a:focus   	{ color: aqua; 		text-decoration: none; }
.ul-sub		a:hover   	{ color: aqua;		text-decoration: none; }
.ul-sub		a:active  	{ color: orange; 	text-decoration: none; }

.info-link	a:link   	{ color: grey; 		text-decoration: none; }
.info-link	a:visited 	{ color: grey; 		text-decoration: none; }
.info-link	a:focus   	{ color: aqua; 		text-decoration: none; }
.info-link	a:hover   	{ color: aqua;		text-decoration: none; }
.info-link	a:active  	{ color: orange; 	text-decoration: none; }

.info-link	b { font-weight: 500}

.projekt-info {
	list-style: none;
}
.menu-close {
	position: absolute;
	top: 24.5em;
	left: 3.5em;
	width: 3em;
	height: 3em;
	opacity: 0.7;
}
.menu-close:hover {
  	opacity: 1;
}
.menu-close:before, .menu-close:after {
	position: absolute;
	top: 0em;
	left: 1em;
	content: ' ';
	height: 3.5em;
	width: 0.2em;
	background-color: orange;
}
.menu-close:before {
	-webkit-transform: rotate(45deg);
  	transform: rotate(45deg);
}
.menu-close:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.info-open {
	position: relative;
	top: 1em;
	width: 8em;
	height: 1em;
	opacity: 0.7;
	margin-bottom: 3em;
}
.info-open:hover {
  	opacity: 1;
	}
.info-open:before, .info-open:after {
	position: absolute;
	top: 0em;
	left: 1.2em;
	content: ' ';
	height: 1.2em;
	width: 0.12em;
	background-color: grey;
	z-index: -1;
}

.info-open:before {
	-webkit-transform: rotate(0deg);
  	transform: rotate(0deg);
}
.info-open:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.info-open-text {
	position: relative;
	top: -.42em;
	left: 2.75em;
	font-size: 1em;
	font-weight: 500;
	color: grey;
	list-style: none;
}
.info-close {
	position: relative;
	width: 3em;
	height: 3em;
	opacity: .6;
}
.info-close:hover {
  	opacity: 1;
	}
.info-close:before, .info-close:after {
	position: absolute;
	top: .5em;
	left: 1.2em;
	content: ' ';
	height: 2.2em;
	width: 0.17em;
	background-color: dimgray;
}
.info-close:before {
	-webkit-transform: rotate(45deg);
  	transform: rotate(45deg);
}
.info-close:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.info-close-text {
	position: relative;
	top: -2.42em;
	left: 2.75em;
	font-size: 1em;
	font-weight: 500;
	color: grey;
	list-style: none;
}

/* bilderkarussell mit Überblendungen */

.gallery img {
	position: fixed;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
	padding-bottom: 0;
	object-fit: cover;	
	}
.gallery {
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;	
}
.gallery figure {
	object-position: top;
  	position: fixed;
  	top: 0;
  	left: 0;
	object-fit: cover;
  	z-index: 0;
}
.gallery figure {
  	animation: wechseln 30s infinite;
}
.gallery figure:last-of-type {
  	position: relative;
}
@keyframes wechseln {
	0% {opacity: 0;}
	10% {opacity: 1;}
	20% {opacity: 1;}
	30% {opacity: 0;}
	100% {opacity: 0;}
}
.gallery figure:nth-of-type(2) {
  	animation-delay: 5s;
	opacity: 0;
}
.gallery figure:nth-of-type(3) {
  	animation-delay: 10s;
	opacity: 0;
}
.gallery figure:nth-of-type(4) {
  	animation-delay: 15s;
	opacity: 0;
}
.gallery figure:nth-of-type(5) {
  	animation-delay: 20s;
	opacity: 0;
}
.gallery figure:nth-of-type(6) {
  	animation-delay: 25s;
	opacity: 0;
}

.content {
	width: 100%;
	heigth: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 8em 1em;
	/* Safari Blinking Elements During Transitions fix */
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased !important; 
	font-smoothing: antialiased !important;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0);
}
#content-info {
	padding-left: 10vw;
}

.colorator-top {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	
	opacity: 1;
	z-index: -1;
}
/* 'background-color:' abhängig von Body (d.h. page)*/
#home .colorator-top {
	
}
#home-index .colorator-top {
	
}
#projekte .colorator-top {

}
#info .colorator-top {
	
}
#kontakt .colorator-top {
	
}
.colorator-bottom {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
}

body .colorator-bottom {
	background-color: whitesmoke;
}
#home .colorator-bottom {
	background-color: whitesmoke;	
}
#home-index .colorator-bottom {
	background-color: whitesmoke;	
}
#projekte .colorator-bottom {
	background-color: whitesmoke;	
}
#info .colorator-bottom {
	background-color: whitesmoke;	
}
#kontakt .colorator-bottom {
	background-color: whitesmoke;
}

h1 {
	margin-top: 1.1em;
	margin-bottom: 1.2em;
	padding-left: .4rem;
	font-size: 2.4em;
	font-weight: 600;
	color: black;
	opacity: .8;
}
h2 {
	margin-top: 1.5em;
	padding-left: .4rem;
	font-size: 1.4em;
	font-weight: 600;
	letter-spacing: .05em;
	color: black;
	opacity: .9;
}
h3 {
	font-size: 1.6em;
	font-weight: 400;
	color: black;
	opacity: .8;
}
p {
	padding-left: .4rem;
	font-size: 1.2em;
	font-weight: 400;
	line-height: 2em;
	color: grey;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	-o-hyphens: auto;
  	hyphens: auto;
}
#projektliste p, #info p{
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	-o-hyphens: none;
  	hyphens: none;
}
#info h1, #info h2,#info p{
	padding-left: 0;
	padding-right: 2vw;
}
.arrow {
	vertical-align: bottom;
	font-size: .8em;
	letter-spacing: 5px;
}

/* Text Details Projekt Info */
.details {
	margin-top: 3em;
	font-size: 1rem;
	color: black;
	-webkit-hyphens: manual;
	-moz-hyphens: manual;
	-ms-hyphens: manual;
	-o-hyphens: manual;
  	hyphens: manual;
}
.impressum {
	line-height: 1.5em;
	padding-top: 2em;
	padding-bottom: 3em;
}
#werkliste-text {
	padding-top: 5em;
	padding-bottom: 3em;
	line-height: 1.5em;
}
#werkliste-text a{
	font-weight: 600;
	opacity: 0.7;
}
#displayMail::after, span#displayMail::before, span#displayMail::after {
	font-weight: 400;
	color: black;
	-webkit-user-select: auto; /* Safari */
	-khtml-user-select: auto; /* Konqueror HTML */
	-moz-user-select: auto; /* Firefox */
	-ms-user-select: auto; /* Internet Explorer/Edge */
	user-select: auto; /* Non-prefixed version, currently supported by Chrome and Opera */
}
span#displayMail::before {content: "mai";}
span#dontdisplay {display: none;}
span#displayMail::after {content: "l\40michaelschnellmann.ch";}

#displayMail-i::after, span#displayMail-i::before, span#displayMail-i::after {
	font-weight: 400;
	color: grey;
	-webkit-user-select: auto; /* Safari */
	-khtml-user-select: auto; /* Konqueror HTML */
	-moz-user-select: auto; /* Firefox */
	-ms-user-select: auto; /* Internet Explorer/Edge */
	user-select: auto; /* Non-prefixed version, currently supported by Chrome and Opera */
}
span#displayMail-i::before {content: "mai";}
span#dontdisplay {display: none;}
span#displayMail-i::after {content: "l\40michaelschnellmann.ch";}


img {
	max-width: 100%;
	max-height: auto;
	margin-bottom: 0.8em;
}
.image-info {
	width: 100%;
	padding-top: 2em;
	padding-bottom: .5em;
}
.portrait-s{
	max-width: 80vw;
	padding-top: 1em;
	padding-bottom: 0em;
}
.portrait-l{
	display:none;
}
.footer {
	position: relative;
	display: show;
	float: left;
	bottom: 0;
	width: 100%;
	height: 15em;
	/* Safari Blinking Elements During Transitions fix */
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased !important; 
	font-smoothing: antialiased !important;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0);
	background-color: none	
}

#footer-container { 
	float: left;
}

#topsmall {
	position: absolute;
	top: 0.8em;
	left: 3em;
    border-right: .3em orange solid; 
    border-bottom: .3em orange solid;
    height: 3em;
    width: 3em;
    -webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
#topbig {
	display: none;
}
#nav-footer {
	float: right;
	height: 15em;
	width: 50%;
	list-style: none;
	line-height: 2.3em;
}
#nav-footer .ul-sub-works {
	float: left;
	padding-right: 2em;
	padding-top: 0em;
	padding-left: 0;
	padding-bottom: 3em;
}
#nav-footer .ul-home {
	float: left;
	padding-right: 2em;
	padding-top: 0em;
	padding-left: 0;
	padding-bottom: 3em;
}

@media screen and (max-width: 700px) {
	
#statement p{
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	-o-hyphens: auto;
  	hyphens: auto;
}
	
}
/*Responsive Design bei grossen Browserfenstern */

@media screen and (min-width: 1000px) and (min-height: 700px) {
	
.kontakt-square	{
	width: 110vmin;
	height: 110vmin;
}		
.intro {
	position: fixed;
	height: 4.5em;
	width: 35%;
	font-size: 1.2em;
	padding: 1.5em 2em;
	z-index: 2;
	/* Safari Blinking Elements During Transitions fix */
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased !important; 
	font-smoothing: antialiased !important;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0);
}
.logo {
	position: absolute;
	top: 2em;
	left: 2em;
	width: 1.1em;
	height: 1.1em;
}
.name {
	position: absolute;
	top: 1.95em;
	left: 4.8em;
	opacity: .75;
}
#home #nav, #home-index #nav {
	width: 100%;
	margin-top: 0em;
	margin-left: -1em;
	line-height: 2.4em;
	visibility: 1;
	opacity: 1;
	background: none;
}
#nav {
	float: left;
	top: 7.6em;
	width: 35%;
	height: 100%;
	margin-left: 0em;
	padding-left: .8em;
	text-align: left;
	line-height: 2.3em;
	background: none;
	visibility: visible;	
	opacity: 1;
	transition: all 1s ease-in-out;
	/* Safari Blinking Elements During Transitions fix */
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased !important; 
	font-smoothing: antialiased !important;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0);
}
.ul {
	font-size: 1.2em;
	padding-left: 4.1em;
}	
.ul-sub {
	padding-left: 4.1em;
}
.menu {
	display: none;
}
.info-open:before, .info-open:after {
	left: 1em;
}	
.info-close:before, .info-close:after {
	left: 1em;
}	
.content {
	position: relative;
	overflow: visible;
	float: right;
	max-width: 65%;
	padding: 1.5em 3em;
	/* Safari Blinking Elements During Transitions fix */
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased !important; 
	font-smoothing: antialiased !important;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0);
}
#content-projektliste, #content-info {
	padding-top: 6.5em;	
	}
#content-info {
	padding-left: 3em;	
	}
#content-kontakt h3 {
	padding-top: 1.3em;
	font-size: 1.25em;
	line-height: 1.4em;
}	
#displayMail::after, span#displayMail::before, span#displayMail::after {
	font-weight: 400;	
}	
h1 {
	margin-top: 1.1em;
	padding-left: 0;
	height: 2em;
	font-size: 3em;
	font-weight: 600;
	color: black;
	opacity: .8;
}
h2 {
	margin-top: 2em;
	padding-left: 0;
	font-size: 1.8em;
	font-weight: 600;
	letter-spacing: .05em;
	color: black;
	opacity: .9;
}
p {
	padding-left: 0;
	font-size: 1.5em;
	font-weight: 400;
	line-height: 2em;
	color: grey;
	-webkit-hyphens: manual;
  	hyphens :manual;
}	
/* Text Details Projekt Info */
.details {
	margin-top: 3em;
	font-size: 1.3em;
	color: black;
}		
img {
	max-width: 100%;
	max-height: auto;
}
.gallery img {
	object-position: top;
	position: fixed;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: 0;
	}
	
.image-info {
	width: 60%;
	padding-top: 3.2em;
	padding-bottom: 1.5em;
}
.portrait-s{
	max-width: 100%;
}
	
.footer {
	position: fixed;
	bottom: 0em;
	width: 10%;
	height: 4.5em;
	padding: 2em;
	/* Safari Blinking Elements During Transitions fix */
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased !important; 
	font-smoothing: antialiased !important;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0);
	z-index: 2;
}
#footer-container {
	display: block;
	float: left;
	width: 100%;
	height: 100%;
}
#topbig {
	display: block;
	position: absolute;
	bottom: 0.5em;
	left: 2.5em;
	padding-top: 0em;
    border-right: .3em orange solid; 
    border-bottom: .3em orange solid;
    height: 3em;
    width: 3em;
    -webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);	
}
.topbig {
	visibility: hidden;
	opacity: 0;	
}

.fadeOut {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 1s, opacity 1s;
}	
.fadeIn {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s linear 0s, opacity 1s;
}		
#topsmall {
	display: none;
}
#nav-footer {
	display: none;
}
	
a:link   	{ color: black;		text-decoration: none; }
a:visited 	{ color: black;		text-decoration: none; }
a:focus   	{ color: cyan; 		text-decoration: none; }
a:hover   	{ color: cyan;    	text-decoration: none; }
a:active  	{ color: orangered; text-decoration: none; }

.web-link 	a:link   	{ color: grey;			text-decoration: none; }
.web-link  	a:visited 	{ color: grey; 			text-decoration: none; }
.web-link 	a:focus   	{ color: yellow; 		text-decoration: none; }
.web-link	a:hover   	{ color: orangered;    	text-decoration: none; }
.web-link	a:active  	{ color: cyan; 			text-decoration: none; }
	
}

/*Responsive Design bei sehr grossen Browserfenstern */

@media screen and (min-width: 1500px) and (min-height: 750px) {
	
.portrait-l{
	display: block;
	float: right;
	width: 55%;
	max-width: 40em;
	padding-top: 0.5em;
	padding-bottom: 0em;
	margin-right: 7%;
	padding-left: 3em;
}
.portrait-s {
	display: none;		
}	
	
}