@charset "UTF-8";

.mainContent {
	min-height: 100%;
}

/*     MainItems     */
html {
    height: 100%;
    width: 100%;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    margin-top: 3.5em;
    height: calc(100% - 3.5em);
}

h3 {
	margin-bottom: 0.25em;
	margin-top: 0.5em;
}

.hidden {
    visibility: hidden;
}

/*     Header and Footer     */

.flexBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#mainHeader,
#mainFooter {
    padding: 0em 0.75em;

    border-style: solid;
    border-color: #CCC;
}

#mainHeader {
    height: 3.5em;

    z-index: 1000;
    top: 0;

    border-bottom-width: 1px;
}

#mainFooter {
    border-top-width: 1px;

    font-size: 0.75em;
    color: #666;

    padding: 1em;
}

#mainHeader {
    position: fixed;
    left: 0;
    right: 0;

    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    -moz-backdrop-filter: blur(10px) saturate(140%);
    -o-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
}

.navFlex {
	list-style: none;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.navFlex > li {
	margin: 0 0.5em;
	display: inline-flex;
}
footer a {
	display: inline-block;
	text-decoration: none;
	color: #666;
}
footer a:hover {
	color: #222;
}


.headline {
    font-size: 1.25em;
    font-weight: bold;
}
	
.titleWrapper {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: no-wrap;
	justify-content: center;
	align-items: center;
}
.titleWrapper > img {
	height: 1.5em;
	margin: -0.25em 0.75em;
}


/*     Menue     */
.menueWithSub {
	display: flex;
}
.menueWithSub > * {
	display: block;
	margin: 0 1em;
}
.menueWithSub > *:first-child {
	margin-left: 0;
}
.menueWithSub > *:last-child {
	margin-right: 0;
}

.gridMenue {
	display: inline-block;
    text-decoration: none;
	
	height: 100%;
	margin: -8px 0;
}

.menue {
    display: block;
    text-decoration: none;
	
	height: 100%;
}

.menue > span {
	padding: 0.25em;
	margin: 0 0 0 -1px;
	height: 1.5em;
}

.gridMenue > span {
	display: inline-block;
	width: 10px;
	height: 10px;
}

.menue > span:first-child {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.menue > span:last-child {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}


.gridMenue > span,
.contact > span {
    border-radius: 2px;
}


.gridMenue > span,
.menue > span,
.contact > span {
    border-width: 1px;
    border-style: solid;
    border-color: #666;
	
	background-color: rgba(255,255,255, 1.0);
}

.gridMenue:hover > span,
.menue:hover > span,
.contact:hover > span,
.menue.active > span,
.contact.active > span {
    background-color: rgba(200, 200, 200, 0.8);
    border-color: #222;
}


/*     Contact     */

.contact {
    text-decoration: none;
}

.contact > span:first-child {
    margin: 0 6px 2px 6px;
    display: block;
    width: 12px;
    height: 12px;

    border-radius: 10px;
}

.contact > span:last-child {
    display: block;

    width: 100%;
    height: 8px;
}

/* Content */

.content .contentElement img,
.content .contentElement svg {
    width: 100px;
}

.content .contentElement:hover {
    background-color: #EFEFEF;
}

.content .contentElement {
    display: block;
    color: #666;

    text-decoration: none;
}
/*
.content .contentElement:hover {
	flex: 2;
}
*/

.content .contentElement:hover {
    color: #222;
}

.content .contentElement h2 span {
    font-weight: normal;
    padding: 0.25em 0.5em;
    border-radius: 4px;
}

.content .contentElement:hover h2 span {
    background-color: #333;
    color: #FFF;
}

.menue > span,
.contact > span,
.content .contentElement,
.content .contentElement h2 span,
.content .contentElement img,
.content .contentElement svg,
.contentList .listItem,
.borderedList .listItem img,
.mediaList .mediaItem > div,
.mediaList .mediaItem > img,
.listItem .inlineSpans > span,
.listItem .inlineSpans > *:before,
#lightboxClose,
a.listItem > div > h2:after,
.listItem .folderItem1,
.listItem .folderItem2
{
    transition: all 0.1s linear;
}

.content .contentElement:hover svg rect,
.content .contentElement:hover svg path,
.content .contentElement:hover svg line {
    stroke-width: 2px;
}

@media (max-width: 600px) {

    .content {
        height: 100%;
        display: flex;

        flex-direction: column;
        flex-wrap: nowrap;
    }

    .content .contentElement {
        flex: 1;

        display: flex;
        align-items: center;

        padding: 20px;
        border: none;

        border-top-color: #CCC;
        border-top-style: solid;
        border-top-width: 1px;

        min-height: 60px;
    }
    .content .contentElement > div {

        display: flex;
        flex-direction: row;
        align-content: center;
        align-items: center;
        justify-content: left;
        flex-wrap: nowrap;
    }

    .content .contentElement h2 {
        margin-left: 1em;
    }
}

@media (min-width: 601px) {
    .content {
        height: 100%;
        display: flex;
        align-items: stretch;
        align-content: stretch;
        flex-basis: auto;
        flex-wrap: nowrap;

        border-style: solid;
        border-color: #CCC;
        border-top-width: 1px;
    }
    .content .contentElement {
        flex: 1;

        border-right-color: #CCC;
        border-right-style: solid;
        border-right-width: 1px;

        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-wrap: nowrap;
    }

    .content .contentElement:last-child {
        border-right: none;
    }


    .content .contentElement img,
    .content .contentElement svg {
        height: 100px;
        position: relative;
        bottom: 0em;
    }
    .content .contentElement:hover img,
    .content .contentElement:hover svg {
        bottom: 1em;
    }
}


.delimiter > span {
    display: block;
    color: #666;
    background-color: #EFEFEF;
    padding: 1em;
}
.delimiter {
	display: block;
    width: 99.8%;
    width: calc(100% - 1px);
    border: 0.5px solid #CCC;
    margin: 0 -1px;
	
	position: relative;
	top: 0;
	left: 0;

    text-decoration: none;
    cursor: auto;
}

/*     Content list     */
.contentList {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-content: flex-start;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.contentList .listItem {
    text-align: center;
    /* padding: 1em 1.5em; */
    text-decoration: none;

    color: #666;
    border: 0.5px solid #CCC;

    background-color: #FFF;

    width: auto;

    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 430px;
}
.contentList .listItem:hover {
    background-color: #EEE;
    color: #333;
}

.contentList .listItem > * {
    margin: 2em 1.5em;
}

.contentList .listItem > *:first-child {
    display: block;
    max-width: 350px;
	margin: 3em auto;
}
.contentList .listItem > *:last-child:not(:empty) {
	margin-top: -1em;
}
.contentList .listItem > *:last-child h2 {
    display: inline-block;
    margin-bottom: 0.25em;
}
.contentList .listItem > *:last-child > * {
    display: block;
    margin-top: 0.25em;
    opacity: 0.75;
}

.borderedList .listItem img {
    border: 1px solid #DDD;

    box-shadow: 0 0px 10px -10px #000;
}
.borderedList .listItem:hover img {
    border: 1px solid #AAA;

    box-shadow: 0 7px 10px -10px #000;
}


		a.listItem > div > h2 {
			margin-left: 0.9em;
		}
		a.listItem > div > h2:after {
			display: inline-block;
			content: '';
			
			position: relative;
			left: 0.5em;
			
			width: 0.5em;
			
			border-top: 0.4em solid transparent;
			border-bottom: 0.4em solid transparent;
			
			border-left: 0.4em solid #444;
			
			opacity: 0;
		}
		
		a.listItem:hover > div > h2:after {
			opacity: 1;
		}

		
.download:before {
	content: '';
	position: relative;
	top: 0.85em;
	right: 0.3em;
	margin-left: 0.25em;
	width: 0;
	height: 0;

	border-left: 0.35em solid transparent;
	border-right: 0.35em solid transparent;
	border-top: 0.5em solid #666;
}
.views:before {
	display: inline-block;
	content: '';
	margin: 0px 0.4em 0.1em 0em;
	width: 0.65em;
	height: 0.65em;

	border-radius: 1em;

	background-color: #666;
}
.date:before {
	content: '';
	display: inline-block;
	margin-left: 0.5em;
	position: relative;
	top: 0.0em;
	left: -0.5em;
	width: 0.6em;
	height: 0.35em;
	
	border-radius: 0.1em;
	border: 0.15em solid #666;
	border-top-width: 0.4em;
}

.listItem .inlineSpans {
	display: block;
	padding-top: 0.25em;
	margin-bottom: -1em;
}

.listItem .inlineSpans > * {
	padding: 0.25em 0.5em;
	border-radius: 0.2em;
}
.listItem:hover .inlineSpans > * {
	background-color: #666;
}
.listItem:hover .inlineSpans > .date:before {
	border-color: #EEE;
}
.listItem:hover .inlineSpans > .views:before {
	background-color: #EEE;
}
.listItem:hover .inlineSpans > .download:before {
	border-top-color: #EEE;
}

.listItem:hover .inlineSpans > .date,
.listItem:hover .inlineSpans > .views,
.listItem:hover .inlineSpans > .download {
	color: #EEE;
}
.listItem .inlineSpans > span {
	opacity: 0;
	display: inline-block;
}
.listItem:hover .inlineSpans > span {
	opacity: 1;
}
/*
*/


/*     Media     */
/*
.mediaList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: flex-start;
}
*/

	.objectAnchor {
		content: '';
		display: block;
		position: relative;
		top: 0;
		left: 0;
		width: 0;
		height: 4.6em;
		margin-top: -4.6em;
		width: 100%;
		visibility: hidden;
	}

.mediaList {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-content: flex-start;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.mediaList .mediaItem {
    position: relative;
    flex-grow: 1;

    flex-basis: 300px;
    max-width: 500px;
}

@media (max-width: 599px) {
    .mediaList .mediaItem {
        max-width: 600px;
    }
}

.mediaList .mediaItem img,
.mediaList .mediaItem video {
    width: 100%;
    height: 100%;
}

.mediaList .mediaItem > div {
	pointer-events: none;
    opacity: 0;
}
.mediaList .mediaItem:hover > div {
    opacity: 1;
}
.mediaList .mediaItem:hover > img {
    opacity: 0.3;
}

.mediaList .mediaItem > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    color: #333;

    display: flex;
    align-items: left;
    flex-direction: column;
    align-content: left;
    justify-content: flex-end;

    padding: 1.5em;

    -webkit-backdrop-filter: blur(5px) saturate(140%);
    -moz-backdrop-filter: blur(5px) saturate(140%);
    -o-backdrop-filter: blur(5px) saturate(140%);
    backdrop-filter: blur(5px) saturate(140%);
}
.mediaList .mediaItem > div h2 {
    margin-bottom: 0.25em;
}
.mediaList .mediaItem > div span {
    margin-top: 0.25em;
}






.content #appItems:hover h2 span,
.content #appItems:active h2 span {
    background-color: #F7931E;
}

#appItems:hover rect,
#appItems:hover path,
#appItems:hover line,
#appItems:active rect,
#appItems:active path,
#appItems:active line {
    stroke: #F7931E;
}


.content #websiteItems:hover h2 span,
.content #websiteItems:active h2 span {
    background-color: #29ABE2;
}

