nav, main, aside, footer, header, figure, figcaption, article, hgroup, section {
	display: block; margin: 0; padding: 0;
}
.struct, .struct li, .struct dt, .struct dd {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
html {
	height: 100%;	
}
html, body {
	margin: 0;
	padding: 0;
	font-family: Montserrat,sans-serif;
	font-size: 1.14285714285714vw;
	line-height: 1.6;
	background: #FFF;
	color: #252525;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-smoothing: grayscale;
	font-smoothing: antialiased;
}
body {
	padding-top: 1px;
	min-height: 100.1%;
}
:focus {outline:none;}
::-moz-focus-inner {border:0;}


#intranet {
	position: absolute;
	top: 0;
	font-size: 80%;
	opacity: 0.6;
	text-decoration: underline;
	right: 0;	
}

@keyframes delayFade {
  0% {
    opacity: 0;
  }
  75% {
	opacity: 0;
	transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	-webkit-transform: translate3d(0, 100%, 0);
  }
  90% {
	transform: none;
	-ms-transform: none;
	-webkit-transform: none;
	opacity: 0.6;
  }
  100% {
    opacity: 1;
    
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
    -ms-transform: none;
	-webkit-transform: none;
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: none;
	-ms-transform: none;
	-webkit-transform: none;
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
  }

  
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
	-ms-transform: none;
	-webkit-transform: none;
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: none;
	-ms-transform: none;
	-webkit-transform: none;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
  }
}

.ani-in img {
	animation-duration: 0.5s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;
}
.ani-in.leftin img {
	 animation-name: fadeInRight;
}
.ani-in.rightin img {
	 animation-name: fadeInLeft;
}
body.exitnext .ani-in img {
	 animation-name: fadeOutRight;
}
body.exitprev .ani-in img {
	 animation-name: fadeOutLeft;
}

/**
 * The homepage animation
 */
@keyframes slideupdelayed75 {
	0%		 {	transform: translateY(800px); opacity: 0; }
	50%		 {  transform: translateY(800px); opacity: 0; } 
	100%	 {	transform: translateY(0%); opacity: 1; }
}
@keyframes slideupdelayed10 {
	0%		 {	transform: translateY(800px); opacity: 0; }
	10%		 {  transform: translateY(800px); opacity: 0; } 
	100%	 {	transform: translateY(0%); opacity: 1; }
}
#hp_project.triggerani {
	overflow: hidden;	
}
#hp_project.triggerani .columnised > aside {
	animation-name: slideupdelayed75;
    animation-duration: 2s;
}
#hp_project.triggerani .columnised .wrap > * {
	animation-name: slideupdelayed10;
    animation-duration: 1s;
}
#hp_project.triggerani .columnised .wrap > header ~ * {
	 animation-delay: 0.4s;
}


#home_cta {
	border-top: 4px solid #F36C7D;
	position: absolute;
	top: 100%;
	right: 0;
	background: #FFF;
	z-index: 1000;
	color: #000;
	font-size: 60%;
	max-width: 300px;
	text-align: left;
}
#home_cta:before {
	content: "";
	display: block;
	width: 2em;
	height: 2em;
	position: absolute;
	top: -1em;
	left: -1em;
	border-radius: 50%;
	background: #F36C7D url("img/close.svg") center center no-repeat;	
	background-size: 94% 94%;
	transform: rotate(-45deg);
}
#home_cta h2 {
	font-weight: 900;
	font-size: 100%;
	text-decoration: none;
	padding: 0.7em 1em 0 1em;
	line-height: 1.2;
}
#home_cta a.graphic {
	display: block;	
}
#home_cta a.graphic img {
	width: 100%;
	height: auto;	
}
#home_cta footer a {
	display: block;
	text-align: center;
	background: #F36C7D;
	color: #FFF;
	line-height: 1.2;
	text-decoration: none;
	padding: 0.25em 1em;	
}

main {
	z-index: 1;
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}
.hidden {
	display: none;	
}

::-webkit-input-placeholder {
   color: #7c7c7c;
   font-style: italic;
   font-size: 90%;
}

:-moz-placeholder { /* Firefox 18- */
  color: #7c7c7c;
   font-style: italic; 
   font-size: 90%;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #7c7c7c;
   font-style: italic;
   font-size: 90%;  
}

:-ms-input-placeholder {  
   color: #7c7c7c;
   font-style: italic;  
   font-size: 90%;
}



a {
	color: inherit;
}
a:hover {
	color: #F36C7D;
}

#IAA img.fileicon {
	width: 1.2em;
	height: auto;	
}


