/* CSS RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* GENERAL */
body {
	position: absolute;
	right: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select:none;
	user-select:none;
	-o-user-select:none;
	overflow-y: scroll;
}
section {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}
.row:before,
.row:after {
	position: relative;
	content: "";
    display: table;
    clear: both;
}
.col {
	position: relative;
	float: left;
	box-sizing: border-box;
}
.scroll {
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
input {
	display: none;
}
.arrow {
	height: 30px;
	width: 30px;
	border-bottom: 2px solid #9e9e9e;
	border-left: 2px solid #9e9e9e;
	-o-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: border-color 0.1s ease-in-out;
	-moz-transition: border-color 0.1s ease-in-out;
	-o-transition: border-color 0.1s ease-in-out;
	transition: border-color 0.1s ease-in-out;
}
.arrow:hover {
	border-bottom: 2px solid #000;
	border-left: 2px solid #000;
}
.background-img {
	position: fixed;
	top: -2000px;
	right: -2000px;
	bottom: -2000px;
	left: -2000px;
	width: 100vw;
	height: 60vw;
	margin: auto;
	z-index: 90;
}
@media screen and (max-aspect-ratio: 5/3) {
	.background-img {
		height: 100%;
		width: auto;
	}
}
/* COLOR */
p, a, label, h4, .light {
	color: #7e7e7e;
}
#cont-info .fa {
	color: #9e9e9e;
}
h1 {
	color: #585858;
}
h3 {
	color: #fff;
}
strong, h2, h5, h6, .current a, .current-page a, a:hover, label:hover, #cont-info .fa:hover, #awards p,
#cat-all:checked ~ header label[for="cat-all"],
#cat-residential:checked ~ header label[for="cat-residential"],
#cat-workplace:checked ~ header label[for="cat-workplace"],
#cat-healthcare:checked ~ header label[for="cat-healthcare"],
#cat-public:checked ~ header label[for="cat-public"] {
	color: #000;
}
.back {
	background-color: #f8f8f8;
	-webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
}
header {
	background-color: #f8f8f8;
}
/* TEXT */
h1 {
	font-family: "Exo 2", sans-serif;
	font-size: 20px;
	font-weight: 700;
}
h2, h3, h4, h5, h6, p, a, label {
	font-family: "Muli", sans-serif;
	font-weight: 400;
	text-decoration: none;
	-webkit-transition: color .1s ease-in-out;
	-moz-transition: color .1s ease-in-out;
	-o-transition: color .1s ease-in-out;
	transition: color .1s ease-in-out;
}
h1, h2, h3, h5, h6, nav ul li a, label {
	text-transform: uppercase;
}
h2 {
	font-size: 13px;
}
h3 {
	font-size: 20px;
	text-align: center;
	line-height: 1.4;
	letter-spacing: 0.5px;
}
h4 {
	font-size: 14px;
	text-align: center;
	letter-spacing: 0;
}
h5 {
	font-size: 11px;
	text-align: center;
	line-height: 1.4;
	letter-spacing: 0;
}
h6 {
	font-size: 12px;
	margin-bottom: 20px;
}
nav ul li a, label {
	font-size: 13px;
	letter-spacing: 0.5px;
}
p {
	font-size: 13px;
	line-height: 1.4;
	margin-bottom: 5px;
}
/* HEADER */
header {
	position: absolute;
	top: 100vh;
	right: 0;
	left: 0;
	width: 100%;
	height: 60px;
	box-sizing: border-box;
	margin: 0 auto;
	z-index: 98;
	text-align: center;
	overflow: hidden;
	-webkit-transition: box-shadow .3s ease-in-out;
	-moz-transition: box-shadow .3s ease-in-out;
	-o-transition: box-shadow .3s ease-in-out;
	transition: box-shadow .3s ease-in-out;
}
.header-fixed,
.header-scroll {
	position: fixed;
	top: 0;
	-webkit-box-shadow: 2px 0px 16px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.2);
	box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.2);
}
header div {
	position: absolute;
	height: 100%;
	width: 84vw;
	margin: 0 auto;
	right: 0;
	left: 0;
}
#logo img {
	position: absolute;
	top: 14px;
	left: 0;
	height: 32px;
}
#logo h1 {
	position: absolute;
	top: 20px;
	margin-left: 38px;
}
#logo img,
#logo h1 {
	opacity: 0;
	-webkit-transition: opacity .3s ease-in-out;
	-moz-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out;
}
.header-fixed #logo img,
.header-fixed #logo h1,
.header-scroll #logo img,
.header-scroll #logo h1 {
	opacity: 1;
}
nav #menu-main,
nav #menu-categories {
	margin: 22px 0 22px 233px;
}
nav #menu-language,
nav #menu-return {
	position: absolute;
	top: 22px;
	right: 0;
}
nav ul li {
	position: relative;
	display: inline-block;
	height: 16px;
	vertical-align: top;
	-webkit-transition: height .3s ease-in-out;
	-moz-transition: height .3s ease-in-out;
	-o-transition: height .3s ease-in-out;
	transition: height .3s ease-in-out;
	overflow: hidden;
}
nav ul li a,
nav ul li label {
	padding: 5px;
}
nav ul li label {
	cursor: pointer;
}
nav #menu-return .fa {
	margin-right: 5px;
}
nav #menu-categories li:first-child {
	margin-right: 30px;
}
#menu-icon, #menu-close, #menu-return-icon {
	display: none;
}
/* HEADER - BREAKPOINTS */
@media screen and (min-width: 2000px) {
	header div {
		width: 1680px;
	}
}
@media screen and (max-width: 1250px) {
	header {
		overflow: visible;
	}
	header div {
		width: 80.5vw;
	}
	#menu-icon,
	#menu-return-icon {
		position: absolute;
		top: 15px;
		right: 0;
	}
	.header-scroll #menu-icon,
	.header-fixed #menu-icon,
	#menu-return-icon {
		display: block;
	}
	#menu-close {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: 0;
		z-index: 98;
		background-color: #000;
		opacity: 0.8;
	}
	nav #menu-main,
	nav #menu-categories,
	nav #menu-language,
	nav #menu-return {
		display: none;
		z-index: 99;
	}
	nav #menu-main:target,
	nav #menu-main:target ~ ul,
	nav #menu-main:target ~ #menu-close,
	nav #menu-categories:target,
	nav #menu-categories:target ~ ul,
	nav #menu-categories:target ~ #menu-close	{
		display: block;
	}
	nav ul li {
		display: block;
		height: 46px;
		box-sizing: border-box;
		margin: 6px 3px;
		padding: 15px;
		background-color: #fff;
	}
	nav #menu-categories li:first-child {
		margin: 6px 3px;
	}
	nav #menu-main,
	nav #menu-categories {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 52px;
		left: 0;
		width: 292px;
		margin: auto;
		text-align: center;
	}
	nav #menu-main {
		height: 422px;
	}
	nav #menu-categories {
		height: 318px;
	}
	nav #menu-language {
		position: fixed;
		top: 416px;
		right: 0;
		bottom: 0;
		left: 0;
		height: 58px;
		width: 292px;
		margin: auto;
		text-align: center;
	}
	nav #menu-language li {
		position: absolute;
		top: 0;
	}
	nav #menu-language li:first-child {
		left: 0;
		right: 50%;
	}
	nav #menu-language li:last-child {
		right: 0;
		left: 50%;
	}
}
@media screen and (max-width: 950px) {
	header div {
		width: 100%;
	}
	#logo img,
	#logo h1 {
		left: 60px;
	}
	#menu-icon,
	#menu-return-icon {
		right: 60px;
	}
}
@media screen and (max-width: 650px) {
	#logo img,
	#logo h1 {
		left: 30px;
	}
	#menu-icon,
	#menu-return-icon {
		right: 30px;
	}
}
@media screen and (max-width: 500px) {
	#logo h1 {
		width: 200px;
		top: 11px;
		font-size: 18px;
		text-align: left;
	}
}
@media screen and (max-height: 550px) and (max-width: 1250px) {
	nav ul li {
		float: left;
		width: 140px;
		margin: 3px;
	}
	nav #menu-categories li:first-child {
		margin: 3px;
	}
	nav #menu-main {
		bottom: 52px;
		height: 208px;
	}
	nav #menu-categories {
		bottom: 104px;
		height: 156px;
	}
	nav #menu-language {
		top: 208px;
		height: 52px;
	}
}
/* HOME */
#home {
	height: 100%;
}
#home-logo {
	position: absolute;
	top: 0;
	bottom: 12vh;
	left: 4vw;
	width: 20vw;
	min-width: 220px;
	z-index: 91;
	margin: auto;
}
/* HOME - BREAKPOINTS */
@media screen and (min-aspect-ratio: 5/3) and (max-width: 950px) {
	#home-logo {
		top: 4vw;
		bottom: auto;
	}
}
@media screen and (max-aspect-ratio: 5/3) {
	#home .background-img {
		position: absolute;
		top: 0;
		bottom: auto;
		margin: 0 auto;
	}
	#home-logo {
		top: auto;
		right: 0;
		bottom: 5vh;
		left: 3vw;
		width: 25vw;
		min-width: 200px;
		max-width: 320px;
	}
}
@media screen and (max-aspect-ratio: 1/1) {
	#home-logo {
		width: 30vw;
	}
}
/* MAIN BODY */
#main {
	position: relative;
	padding: 120px 0;
	z-index: 95;
}
#frame {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	background-color: #000;
	background-color: rgba(0,0,0,0.8);
	opacity: 1;
	display: none;
	z-index: 98;
	cursor: pointer;
}
#frame object {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 80vw;
	height: 45vw;
	margin: auto;
}
/* MAIN BODY - BREAKPOINTS */
@media screen and (min-aspect-ratio: 5/3) {
	#frame object {
		width: 144vh;
		height: 81vh;
		margin: auto;
	}
}
/* WORKS */
#works {
	width: 100%;
}
#works .row {
	position: relative;
	height: 100vh;
	width: 76vw;
	margin: 0 auto;
	pointer-events: none;
}
#works .col {
	height: 100%;
	width: 19vw;
	padding: 0 1vw;
	pointer-events: all;
}
#works .col img {
	position: absolute;
	top: 0;
	bottom: 45px;
	left: 1vw;
	height: 30vw;
	width: 17vw;
	margin: auto 0;
	transition: filter 0.5s;
}
#works .col img:hover {
	filter: opacity(0.8);
}
#works .col h5 {
	position: absolute;
	top: 30vw;
	bottom: 0;
	height: 30px;
	margin: auto 0;
	text-align: left;
	pointer-events: all;
	width: 17vw;
}
#works .row .arrow {
	position: absolute;
	right: 0;
	bottom: 7.5vh;
	left: 0;
	margin: 0 auto;
	pointer-events: all;
}
/* WORKS - BREAKPOINTS */
@media screen and (min-width: 2000px) {
	#works .row {
		width: 1520px;
	}
	#works .col {
		width: 380px;
		padding: 0 20px;
	}
	#works .col img {
		left: 20px;
		height: 600px;
		width: 340px;
	}
	#works .col h5 {
		top: 600px;
		width: 340px;
	}
}
@media screen and (min-aspect-ratio: 13/6),
/*screen and (min-height: 1250px),*/
screen and (max-aspect-ratio: 8/5),
screen and (max-width: 1250px) {
	#works {
		padding-top: 90px;
	}
	#works .row {
		height: auto;
	}
	#works .col {
		height: auto;
		width: auto;
		z-index: 80;
	}
	#works .col img {
		position: relative;
		top: 0;
		bottom: 0;
		left: 0;
		margin: 0;
	}
	#works .col h5 {
		position: relative;
		top: 0;
		bottom: 0;
		margin: 5px 0 4vw 0;
	}
	#works .arrow {
		display: none;
	}
}
@media screen and (max-width: 1250px) {
	#works .row:before,
	#works .row:after {
		display: none;
	}
	#works .row {
		width: 82.5vw;
	}
	#works .col img {
		width: 25.5vw;
		height: auto;
	}
	#works .col h5 {
		width: 25.5vw;
	}
}
@media screen and (max-width: 1250px) and (min-width: 950px) {
	#works #list h5 {
		text-align: center;
		width: 80.5vw;
		font-size: 14px;
		margin-bottom: 100px;
	}
	#works #list h5:after {
		content: ">";
		margin-left: 10px;
		font-size: 20px;
	}
	#works #list img {
		display: none;
	}
}
@media screen and (max-width: 950px) {
	#works .row {
		width: 73vw;
		text-align: center;
	}
	#works .col img {
		height: auto;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	#works .col h5 {
		width: 100%;
	}
	#works #maida img {
		content: url('thumbs/maida_smiles_clinic_h.jpg');
	}
	#works #courtyard img {
		content: url('thumbs/courtyard_house_h.jpg');
	}
	#works #care img {
		content: url('thumbs/care_implant_dentistry_h.jpg');
	}
	#works #brighton img {
		content: url('thumbs/brighton_implant_clinic_h.jpg');
	}
	#works #fraunhofer img {
		content: url('thumbs/fraunhofer_offices_h.jpg');
	}
	#works #clip img {
		content: url('thumbs/clip_concept_store_h.jpg');
	}
	#works #tiles img {
		content: url('thumbs/video_tiles_h.jpg');
	}
	#works #uralchem img {
		content: url('thumbs/uralchem_headquarters_h.jpg');
	}
	#works #palma img {
		content: url('thumbs/palma_apartment_h.jpg');
	}
	#works #clinic img {
		content: url('thumbs/t_clinic_h.jpg');
	}
	#works #toy img {
		content: url('thumbs/toy_museum_and_public_library_h.jpg');
	}
	#works #zero img {
		content: url('thumbs/zero_museum_h.jpg');
	}
	#works #olx img {
		content: url('thumbs/olx_group_offices_h.jpg');
	}
	#works #london img {
		content: url('thumbs/london_clinic_h.jpg');
	}
	#works #guincho img {
		content: url('thumbs/house_in_guincho_h.jpg');
	}
	#works #olx-video img {
		content: url('thumbs/olx_video_h.jpg');
	}
	#works #list img {
		content: url('thumbs/list_h.jpg');
	}
}
@media screen and (max-width: 650px) {
	#works {
		padding: 30px 30px 0 30px;
	}
	#works .row {
		width: 100%;
	}
}
/* ABOUT */
#about {
	height: 400px;
	width: 100%;
	text-align: center;
	margin-top: -60px;
	padding-top: 180px;
}
#about h1 {
	width: 50px;
	margin-bottom: 10px;
	font-size: 32px;
}
#about p {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0;
}
#about img {
	position: absolute;
	top: -10px;
	left: 0;
	height: 120px;	
}
#about .row {
	position:absolute;
	left: 0;
	right: 0;
	height: 215px;
	width: 650px;
	margin: auto;
	padding-left: 135px;
	text-align: left;
}
#about .mobile {
	display: none;
}
/* ABOUT - BREAKPOINTS */
@media screen and (max-width: 1500px) {
	#about {
		height: 460px;
	}
}
@media screen and (max-width: 1250px) {
	#about .row {
		width: 600px;
		padding-left: 110px;
	}
	#about h1 {
		font-size: 28px;
	}
	#about p {
		font-size: 14px;
	}
	#about img {
		top: -7px;
		height: 100px;
	}
}
@media screen and (max-width: 1050px) {
	#about {
		height: 520px;
	}
	#about .row {
		width: 360px;
	}
	#about .mobile {
		display: block;
	}
	#about p {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 650px) {
	#about {
		height: auto;
		width: 100%;
		padding-top: 120px;
	}
	#about .row {
		position: relative;
		height: auto;
		width: 100%;
		box-sizing: border-box;
		padding-right: 30px;
		padding-left: 30px;
		text-align: center;
	}
	#about img {
		position: relative;
		left: 0;
		right: 0;
		margin: 20px auto;
	}
	#about h1 {
		display: none;
	}
}
@media screen and (max-width: 450px) {
	#about .mobile,
	#about br {
		display: none;
	}
}
/* TEAM */
#team {
	width: 100%;
	padding-top: 180px;
	padding-bottom: 180px;
}
#team .row {
	right: 0;
	left: 0;
	width: 65vw;
	max-width: 1000px;
	margin: auto;
}
#team .col {
	width: 25%;
	padding: 0.5vw;
}
#team .col img {
	width: 100%;
}
#team .col h5 {
	width: 90%;
	height: 46px;
	margin: 3px 0;
	text-align: left;
}
/* TEAM - BREAKPOINTS */
@media screen and (min-width: 2000px) {
	#team .row {
		max-width: 1300px;
	}
	#team .col {
		width: 16.66%;
		padding: 10px;
	}
}
@media screen and (max-width: 1500px) {
	#team {
		padding: 90px 0;
	}
}
@media screen and (max-width: 1250px) {
	#team .row {
		width: 82.5vw;
	}
	#team .col {
		padding: 1vw;
	}
}
@media screen and (max-width: 950px) {
	#team {
		padding: 90px 60px;
	}	
	#team .row {
		width: 100%;
	}
	#team .col {
		width: 33.33%;
	}
}
@media screen and (max-width: 650px) {
	#team {
		padding: 90px 10vw;
	}
	#team .col {
		width: 50%;
		padding: 10px;
	}
}
@media screen and (max-width: 400px) {
	#team {
		padding: 90px 20px;
	}
}
/* AWARDS */
#awards {
	height: 100vh;
	min-height: 800px;
	width: 100%;
	padding-top: 60px;
}
#awards > .row {
	position: absolute;
	top: 60px;
	right: 0;
	bottom:0;
	left: 0;
	width: 65vw;
	margin: auto;
	padding-top: 90px;
}
#awards .third,
#awards .two-thirds {
	float: right;
}
#awards .two-thirds {
	width: 66.66%;
}
#awards .third {
	width: 33.33%;
}
#awards .third .col {
	width: 50%;
	padding: 20px 12%;
	float: right;
	text-align: center;
}
#awards .third .col img {
	width: 100%;
	filter: grayscale(100%);
}
#awards p {
	font-size: 14px;
	margin-bottom: 10px;
}
#awards .right {
	text-align: right;
	width: 15%;
	padding: 5px 10px;
}
#awards .left {
	text-align: left;
	width: 85%;
	padding: 5px 10px;
}
/* AWARDS - BREAKPOINTS */
@media screen and (min-width: 2000px) {
	#awards > .row {
		width: 1300px;
	}
}
@media screen and (max-width: 1500px) {
	#awards > .row {
		width: 76vw;
	}
}
@media screen and (max-width: 1250px) {
	#awards > .row {
		width: 82.5vw;
		padding-top: 60px;
	}
	#awards p {
		font-size: 13px;
		margin-bottom: 5px;
	}
	#awards .third {
		width: 25%;
	}
	#awards .two-thirds {
		width: 75%;
	}
	#awards .third .col {
		padding: 20px 8%;
	}
}
@media screen and (max-width: 950px) {
	#awards {
		height: auto;
		min-height: 0;
		width: 100%;
		padding: 0 60px;
	}
	#awards > .row {
		position: relative;
		top: 0;
		height: auto;
		width: 100%;
		padding-top: 0;
	}
	#awards .two-thirds {
		height: auto;
		width: 100%;
		margin-top: 60px;
		padding: 0;
	}
	#awards .third {
		display: none;
	}
}
@media screen and (max-width: 650px) {
	#awards {
		padding: 0 30px;
	}
}
@media screen and (max-width: 500px) {
	#awards .right,
	#awards .left {
		width: 100%;
		text-align: left;
	}
	#awards .right {
		padding-top: 20px;
	}
}
/* PUBLICATIONS */
#publications {
	height: auto;
	min-height: 100vh;
	width: 100%;
	padding-top: 90px;
	text-align: center;
}
#publications .row {
	width: 76vw;
	margin: 0 auto;
}
#publications .col {
	width: 7.6vw;
	height: 12vw;
}
#publications .col img {
	position: absolute;
	right: 1vw;
	bottom: 0;
	width: 5.6vw;
	margin: 0;
	-webkit-box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.2);
}
/* PUBLICATIONS - BREAKPOINTS */
@media screen and (min-width: 2000px) {
	#publications .row {
		width: 1520px;
	}
	#publications .col {
		height: 240px;
		width: 152px;
	}
	#publications .col img {
		right: 20px;
		width: 112px;
	}
}
@media screen and (max-width: 1500px) {
	#publications .col {
		width: 9.5vw;
		height: 15vw;
	}
	#publications .col img {
		width: 7.5vw;
	}
}
@media screen and (max-width: 1250px) {
	#publications .row {
		width: 82.5vw;
	}
	#publications .col {
		width: 13.75vw;
		height: 24vw;
	}
	#publications .col img {
		width: 11.75vw;
	}
}
@media screen and (max-width: 950px) {
	#publications {
		width: 100%;
		padding: 90px 60px 0 60px;
	}
	#publications .row {
		width: 100%;
	}
	#publications .col {
		width: 16.66%;
		height: 24vw;
	}
	#publications .col img {
		left: 10%;
		width: 80%;
	}
}	
@media screen and (max-width: 750px) {
	#publications .col {
		width: 20%;
		height: 26vw;
	}
}
@media screen and (max-width: 650px) {
	#publications .col {
		width: 25%;
		height: 32vw;
	}
}
@media screen and (max-width: 500px) {
	#publications .col {
		width: 33.33%;
		height: 40vw;
	}
}
@media screen and (max-width: 400px) {
	#publications {
		padding: 90px 20px 0 20px;
	}
}
/* CONTACTS */
#contacts {
	height: 100%;
	min-height: 800px;
	margin-top: -60px;
	z-index: 94;
	line-height: 0;
}
#contacts .background-img {
	opacity: 0;
	pointer-events: none;
}
#cont-info {
	position: absolute;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 45px 0;
	z-index: 95;
}
#cont-info .row {
	width: 84vw;
	margin: 0 auto;
}
#cont-info .col {
	width: 250px;
	height: 200px;
}
#cont-info .col:nth-child(2) {
	width: 500px;
}
#cont-info .col:nth-child(2) div {
	width: 50%;
	float: left;
}
#cont-info .col:last-child {
	float: right;
	text-align: right;
}
#cont-info p {
	font-size: 12px;
}
#cont-info p,
#cont-info h6 {
	width: 100%;
	display: block;
}
#cont-info .fa {
	margin-left: 20px;
}
/* CONTACTS - BREAKPOINTS */
@media screen and (min-width: 2000px) {
	#cont-info .row {
		width: 1680px;
	}
}
@media screen and (max-width: 1800px) {
	#cont-info .col {
		width: 230px;
	}
	#cont-info .col:nth-child(2) {
		width: 460px;
	}
}
@media screen and (max-width: 1500px) {
	#cont-info .col,
	#cont-info .col:nth-child(2) {
		width: 33.33%;
	}
	#cont-info .col:nth-child(2) div {
		width: 100%;
	}
	#cont-info .col:nth-child(2) div:last-child {
		margin-top: 40px;
	}
	#cont-info .col:last-child {
		width: 100%;
		height: 75px;
		padding-top: 30px;
		text-align:center;
	}
	#cont-info .col:last-child h6 {
		display: none;
	}
	#cont-info .fa {
		margin: 0 10px;
	}
}
@media screen and (max-width: 1250px) {
	#cont-info .row {
		width: 80.5vw;
	}
	#cont-info .col,
	#cont-info .col:nth-child(2) {
		text-align: center;
	}
	#cont-info p,
	#cont-info h6 {
		max-width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width: 950px) {
	#contacts {
		min-height: 0;
		height: auto;
		padding-top: 35px;
	}
	#contacts .background-img {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		bottom: auto;
		left: 0;
		right: auto;
	}
	#cont-info {
		position: relative;
		padding: 45px 60px;
	}
	#cont-info .row {
		width: 100%;
	}
	#cont-info .col,
	#cont-info .col:nth-child(2) {
		width: 100%;
		height: auto;
		margin-top: 40px;
	}
	#cont-info p,
	#cont-info h6 {
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}
}
/* FOOTER */
footer {
	position: relative;
	top: -42px;
	width: 100%;
	height: 42px;
	z-index: 95;
	text-align: center;
}
footer p {
	font-size: 12px;
}
/* NEWS */
#news {
	padding: 85px 9.75vw;
	text-align: center;
}
#news article {
	display: block;
	float: none;
	width: 700px;
	margin: 90px auto;
}
#news article h2,
#news article p {
	text-align: left;
}
#news article img {
	display: inline-block;
	height: 300px;
	margin-top: 60px;
}
#news article h2 {
	line-height: 1.6;
}
#news p:nth-child(2) {
	margin-bottom: 30px;
}
/* NEWS - BREAKPOINTS */
@media screen and (max-width: 1100px) {
	#news article {
		width: 100%;
	}
}
@media screen and (max-width: 950px) {
	#news {
		padding: 85px 60px;
	}
}
@media screen and (max-width: 650px) {
	#news {
		padding: 85px 30px;
		text-align: left;
	}
	#news article {
		margin: 45px 0 90px 0;
	}
	#news p:nth-child(2) {
		margin-bottom: 15px;
	}
	#news article img {
		width: 100%;
		height: auto;
		margin-top: 30px;
	}
}
/* WORK LIST */
#list {
	padding: 85px 0;
	min-height: 100%;
}
#list .row {
	width: 87vw;
	right: 0;
	left: 0;
	margin: 0 auto;
}
#list article {
	width: 33%;
	height: 260px;
	padding-top: 60px;
	margin-top: -60px;
	display: none;
}
#cat-all:checked ~ #list article,
#cat-residential:checked ~ #list .residential,
#cat-workplace:checked ~ #list .workplace,
#cat-healthcare:checked ~ #list .healthcare,
#cat-public:checked ~ #list .public {
	display: block;
}
#list article a {
	position: absolute;
	top: 60px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 1.5vw 50px 1.5vw;
}
#list article img {
	width: 225px;
	height: 150px;
	float: left;
	margin-right: 1.5vw;
	transition: filter 0.5s;
}
#list article:hover img {
	filter: opacity(0.8);
}
#list article h5 {
	text-align: left;
	margin-top: 5px;
}
#list article p {
	font-size: 11px;
	line-height: 1.2;
}
#list article p:nth-child(3) {
	margin-bottom: 60px;
	text-transform: uppercase;
}
#list article strong {
	font-weight: 400;
	margin-right: 5px;
}
/* WORK LIST - BREAKPOINTS */
@media screen and (min-width: 2000px) {
	#list .row {
		width: 1740px;
	}
	#list article a {
		margin: 0 30px 50px 30px;
	}
	#list article img {
		margin-right: 30px;
	}
}
@media screen and (max-width: 1750px) {
	#list article {
		width: 50%;
	}
}
@media screen and (max-width: 1250px) {
	#list .row {
		width: 83.5vw;
	}
}
@media screen and (max-width: 1150px) {
	#list article {
		width: 80%;
		margin-left: 20%;
		opacity: 1;
	}
}
@media screen and (max-width: 950px) {
	#list {
		padding: 85px 50px;
	}
	#list .row {
		width: 100%;
	}
	#list article {
		width: 100%;
		margin-left: 0;
	}
	#list article a {
		margin: 0 10px 50px 10px;
	}
	#list article img {
		margin-right: 20px;
	}
}
@media screen and (max-width: 650px) {
	#list {
		padding: 85px 20px;
	}
}
@media screen and (max-width: 550px) {
	#list article {
		height: auto;
		text-align: center;
	}
	#list article a {
		position: relative;
		top: 0;
	}
	#list article img {
		display: inline-block;
		float: none;
		margin-top: 45px;
	}
	#list article h5 {
		margin-top: 10px;
		text-align: center;
	}
	#list article p:nth-child(3) {
		margin-bottom: 15px;
	}
}
/* WORK PAGE */
#work-page {
	min-height: 100%;
	text-align: center;
}
#work-page ul li div {
	position: absolute;
	top: 90px;
	left: 0;
	bottom: 350px;
	right: 0;
	width: 1200px;
	margin: auto;
	display: none;
}
#work-page ul li input:checked ~ div {
	display: block;
}
#work-page ul li img {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	max-height: 100%;
	max-width: 100%;
	margin: 0 auto;
}
#work-page ul li label {
	position: absolute;
	top: 0;
	height: 100%;
	width: 45%;
}
#work-page ul li .work-prev {
	left: 0;
	cursor: url(arrow-left.png) 9 16, ew-resize;
}
#work-page ul li .work-next {
	right: 0;
	cursor: url(arrow-right.png) 9 16, ew-resize;
}
#work-text {
	height: 260px;
	width: 1200px;
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	margin: 0 auto;
	column-count: 3;
	column-gap: 25px;
	text-align: left;
}
#work-text h2,
#work-text p:nth-child(2),
#work-text .soon {
	text-align: center;
	column-span: all;
}
#work-text h2 {
	line-height: 1.6;
}
#work-text p:nth-child(2) {
	margin-bottom: 30px;
}
#work-text p strong {
	margin-right: 5px;
}
#work-text .soon {
	text-transform: uppercase;
}
/* WORK PAGE - BREAKPOINTS */
@media screen and (min-height: 1200px) {
	#work-page ul li div {
		bottom: 410px;
	}
	#work-text {
		bottom: 120px;
	}
}
@media screen and (max-width: 1400px),
screen and (max-height: 800px){
	#work-page {
		padding: 150px 60px 75px 60px;
	}
	#work-page ul li div {
		position: relative;
		display: block;
		top: 0;
		bottom: 0;
		height: auto;
		width: 600px;
		max-width: 100%;
		margin: 30px auto;
	}
	#work-page ul li:last-child div {
		margin-bottom: 90px;
	}
	#work-page ul li div img {
		top: 0;
		bottom: auto;
		position: relative;
		width: 100%;
		height: auto;
	}
	#work-page ul li label {
		display: none;
	}
	#work-text {
		position: relative;
		height: auto;
		width: 600px;
		max-width: 100%;
		bottom: 0;
		margin-bottom: 60px;
		column-count: 1;
	}
	#work-text h2,
	#work-text p:nth-child(2),
	#work-text .soon {
		text-align: left;
	}
}
@media screen and (max-width: 1250px) {
	#work-page {
		padding: 120px 9.75vw 75px 9.75vw;
	}
}
@media screen and (max-width: 950px) {
	#work-page {
		padding: 150px 60px 75px 60px;
	}
	#work-page ul li div {
		margin: 5px auto;
	}
}
@media screen and (max-width: 650px) {
	#work-page {
		padding: 150px 30px 75px 30px;
	}
}
/* SELECTED WORK PAGE */
#selected-home {
	height: 100%;
}
#selected-main {
	text-align: center;
	z-index: 95;
}
#selected-main .container {
	display: inline-block;
	width: 1000px;
	margin: 240px 0;
}
#selected-main h2 {
	font-size: 20px;
	text-align: center;
	letter-spacing: 1px;
}
#selected-main h4 {
	margin: 15px auto;
}
#selected-main p {
	font-size: 14px;
	line-height: 1.8;
}
#selected-main .col {
	padding: 60px 20px;
	min-height: 1px;
}
#selected-main .col img {
	width: 100%;
}
#selected-main .center {
	width: 100%;
	padding: 60px 120px;
	text-align: center;
}
#seleted-main .full {
	width: 100%;
}
#selected-main .half {
	width: 50%;
}
#selected-main .third {
	width: 33.3%;
}
#selected-main .two-thirds {
	width: 66.6%;
}
#selected-main .right {
	padding-left: 120px;
	text-align: right;
}
#selected-main .left {
	padding-right: 120px;
	text-align: left;
}
#selected-main .gap {
	padding-top: 100px;
}
#selected-main .grid {
	margin-top: -80px;
}
#selected-main .info .col {
	padding-top: 5px;
	padding-bottom: 0;
}
#selected-next {
	height: 100%;
	min-height: 800px;
	margin-top: -60px;
	background-color: #000;
	z-index: 94;
}
#selected-next .background-img {
	display: none;
	opacity: 0.5;
}
#selected-next h3 {
	position: absolute;
	top: 60px;
	bottom: 290px;
	height: 25px;
	width: 100%;
	margin: auto 0;
	z-index: 99;
}
/* SELECTED WORK PAGE - BREAKPOINTS */
@media screen and (max-width: 1500px) {
	#selected-next h3 {
		bottom: 365px;
	}
}
@media screen and (max-width: 1250px) {
	#selected-main .container {
		width: 100%;
		box-sizing: border-box;
		margin: 120px 0;
		padding: 0 9.75vw;
	} 
	#selected-main .gap {
		padding-top: 40px;
	}
}
@media screen and (max-width: 950px) {
	#selected-main .container {
		max-width: 700px;
		padding: 0 60px;
	} 
	#selected-main .col {
		width: 100%;
		padding: 5px;
		text-align: center;
	}
	#selected-main .third img {
		width: 60%;
	}
	#selected-main .center .drawing,
	#selected-main .full .drawing,
	#selected-main .half .drawing,
	#selected-main .two-thirds .drawing {
		box-sizing: border-box;
		padding: 60px;
	}
	#selected-main p {
		text-align: left;
		padding: 30px;
	}
	#selected-main .info .col:first-child {
		padding-top: 20px;
	}
	#selected-main .info p {
		padding: 0 30px;
	}
	#selected-main .grid {
	margin-top: 0;
}
	#selected-next {
		min-height: 0;
		height: auto;
		padding-top: 60px;
		line-height: 0;
	}
	#selected-next .background-img {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		bottom: auto;
		left: 0;
		right: auto;
	}
	#selected-next h3 {
		top: 29vw;
		bottom: auto;
		margin: 48px 0 0 0;
	}
}
@media screen and (max-width: 650px) {
	#selected-main .container {
		padding: 0 30px;
	}
	#selected-main .third img {
		width: 100%;
	}
	#selected-main .center .drawing,
	#selected-main .full .drawing,
	#selected-main .half .drawing,
	#selected-main .two-thirds .drawing,
	#selected-main .third .drawing {
		box-sizing: border-box;
		padding: 8%;
	}
	#selected-main p {
		padding: 30px 10px;
	}
}
@media screen and (max-aspect-ratio: 5/3) {
	#selected-home .left-align {
		right: auto;
		left: 0;
		margin: auto 0;
	}
}