#websiteItems:hover rect,
#websiteItems:hover path,
#websiteItems:hover line,
#websiteItems:active rect,
#websiteItems:active path,
#websiteItems:active line {
    stroke: #29ABE2;
}


.content #mediaItems:hover h2 span,
.content #mediaItems:active h2 span {
    background-color: #39B54A;
}

#mediaItems:hover rect,
#mediaItems:hover path,
#mediaItems:hover line,
#mediaItems:active rect,
#mediaItems:active path,
#mediaItems:active line {
    stroke: #39B54A;
}


	.folderPreview:before {
		content: '';
		display: block;
		margin-top: -6px;
		width: 90%;
		height: 5px;
		margin: 0 auto;

		border: 1px solid #CCC;
		background-color: #FFF;
		border-bottom: none;
	}
	
	.folderItem1,
	.folderItem2 {
		margin: 0 auto;
		padding: 3px 0;
		
		border: 1px solid #DDD;
		border-bottom: none;
		background-color: #FFF;
	}
	.listItem:hover .folderItem1,
	.listItem:hover .folderItem2 {
		border-color: #AAA;
	}
	.folderItem1 {
		width: 90%;
	}	
	.folderItem2 {
		width: 80%;
	}


        .portfolioContent {
            height: 100%;

            display: flex;
            flex-direction: row;
            align-items: stretch;
            align-content: stretch;
            justify-content: stretch;
            flex-wrap: nowrap;

            width: 300%;
        }
        .pcElement {
            display: flex;
            flex-direction: column;
            align-content: center;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-wrap: nowrap;

            flex: 1;

            border-right: 1px solid #CCC;
        }
        .pcElement:last-child {
            border-right: none;
        }
        .pcElement:hover {
            background-color: #EEE;
        }
        .appItem > img {
            max-width: 400px;
            width: 90%;
            margin: 0 auto;
        }

        .appLabel {
            width: 80%;
            max-width: 350px;
            text-align: left;
            margin-top: 2em;
        }
        .appLabel h2 {
            margin-bottom: 0.5em;
        }



		.lightboxPreviewWrapper {
			max-width: 350px;
		}
		.lightboxPreview > * {
			width: 100%;
		}
		.clickable {
			cursor: pointer;
		}
		.listItemType {
			padding: 0;
			margin: 0;
			
			margin-top: -50px;
			padding-right: 15px;
			text-align: right;
		}
		.listItemType > img {
			margin-left: 0;
			margin: 0;
			
			width: 25px;
			
			border: none;
			box-shadow: none;
			background-color: rgba(255,255,255, 0.9);
			padding: 4px 8px;
			border-radius: 4px;
		}
		
		
		.lightboxPreview {
			position: relative;
		}
		.listItem:hover .lightboxPreview:after {
			content: '';
			position: absolute;
			left: 1px;
			bottom: 3px;
			
			width: 20px;
			height: 20px;
		}
		
		
		.listItem:hover .lightboxPreview.videoPreview:after,
		.listItem:hover .lightboxPreview.imagePreview:after {
			background-position: center;
			background-repeat: no-repeat;
			background-size: 20px;
			
			border-top-right-radius: 4px;
			
			background-color: rgba(255,255,255, 0.8);
			/*
			*/
			
			padding: 4px;
		}
		
		.listItem:hover .lightboxPreview.videoPreview:after {
			background-image: url(../icons/video.svg);
		}
		.listItem:hover .lightboxPreview.imagePreview:after {
			background-image: url(../icons/image.svg);
		}
		
		.listItem.videoItem > *:last-child h2:before,
		.listItem.imageItem > *:last-child h2:before,
		.listItem.panoramaItem> *:last-child h2:before,
		.listItem.folderItem> *:last-child h2:before {
			background-position: center;
			background-repeat: no-repeat;
			background-size: 1.2em;
			
			display: inline-block;
			content: '';
			
			position: relative;
			width: 1.2em;
			height: 1.2em;
			
			margin: -1em 0.5em -0.1em -1.7em;
			
			background-image: url(../icons/video.svg);
		}
		
		.listItem.videoItem > *:last-child h2:before {
			background-image: url(../icons/video.svg);
		}
		.listItem.imageItem > *:last-child h2:before {
			background-image: url(../icons/image.svg);
		}
		.listItem.panoramaItem > *:last-child h2:before {
			background-image: url(../icons/panorama.svg);
		}
		.listItem.folderItem> *:last-child h2:before {
			background-image: url(../icons/folder.svg);
		}
		
		
		.listItem.shotOnCamera > *:last-child h2:after,
		.listItem.shotOnDrone > *:last-child h2:after,
		.listItem.shotOnPhone> *:last-child h2:after {
			background-position: center;
			background-repeat: no-repeat;
			background-size: 1.2em;
			
			display: inline-block;
			content: '';
			
			position: relative;
			width: 1.2em;
			height: 1.2em;
			
			margin: -1em -1.7em -0.1em 0.5em;
			
			background-image: url(../icons/video.svg);
		}
		
		.listItem.shotOnCamera > *:last-child h2:after {
			background-image: url(../icons/camera.svg);
		}
		.listItem.shotOnDrone > *:last-child h2:after {
			background-image: url(../icons/drone.svg);
		}
		.listItem.shotOnPhone> *:last-child h2:after {
			background-image: url(../icons/phone.svg);
		}
		