dl.contact {
	overflow: hidden;	
}
dl.contact dt {
	width: 1.2em;
	overflow: hidden;
	color: #FFF;
	float: left;
	clear: left;
	white-space: nowrap;
}
dl.contact dt:first-letter {
	color: #252525;
}
dl.contact dd {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
dl.contact .mail a {
	text-decoration: none;	
}

.icons {
	padding: 1em 0;	
}
.icons li {
	display: inline;
	position: relative;
	vertical-align: bottom;
	margin: 0 0.2em 0 0;
	font-size: 2em;
	line-height: 1;
}
.icons a span {
	display: none;	
}
.icons .labelize:hover span {
	display: block;
	padding: 0.2em;
	position: absolute;
	top: 7%;
	left: 99%;
	font-size: 12px;	
	white-space: nowrap;
	font-family: Montserrat,sans-serif;
	color: #FFF;
	background: #F36C7D;
	
}
.icons a {
	color: #7c7c7c;
	font-family: icomoon;
	vertical-align: top;
	text-decoration: none;
}
.icons a:hover {
	color: #F36C7D;	
}
.icons a:before {
	content: "\e902";
	
}

.prevnext a span {
	display: none;	
}
.prevnext a {
	display: inline-block;
	color: inherit;
	padding: 0 0.5em;
	text-decoration: none;	
}


p {
	margin: 0 0 1em 0;	
}
.bgelement {
	position: fixed;
	z-index: 0;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	opacity: 0.3;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;	
	-webkit-filter: grayscale(60%);
    -moz-filter:    grayscale(60%);
    -ms-filter:     grayscale(60%);
    -o-filter:      grayscale(60%);
    filter:      	grayscale(60%);
}

label.select {
	display: inline-block;
	position: relative;
	font-family: inherit;
	font-size: 100%;
	border: 1px solid #959595;
	box-sizing: border-box;
	width: 100%;
	vertical-align: bottom;
	background: #FFF;
	color: #959595;
	
}
label.select select:-moz-focusring {
	color:transparent;
	text-shadow: 0 0 0 #959595; 
}
label.select select:-moz-focusring * {
	color: #959595;
	text-shadow:none;
}
label.select option {
	line-height: 2;	
}
label.select select:option {
	outline: none;	
}
/* remove the styling of the normal select box completely */
label.select select {
	color: #959595;
	display: block;
	font-family: inherit;
	font-size: 90%;
	outline: none;
	position: relative;
	width: 100%;
	height: 2vw;
	line-height: 2vw;
	border: 0;
	padding-right: 2vw;
	padding-left: 0.3vw;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
label.select:before {
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	width: 2vw;
	height: 100%;
	content: "";
	background: url("img/down_g.svg") center center no-repeat;
	background-size: 40% auto;
}


img {
	vertical-align: top;	
}
h1,h2,h3,h4 {
	margin: 0 0 0.5em 0;
	padding: 0;
}
h4 {
	margin: 0;
}	
h1 {
	text-transform: uppercase;
	font-weight: 900;
	font-size: 175%;
}
a img {
	border: none;	
}
input, textarea {
	font-family: inherit;
	box-sizing: border-box;
	border: 1px solid #000;
	font-size: 100%;
}
button, .button {
	background: #7C7C7C;
	display: inline-block;
	color: #FFF;
	font-family: inherit;
	font-size: 100%;
	cursor: pointer;
	vertical-align: bottom;	
	line-height: 1.6;
	text-decoration: none;
	text-align: center;
	padding: 0 0.5em;
	border: 1px solid rgba(255,255,255,0.2);
}
.button span {
	line-height: inherit;
	line-height: 1.6;
}
button:hover, .button:hover {
	background: #F36C7D;
	color: #000;	
}
.button.submit {
	line-height: 30px;
	color: #FFF;
	background: #F36C7D;
	text-transform: uppercase;	
}
.button.submit:hover {
	background: #7C7C7C;
}

.markdown h2, .markdown h3 {
	font-size: 117%;
	margin: 1em 0 0.5em;
}

.markdown a {
	text-decoration: none;
	border-bottom: 4px solid #f36c7d;	
	background: #FFF;
	transition: background 0.25s;
}
.markdown a:hover {
	color: inherit;
	background: #f36c7d;	
}




.columnised {
	clear: both;
}
.columnised:after {
	content: " ";
	clear: both;
	display: block;
}
.columnised .main figure.md.hiddengalleryimg {
	display: none!important;	
}
.columnised .main figure.md {
	display: block;	
	position: relative;
}
.columnised .main figure.md figcaption {
	font-style: italic;
	color: #959595;
	text-align: center;
}
.columnised .main figure.md.landscape {
	margin: 0 -25%;
}
.columnised .main figure.md.left, .columnised .main figure.md.right {
	margin: 0;
	float: left;
	width: 50%;
	height: auto;
	margin: 0 0.5em 0.5em 0;
}
.columnised .main figure.md.right {
	float: right;
	margin: 0 0 0.5em 0.5em;
}
.columnised .main figure.md.iframe {
	padding-top: 60%;	
}
.columnised .main figure.md.iframe iframe {
	border; 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
}


.columnised .main .embed-container {
    margin-left: -25%;
    margin-right: -25%;
}
.embed-container {
	position: relative;
	overflow: hidden;
	margin-bottom: 0.5em;
}
.embed-container:before {
	width: 0;
	padding-top: 56.25%;
	float: left;
	content: " ";	
}
.embed-container iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	border: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;	
}


figure .marker {
	position: absolute;
	width: 1.285714vw;
	height: 1.285714vw;
	margin-left: -0.642857vw;
	margin-top: -0.642857vw;
	background: url("img/pointer.svg") 0 0 no-repeat;
	background-size: 100% 100%;
	display: block;
	z-index: 10;
	cursor: pointer;
}
figure .marker.active {
	z-index: 11;
}
figure .marker:after {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	background: url("img/pointer.svg") 0 0 no-repeat;
	background-size: 100% 100%;
	transition: transform 0.25s, -webkit-transform 0.25s;
}
figure .marker.active:after {
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
figure .marker article {
	display: block;
	visibility: hidden;
	position: absolute;
	background: #FFF;
	width: 0;
	overflow: hidden;
	font-size: 80%;
	line-height: 1.3;
	padding: 1vw;
	border-bottom: 0.285714285714286vw solid #f36c7d;
	
	transform-origin: left top;
	-ms-transform-origin: left top;
	-webkit-transform-origin: left top;
	transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transition: transform 0.2s, -webkit-transform 0.2s;
}
figure .marker article.activearticle {
	width: 1500%;
	visibility: visible;
	cursor: auto;
	transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	
}
figure .marker.r.b article {
	transform-origin: right bottom;
	-ms-transform-origin: right bottom;
	-webkit-transform-origin: right bottom;
}
figure .marker.l.b article {
	transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	-webkit-transform-origin: left bottom;
}
figure .marker.l.t article {
	transform-origin: left top;
	-ms-transform-origin: left top;
	-webkit-transform-origin: left top;
}
figure .marker.r.t article {
	transform-origin: right top;
	-ms-transform-origin: right top;
	-webkit-transform-origin: right top;
}
figure .marker.r article {
	right: 50%;
}
figure .marker.l article {
	left: 50%;
}
figure .marker.t article {
	top: 50%;	
}
figure .marker.b article {
	bottom: 50%;	
}
figure .marker article h4 {
	text-decoration: underline;
	font-size: 110%;	
}
figure .marker article footer {
	margin: 0 -1vw -1vw -1vw;	
}
figure .marker article footer a {
	white-space: nowrap;
	display: block;
	background: #f36c7d;
	text-decoration: none;
	color: #000;
	font-size: 110%;
	padding: 0.5vw 1vw;	
}
figure .marker article footer a:hover {
	background: #FFF;	
}


figure.panorama {
	position: relative;
}
figure.panorama canvas {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%
}


.project aside {
	margin-top: 1em;	
}

/**
 * Project gallery contains extra images
 */
.gallery li {
	margin: 0 0 1em 0;
	float: left;
	width: 20%;
	position: relative;	
}
.gallery li .hires {
	display: block;
}
.gallery li .hires:hover {
	border-color: #f36c7d;
}
.gallery li .marker {
	display: none;	
}

.gallery .enlarge {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.3);
	border: 3px solid #FFF;
	transition: border-width 0.2s, background 0.2s;
	cursor: pointer;
}
.gallery .enlarge:hover {
	background: transparent;
	border-width: 0;	
}
.gallery:after {
	content: " ";
	display: block;
	height: 0;
	clear: both;
}
/**
 * Full screen image gallery
 */
figure.md .enlarge {
	position: absolute;
	bottom: 1em;
	right: 1em;	
	width: 2em;
	height: 2em;
	border: none;
	background: transparent;
	z-index: 50;
	cursor: pointer;
}
figure.md .enlarge:after {
	content: " ";
	background: url("img/photo.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	right: 0;	
	width: 100%;
	height: 100%;
	z-index: 50;
}
figure.md .enlarge.n1 span {
	display: none;
}
figure.md .enlarge span {
	background: #000;
	color: #FFF;
	display: block;
	font-size: 80%;
    line-height: 1.6;
    min-width: 2em;
    text-align: center;
    z-index: 49;
    right: 85%;
    bottom: 65%;
    position: absolute;
    font-family: Montserrat,sans-serif;
    
}

figure.md:hover .enlarge {
	opacity: 1;
}
.galleryoverlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 250;
	background: rgba(0,0,0,0.6);
}
.galleryoverlay > a {
	font-size: 6em;
	line-height: 2em;
	position: absolute;
	top: 50%;
	margin-top: -1em;
	color: #FFF;
	cursor: pointer;
	z-index: 1000;
}
.galleryoverlay > a:hover {
	color: #F36C7D;
}
.galleryoverlay > a.next {
	right: 0.2em;
	padding-left: 0.5em;
}
.galleryoverlay > a.prev {
	left: 0.2em;
	padding-right: 0.5em;	
}
.galleryoverlay .canvas {
	position: absolute;
	top: 1em;
	left: 6em;
	right: 6em;
	bottom: 1em;
}
.galleryoverlay .canvas figure {
	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.75);
}
.galleryoverlay .canvas figure img {
	width: 100%;	
    height: auto;
}



.tagbox {
	position: relative;
	font-size: 80%;
	margin: 0.5em 0;
	font-style: italic;
}
.tagbox:before {
	content: "tags:";
	position: absolute;
	right: 100%;
	color: #7C7C7C;
	padding-right: 1.875em;
}
.tagbox li {
	display: inline;
	background: #7C7C7C;
	color: #FFF;
	padding: 0 3px;	
}
.tagbox li a {
	text-decoration: none;
	margin: 0 -3px;
	padding: 0 3px;
	white-space: nowrap;
}
.tagbox li a:hover {
	color: #FFF;
	background: #F36C7D;
}
#logo {
	display: block;
	margin-top: 50px;
	height: 0;
	overflow: visible;
}
#logo img {
	position: fixed;
	left: 0;
	top: 40px;
	z-index: 200;
	background: #FFF;
	font-style: normal;
	font-weight: 900;
	padding: 10px;
	min-width: 150px;
	max-width: 15%;
	max-width: calc(16.667% - 20px);
}


#socials {
	height: 40px;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	line-height: 40px;
}
#socials .icons {
	padding: 0 1em;	
}
#socials a {
	font-size: 16px;
	line-height: 40px;	
}
#socials a:hover {
	color: #FFF;	
}
#header {
	height: 40px;
	background: #000;
	color: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 250;
	transition: height 0.25s;
}
#header .inner {
	margin: 0 auto;
	max-width: 1400px;
	line-height: 40px;
	position: relative;
}
#header a {
	color: #FFF;	
}
body.home #mainmenu {
	display: none;	
}
#mainmenu {
	height: 40px;
	text-align: center;
}
#mainmenu ul {
	height: 40px;
	overflow: hidden;	
}
#mainmenu li {
	display: inline-block;
	line-height: 40px;
	margin: 0;
	vertical-align: top;
}
#mainmenu li a {
	text-decoration: none;
	display: block;
	padding: 0 1vw;
	height: 40px;
	line-height: 40px;
	position: relative;
}
#mainmenu li a:hover {
	color: #F36C7D; 	
}
#mainmenu li a.active:after {
	content: " ";
	height: 6px;
	display: block;
	background: #F36C7D;
	position: absolute;
	bottom: 0;
	left: 1vw;
	right: 1vw;	
}

#extranav {
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	line-height: 40px;	
}
#extranav .contact {
	line-height: 40px;
	vertical-align: top;
	text-decoration: none;
}
#extranav .contact:hover {
	color: #F36C7D
}
#searchform,
#showsearch {
	display: none;
	vertical-align: top;
}
#showsearch:checked + #searchform {
	display: inline-block;	
	position: absolute;
	right: 40px;
}
#showsearch:checked ~ label:before { content: "\e907"; }
#searchform {
	background: #FFF;
	color: #000;
	white-space: nowrap;
}
#searchform input {
	border: 0;
	box-sizing: border-box;
	height: 40px;
	padding: 5px;
	width: 180px;
}
.searchbox {
	display: inline-block;	
}
.searchbox label,
.searchbox button {
	display: inline-block;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	cursor: pointer;
	font-size: 24px;
}
.searchbox label:hover {
	color:	#F36C7D;
}
.searchbox button {
	color: #000;
	background: #FFF;
}
.searchbox button:before,
.searchbox label:before {
	content: "\e90a";
	font-family: icomoon;
}

.searchbox label span,
.searchbox button span {
	display: none;	
}


#langselect {
	display: inline-block;
	width: 40px;
	height: 40px;
	position: relative;
	vertical-align: top;
}
#langselect ul {
	position: absolute;
	top 0;
	left: 0;
	padding-top: 40px;
	height: 0;
	overflow: visible;
}
#langselect li {
	margin: 0;
	display: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
#langselect li.current {
	display: block;
	position: absolute;
	top: 0;
	left: 0;	
}
#langselect li.current a {
	color: #FFF;	
}
#langselect:hover li {
	display: block;	
}
#langselect a {
	color: #000;
	text-decoration: none;
}
#langselect li.current a:hover,
#langselect li a:hover {
	color: #F36C7D;	
}

#firstlevelnav {
	border-bottom: 1px solid #C7C7C7;
	margin: 0 10% 2em 10%;
	padding: 4em 0 2em 0 ;
}
#firstlevelnav a {
	font-weight: 900;
	text-transform: uppercase;
	color: inherit;
	text-decoration: none;
	font-size: 117%;
}
#secondlevelnav .active,
#secondlevelnav a:hover,
#firstlevelnav .active,
#firstlevelnav a:hover {
	color: #F36C7D;
}
nav ol {
	text-align: center;	
}
nav ol.many {
	display: flex;
	justify-content: space-between;
}
nav .struct li {
	display: inline-block;
	margin: 0 1em;
}
nav ol.many li {
	margin: 0;	
}


#secondlevelnav {
	margin: 0 10% 2em 10%;	
}
#secondlevelnav a {
	color: inherit;
	text-decoration: none;
	position: relative;
	font-size: 110%;
}
#secondlevelnav.filter a.active:after {
	content: "×";
	display: block;
	position: absolute;
	right: -0.8em;
	top: -0.2em;
	color: #F36C7D;
	font-size: 125%;
}






.columnised {
	position: relative;
	margin: 0 auto;
	
}

.columnised > aside {
	width: 25%;
	left: 0;
	position: fixed;
	top: 50px;
	margin-top: 3em;
}
@media (min-height: 700px) {
	.columnised > aside {
		top: 150px;
	}
}


.columnised.tagpage > aside {
	position: absolute;
}

.columnised > aside.team,
.columnised > aside.craftmanship {
	left: 0;	
}
.columnised > aside.project {
	left: 25%;	
}
.columnised .main.team + aside.project,
.columnised .main.craftmanship + aside.project {
	left: 50%;
}	
.columnised > aside.news {
	left: 75%;	
}
.columnised.tagpage > aside.news {
	left: 50%;	
}
.columnised.tagpage > aside.team {
	left: 75%;
}

.columnised .main {
	width: 50%;
	float: left;
	min-height: 100px;
	margin-bottom: 3em;
}
.columnised .main.page,
.columnised .main.project {
	margin-left: 25%;	
}
.columnised .main.news {
	margin-left: 50%;	
}
.columnised .main .wrap {
	width: 66.667%;
	margin: 0 auto;
}
.columnised .main .wrap img {
	width: 100%;
	height: auto;
}
.columnised .main .wrap .full {
	margin: 0 -25%; 	
}

.columnised .main h1 {
	outline: 0.75em solid #FFF;
	margin: 0 0 0.75em 0;
	padding: 0;
	background: #FFF;
}
.columnised .main h1 + h2 {
	font-weight: normal;
	font-size: 110%;
	line-height: 1;
	position: relative;
	top: -0.75em;
}

aside h2 {
	font-weight: normal;
	font-size: 100%;
	text-decoration: underline;
}
aside .inner {
	margin: 0 4em 0 1em;	
}


.related_news li {
	border-bottom: 1px solid #e1e1e1;
	padding: 0.5em 0;
	font-size: 90%;
	height: 3.6em;
}
.related_news li span {
	display: block;
	float: left;
	height: 3.6em;
	width: 5.4em;	
	margin-right: 0.5em;
	text-transform: uppercase;
	font-weight: bold;
}
.related_news li:hover {
	color: #F36C7D;
}
.related_news li:hover span {
	outline: 3px solid #F36C7D;
}
.related_news li span img {
	width: 100%;
	height: auto;	
}
.related_news li a {
	color: inherit;
	text-decoration: none;
}
.related_news li h3 {
	line-height: 1.2em;
	font-size: 100%;
	font-weight: normal;
	padding: 0 1em 0 0;
	margin: 0;
	height: 3.6em;
	overflow: hidden;
	position: relative;
}
.related_news li h3:after {
	content: " ";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 1.2em;
	background: -webkit-linear-gradient(left,rgba(255,255,255,0),#ffffff);
	background: -o-linear-gradient(left,rgba(255,255,255,0),#ffffff);
	background: -moz-linear-gradient(left,rgba(255,255,255,0),#ffffff);
	background: linear-gradient(to right, rgba(255,255,255,0), #ffffff);
		
}

h2 span.file,
h1 span.file {
	font-weight: normal;	
}
h2 span.file:after,
h1 span.file:after {
	content: " | ";	
}
.main.news ~ aside.project .inner {
	margin: 0 3em 0 0;	
}
aside.project .inner {
	margin: 0 1em 0 2em;	
}
aside.project .inner > *  {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
} 
.related_projects li img {
	width: 100%;
	height: auto;
	margin: 3px 0;
}
.related_projects li h3 {
	line-height: 1.2em;
	font-size: 90%;
	font-weight: normal;
}
.related_projects li a {
	text-decoration: none;
	color: inherit;	
}
.related_projects li:hover a,
.related_projects li a:hover {
	color: #F36C7D
}
.related_projects li:hover img {
	outline: 3px solid 	#F36C7D;
}
/**
 * On a project page, the related projects are placed below the 
 * project details
 * project details
 */
footer aside.project .inner {
	margin: 2em 0 0 0;	
}
footer aside.project .inner > *  {
	width: auto;
}
footer 	.related_projects li {
	width: 32%;
	margin-left: 2%;
	float: left;
}
footer 	.related_projects li:nth-child(3n+1) {
	margin-left: 0;	
}
footer aside.project footer {
	clear: both;	
}
footer aside.project footer a {
	display: none;	
}


#share {
	margin: 1em 0;
	color: #FFF;
	background: #F36C7D;
	padding: 0.25em 0.5em;
	display: inline-block;
	line-height: 1;
	font-size: 90%;
}
#share h3, #share div {
	display: inline;
	margin: 0;
	padding: 0;
	vertical-align: top;
	font-size: 100%;
}
#share h3 {
	position: relative;
	bottom: -0.5em;	
}
#share .icom {
	font-size: 200%;
	background: #FFF;
	color: #F36C7D;
	position: relative;
}
#share .icom:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #F36C7D;
	content: "";
}
#share .icom:hover:after {
	border-color: #FFF;	
}