#lightboxWrapper {
	visibility: hidden;
	display: flex;
	align-items: center;
	content-align: center;
	justify-content: space-around;
	
	background-color: rgba(0,0,0, 0.25);
	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
    height: calc(100% - 3.5em);
	
    margin-top: 3.5em;
}

#lightbox {
	text-align: center;
	height: 100%;
	width: 100%;
	max-height: 800px;
	max-width: 1250px;
	pointer-events: fill;
	padding: 4px;
	
	display: inline-flex;
	justify-content: space-around;
	align-content: center;
	align-items: center;
}

#lightboxContent {
	filter: blur(10px);
}

#lightboxWrapper,
#lightbox {
	transition: all 0.1s linear;
}

#lightbox > * {
	object-fit: contain;
	max-width: calc(100% - 8px);
	max-height: calc(100% - 8px);
	
	margin-bottom: -4px;	
	padding: 4px;
	background-color: rgba(255, 255, 255, 0.2);
}

.lightboxPreview {
	display: block;
	margin-bottom: -2px;
}
.lightboxContent {
	display: none;
	visibility: collapsed;
}

.blurItem {
	filter: blur(10px);
}


	#lightboxClose {
		position: absolute;
		top: 1em;
		right: 1em;
		
		width: 2.5em;
		height: 2.5em;
		
		background-color: rgba(255, 255, 255, 1.0);
		border-radius: 5em;
		
		cursor: pointer;
		
		border: 2px solid #999;
		
		opacity: 0.5;
	}
	#lightboxClose:hover {
		/* transform: rotate(-90deg); */
		opacity: 1.0;
	}
	
	#lightboxClose > span {
		display: block;
		position: absolute;
		
		top: 1.175em;
		left: 0.325em;
			
		height: 0.2em;
		width: 75%;
		
		background-color: rgba(100, 100, 100, 1.0);
	}
	#lightboxClose > span:first-child {
		transform: rotate(45deg);
	}
	#lightboxClose > span:last-child {
		transform: rotate(-45deg);
	}



/* Text . Content */

		.textContent {
			max-width: 500px;
			margin: 0 auto;
		}
		
		.textContent > *:last-child {
			padding-bottom: 2em;
		}
		
		.textContent > p {
			line-height: 1.3em;
		}
		.textContent > h2 {
			font-size: 1.5em;
			margin-top: 1.5em;
			margin-bottom: 0.5em;
		}
		
		.textContent a {
			font-style: italic;
			color: #333;
		}
		.textContent a:hover {
			color: #999;
		}








/* change colours in style.css */
ins {
    background-color:#FE5;
    color:#000;
    text-decoration:none;
}

/* change colours in style.css */
mark {
    background-color:#FE5;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

/* change colours in style.css */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}