.related_craftmanship li {
	border-bottom: 1px solid #e1e1e1;
	padding: 1% 0;
	position: relative;
	display: flex;
	align-items: center;
	min-height: 4em;
	
}
.related_craftmanship li h3 {
	margin: 0;
	font-weight: 700;
}

/**
 * Related team
 */
.related_team {
}
.related_team li {
	width: 30%;
	float: left;
	margin-left: 5%;
}
.related_team li:nth-child(3n+1) {
	margin-left: 0;
	clear: left;
}	
.related_team span.image {
	display: block;
	margin-left: 5%;
	border-radius: 50%;
	overflow: hidden;
	background: #e1e1e1;
	position: relative;
}
.related_team span.image:before {
	content: " ";
	padding: 100% 0 0 0;
	display: block;
	width: 0;
	height: 0;
	float: left;
}
.related_team a:hover span.image:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #F36C7D;
	border-radius: 50%;	
}
.related_team span.image img {
	width: 100%;
	height: auto;	
}
.related_team h3 {
	font-size: 90%;
	text-align: center;
	margin: 0 -2.5em;
	visibility: hidden;
	font-weight: normal;
	min-height: 3.29142857142856vw;
}
.related_team li:nth-child(3n+1) h3 {
	margin: 0 -1em;	
}

.related_team a {
	color: inherit;
	text-decoration: none;
	display: block;
	overflow: hidden;
}
.related_team a:hover {
	color: #F36C7D;
	overflow: visible;
}
.related_team a:hover h3 {
	visibility: visible;
}

#tagpage h1 {
	text-align: center;
	border-bottom: 1px solid #7C7C7C;
	margin: 5 0 0 0;
	padding: 5%;
}
#tagpage h1:before {
	content: "Tag: ";
	text-transform: none;
	font-weight: normal;
	margin-right: 1em;
}

.pagehead {
	text-align: center;
	border-bottom: 1px solid #7C7C7C;
	margin: 10% 10% 5% 10%;
	padding: 5% 0 2%;
}
.pagehead div {
	margin: 0 15%;	
}
#craftmanshipovv ol {
	margin: 0;
	padding: 0;
}
#craftmanshipovv li {
	float: left;
	position: relative;
	left: 15%;
	width: 25%;
	margin: 0 5%;
	font-size: 120%;
	font-weight: 700;
	overflow: hidden;
	border-bottom: 1px solid #e1e1e1;
	padding: 1% 0;
}
#craftmanshipovv li .flex {
	display: flex;
	align-items: center;
	min-height: 4.57vw;
}
#craftmanshipovv li:nth-child(odd) {
	clear: left;	
}
footer#craftmanshipovv {
	margin-top: 3em;
	margin: 3em auto 0 auto;
    width: 66.667%;
}
footer#craftmanshipovv h2 {
	font-size: 100%;
	text-decoration: underline;
}
footer#craftmanshipovv li {
	float: left;
	position: relative;
	left: 0;
	width: 44%;
	margin: 0 9% 0 1%;
	font-size: 75%;
}
footer#craftmanshipovv li .flex {
	min-height: 2.742vw;
}
footer#craftmanshipovv li:nth-child(even) {
	margin: 0 1%;
}

.related_craftmanship li a,
#craftmanshipovv li a {
	display: block;
	padding-left: 25%;	
	text-decoration: none;
	color: inherit;
	line-height: 1.2;
}
.related_craftmanship li a:hover,
#craftmanshipovv li a:hover {
	color: #F36C7D;
}
.related_craftmanship li a:before,
#craftmanshipovv li a:before {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-size: 250%;
	line-height: 1;
	content: "\e90f";
	width: 18.2857142857143%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	text-align: center;
	background: url("img/circle.svg") center center no-repeat;
	transition: background-size 0.25s, color 0.25s;;
	background-size: auto 0;
}
.related_craftmanship li a:hover:before,
#craftmanshipovv li a:hover:before {
	color: #FFF;
	background-size: auto 98%;
}
#craftmanshipovv li:before {
	content: " ";
	float: left;
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	padding-top: 18.2857142857143%;
}	




#dia {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	overflow: hidden;
	background-color: #FFF;
		
}

#dia .video iframe {
	width: 100%;
	height: 100%;	
}
#dia .video,
#dia .image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center center;
	background-size: cover;
	z-index: 10;
}
#dia .image {
	opacity: 0;	
}
#dia .image:first-child {
	z-index: 11;
	opacity: 1;
}
#dia:before {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.4);
	z-index: 100;
}
#dia .text {
	position: absolute;
	top: 25%;
	left: 25%;
	width: 50%;
	background-size: cover;
	text-align: center;
	color: #FFF;
	font-size: 200%;
	z-index: 101;
}
#dia .text h1 {
	font-size: 200%;
}
#dia .text h1 img  {
	height: 1em;
	width: 100%;	
}
#showproject {
	width: 68px;
	height: 36px;
	background: url("img/down.svg") center center no-repeat;
	position: absolute;
	bottom: 10%;
	left: 50%;
	margin-left: -34px;
	z-index: 999;
	cursor: pointer;
}




/**
 * Project listing
 */
#projectovv {
	width: 66.67%;
	padding-top: 6%;
	margin: 0 auto;	
}
#projectovv .pagehead {
	border: none;
	margin: 0;
	padding: 0;
}
#projectovv .pagehead h1 {
	margin: -10px 0 -6px 0;
	padding: 0;	
}
/**
 * Category navigation
 */
#projectovv nav ol {
	display: flex;
	justify-content: space-between;
}
#projectovv nav li {
	margin: 0;
	display: inline;
	white-space: nowrap;
}
#projectovv nav li a {
	color: #7C7C7C;
	text-decoration: none;
}
#projectovv nav li a.active {
	border-bottom: 3px solid #F36C7D;
	position: relative;	
}
#projectovv nav li a.active:after {
	content: "×";
	display: block;
	position: absolute;
	right: -0.8em;
	top: -0.2em;
	font-size: 125%;
}
#projectovv nav li a:hover {
	color: #F36C7D;
}
#projectovv nav li.map span {
	display: none;	
}
#projectovv nav li.map a:before {
	font-family: icomoon;
	content: "\e906";	
}
/**
 * Photo highlights at the top
 */
#projecthighlights {
	overflow: hidden;
	margin: 5% 0;
	padding-bottom: 60px;
}

#projecthighlights .L,  #projecthighlights .B {
	width: 48.9817792068596%; /* 219/933 */
	float: right;
}

#projecthighlights > div {
	overflow: hidden;	
}
#projecthighlights > a {
	clear: both;
	display: block;
	height: 0; 
}
#projecthighlights article {
	float: left;
	position: relative;
	font-size: 90%;
}

#projecthighlights .T article,
#projecthighlights .H article {
	width: 23.4726688102894%; /* 219/933 */
	margin: 2.03644158628081% 0 0 2.03644158628081%; /* 19/933 */

}
#projecthighlights a + .L,
#projecthighlights a + .B {
	float: left;	
}
#projecthighlights .H article:first-child,
#projecthighlights .T article:first-child {
	margin-left: 0;	
}


#projecthighlights .L article {
	margin-top: 4.23162583518931%;
	width: 100%;
	font-size: 130%;
}
#projecthighlights .B article {
	width: 47.9212253829322%;
	margin-top: 4.23162583518931%;
	float: left;
}
#projecthighlights .B article:nth-child(even) {
	float: right;	
}

#projecthighlights article .img {
	position: relative;
	background: #7C7C7C;
	padding-top: 66.2100456621005%;	
}

#projecthighlights .L article .img {
	padding-top: 67.8336980306346%;
}
#projecthighlights article img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;	
}
#projecthighlights article div.body {
	color: #F36C7D;
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	background: black;
	background: rgba(0,0,0,0.5);
}
#projecthighlights h3 {
	margin: 0;
	font-size: 100%;
}	
#projecthighlights div.body div {
	position: absolute;
	overflow: hidden;
	left: 3%;
	right: 3%;
	bottom: 3%;
}
#projecthighlights footer a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#projecthighlights footer a span {
	display: none;	
}
#projecthighlights article:hover .body {
	display: block;
}
/**
 * Sort form
 */
#projectovv form {
	display: block;
	float: left;	
	width: 23.4726688102894%; /* 219/933 */
	margin: 0 2.03644158628081% 0 0; /* 19/933 */
}
#projectovv table {
	color: #7C7C7C;
	margin: 0;
	padding: 0;
	margin-bottom: 20em;
}
#projectovv td {
	padding: 0.2em 1.5em 0.2em 0;
	vertical-align: top;
}
#projectovv td:last-child {
	padding-right: 0;	
}
#projectovv td a {
	color: inherit;
	text-decoration: none;	
}
#projectovv td.year {
	text-align: right;
	padding-right: 0;
}
#projectovv .clickable:hover td {
	color: #F36C7D;
}




/**
 * Project page
 */
aside.details dt {
	float: left;
	margin: 0;
	padding: 0 0.4em 0 0.2em;
	color: #FFF;
	font-style: italic;
	background: #7C7C7C;
}
aside.details dd {
	clear: left;
	padding: 0.2em 0;
	margin: 0;	
}
aside.details .award {
	display: inline-block;
	width: 23%;
	margin: 0.5em 0.5% 0.5% 0;
	vertical-align: middle;
}


/**
 * News items
 */
.overview .newsitem {
	padding-bottom: 6em;
}
.overview .newsitem a.more {
	border: none;
	text-decoration: underline;	
}
.overview .newsitem a.more:hover {
	background: none;
	color: #F36C7D;
}
.newsitem time {
	display: block;
	padding-top: 0.5em;
	color: #959595;
	font-style: italic;
	font-size: 90%;
}
.news footer .news {
	margin: 3em 42.16667% 3em 0;;
}
.news footer .news .inner {
	margin: 0;	
}

.news.overview > footer {
	padding-top: 1em;
}
.news.overview > footer a {
	text-decoration: none;	
}


/**
 * Employee overview
 */
#employeeovv {
	clear: both;
}
#employeeovv ol {
	text-align: center;
	margin: 0 10% 3em;
	perspective 100px;
}
#employeeovv li {
	display: inline-block;
	vertical-align: top;
	width: 11.5%;
	margin-left: 6.2%;
	overflow: hidden;
	
}
#employeeovv li a {
	display: block;
	position: relative;
}

#employeeovv li img {
	width: 100%;
	height: auto;
	visibility: hidden;
}

#employeeovv li.hidden:hover span.image,
#employeeovv li span.image {
	border: 3px solid #FFF;
	border-radius: 50%;	
	opacity: 1;
	display: block;
	overflow: hidden;
	background-size: 100% auto;
	transition: 0.6s;
	
	transform: rotateY(0);
	-ms-transform: rotateY(0);
	-webkit-transform: rotateY(0);
	
	transform-origin: center center;
	-ms-transform-origin: center center;
	-webkit-transform-origin: center center;
	
	position: relative;
}
#employeeovv li.hidden span.image {
	transform: rotateY(180deg);	
	-ms-transform: rotateY(180deg);	
	-webkit-transform: rotateY(180deg);	
	opacity: 0.3;
}
#employeeovv li .initials {
	overflow: hidden;
	display: block;
	position: relative;
	text-align: center;
	font-style: normal;
	
	background: #ECECEC;
}
#employeeovv li .initials span {
	line-height: 2vw;
	top: 50%;
	left: 0;
	right: 0;
	position: absolute;
	font-size: 2vw;
	margin-top: -1vw;	
}
#employeeovv li .initials:after {
	content: " ";
	width: 0;
	padding-top: 100%;
	float: left;	
}
#employeeovv  .vacancy .info {
	visibility: visible;
	
}
#employeeovv  .vacancy .info h3 {
	color: #F36C7D;
}
#employeeovv li .info {
	margin: 0 -50%;
	visibility: hidden;
}
#employeeovv li a {
	text-decoration: none;	
}
#employeeovv .emplist li a:hover span.image {
	border-color: #F36C7D;
}
#employeeovv li a:hover .info {
	visibility: visible;	
}
#employeeovv li h3 {
	font-size: 100%;
	margin: 0 0 0.2em 0;
	font-weight: normal;
	text-transform: none;	
}
#employeeovv li p {
	font-size: 85%;
	color: #252525;	
	line-height: 1.3;
}

#employeeovv li:hover {
	overflow: visible;	
}
#employeeovv .board li {
	width: 14%;
	margin-left: 7.5%;	
}


#serviceovv .pagehead {
	border: 0;	
}
#serviceovv ol {
	max-width: 850px;
	padding: 1em;
	margin: 0 auto;	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#services li {
	margin-left: 30px;
	width: 200px;
	display: inline-block;
	font-size: 13px;
	line-height: 18px;
}
#services li:nth-child(3n+1) {
	margin-left: 0;	
}
#services input {
	display: none;	
}
#services .intro h3 {
	height: 54px;
	overflow: hidden;
	line-height: 18px;
	font-size: 16px;
	font-weight: bold;	
}
#services .intro p {
	height: 108px;
	margin: 1em 0;
	padding: 0;
	overflow: hidden;
	position: relative;
}
#services .intro p:after {
	content: "";
	display: block;
	width: 100px;
	height: 18px;
	position: absolute;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
#services li article {
	display: none;
}
#serviceovv #form {
	display: none;	
}
#serviceovv #form .error {
	font-style: italic;
	color: red;	
}
#serviceovv #form:target {
	display: block;
}
#serviceovv #form:target ~ ol li input:checked ~ article {
	display: none;
}
#serviceovv #form h1 {
	padding: 1em 0;	
}
#serviceovv #projectovv {
	max-width: 850px;
	margin: 0 auto;
	width: auto;	
}
#serviceovv .list {
	width: auto;
	margin: 0 auto;
}

#form label {
	display: block;
	text-decoration: underline;	
}
#form input, #form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #CCC;
	padding: 0.25em;	
}
#form .inline input {
	display: none;	
}
#form .inline span {
	display: block;
	position: relative;
	padding-left: 1.5em;
	cursor: pointer;
}

#form .inline span:before {
	content: "";
	width: 1em;
	height: 1em;
	display: block;
	line-height: 1em;
	position: absolute;
	left: 0;
	bottom: 0.25em;
	border: 1px solid #CCC;	
	text-align: center;
}
#form .inline input:checked + span:before {
	content: "✓";	
}
#form li {
	padding: 0 0 1em 0;
}


#serviceovv .modal {
	position: fixed;
	top: 40px;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(230,230,230,0.6);
	z-index: 1000;
	overflow: auto;
}
#serviceovv .modal .body {
	margin: 0 auto;
	background: #FFF;
	max-width: 	450px;
	padding: 90px;
	overflow: hidden;
	position: relative;
}
#serviceovv .modal .body img {
	width: 100%;
	height: auto;
}
#serviceovv .modal .close {
	position: absolute;
	top: 1em;
	right: 1em;
	width: 10%;
	padding-top: 10%;
	cursor: pointer;
}
#serviceovv .modal .close:after,
#serviceovv .modal .close:before {
	content: "";
	background: #000;
	display: block;
	position: absolute;
	transform: rotate(45deg);
}
#serviceovv .modal .close:after {
	height: 2px;
	top: 50%;
	left: 0;
	right: 0;
	margin-top: -1px;
}
#serviceovv .modal .close:before {
	
	width: 2px;
	left: 50%;
	top: 0;
	bottom: 0;
	margin-left: -1px;
}
#serviceovv .body h1 {
	padding: 1em 0.57142857143em 0;
}	
#serviceovv .body .markdown {
	padding: 1em;
}
#serviceovv .body footer {
	float: right;
	clear: both;
}
	
#services li input:checked ~ article {
	display: block;
}	

#serviceovv .pinkyfig {
	margin: 20px 0 20px 0;
	padding: 5px 60px 5px 0;
	line-height: 20px;
	display: block;
	cursor: pointer;
	color: #FFF;
	background: #F36C7D;
	position: relative;
	margin-right: 5px;
}
#serviceovv .pinkyfig a {
	text-decoration: none;
	color: #FFF;	
}
#serviceovv .pinkyfig span {
	display: block;
	padding: 0 1em;
	font-size: 15px;	
}
#serviceovv .pinkyfig figure {
	width: 50px;
	height: 50px;
	border: 3px solid #F36C7D;
	background: #F36C7D;
	display: block;
	position: absolute;
	right: -5px;
	top: -13px;
	border-radius: 50%;	
}
#serviceovv .pinkyfig figure img {
	width: 100%;
	height: auto;
	border-radius: 50%;	
}

#serviceovv .projectlist {
	clear: both;
	padding: 2em 1em;
}
#serviceovv .projectlist table {
	color: #7C7C7C;
	margin: 0;
	padding: 0;
	
}
#serviceovv .projectlist td {
	padding: 0.2em 1.5em 0.2em 0;
	vertical-align: top;
}
#serviceovv .projectlist a {
	text-decoration: none;
	color: inherit;	
}
#serviceovv .projectlist tr:hover td {
	color: #F36C7D;
}
#serviceovv h2 {
	font-weight: normal;
	font-size: 100%;
	text-decoration: underline;
}

@media (min-width: 801px) {
	#employeeovv .normal li:nth-child(6n+1) {
		margin-left: 0;	
	}
	#employeeovv .board li:nth-child(5n+1) {
		margin-left: 0;	
	}
}


/**
 * Employee
 */
.columnised .main .employee .wrap header img {
	width: 75%;
} 
	
.employee .full {
	padding-bottom: 4em;
	position: relative;
}
.employee .full .prevnext {
	font-size: 110%;
	position: absolute;
	left: 1em;
	top: -2em;
	color: #FFF;
}
.employee .full .details {
	z-index: 10;
	position: relative;
	margin: -11em 0 0 50%;
	background: #FFF;
	border-left: 0.25em solid #F36C7D;
	padding: 1em 0 0 1em;
}
.employee .full .details h1 {
	outline: none;
	font-weight: normal;
	text-transform: none;
	font-size: 140%;
	color: 	#F36C7D;
}
.employee .full .icons {
	margin: 1em 0 0 0;
}
.employee .full .icons li {
	vertical-align: bottom;	
}

#debugpane {
	display: none;
}
#debugpane:target {
	display: block;	
}

/**
 * Contactpage
 */
#contactpage .intro {
	text-align: center;
	border-bottom: 1px solid #7C7C7C;
	margin: 6% 5% 5% 5%;
	padding: 5%;
}
#contactpage .addresses {
	text-align: center;	
}
#contactpage .addresses article {
	width: 30%;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 2em;
}
#contactpage .address a {
	font-style: italic;
	text-decoration: none;	
	color: #F36C7D;
}
#contactpage .address a:hover {
	color: #000;
	text-decoration: underline;	
}
#contactpage dd, #contactpage dt {
	display: inline;
}
#contactpage dd:after {
    content:"\000A";
    white-space: pre;
}
#contactpage dl a {
	text-decoration: none;
}
#contactpage .icons {
	text-align: center;	
}
#contactpage .icons li {
	margin: 0 0 0
}
#contactpage .icons a {
	background: #7c7c7c;
	color: #FFF;
	font-size: 20px;
	padding: 6px;
}
#contactpage .icons a:hover {
	background: #F36C7D;
}
#contactpage .hallmarks {
	text-align: center;
	margin: 2em 0;
}
#contactpage .hallmarks a {
	display: inline-block;
	max-width: 40%;	
}
#contactpage .hallmarks a img {
	max-width: 100%;
	height: auto;	
}


#colofon {
	width: 90%;
	max-width: 400px;
	margin: 2em auto;
	text-align: center;	
}
#colofon .wrap h2 {
	margin: 0.5em  0 0 0;
	font-size: 100%;	
}

/**
 * Search results, the view also used for the news archive and the tag page
 */
#newsarchive,
#searchresults {
	width: 84.3750%;
	margin: 0 auto;
}
.pagination {
	text-align: center;
	border-top: 1px solid #7C7C7C;
	margin: 0.5em 0;
	padding: 0.5em 0;	
}
.pagination a {
	text-decoration: none;
	padding: 0 0.1em;
}
.pagination .current a {
	text-decoration: underline;	
}
.pagination a i {
	display: none;	
}

#newsarchive h1 {
	text-align: center;
	border-bottom: 1px solid #7C7C7C;
	margin: 5 0 0 0;
	padding: 5%;
}
#searchresults h1 {
	text-align: center;
	border-bottom: 1px solid #7C7C7C;
	margin: 5 0 0 0;
	padding: 5%;
	font-weight: normal;
	text-transform: none;
	font-size: 100%;
	vertical-align: middle;
}
#searchresults h1:before {
	content: "\e90a";
	font-family: icomoon;
	vertical-align: middle;
	font-size: 175%;
	padding-right: 0.4em;
}
#searchresults h1 span {
	font-weight: 900;
	text-transform: uppercase;
	font-size: 175%;
	vertical-align: middle;
	padding-left: 0.4em;
}
#searchlist li {
	clear: both;
	width: 50%;	
	margin: 0 auto;
	min-width: 200px;
	position: relative;
	padding: 0.5em 0;
}
#searchlist li:after {
	content: "";
	display: block;
	height: 0px;
	clear: both;	
}
#searchlist .type {
	position: absolute;
	top: 0.5em;
	right: 105%;
	font-style: normal;
	text-decoration: underline;
	white-space: nowrap;
}
#searchlist .img {
	width: 30%;
	float: left;	
}
#searchlist .img ~ * {
	width: 65%;
	float: right;	
}
#searchlist .img img {
	width: 100%;
	height: auto;	
}
#searchlist .ctwrap footer {
	display: none;	
}
#searchlist a {
	text-decoration: none;	
}
#searchlist mark {
	font-style: italic;
	background: none;
	font-weight: bold;	
}
#searchlist li h2, #searchlist li p {
	margin: 0;
}
#searchlist li h2 {
	font-weight: 900;
	font-size: 140%;
	line-height: 1.2;
}




/**
 * Project map
 */
#projectmap {
	position: fixed;
	top: 40px;
	right: 0;
	left: 0;
	bottom: 0;	
}
#projectmap .mapct {
	width: 100%;
	height: 100%;
}
#projectmap .clustericon:before {
	content: " ";
	display: block;
	width: 24px;
	height: 24px;
	background: url("img/pointer.svg");
	background-size: 100% 100%;
	position: absolute;
	top: -12px;
	left: -12px;
}
#projectmap .clustericon.open:before {
	background-image: url("img/close.svg");
}
#projectmap .clustericon {
	font-family: Montserrat,sans-serif;
	
}
#projectmap .clustericon span {
	background: #000;
	display: block;
	color: #FFF;
	text-align: center;
	min-width: 20px;
	font-size: 12px;
	line-height: 24px;
}

#infopane {
	position: absolute;
	top: 0;
	right: -300px;
	bottom: 0;
	width: 300px;
	transition: right 1s;
	background: #363636;
	color: #FFF;
	z-index: 999;
	overflow: auto;
	padding-top: 37px;
}
#infopane .close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 2em;
	height: 2em;
	background: url("img/close.svg") 0 0 no-repeat;
	background-size: 100% auto;
	cursor: pointer;

}
#infopane.open {
	right: 0;
}
#infopane article {
	margin: 20px;	
}
#infopane article h3 {
	text-decoration: underline;
	line-height: 1.2;
}
#infopane article img {
	width: 100%;
	height: auto;	
}
#infopane article footer {
	padding-top: 10px;
	text-align: right;	
}

@media (min-width: 1400px) {
	html, body {
		font-size: 16px;
	}
	.columnised > aside {
		width: 350px;
	}
	.columnised > aside.news {
		left: 50%;
		margin-left: 350px;	
	}
	.columnised.tagpage > aside.news {
		margin-left: 0%;	
	}
	.columnised.tagpage > aside.team {
		margin-left: 0;	
	}
	.columnised > aside.team,
	.columnised > aside.craftmanship {
		left: 50%;
		margin-left: -700px;	
	}
	
	.columnised > aside.project {
		left: 50%;
		margin-left: -350px;	
	}
	.columnised .main.team + aside.project,
	.columnised .main.craftmanship + aside.project {
		left: 50%;
		margin-left: 0;
	}
	.related_team li:nth-child(3n+1) h3 {
		margin: 0 -2.5em;	
	}
	.related_team h3 {
		min-height: 46px;
	}
	
	label.select select {
		height: 28px;
		line-height: 28px;
		padding-right: 28px;
	}
	
	figure .marker {
		position: absolute;
		width: 18px;
		height: 18px;
		margin-left: -9px;
		margin-top: -9px;
	}
	figure .marker article {
		padding: 14px;
		border-bottom: 4px solid #f36c7d;
	}
	figure .marker article footer {
		margin: 0 -14px -14px -14px;	
	}
	figure .marker article footer a {
		padding: 7px 14px;	
	}
	
	#employeeovv li .initials span {
		line-height: 28px;
		font-size: 28px;
		margin-top: -14px;	
	}
	
	#craftmanshipovv li .flex {
		min-height: 64px;
	}
}


@media (max-width: 1025px) {
	#projectovv {
		width: 80%;	
	}	
}
@media (max-width: 1000px) {
	body {
		font-size: 12px;
	}
	
	figure .marker {
		height: 16px;
		margin-left: -8px;
		margin-top: -8px;
		width: 16px;
	}
    
    
	#logo img {
		/* position: absolute; */
	}
	label.select select {
		height: 20px;
		line-height: 20px;
		padding-right: 20px;
	}
	label.select:before {
		width: 20px;
	}
	
	.toggleview {
		width: 2em;
		height: 2em;
		display: block;
		position: absolute;
		left: 50%;
		margin-left: -1em;
		top: 0.5em;
		transition: all 0.25s;
		z-index: 10;
		padding-bottom: 40em;
		cursor: pointer;
	}
	.toggleview:before {
		content: " ";
		display: block;
		width: 1.5em;
		height: 1.5em;
		margin: 0 0.25em;
		background: transparent url("img/pointer.svg") 0 0 no-repeat;
		background-size: 100% auto;
		filter: grayscale(100%);
		-webkit-filter: grayscale(100%); 
		transition: all 0.25s;
	
	}

	aside.foldout .toggleview {
		left: 100%;
		margin-left: -1.5em;
		top: -1em;
		padding-bottom: 0;
	}
	aside.foldout .toggleview:before {
		transform: rotate(45deg);
		width: 2em;
		height: 2em;
		filter: grayscale(0%);
		-webkit-filter: grayscale(0%); 
	}
	aside + aside.foldout .toggleview {
		left: 0;
		margin-left: -1em;
		padding-bottom: 0;
	}
	#IAA .columnised .main {
		width: 80%;
		margin-left: 10%;
	}
	
	
	#IAA .columnised > aside {
		width: 10%;
		left: 0;
		position: fixed;
		top: 60px;
		margin-top: 3em;
		transition: transform 0.25s;
	}
	#IAA .columnised > aside + aside {
		left: 90%;
	}

	#IAA .columnised > aside .inner {
		position: relative;
		margin: 0;
		padding: 0.5em;		
	}
	#IAA .columnised > aside h2 {
		margin-top: 0.5em;
		position: relative;
		left: 50%;
		margin-left: -0.8em;
		transform: rotate(90deg);
		transform-origin: 0 100%;
		transition: transform 0.25s, left 0.25s;
	}
	#IAA .columnised > aside.foldout {
		bottom: 0

	}
	#IAA .columnised > aside.foldout  h2 {
		transform: rotate(0deg);
		left: 0.8em;
	}
	
	#IAA .columnised > aside.foldout .inner {
		background: #FFF;
		box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.75);
		max-height: 95%;
		overflow-X: hidden;
		overflow-Y: auto;
	}
	#IAA .columnised > aside h2 a {
		white-space: nowrap;
	}
	#IAA .columnised > aside footer,
	#IAA .columnised > aside ol {
		height: 0;
		overflow: hidden;
	}
	
	#IAA .columnised > aside.foldout {
		width: 300px;
		margin-left: -300px;
		transform: translateX(300px);
		z-index: 10000;
	}
	#IAA .columnised > aside.foldout ol {
		height: auto;
		overflow: visible;
	}
	

	#IAA .columnised  aside + .foldout {
		margin-left: 0;
		transform: translateX(-300px);
		left: 100%;
	}
	
	aside.foldout ~ .blackout {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9999;
		background: rgba(0,0,0,0.6);
	}
	
	
	#craftmanshipovv li {
		padding: 10px 0;
		left: 10%;
		width: 30%;
		margin: 0 5%;
	}
	
	
	#craftmanshipovv li .flex {
		min-height: 46px;
	}

	#craftmanshipovv li a {
		padding-left: 63px;	

	}
	#craftmanshipovv li a:before {
		font-size: 46px;
	}
	
	#craftmanshipovv li:before {
		padding-top: 46px;
	}
	
	
	footer#craftmanshipovv li {
		left: 0;
		padding; 5px 0;
		width: 42%;
		min-height: auto;
	}
	footer#craftmanshipovv li a {
		padding-left: 40px;	

	}
	footer#craftmanshipovv li a:before {
		font-size: 23px;
	}
	
	footer#craftmanshipovv li:before {
		padding-top: 0;
	}


}

@media (max-width: 900px) {
	#craftmanshipovv li {
		left: 5%;
		width: 35%;
		margin: 0 5%;
	}
	
	
	
	
}

@media (max-width: 800px) {
	#employeeovv {
		overflow: hidden;	
	}
}

@media (min-width: 501px) AND (max-width: 800px) {
	
	#employeeovv li {
		width: 19%;
		margin-left: 8%;
	}
	
	#employeeovv .board li {
		width: 26.6666666666667%;
		margin-left: 10%;
	}
	
	#employeeovv .board li:nth-child(3n+1) {
		margin-left: 0;	
	}
	#employeeovv .normal li:nth-child(4n+1) {
		margin-left: 0;	
	}
}



@media (max-width: 799px) {

	.columnised .main .wrap {
		width: 96%;
	}
	
	.columnised .main figure.md.landscape,
	.columnised .main .wrap .full {
		margin: 0;	
	}
	.columnised .main .embed-container {
	    margin-left: 0;
	    margin-right: 0;
	}
	
	.pagehead {
		margin: 60px 2% 2% 2%;
		padding: 5% 0 2%;
		overflow: hidden;
	}
	.pagehead div {
		margin: 0 5%;	
	}
	#projectovv .pagehead h1 {
		margin: 0;	
	}

	
	#craftmanshipovv li {
		float: none;
		width: 260px;
		padding-right: 20px;
		margin: 0 auto;
		left: 0;
	}

	footer#craftmanshipovv {
		width: 96%;	
	}
	footer#craftmanshipovv li {
		width: 260px;
		padding-right: 20px;
	}
	
	
	#socials {
		left: 50px;	
	}
	
	
	#togglemenu:checked ~ #header {
		height: 100%;
		overflow: auto;	
	}
	#togglemenu:checked ~ #header #mainmenu {
		display: block;	
	}
	#header #mainmenu {
		padding-top: 80px;
		display: none;
	}
	
	#header #mainmenu ul {
		height: auto;	
	}
	#header #mainmenu li {
		display: block;	
	}
	#header #mainmenu li a {
		display: block;
		line-height: 3;
		font-size: 130%;
	}
	#mainmenu li a.active:after {
	}
	#mainmenu li a.active {
    	background: #f36c7d;
    }
    
    #burger {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 40px;
		height: 40px;
		font-size: 0;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	#burger span {
		height: 2px;
		display: block;
		margin: 19px 6px;
		position: relative;
		background: #FFF;
		-webkit-transition: all 225ms ease;
		transition: all 225ms ease;
	}
	#burger span:after,
	#burger span:before {
		position: absolute;
		left: 0;
		width: 100%;
		height: 100%;
		background: #FFF;
		content: '';
		-webkit-transition: all 225ms ease;
		transition: all 225ms ease;
	}
	#burger span:before {
		-webkit-transform: translateY(-450%);
		transform: translateY(-450%);
	}
	#burger span:after {
		-webkit-transform: translateY(450%);
		transform: translateY(450%);
	}
	#togglemenu:checked ~ #header #burger span {
		background-color: transparent !important;
	}
	#togglemenu:checked ~ #header #burger span:before {
		-webkit-transform: translateY(0) rotate(225deg);
		transform: translateY(0) rotate(225deg);
	}
	#togglemenu:checked ~ #header #burger span:after {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}


	#projectovv nav ol {
		display: block;
		padding-top: 4em;
		position: relative;
	}
	#projectovv nav ol:after {
		content: '';
		display: block;
		clear: both;	
	}
	#projectovv nav li {
		display: block;
		float: right;
		width: 48.9818%;
		text-align: left;
		white-space: normal;
	}
	#projectovv nav li:nth-child(odd) {
		text-align: right;
		float: left;
			
	}
	#projectovv nav li.map {
		width: 2em;
		font-size: 150%;
		text-align: center;
		margin-left: -1em;
		position: absolute;
		top: 1em;
		left: 50%;	
	}
	
	
	
	#firstlevelnav {
		position: relative;
		border-bottom: 0;
		margin: 3em 0 1em;
		padding: 1em 0 1em;
		width: 50%;
		float: left;
	}
	#secondlevelnav {
		position: relative;
		width: 50%;
		margin: 0;
		margin: 3em 0 1em;
		padding: 1em 0 1em;
		float: right;
	}
	#firstlevelnav:before,
	#secondlevelnav:before {
		content: " ";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 1px;
		background: #c7c7c7;	
	}
	#firstlevelnav:before {
		left: auto;
		right: -1px;	
	}

	#firstlevelnav ol {
		text-align: right;
		display: block;
	}
	#secondlevelnav ol {
		text-align: left;
		display: block;	
	}
	#firstlevelnav li,
	#secondlevelnav li {
		display: block;	
		margin: 0 1em;
	}
	
	
	#contactpage .addresses article {
		width: 48%;	
	}


	.galleryoverlay .canvas {
		bottom: 0;
		left: 3em;
		position: absolute;
		right: 3em;
		top: 0;
	}
	galleryoverlay > a {
		font-size: 4em;
		line-height: 2em;
	}
	.galleryoverlay > a.next {
		right: 0.2em;
		padding-left: 0;
	}
	.galleryoverlay > a.prev {
		left: 0.2em;
		padding-right: 0;
	}

}


@media (max-width: 700px) {
	
	#serviceovv ol {
		max-width: 480px;	
	}
	#services li {
		margin-left: 0;	
	}
	
	
	#IAA #projecthighlights .L,  #projecthighlights .B {
		float: none;
		width: auto;
	}
	
	#IAA #projecthighlights article {
		margin: 2.03644158628081% 0 0 0;
	}
	#IAA #projecthighlights .B article,
	#IAA #projecthighlights .T article,
	#IAA #projecthighlights .H article {
		width: 48.7750556792873%; 
		float: left;
	}
	#IAA #projecthighlights .B article:nth-child(even),
	#IAA  #projecthighlights .T article:nth-child(even),
	#IAA  #projecthighlights .H article:nth-child(even) {
		float: right;	
	}
	
	
	.tagbox:before {
		padding-right: 0.8em;	
	}
	

	#projectovv form {
		width: 200px;
		display: block;
		float: none;
	
	} 	
	
	#logo {
		margin-top: 80px;	
	}
	
	
	#IAA #searchlist li {
    	margin: 0 auto;
		min-width: auto;
		width: 90%;
	}
	#IAA #searchlist .img, 
	#IAA #searchlist em {
		position: static;
		float: left;
		width: 30%;
		text-align: right;	
		clear: left;
	}
	
	#IAA #searchlist .img ~ * {
		width: 65%;
		float: right;
		position: relative;
		top: -1em;
	}
	
	.employee .full .details {
  	    margin: -5em 0 0 15%;
  	}

  	figure .marker.active:before {
	  	content: "";
	  	display: block;
	  	position: fixed;
	  	background: blue;
	  	top: 0;
	  	right: 0;
	  	bottom: 0;
	  	left: 0;
	  	background: rgba(0,0,0,0.6);	  		
	}
  	figure .marker.active {
		position: fixed;
		top: 48px !important;
		right: 8px;
		margin: 0;
		left: auto!important;
		z-index: 1050;
	}
	
	#IAA figure .marker article {
		right: 50%;
		top: 50%;
		left: auto;
		font-size: 100%;
		padding: 12px;
		width: 1500%;
		transform-origin: right top;
		box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.75);
	}
	figure .marker article footer {
		margin: 0 -12px -12px;
	}
}

@media (max-width: 630px) {
	#serviceovv .modal .body {
		padding: 14.285714286%;
	}
	
}


@media (max-width: 500px) {
	
	#serviceovv .modal .body {
		padding: 14.285714286% 10%;
	}
	#serviceovv .modal .close {
		top: 0.5em;
		right: 0.5em;
		width: 8%;
		padding-top: 8%;
	}
	
	#employeeovv .normal li {
		width: 26.6666666666667%;
		margin-left: 10%;
	}
	#employeeovv .board li {
		width: 45%;
		margin-left: 10%;
	}
	#employeeovv .normal li:nth-child(3n+1) {
		margin-left: 0;	
	}
	#employeeovv .board li:nth-child(2n+1) {
		margin-left: 0;	
	}
	
	#contactpage .addresses article {
		width: 80%;	
	}
	
	
	.galleryoverlay .canvas {
		bottom: 0;
		left: 1em;
		position: absolute;
		right: 1em;
		top: 0;
	}
	.galleryoverlay > a {
		font-size: 3em;
		line-height: 3em;
	}
	.galleryoverlay > a.next {
		right: 0.1em;
	}
	.galleryoverlay > a.prev {
		left: 0.1em;
	}

}

@media (max-width: 450px) {
	#serviceovv .modal .body {
		padding: 14.285714286% 1em;
	}
	
	#serviceovv ol {
		display: block;
	}
	#services li:nth-child(3n+1),
	#services li {
		display: block;
		margin: 1em auto 3em;
	}
	
}

@media (max-height: 600px) {
	

	#dia .text.withcta {
		top: 80px;
		left: 10%;
		right: 10%;
		width: auto;
	}
	#dia .text.withcta h1 {
		margin-bottom: 0;	
	}
	#dia .text.withcta p {
		display: none;	
	} 
	
	
	#home_cta {
		
	}	
}
